Skip to content

Commit dd2e57a

Browse files
committed
[1.2.0] - 2023-09-13
1 parent 5a9acdd commit dd2e57a

File tree

7 files changed

+48
-9
lines changed

7 files changed

+48
-9
lines changed
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
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

CHANGELOG.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff 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

fj-daogen-base/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
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>

fj-daogen-maven-plugin/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
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>

fj-daogen-sample/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
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>

fj-daogen-tool/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
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>

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
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>
@@ -24,8 +24,8 @@
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>

0 commit comments

Comments
 (0)