File tree 2 files changed +8
-2
lines changed
2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 25
25
strategy :
26
26
matrix :
27
27
os : [ubuntu-latest,windows-latest, macOS-latest]
28
- java : [8, 11, 17]
28
+ java : [8, 11, 17, 20 ]
29
29
jdk : [temurin]
30
30
fail-fast : false
31
31
43
43
cache : ' maven'
44
44
45
45
- name : Build with Maven
46
- run : mvn install javadoc:javadoc -e -B -V -Pno-tests-if-not-on-osx
46
+ run : mvn install javadoc:javadoc -e -B -V
47
+
48
+ - name : Build with Maven and target Java level - ${{ matrix.java }}
49
+ run : mvn clean install javadoc:javadoc -e -DjavaVersion=${{ matrix.java }}
Original file line number Diff line number Diff line change 31
31
</distributionManagement >
32
32
33
33
<properties >
34
+ <!-- remove with parent upgrade -->
35
+ <maven .compiler.source>${javaVersion} </maven .compiler.source>
36
+ <maven .compiler.target>${javaVersion} </maven .compiler.target>
34
37
<project .build.outputTimestamp>2021-09-21T23:45:11Z</project .build.outputTimestamp>
35
38
</properties >
36
39
You can’t perform that action at this time.
0 commit comments