Prepare code for execution on Hera (networking group server)
[pingpong.git] / Code / Projects / SmartPlugDetector / build.gradle
1 group 'edu.uci.iotproject'
2 version '1.0-SNAPSHOT'
3
4 apply plugin: 'java'
5 apply plugin: 'application'
6
7 sourceCompatibility = 1.8
8
9 //mainClassName = "edu.uci.iotproject.Main"
10 mainClassName = "edu.uci.iotproject.detection.SignatureDetector"
11
12
13 repositories {
14     mavenCentral()
15 }
16
17 dependencies {
18     testCompile group: 'junit', name: 'junit', version: '4.11'
19
20     // pcap4j
21     // Updated to v2 alpha as the stable release does not include packet timestamps
22     // v2 should add support for TCP session reassembly as well, although it does not appear to be part of the lib yet.
23     compile 'org.pcap4j:pcap4j-core:2.0.0-alpha'
24     compile 'org.pcap4j:pcap4j-packetfactory-static:2.0.0-alpha'
25
26     // pcap4j logging dependency
27     compile 'org.slf4j:slf4j-jdk14:1.8.0-beta2'
28
29     // Apache Commons Math for clustering
30     compile 'org.apache.commons:commons-math3:3.6.1'
31
32     // JGraphT: Java Graph library
33     compile 'org.jgrapht:jgrapht-core:1.2.0'
34 }