Commit 027e5860 authored by Andreas Tille's avatar Andreas Tille
Browse files

Make sure Debian packaged JARs will befound instead of binary Jars shipped by upstream.

parent 5a096ebd
Loading
Loading
Loading
Loading
+13 −0
Original line number Diff line number Diff line
@@ -42,3 +42,16 @@
 }
 
 compileJava {
--- a/build.gradle
+++ b/build.gradle
@@ -3,8 +3,8 @@ apply from: 'javaproject.gradle'
 group='sis'
 
 dependencies {
-    compile fileTree(dir: 'libs/prod', include: '*.jar')
-    testCompile fileTree(dir: 'libs/test', include: '*.jar')
+    compile fileTree(dir: '/usr/share/java', include: '*.jar')
+    testCompile fileTree(dir: '/usr/share/java', include: '*.jar')
 }
 
 tasks.withType(Test) {