forked from pxb1988/dex2jar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
91 lines (82 loc) · 2 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
allprojects {
apply plugin: 'maven'
apply plugin: 'idea'
apply plugin: 'eclipse'
group = 'com.googlecode.d2j'
version = '2.1-SNAPSHOT'
}
defaultTasks('clean','distZip')
subprojects {
apply plugin: 'java'
apply plugin: 'maven'
sourceCompatibility = 1.7
targetCompatibility = 1.7
task packageSources(type: Jar) {
classifier = 'sources'
from sourceSets.main.allSource
}
artifacts.archives packageSources
repositories {
mavenCentral()
}
// == support provided scope
configurations {
provided
}
sourceSets {
main { compileClasspath += configurations.provided }
test {
compileClasspath += configurations.provided
// make sure the resources and class output to same dir, for simple unit test
output.resourcesDir = output.classesDir
}
}
// == end
[compileJava, compileTestJava]*.options.collect {options ->options.encoding = 'UTF-8'}
dependencies {
testCompile group: 'junit', name: 'junit', version:'4.11'
}
jar {
manifest {
attributes("Implementation-Title": project.name,
"Implementation-Version": project.version,
"Build-Time": new Date().format("yyyy-MM-dd'T'HH:mm:ssZ"),
"Revision":"${getRevision()}",
"Build-Number": System.env.BUILD_NUMBER?System.env.BUILD_NUMBER:"-1",
)
}
from (project.parent.projectDir) {
include 'NOTICE.txt'
include 'LICENSE.txt'
into('META-INF')
}
}
}
def getRevision() {
if (System.env.BUILD_REVISION) {
return System.env.BUILD_REVISION
}
if (System.env.GIT_REVISION) {
return System.env.GIT_REVISION
}
if (System.env.MERCURIAL_REVISION) {
System.env.MERCURIAL_REVISION
}
def ver = null;
try {
ver = 'git rev-parse --short HEAD'.execute().text.trim()
} catch (e) {
// ignore
}
if (!ver) {
try {
ver = 'hg id -i -b -t'.execute().text.split(' ')[0];
} catch (e) {
// ignore
}
}
if (!ver) {
ver = "HEAD"
}
return ver
}