File tree Expand file tree Collapse file tree 3 files changed +11
-11
lines changed Expand file tree Collapse file tree 3 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 20
20
uses : actions/setup-java@v2
21
21
with :
22
22
distribution : ' adopt'
23
- java-version : ' 11 '
23
+ java-version : ' 17 '
24
24
- name : Cache Maven packages
25
25
uses : actions/cache@v2
26
26
with :
Original file line number Diff line number Diff line change 3
3
# This workflow is triggered each time
4
4
# commits are pushed to GitHub or a pull request is opened.
5
5
# It launches three jobs in parallel : a build with java 8,
6
- # a build with java 11 and a SonarCloud analysis.
6
+ # a build with java 17 and a SonarCloud analysis.
7
7
---
8
8
name : Java CI
9
9
13
13
14
14
build :
15
15
runs-on : ubuntu-latest
16
- name : Java 11 CI
16
+ name : Java 17 CI
17
17
steps :
18
18
- name : Check out repository code
19
19
uses : actions/checkout@v2
23
23
uses : actions/setup-java@v2
24
24
with :
25
25
distribution : ' adopt'
26
- java-version : 11
26
+ java-version : 17
27
27
- name : Cache Maven packages
28
28
uses : actions/cache@v2
29
29
with :
47
47
uses : actions/setup-java@v2
48
48
with :
49
49
distribution : ' adopt'
50
- java-version : ' 11 '
50
+ java-version : ' 17 '
51
51
- name : Cache Maven packages
52
52
uses : actions/cache@v2
53
53
with :
Original file line number Diff line number Diff line change 6
6
<groupId >fr.cnes.sonar.plugins</groupId >
7
7
<artifactId >sonar-icode-cnes-plugin</artifactId >
8
8
<packaging >sonar-plugin</packaging >
9
- <version >3.1.1 </version >
9
+ <version >3.1.2 </version >
10
10
11
11
<name >Sonar i-Code CNES plugin</name >
12
12
56
56
57
57
<properties >
58
58
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
59
- <jdk .version>1.8 </jdk .version>
60
- <jdk .min.version>11 </jdk .min.version>
61
- <jdk .max.version>11 </jdk .max.version>
62
- <maven .compiler.source>1.8 </maven .compiler.source>
63
- <maven .compiler.target>1.8 </maven .compiler.target>
59
+ <jdk .version>17 </jdk .version>
60
+ <jdk .min.version>17 </jdk .min.version>
61
+ <jdk .max.version>17 </jdk .max.version>
62
+ <maven .compiler.source>17 </maven .compiler.source>
63
+ <maven .compiler.target>17 </maven .compiler.target>
64
64
<sonar .apiVersion>9.8.0.203</sonar .apiVersion>
65
65
<sonar .testingHarnessVersion>9.5.0.56709</sonar .testingHarnessVersion>
66
66
<sonar .apiImplVersion>9.9.1.69595</sonar .apiImplVersion>
You can’t perform that action at this time.
0 commit comments