-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
66 lines (44 loc) · 1.35 KB
/
build.gradle
File metadata and controls
66 lines (44 loc) · 1.35 KB
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
buildscript {
repositories {
mavenLocal()
// Comment out the following line if in China
// maven{ url 'http://maven.aliyun.com/nexus/content/groups/public/'}
// jcenter()
mavenCentral()
}
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
group 'com.doublechaintech'
version '1.0.0'
[compileJava,compileTestJava,javadoc]*.options*.encoding = "UTF-8"
[compileJava,compileTestJava]*.options*.compilerArgs = ["-parameters"]
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
sourceSets {
main {
java { srcDirs = ['app/src/main/java'];}
resources {srcDirs = ['app/src/main/java'] }
}
}
repositories {
mavenLocal()
// Comment out the following line if in China
// maven{ url 'http://maven.aliyun.com/nexus/content/groups/public/'}
// jcenter()
mavenCentral()
}
dependencies {
implementation 'cn.hutool:hutool-core:5.8.5'
implementation group: 'xpp3', name: 'xpp3', version: '1.1.4c'
implementation 'commons-codec:commons-codec:1.15'
}
task singleJar(type: Jar) {
duplicatesStrategy = 'include'
manifest {
attributes 'Main-Class': 'com.doublechaintech.xmlmerger.XmlMerger'
}
from { configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) } }
with jar
}