File tree Expand file tree Collapse file tree 7 files changed +48
-9
lines changed Expand file tree Collapse file tree 7 files changed +48
-9
lines changed Original file line number Diff line number Diff line change 1+ # This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
2+ # For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-maven
3+
4+ # This workflow uses actions that are not certified by GitHub.
5+ # They are provided by a third-party and are governed by
6+ # separate terms of service, privacy policy, and support
7+ # documentation.
8+
9+ name : CI deploy maven package
10+
11+ on :
12+ push :
13+ branches :
14+ - deploy
15+
16+ jobs :
17+ build :
18+
19+ runs-on : ubuntu-latest
20+
21+ steps :
22+ - uses : actions/checkout@v3
23+ - name : Set up JDK 11
24+ uses : actions/setup-java@v3
25+ with :
26+ java-version : ' 11'
27+ distribution : ' corretto'
28+ cache : maven
29+ - name : Release Maven package
30+ uses : samuelmeuli/action-maven-publish@v1
31+ with :
32+ gpg_private_key : ${{ secrets.GPG_PRIVATE_KEY }}
33+ gpg_passphrase : ${{ secrets.PASSPHRASE }}
34+ nexus_username : ${{ secrets.OSS_USERNAME }}
35+ nexus_password : ${{ secrets.OSS_PASSWORD }}
36+ maven_args : -P doRelease
Original file line number Diff line number Diff line change @@ -7,16 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
88## [ Unreleased]
99
10+ ## [ 1.2.0] - 2023-09-13
11+
1012### Added
1113
14+ - [ maven deploy workflow] ( .github/workflows/deploy_maven_package.yml )
1215- [ workflow codeql on branch main] ( .github/workflows/codeql-analysis.yml )
1316- badge link to the daogen-config xsd 1.0
1417
1518### Changed
1619
1720- fj-bom set to 1.3.6
18- - fj-core set to 8.2.7
19- - fj-doc set to 2 .0.2
21+ - fj-core set to 8.2.8
22+ - fj-doc set to 3 .0.3
2023
2124### Fixed
2225
Original file line number Diff line number Diff line change 77 <parent >
88 <groupId >org.fugerit.java</groupId >
99 <artifactId >fj-daogen</artifactId >
10- <version >1.1.1-SNAPSHOT </version >
10+ <version >1.2.0 </version >
1111 </parent >
1212
1313 <name >fj-daogen-base</name >
Original file line number Diff line number Diff line change 77 <parent >
88 <groupId >org.fugerit.java</groupId >
99 <artifactId >fj-daogen</artifactId >
10- <version >1.1.1-SNAPSHOT </version >
10+ <version >1.2.0 </version >
1111 </parent >
1212
1313 <packaging >maven-plugin</packaging >
Original file line number Diff line number Diff line change 77 <parent >
88 <groupId >org.fugerit.java</groupId >
99 <artifactId >fj-daogen</artifactId >
10- <version >1.1.1-SNAPSHOT </version >
10+ <version >1.2.0 </version >
1111 </parent >
1212
1313 <name >fj-daogen-sample</name >
Original file line number Diff line number Diff line change 77 <parent >
88 <groupId >org.fugerit.java</groupId >
99 <artifactId >fj-daogen</artifactId >
10- <version >1.1.1-SNAPSHOT </version >
10+ <version >1.2.0 </version >
1111 </parent >
1212
1313 <name >fj-daogen-tool</name >
Original file line number Diff line number Diff line change 1111
1212 <artifactId >fj-daogen</artifactId >
1313
14- <version >1.1.1-SNAPSHOT </version >
14+ <version >1.2.0 </version >
1515 <packaging >pom</packaging >
1616
1717 <name >fj-daogen</name >
2424 <maven .compiler.source>${java-version-compliance} </maven .compiler.source>
2525 <maven .compiler.target>${java-version-compliance} </maven .compiler.target>
2626 <maven .compiler.release>${java-version-compliance} </maven .compiler.release>
27- <fj-version >8.2.7 </fj-version >
28- <fj-doc-version >2 .0.2 </fj-doc-version >
27+ <fj-version >8.2.8 </fj-version >
28+ <fj-doc-version >3 .0.3 </fj-doc-version >
2929 <fj-test-helper-version >0.5.0</fj-test-helper-version >
3030 <javax-rs-api-version >2.1.1</javax-rs-api-version >
3131 <fj-daogen-version >${project.version} </fj-daogen-version >
You can’t perform that action at this time.
0 commit comments