-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
34 lines (34 loc) · 971 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
apply plugin: 'java'
apply plugin: 'eclipse'
//apply plugin: 'application'
repositories { mavenCentral() }
dependencies {
compile group: 'de.micromata.jak', name: 'JavaAPIforKml', version: '2.+'
}
dependencies {
compile group: 'javax.activation', name: 'activation', version: '1.+'
}
dependencies {
compile group: 'javax.xml.bind', name: 'jaxb-api', version: '2.+'
}
dependencies {
compile group: 'com.yahoo.vespa', name: 'jrt', version: '6.+'
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.+'
}
dependencies {
testCompile group: 'org.hamcrest', name: 'hamcrest-all', version: '1.+'
}
dependencies {
compile group: 'mysql', name: 'mysql-connector-java', version: '5.+'
}
task GUI(type:JavaExec) {
main "main.java.Platform.wifiMapping"
classpath sourceSets.main.runtimeClasspath
}
jar {
manifest {
attributes 'Main-Class': 'src.main.java.Platform.wifiMapping'
}
}