-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.gradle
More file actions
38 lines (32 loc) · 1.06 KB
/
build.gradle
File metadata and controls
38 lines (32 loc) · 1.06 KB
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
35
36
37
38
plugins {
id "java"
id "us.kirchmeier.capsule" version "1.0.2"
}
if(!(org.gradle.api.JavaVersion.current().isJava8Compatible())) {
// The build script (this file) requires Java 8+
ant.fail("This build script requires Java version 8+, please check java version or upgrade java.")
}
version = '4.4.0'
sourceCompatibility = 1.8
defaultTasks 'clean', 'build', 'fatCapsule'
repositories {
mavenCentral()
}
task fatCapsule(type: FatCapsule) {
applicationClass 'com.groupunix.drivewireserver.DriveWireServer'
baseName 'DriveWireServer'
capsuleManifest {
minJavaVersion = '1.8.0'
}
}
dependencies {
compile 'org.slf4j:slf4j-log4j12:1.8.0-beta2'
compile 'org.apache.commons:commons-vfs2:2.2'
compile 'commons-configuration:commons-configuration:1.10'
compile 'net.htmlparser.jericho:jericho-html:3.4'
compile 'org.ostermiller:utils:1.07.00'
compile 'commons-cli:commons-cli:1.4'
compile 'org.apache.commons:commons-collections4:4.2'
compile 'com.fazecast:jSerialComm:2.0.2'
compile 'commons-collections:commons-collections:3.2.1'
}