-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
75 lines (47 loc) · 1.58 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
apply plugin: 'java'
sourceCompatibility = 1.8
version = '1.0'
buildscript {
repositories {
mavenLocal()
jcenter()
}
dependencies {
classpath 'com.github.jengelman.gradle.plugins:shadow:1.2.0'
classpath "me.champeau.gradle:jmh-gradle-plugin:0.2.0"
classpath 'co.tomlee.gradle.plugins:gradle-thrift-plugin:0.0.6'
}
}
apply plugin: 'me.champeau.gradle.jmh'
apply plugin: 'thrift'
task wrapper(type: Wrapper) {
gradleVersion = '2.3'
}
repositories {
mavenCentral()
maven {
url 'http://repo.spring.io/release'
}
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.11'
compile 'org.openjdk.jmh:jmh-core:1.6.1',
'org.openjdk.jmh:jmh-generator-annprocess:1.6.1'
compile 'org.mybatis:mybatis:3.2.8',
'org.mybatis:mybatis-spring:1.2.2'
compile 'com.foundationdb:fdb-sql-parser:1.6.1',
'com.alibaba:druid:1.0.13',
'com.github.jsqlparser:jsqlparser:0.9.2'
compile 'com.google.guava:guava:18.0'
compile 'cglib:cglib-nodep:3.1'
compile 'com.esotericsoftware:kryo-shaded:3.0.1'
compile 'io.protostuff:protostuff-core:1.3.3',
'io.protostuff:protostuff-runtime:1.3.3'
compile 'com.alibaba:fastjson:1.2.5'
compile 'com.fasterxml.jackson.core:jackson-databind:2.5.2'
compile 'org.apache.thrift:libthrift:0.9.2',
'org.apache.thrift:libfb303:0.9.2',
'org.slf4j:slf4j-api:1.7.10'
compile 'mysql:mysql-connector-java:5.1.35'
compile 'com.google.protobuf:protobuf-java:2.6.1'
}