-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathbuild.gradle
47 lines (42 loc) · 865 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'maven'
group = 'com.youbenzi'
sourceCompatibility = 1.7
version = '1.2.5'
jar {
manifest {
attributes 'Implementation-Title': 'mdtool',
'Implementation-Version': version
}
}
repositories {
// mavenCentral()
maven {
url 'http://maven.aliyun.com/nexus/content/groups/public/'
}
maven {
url 'http://maven.aliyun.com/nexus/content/repositories/jcenter'
}
}
compileJava {
options.encoding = "UTF-8"
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.+'
}
sourceSets {
main {
java {
srcDirs = ['src/main/java']
}
}
test {
java {
srcDirs = ['src/test/java']
}
resources {
srcDirs = ['src/test/resources']
}
}
}