File tree Expand file tree Collapse file tree 3 files changed +12
-5
lines changed
app/templates/project-base Expand file tree Collapse file tree 3 files changed +12
-5
lines changed Original file line number Diff line number Diff line change 22* Fix multi-module with bom mavne central publication:
33 - pom section from allprojects wasn't applied in subprojects because java plugin is activated only in subprojects
44 - bom was not publishing
5+ * Add jdk 16 to CI builds
56
67### 3.0.2 (2021-09-06)
78* Fix multi-module project release
Original file line number Diff line number Diff line change @@ -2,10 +2,16 @@ version: '{build}'
22
33environment :
44 matrix :
5- - JAVA_HOME : C:\Program Files\Java\jdk1.8.0
6- PYTHON : " C:\\ Python34-x64"
7- - JAVA_HOME : C:\Program Files\Java\jdk11
8- PYTHON : " C:\\ Python34-x64"
5+ - job_name : Java 8
6+ JAVA_HOME : C:\Program Files\Java\jdk1.8.0
7+ PYTHON : " C:\\ Python36-x64"
8+ - job_name : Java 11
9+ JAVA_HOME : C:\Program Files\Java\jdk11
10+ PYTHON : " C:\\ Python36-x64"
11+ - job_name : Java 16
12+ appveyor_build_worker_image : Visual Studio 2019
13+ JAVA_HOME : C:\Program Files\Java\jdk16
14+ PYTHON : " C:\\ Python36-x64"
915
1016install :
1117 - set PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%
Original file line number Diff line number Diff line change 1010 name : Java ${{ matrix.java }}
1111 strategy :
1212 matrix :
13- java : [8, 11]
13+ java : [8, 11, 16 ]
1414
1515 steps :
1616 - uses : actions/checkout@v2
You can’t perform that action at this time.
0 commit comments