-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
44 lines (39 loc) · 1.02 KB
/
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
35
36
37
38
39
40
41
42
43
44
buildscript {
repositories {
mavenLocal()
maven {
url "http://localhost:8081/nexus/content/groups/public"
}
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.0.1.RELEASE")
}
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: 'spring-boot'
jar {
baseName = 'magneto'
version = '0.1.0'
}
repositories {
mavenLocal()
maven {
url "http://localhost:8081/nexus/content/groups/public"
}
}
dependencies {
compile("org.springframework.boot:spring-boot-starter-web")
compile("com.fasterxml.jackson.core:jackson-databind")
compile("org.hawklithm.netty:nettyService:1.0-SNAPSHOT")
compile("hessian:hessian:3.0.1")
compile("org.apache.zookeeper:zookeeper:3.4.6")
compile("com.google.code.gson:gson:2.2.4")
compile("org.hawklithm.h2db:H2dbBuffer:1.0-SNAPSHOT")
compile("org.hawklithm.shadowsong:shadowsong:1.0-SNAPSHOT")
testCompile("junit:junit")
}
task wrapper(type: Wrapper) {
gradleVersion = '1.11'
}