ad98b35368d6e1b15a4a997873f504a45c9b0608
[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
11 repositories {
12     mavenCentral()
13 }
14
15 dependencies {
16     testCompile group: 'junit', name: 'junit', version: '4.11'
17
18     // pcap4j
19     compile 'org.pcap4j:pcap4j-core:1.7.3'
20     compile 'org.pcap4j:pcap4j-packetfactory-static:1.7.3'
21
22     // pcap4j logging dependency
23     compile 'org.slf4j:slf4j-jdk14:1.8.0-beta2'
24 }