Skip to content

Commit ae34da7

Browse files
author
Dennis Labordus
authored
Merge pull request #72 from com-pas/develop
New release
2 parents b3384d9 + 171501d commit ae34da7

File tree

5 files changed

+14
-11
lines changed

5 files changed

+14
-11
lines changed

.github/workflows/build-project.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ jobs:
2626
id: buildx
2727
uses: docker/setup-buildx-action@v1
2828
- name: Cache Docker Register
29-
uses: actions/cache@v2
29+
uses: actions/cache@v3
3030
with:
3131
path: /tmp/.buildx-cache
3232
key: ${{ runner.os }}-buildx-${{ hashFiles('**/Dockerfile') }}
3333
- name: Cache Maven packages
34-
uses: actions/cache@v2.1.6
34+
uses: actions/cache@v3
3535
with:
3636
path: ~/.m2
3737
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}

.github/workflows/release-project.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ jobs:
2525
username: ${{ secrets.DOCKER_HUB_USERNAME }}
2626
password: ${{ secrets.DOCKER_HUB_TOKEN }}
2727
- name: Cache Docker Register
28-
uses: actions/cache@v2
28+
uses: actions/cache@v3
2929
with:
3030
path: /tmp/.buildx-cache
3131
key: ${{ runner.os }}-buildx-${{ hashFiles('**/Dockerfile') }}
3232
- name: Cache Maven packages
33-
uses: actions/cache@v2.1.6
33+
uses: actions/cache@v3
3434
with:
3535
path: ~/.m2
3636
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}

.github/workflows/sonarcloud-analysis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,13 @@ jobs:
3636
distribution: 'zulu'
3737
java-version: '11'
3838
- name: Cache SonarCloud packages
39-
uses: actions/cache@v2.1.6
39+
uses: actions/cache@v3
4040
with:
4141
path: ~/.sonar/cache
4242
key: ${{ runner.os }}-sonar
4343
restore-keys: ${{ runner.os }}-sonar
4444
- name: Cache Maven packages
45-
uses: actions/cache@v2.1.6
45+
uses: actions/cache@v3
4646
with:
4747
path: ~/.m2
4848
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}

app/src/main/resources/application.properties

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,14 @@ quarkus.log.level = INFO
1212
quarkus.log.category."org.lfenergy.compas.scl.auto.alignment".level = INFO
1313

1414
# Add scanning these dependencies for scanning, also used by native compilation.
15-
quarkus.index-dependency.scl2007b4.group-id=org.lfenergy.compas.core
16-
quarkus.index-dependency.scl2007b4.artifact-id=commons
15+
quarkus.index-dependency.compas-commons.group-id = org.lfenergy.compas.core
16+
quarkus.index-dependency.compas-commons.artifact-id = commons
1717

18-
quarkus.index-dependency.jaxb-api.group-id=org.jboss.spec.javax.xml.bind
19-
quarkus.index-dependency.jaxb-api.artifact-id=jboss-jaxb-api_2.3_spec
18+
quarkus.index-dependency.jaxrs-commons.group-id = org.lfenergy.compas.core
19+
quarkus.index-dependency.jaxrs-commons.artifact-id = jaxrs-commons
20+
21+
quarkus.index-dependency.jaxb-api.group-id = org.jboss.spec.javax.xml.bind
22+
quarkus.index-dependency.jaxb-api.artifact-id = jboss-jaxb-api_2.3_spec
2023

2124
quarkus.index-dependency.powsybl-single-line-diagram-core.group-id=com.powsybl
2225
quarkus.index-dependency.powsybl-single-line-diagram-core.artifact-id=powsybl-single-line-diagram-core

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ SPDX-License-Identifier: Apache-2.0
2828

2929
<quarkus.platform.version>2.7.5.Final</quarkus.platform.version>
3030
<slf4j.version>1.7.36</slf4j.version>
31-
<powsybl.sld.version>2.9.0</powsybl.sld.version>
31+
<powsybl.sld.version>2.9.1</powsybl.sld.version>
3232
<gson.version>2.9.0</gson.version>
3333
<openpojo.version>0.9.1</openpojo.version>
3434
</properties>

0 commit comments

Comments
 (0)