File tree Expand file tree Collapse file tree 2 files changed +14
-7
lines changed Expand file tree Collapse file tree 2 files changed +14
-7
lines changed Original file line number Diff line number Diff line change @@ -27,10 +27,11 @@ jobs:
27
27
28
28
build :
29
29
name : Build it
30
- uses : codehaus-plexus/.github/.github/workflows/maven.yml@v0.0.1
30
+ uses : codehaus-plexus/.github/.github/workflows/maven.yml@master
31
31
with :
32
- jdk-matrix : ' ["8", "11", "17"]'
33
- jdk-distribution-matrix : ' ["zulu", "temurin"]'
32
+ jdk-fast-fail-build : ' 11'
33
+ jdk-matrix : ' ["11", "17"]'
34
+ jdk-distribution-matrix : ' ["zulu", "temurin", "microsoft", "liberica"]'
34
35
os-matrix : ' ["ubuntu-latest","windows-latest", "macOS-latest"]'
35
36
maven_args : ' verify javadoc:javadoc -e -B -V -fae -Pno-tests-if-not-on-osx'
36
37
Original file line number Diff line number Diff line change 28
28
<connection >${scm.url} </connection >
29
29
<developerConnection >${scm.url} </developerConnection >
30
30
<url >http://github.com/codehaus-plexus/plexus-compiler/tree/${project.scm.tag} /</url >
31
- <tag >master</tag >
32
31
</scm >
33
32
<issueManagement >
34
33
<system >github</system >
43
42
44
43
<properties >
45
44
<scm .url>scm:git:git@github.com:codehaus-plexus/plexus-compiler.git</scm .url>
46
- <javaVersion >8 </javaVersion >
45
+ <javaVersion >11 </javaVersion >
47
46
<redirectTestOutputToFile >true</redirectTestOutputToFile >
48
47
<project .build.outputTimestamp>2021-10-18T08:22:06Z</project .build.outputTimestamp>
49
48
<jupiter .version>5.8.2</jupiter .version>
121
120
<redirectTestOutputToFile >${redirectTestOutputToFile} </redirectTestOutputToFile >
122
121
</configuration >
123
122
</plugin >
123
+ <plugin >
124
+ <groupId >org.apache.maven.plugins</groupId >
125
+ <artifactId >maven-compiler-plugin</artifactId >
126
+ <configuration >
127
+ <release >8</release >
128
+ </configuration >
129
+ </plugin >
124
130
<plugin >
125
131
<groupId >org.apache.maven.plugins</groupId >
126
132
<artifactId >maven-release-plugin</artifactId >
192
198
<configuration >
193
199
<rules >
194
200
<requireJavaVersion >
195
- <version >[1.8 ,)</version >
196
- <message >[ERROR] OLD JDK [${java.version} ] in use. This projects requires JDK 8 or newer</message >
201
+ <version >[11 ,)</version >
202
+ <message >[ERROR] OLD JDK [${java.version} ] in use. This projects requires JDK 11 or newer</message >
197
203
</requireJavaVersion >
198
204
</rules >
199
205
</configuration >
You can’t perform that action at this time.
0 commit comments