Browse Source

Finaly fixes Weka dependency

Andreas T. Meyer-Berg 4 years ago
parent
commit
b439b521b2
4 changed files with 4 additions and 0 deletions
  1. 3 0
      .gitignore
  2. 1 0
      build.gradle
  3. BIN
      libs/weka.jar
  4. BIN
      libs_src/weka_src.jar

+ 3 - 0
.gitignore

@@ -105,6 +105,9 @@ gradle-app.setting
 
 # Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
 !gradle-wrapper.jar
+# Avoid if
+!/libs/*.jar
+!/libs_src/*.jar
 
 # Cache of project
 .gradletasknamecache

+ 1 - 0
build.gradle

@@ -45,6 +45,7 @@ dependencies {
 	// https://mvnrepository.com/artifact/org.apache.commons/commons-math3
 	compile group: 'org.apache.commons', name: 'commons-math3', version: '3.6.1'
 	//compile group: 'nz.ac.waikato.cms.weka', name: 'weka-stable', version: '3.8.0'
+	compile fileTree(include: ['*.jar'], dir: 'libs')
 	
 	testCompile 'junit:junit:4.12'
 }

BIN
libs/weka.jar


BIN
libs_src/weka_src.jar