forked from An0nymous0/MybatisPlugin-Crack-Javassist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
25 lines (20 loc) · 769 Bytes
/
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
group 'crack-javassist'
version '1.0-SNAPSHOT'
apply plugin: 'java'
apply plugin: 'idea'
sourceCompatibility = 1.8
repositories {
maven {
url "http://120.52.72.24/repo.maven.apache.org/maven2/"
}
}
dependencies {
compile fileTree(dir: 'lib', include: '*.jar')
compile group: 'org.javassist', name: 'javassist', version: '3.20.0-GA'
compile group: 'org.bouncycastle', name: 'bcprov-jdk15on', version: '1.54'
compile group: 'javax.mail', name: 'mail', version: '1.4.7'
compile group: 'jdom', name: 'jdom', version: '1.1'
// compile group: 'com.intellij', name: 'openapi', version: '7.0.3'
compile group: 'commons-lang', name: 'commons-lang', version: '2.6'
testCompile group: 'junit', name: 'junit', version: '4.11'
}