fix java version
All checks were successful
studiorailgun/trpg/pipeline/head This commit looks good

This commit is contained in:
austin 2024-12-29 11:26:49 -05:00
parent 0eb22003d7
commit d6aa54dbe0
2 changed files with 2 additions and 7 deletions

5
Jenkinsfile vendored
View File

@ -18,11 +18,6 @@ pipeline {
sh 'echo $JAVA_INCLUDE_PATH'
}
}
stage('Build (Engine)') {
steps {
sh 'mvn -B -DskipTests clean package'
}
}
stage('Test') {
steps {
script {

View File

@ -7,8 +7,8 @@
<packaging>jar</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<dl4j-master.version>1.0.0-M2</dl4j-master.version>
<!-- Change the nd4j.backend property to nd4j-cuda-X-platform to use CUDA GPUs -->
<nd4j.backend>nd4j-native</nd4j.backend>