Skip to content

Commit 9a4053f

Browse files
author
Dennis Labordus
committed
Latest version of CoMPAS Core and disabled native build.
Signed-off-by: Dennis Labordus <[email protected]>
1 parent 4fab6e5 commit 9a4053f

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

.github/workflows/build-project.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
servers: '[{ "id": "github-packages-compas", "username": "OWNER", "password": "${{ secrets.GITHUB_TOKEN }}" }]'
5252
- name: Build with Maven (Pull Request)
5353
if: ${{ github.event_name == 'pull_request' }}
54-
run: ./mvnw -s custom_maven_settings.xml -B -Pnative-image clean verify
54+
run: ./mvnw -s custom_maven_settings.xml -B -Pjvm-image clean verify
5555
- name: Build with Maven (Push)
5656
if: ${{ github.event_name == 'push' }}
5757
run: ./mvnw -s custom_maven_settings.xml -B clean verify

.github/workflows/release-project.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,6 @@ jobs:
6060
env:
6161
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6262
- name: Deploy with Maven to GitHub Packages and Docker Hub
63-
run: ./mvnw -B -s custom_maven_settings.xml -Pnative-image,release clean deploy
63+
run: ./mvnw -B -s custom_maven_settings.xml -Pjvm-image,release clean deploy
6464
env:
6565
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

app/src/main/resources/application.properties

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,12 @@ quarkus.log.level = INFO
1515
quarkus.log.category."org.lfenergy.compas.scl.data".level = INFO
1616

1717
# Add scanning these dependencies for scanning, also used by native compilation.
18+
quarkus.index-dependency.hibernate-validator.group-id=org.hibernate.validator
19+
quarkus.index-dependency.hibernate-validator.artifact-id=hibernate-validator
20+
21+
quarkus.index-dependency.websocket-commons.group-id = org.lfenergy.compas.core
22+
quarkus.index-dependency.websocket-commons.artifact-id = websocket-commons
23+
1824
quarkus.index-dependency.rest-commons.group-id = org.lfenergy.compas.core
1925
quarkus.index-dependency.rest-commons.artifact-id = rest-commons
2026

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ SPDX-License-Identifier: Apache-2.0
2323
<surefire-plugin.version>3.0.0-M7</surefire-plugin.version>
2424
<sonarqube-plugin.version>3.2.0</sonarqube-plugin.version>
2525

26-
<compas.core.version>0.10.1</compas.core.version>
26+
<compas.core.version>0.10.2</compas.core.version>
2727

2828
<quarkus.platform.version>2.14.0.Final</quarkus.platform.version>
2929
<jaxb-impl.version>2.3.7</jaxb-impl.version>

0 commit comments

Comments
 (0)