Add jenkinsfile + pom update
Some checks failed
studiorailgun/Renderer/pipeline/head There was a failure building this commit

This commit is contained in:
austin 2023-04-08 22:34:37 -04:00
parent f0049c2cc6
commit b01efa89e8
2 changed files with 22 additions and 1 deletions

14
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,14 @@
pipeline {
agent { docker { image 'maven:3-eclipse-temurin-17' } }
stages {
stage('build') {
steps {
sh 'mvn --version'
sh 'java -version'
configFileProvider([configFile(fileId: 'a00c9e64-9b32-4c24-9216-80b9d568358d', variable: 'MAVEN_SETTINGS_XML')]) {
sh 'mvn -U --batch-mode -s $MAVEN_SETTINGS_XML clean install -P foo'
}
}
}
}
}

View File

@ -185,7 +185,14 @@
<version>1.9.0</version>
</dependency>
<!--Vecmath explicit import-->
<!--License: TBD-->
<!--https://mvnrepository.com/artifact/javax.vecmath/vecmath-->
<dependency>
<groupId>javax.vecmath</groupId>
<artifactId>vecmath</artifactId>
<version>1.5.2</version>
</dependency>
</dependencies>