Reorganize code by creating a package for code that reassembles traffic flows at...
[pingpong.git] / Code / Projects / SmartPlugDetector / build.gradle
index 72c6b713e36eb4f85f9d2c85110b5f4c7bb052fa..bae10e9b79a4af4c65f16b2b8abaecd30c2f7153 100644 (file)
@@ -4,9 +4,14 @@ version '1.0-SNAPSHOT'
 apply plugin: 'java'
 apply plugin: 'application'
 
+// Increase max memory
+applicationDefaultJvmArgs = ["-Xmx300g"]
+
 sourceCompatibility = 1.8
 
-mainClassName = "edu.uci.iotproject.Main"
+//mainClassName = "edu.uci.iotproject.Main"
+mainClassName = "edu.uci.iotproject.detection.SignatureDetector"
+
 
 repositories {
     mavenCentral()
@@ -26,4 +31,7 @@ dependencies {
 
     // Apache Commons Math for clustering
     compile 'org.apache.commons:commons-math3:3.6.1'
-}
+
+    // JGraphT: Java Graph library
+    compile 'org.jgrapht:jgrapht-core:1.2.0'
+}
\ No newline at end of file