We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ba358d commit aaaf569Copy full SHA for aaaf569
Jenkinsfile
@@ -10,7 +10,7 @@ pipeline {
10
11
sh 'chmod +x gradlew'
12
13
- sh './gradlew --stacktrace --debug ' +
+ sh './gradlew --stacktrace ' +
14
'-Dextensive-tests=true ' +
15
'clean build uploadArchives -PpreferedRepo=local'
16
}
tests/test-proguard/build.gradle
@@ -8,5 +8,10 @@ targetCompatibility = 1.7
8
dependencies {
9
compile project(':objectbox-java')
compile project(':objectbox-java-api')
+
+ if(isLinux64) {
+ compile "io.objectbox:objectbox-linux:${rootProject.version}"
+ }
testCompile 'junit:junit:4.12'
17
0 commit comments