Skip to content

Commit

Permalink
[0.3.2 - 2024-03-24]
Browse files Browse the repository at this point in the history
  • Loading branch information
fugerit79 committed Mar 24, 2024
1 parent 19a5917 commit ff9ab9f
Show file tree
Hide file tree
Showing 8 changed files with 28 additions and 24 deletions.
38 changes: 20 additions & 18 deletions .github/workflows/deploy_maven_package.yml
Original file line number Diff line number Diff line change
@@ -1,36 +1,38 @@
# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-maven

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# CI deploy maven package
#
# version 1.0.0
#
# see : https://universe.fugerit.org/src/docs/conventions/workflows/deploy_maven_package.html

name: CI deploy maven package

on:
push:
branches:
- deploy
- branch-deploy

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@main
- name: Set up JDK 17
uses: actions/setup-java@v3
uses: actions/setup-java@main
with:
java-version: '17'
distribution: 'corretto'
cache: maven
- name: Release Maven package
uses: samuelmeuli/action-maven-publish@v1
with:
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
gpg_passphrase: ${{ secrets.PASSPHRASE }}
nexus_username: ${{ secrets.OSS_USERNAME }}
nexus_password: ${{ secrets.OSS_PASSWORD }}
maven_args: -P doRelease
server-id: ossrh
server-username: MAVEN_USERNAME
server-password: MAVEN_PASSWORD
- name: Import gpg
run: echo -e "${{ secrets.PASSPHRASE }}" | echo -e "${{ secrets.GPG_PRIVATE_KEY }}" | gpg --allow-secret-key-import --import
- name: Build package
run: mvn clean install -P full,coverage,metadata
- name: Publish package
run: mvn --batch-mode deploy -P doRelease
env:
MAVEN_USERNAME: ${{ secrets.OSS_USERNAME }}
MAVEN_PASSWORD: ${{ secrets.OSS_PASSWORD }}
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.3.2 - 2024-03-24]

### Added

- ServiceResponseHelper utility to handle messages
Expand Down
2 changes: 1 addition & 1 deletion data-service-base/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>org.fugerit.java</groupId>
<artifactId>fj-service-helper-bom</artifactId>
<version>0.3.2-SNAPSHOT</version>
<version>0.3.2</version>
</parent>

<name>Data Service Base</name>
Expand Down
2 changes: 1 addition & 1 deletion data-service-jvfs/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>org.fugerit.java</groupId>
<artifactId>fj-service-helper-bom</artifactId>
<version>0.3.2-SNAPSHOT</version>
<version>0.3.2</version>
</parent>

<name>Data Service JVFS</name>
Expand Down
2 changes: 1 addition & 1 deletion emp-service-model/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>org.fugerit.java</groupId>
<artifactId>fj-service-helper-bom</artifactId>
<version>0.3.2-SNAPSHOT</version>
<version>0.3.2</version>
</parent>

<name>Eclipse MicroProfile Service Model</name>
Expand Down
2 changes: 1 addition & 1 deletion fj-service-helper-demo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.fugerit.java</groupId>
<artifactId>fj-service-helper-bom</artifactId>
<version>0.3.2-SNAPSHOT</version>
<version>0.3.2</version>
</parent>
<artifactId>fj-service-helper-demo</artifactId>
<name>Fugerit Service Helper DEMO</name>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<relativePath></relativePath>
</parent>

<version>0.3.2-SNAPSHOT</version>
<version>0.3.2</version>
<packaging>pom</packaging>

<name>Fugerit Service Helper BOM</name>
Expand Down
2 changes: 1 addition & 1 deletion quarkus-redis-service-map/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>org.fugerit.java</groupId>
<artifactId>fj-service-helper-bom</artifactId>
<version>0.3.2-SNAPSHOT</version>
<version>0.3.2</version>
</parent>

<name>Service Map based on Quarkus 3+ Redis Client</name>
Expand Down

0 comments on commit ff9ab9f

Please sign in to comment.