Add missing library

This commit is contained in:
Flare Microsystems
2024-11-08 17:24:40 -08:00
parent bfcb3dd2d1
commit a8a75ddf01

2
Jenkinsfile vendored
View File

@@ -4,7 +4,7 @@ pipeline {
stage('Compile'){
steps {
sh "mkdir -p bin"
sh "/tool/jdk1.6.0_45/bin/javac -target 1.5 -d bin \$(find ./src/* | grep .java)"
sh "/tool/jdk1.6.0_45/bin/javac -target 1.5 -cp /tool/junit4/* -d bin \$(find ./src/* | grep .java)"
}
}
stage('Test'){