forked from shevek/tftp4j
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
67 lines (55 loc) · 1.55 KB
/
build.gradle
File metadata and controls
67 lines (55 loc) · 1.55 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
buildscript {
repositories {
// mavenLocal()
mavenCentral()
jcenter()
// maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
}
dependencies {
classpath 'org.anarres.gradle:gradle-stdproject-plugin:1.0.8'
}
}
apply plugin: 'org.anarres.stdproject'
stdproject {
javadocLink "https://mina.apache.org/mina-project/apidocs/"
javadocLink "http://netty.io/4.0/api/"
}
subprojects {
group = "org.anarres.tftp"
apply plugin: 'org.anarres.stdmodule'
stdmodule {
description "A high-performance pure Java TFTP server."
author id: 'shevek', name: 'Shevek', email: '[email protected]'
license 'Apache-2.0'
}
sourceCompatibility = 1.5
animalsniffer {
signature = "org.codehaus.mojo.signature:java16:+@signature"
}
}
project(':tftp-protocol') {
dependencies {
compile 'com.google.code.findbugs:annotations:2.0.3'
compile 'org.slf4j:slf4j-api:1.7.12'
compile 'com.google.guava:guava:18.0'
compile 'org.codehaus.mojo:animal-sniffer-annotations:1.14'
testCompile 'commons-net:commons-net:3.3'
}
}
project(':tftp-server-mina') {
dependencies {
compile project(':tftp-protocol')
compile 'org.apache.mina:mina-core:2.0.8'
testCompile 'commons-net:commons-net:3.3'
testCompile project(':tftp-protocol').sourceSets.test.output
}
}
project(':tftp-server-netty') {
dependencies {
compile project(':tftp-protocol')
compile 'io.netty:netty-all:4.0.23.Final'
testCompile 'commons-net:commons-net:3.3'
testCompile project(':tftp-protocol').sourceSets.test.output
testRuntime 'org.javassist:javassist:3.18.2-GA'
}
}