Skip to content

Commit

Permalink
add validation service quarkus deployment
Browse files Browse the repository at this point in the history
try to enable native
  • Loading branch information
sboeckelmann committed Jun 19, 2024
1 parent 0046d20 commit 559b28b
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/maven-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ jobs:
id: builder
uses: docker/setup-buildx-action@v3

- name: Set up JDK 21
uses: actions/setup-java@v4
- name: Set up GraalVM 21
uses: graalvm/setup-graalvm@v1
with:
java-version: '21'
distribution: 'temurin'
distribution: 'graalvm-community'
cache: maven
server-id: openepcis-ossrh
server-username: OPENEPCIS_OSSRH_USERNAME
Expand All @@ -40,7 +40,6 @@ jobs:
gpg --batch --list-secret-keys --keyid-format LONG
- name: deploy document converter modules
if: false
env:
OPENEPCIS_OSSRH_USERNAME: ${{ secrets.PUB_OSSRH_USERNAME }}
OPENEPCIS_OSSRH_PASSWORD: ${{ secrets.PUB_OSSRH_PASSWORD }}
Expand All @@ -54,6 +53,7 @@ jobs:
-B clean verify deploy
- name: install document converter modules
if: false
env:
OPENEPCIS_OSSRH_USERNAME: ${{ secrets.PUB_OSSRH_USERNAME }}
OPENEPCIS_OSSRH_PASSWORD: ${{ secrets.PUB_OSSRH_PASSWORD }}
Expand Down Expand Up @@ -144,11 +144,11 @@ jobs:
id: builder
uses: docker/setup-buildx-action@v3

- name: Set up JDK 21
uses: actions/setup-java@v4
- name: Set up GraalVM 21
uses: graalvm/setup-graalvm@v1
with:
java-version: '21'
distribution: 'temurin'
distribution: 'graalvm-community'
cache: maven


Expand Down Expand Up @@ -234,11 +234,11 @@ jobs:
username: ${{github.actor}}
password: ${{secrets.GITHUB_TOKEN}}

- name: Set up JDK 21
uses: actions/setup-java@v4
- name: Set up GraalVM 21
uses: graalvm/setup-graalvm@v1
with:
java-version: '21'
distribution: 'temurin'
distribution: 'graalvm-community'
cache: maven

- name: "Prepare Build"
Expand Down Expand Up @@ -308,7 +308,7 @@ jobs:
label: 'linux-arm64'
exe: ""
- os: 'macos-13'
label: 'mac-intel'
label: 'mac-x64'
exe: ""
- os: 'macos-latest'
label: 'mac-arm'
Expand Down
10 changes: 10 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,16 @@
<artifactId>quarkus-openepcis-model-deployment</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
<groupId>io.openepcis.quarkus</groupId>
<artifactId>quarkus-document-validation-service</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
<groupId>io.openepcis.quarkus</groupId>
<artifactId>quarkus-document-validation-service-deployment</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
<groupId>io.openepcis.quarkus</groupId>
<artifactId>quarkus-document-converter</artifactId>
Expand Down
4 changes: 4 additions & 0 deletions quarkus/deployment/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,10 @@
<groupId>io.openepcis.quarkus</groupId>
<artifactId>quarkus-openepcis-model-deployment</artifactId>
</dependency>
<dependency>
<groupId>io.openepcis.quarkus</groupId>
<artifactId>quarkus-document-validation-service-deployment</artifactId>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-arc-deployment</artifactId>
Expand Down
4 changes: 4 additions & 0 deletions quarkus/runtime/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,10 @@
<groupId>io.openepcis.quarkus</groupId>
<artifactId>quarkus-openepcis-model</artifactId>
</dependency>
<dependency>
<groupId>io.openepcis.quarkus</groupId>
<artifactId>quarkus-document-validation-service</artifactId>
</dependency>
<dependency>
<groupId>io.openepcis</groupId>
<artifactId>openepcis-document-converter</artifactId>
Expand Down

0 comments on commit 559b28b

Please sign in to comment.