File tree Expand file tree Collapse file tree 4 files changed +34
-8
lines changed
nbm-maven-plugin/src/it/full Expand file tree Collapse file tree 4 files changed +34
-8
lines changed Original file line number Diff line number Diff line change 16
16
# under the License.
17
17
18
18
version : 2
19
+
19
20
updates :
21
+
20
22
- package-ecosystem : " maven"
21
23
directory : " /"
22
24
target-branch : " master"
23
25
schedule :
24
- interval : " daily "
26
+ interval : " weekly "
25
27
28
+ - package-ecosystem : " github-actions"
29
+ directory : " /"
30
+ target-branch : " master"
31
+ schedule :
32
+ interval : " weekly"
Original file line number Diff line number Diff line change 35
35
runs-on : ubuntu-latest
36
36
strategy :
37
37
matrix :
38
- java : [ 11, 17, 21, 23 ]
38
+ java : [ 11, 17, 21, 24 ]
39
39
fail-fast : false
40
40
41
41
steps :
55
55
run : ./mvnw -B -ntp verify -P run-its
56
56
57
57
- name : Create Test Summary
58
- uses : mikepenz/action-junit-report@v4
58
+ uses : mikepenz/action-junit-report@a83fd2b5d58d4fc702e690c1ea688d702d28d281 # v5.6.1
59
59
if : always()
60
60
with :
61
61
annotate_only : true
Original file line number Diff line number Diff line change 16
16
# under the License.
17
17
wrapperVersion =3.3.2
18
18
distributionType =only-script
19
- distributionUrl =https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.9 /apache-maven-3.9.9 -bin.zip
19
+ distributionUrl =https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.10 /apache-maven-3.9.10 -bin.zip
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ under the License.
46
46
<plugin >
47
47
<groupId >org.apache.maven.plugins</groupId >
48
48
<artifactId >maven-compiler-plugin</artifactId >
49
- <version >3.11 .0</version >
49
+ <version >3.14 .0</version >
50
50
<configuration >
51
51
<source >8</source >
52
52
<target >8</target >
@@ -65,17 +65,17 @@ under the License.
65
65
<plugin >
66
66
<groupId >org.apache.maven.plugins</groupId >
67
67
<artifactId >maven-surefire-plugin</artifactId >
68
- <version >3.5.2 </version >
68
+ <version >3.5.3 </version >
69
69
</plugin >
70
70
</plugins >
71
71
</pluginManagement >
72
72
</build >
73
73
74
74
<profiles >
75
75
<profile >
76
- <id >jdk17 </id >
76
+ <id >jdk17to23 </id >
77
77
<activation >
78
- <jdk >[17,)</jdk >
78
+ <jdk >[17,24 )</jdk >
79
79
</activation >
80
80
<build >
81
81
<pluginManagement >
@@ -91,6 +91,25 @@ under the License.
91
91
</pluginManagement >
92
92
</build >
93
93
</profile >
94
+ <profile >
95
+ <id >jdk24plus</id >
96
+ <activation >
97
+ <jdk >[24,)</jdk >
98
+ </activation >
99
+ <build >
100
+ <pluginManagement >
101
+ <plugins >
102
+ <plugin >
103
+ <groupId >org.apache.maven.plugins</groupId >
104
+ <artifactId >maven-surefire-plugin</artifactId >
105
+ <configuration >
106
+ <argLine >--add-opens=java.base/java.net=ALL-UNNAMED</argLine >
107
+ </configuration >
108
+ </plugin >
109
+ </plugins >
110
+ </pluginManagement >
111
+ </build >
112
+ </profile >
94
113
</profiles >
95
114
96
115
<modules >
You can’t perform that action at this time.
0 commit comments