Add jenkinsfile + pom update
Some checks failed
studiorailgun/Renderer/pipeline/head There was a failure building this commit
Some checks failed
studiorailgun/Renderer/pipeline/head There was a failure building this commit
This commit is contained in:
parent
f0049c2cc6
commit
b01efa89e8
14
Jenkinsfile
vendored
Normal file
14
Jenkinsfile
vendored
Normal 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'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
9
pom.xml
9
pom.xml
@ -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>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user