Skip to content

Commit 3eae7fe

Browse files
author
luoming
committed
add gradle build system
1 parent ce6f45d commit 3eae7fe

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

build.gradle

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
allprojects {
2+
repositories {
3+
jcenter()
4+
}
5+
}
6+
7+
apply plugin: 'java'
8+
9+
dependencies {
10+
compile 'org.javassist:javassist:3.21.0-GA'
11+
compile 'com.fasterxml.jackson.core:jackson-annotations:2.8.5'
12+
testCompile 'junit:junit:4.12'
13+
compile 'com.fasterxml.jackson.core:jackson-databind:2.8.5'
14+
compile 'com.google.code.gson:gson:2.2.4'
15+
compile 'org.openjdk.jmh:jmh-core:1.17.3'
16+
compile 'org.openjdk.jmh:jmh-generator-annprocess:1.17.3'
17+
}

0 commit comments

Comments
 (0)