File tree Expand file tree Collapse file tree 5 files changed +14
-11
lines changed Expand file tree Collapse file tree 5 files changed +14
-11
lines changed Original file line number Diff line number Diff line change @@ -26,12 +26,12 @@ jobs:
26
26
id : buildx
27
27
uses : docker/setup-buildx-action@v1
28
28
- name : Cache Docker Register
29
- uses : actions/cache@v2
29
+ uses : actions/cache@v3
30
30
with :
31
31
path : /tmp/.buildx-cache
32
32
key : ${{ runner.os }}-buildx-${{ hashFiles('**/Dockerfile') }}
33
33
- name : Cache Maven packages
34
- uses : actions/cache@v2.1.6
34
+ uses : actions/cache@v3
35
35
with :
36
36
path : ~/.m2
37
37
key : ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
Original file line number Diff line number Diff line change @@ -25,12 +25,12 @@ jobs:
25
25
username : ${{ secrets.DOCKER_HUB_USERNAME }}
26
26
password : ${{ secrets.DOCKER_HUB_TOKEN }}
27
27
- name : Cache Docker Register
28
- uses : actions/cache@v2
28
+ uses : actions/cache@v3
29
29
with :
30
30
path : /tmp/.buildx-cache
31
31
key : ${{ runner.os }}-buildx-${{ hashFiles('**/Dockerfile') }}
32
32
- name : Cache Maven packages
33
- uses : actions/cache@v2.1.6
33
+ uses : actions/cache@v3
34
34
with :
35
35
path : ~/.m2
36
36
key : ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
Original file line number Diff line number Diff line change @@ -36,13 +36,13 @@ jobs:
36
36
distribution : ' zulu'
37
37
java-version : ' 11'
38
38
- name : Cache SonarCloud packages
39
- uses : actions/cache@v2.1.6
39
+ uses : actions/cache@v3
40
40
with :
41
41
path : ~/.sonar/cache
42
42
key : ${{ runner.os }}-sonar
43
43
restore-keys : ${{ runner.os }}-sonar
44
44
- name : Cache Maven packages
45
- uses : actions/cache@v2.1.6
45
+ uses : actions/cache@v3
46
46
with :
47
47
path : ~/.m2
48
48
key : ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
Original file line number Diff line number Diff line change @@ -12,11 +12,14 @@ quarkus.log.level = INFO
12
12
quarkus.log.category."org.lfenergy.compas.scl.auto.alignment".level = INFO
13
13
14
14
# 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
17
17
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
20
23
21
24
quarkus.index-dependency.powsybl-single-line-diagram-core.group-id =com.powsybl
22
25
quarkus.index-dependency.powsybl-single-line-diagram-core.artifact-id =powsybl-single-line-diagram-core
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ SPDX-License-Identifier: Apache-2.0
28
28
29
29
<quarkus .platform.version>2.7.5.Final</quarkus .platform.version>
30
30
<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>
32
32
<gson .version>2.9.0</gson .version>
33
33
<openpojo .version>0.9.1</openpojo .version>
34
34
</properties >
You can’t perform that action at this time.
0 commit comments