Update Jenkinsfile and pom.xml
This commit is contained in:
parent
bb140fedf2
commit
336a5522f1
4
Jenkinsfile
vendored
4
Jenkinsfile
vendored
@ -30,7 +30,7 @@ pipeline {
|
||||
stage("Build & Deploy SNAPSHOT") {
|
||||
agent {
|
||||
docker {
|
||||
image 'maven:3.6.3-openjdk-11'
|
||||
image 'maven:3.6.3-openjdk-15'
|
||||
args '-v $HOME:/var/maven'
|
||||
reuseNode true
|
||||
}
|
||||
@ -44,7 +44,7 @@ pipeline {
|
||||
stage("Release") {
|
||||
agent {
|
||||
docker {
|
||||
image 'maven:3.6.3-openjdk-11'
|
||||
image 'maven:3.6.3-openjdk-15'
|
||||
args '-v $HOME:/var/maven'
|
||||
reuseNode true
|
||||
}
|
||||
|
12
pom.xml
12
pom.xml
@ -7,8 +7,8 @@
|
||||
<version>1.0-SNAPSHOT</version>
|
||||
<properties>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
<maven.compiler.source>11</maven.compiler.source>
|
||||
<maven.compiler.target>11</maven.compiler.target>
|
||||
<maven.compiler.source>15</maven.compiler.source>
|
||||
<maven.compiler.target>15</maven.compiler.target>
|
||||
</properties>
|
||||
<repositories>
|
||||
<repository>
|
||||
@ -26,12 +26,12 @@
|
||||
<dependency>
|
||||
<groupId>org.openjfx</groupId>
|
||||
<artifactId>javafx-controls</artifactId>
|
||||
<version>13</version>
|
||||
<version>15</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.openjfx</groupId>
|
||||
<artifactId>javafx-fxml</artifactId>
|
||||
<version>13</version>
|
||||
<version>15</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>it.tdlight</groupId>
|
||||
@ -46,7 +46,7 @@
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<version>3.8.0</version>
|
||||
<configuration>
|
||||
<release>11</release>
|
||||
<release>15</release>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
@ -116,7 +116,7 @@
|
||||
<icon/>
|
||||
<jre>
|
||||
<path/>
|
||||
<minVersion>11</minVersion>
|
||||
<minVersion>15</minVersion>
|
||||
<maxVersion/>
|
||||
<jdkPreference>preferJre</jdkPreference>
|
||||
<initialHeapSize>256</initialHeapSize>
|
||||
|
Loading…
x
Reference in New Issue
Block a user