-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathbuild.gradle
165 lines (139 loc) · 4.56 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
plugins {
id 'java'
id 'com.github.johnrengelman.shadow' version '4.0.1'
id 'maven'
id 'signing'
}
sourceCompatibility = '1.7'
targetCompatibility = '1.7'
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
group = "co.paralleluniverse"
version = "0.2.0-SNAPSHOT"
status = "integration"
description = "Virtual Time for the JVM"
ext.url = "http://puniverse.github.com/timewarp"
ext.vendor = "Parallel Universe Software Co."
ext.licenseName = "The MIT License"
ext.licenseUrl = "http://opensource.org/licenses/MIT"
ext.scmUrl = "https://github.com/puniverse/timewarp"
ext.scmConnection = "https://github.com/puniverse/timewarp.git"
ext.distDir = "$buildDir/dist"
ext.isReleaseVersion = !version.endsWith("SNAPSHOT")
repositories {
mavenCentral()
}
dependencies {
compile 'org.ow2.asm:asm:7.0'
testCompile 'junit:junit:4.10'
}
jar {
manifest {
attributes(
"Built-By" : System.getProperty("user.name"),
"Implementation-Title" : project.name,
"Implementation-Version" : version,
"Implementation-Vendor" : vendor,
"Premain-Class" : "co.paralleluniverse.vtime.JavaAgent",
"Agent-Class" : "co.paralleluniverse.vtime.JavaAgent",
)
}
}
shadowJar {
outputs.upToDateWhen { false }
// artifactAttached = false
classifier = '' // 'shadow'
destinationDir = file("$buildDir/libs")
// dependencies { exclude(dependency('co.paralleluniverse:capsule:.*')) }
exclude 'META-INF/**'
exclude 'licenses/**'
exclude 'about.html'
exclude 'javax/inject/**'
exclude 'org/apache/log4j/lf5/**'
exclude 'org/apache/log4j/xml/log4j.dtd'
exclude '**/version.properties'
exclude 'META-INF/INDEX.LIST'
exclude 'module-info.class'
relocate 'org.objectweb.asm.', 'co.paralleluniverse.timewarp.asm.'
manifest.inheritFrom jar.manifest
}
javadoc {
options.noDeprecated = true
excludes = [ "**/Clock_.java","**/JavaAgent.java" ]
options {
links = [ "http://docs.oracle.com/javase/7/docs/api/" ]
}
}
task sourcesJar(type: Jar, dependsOn: classes) {
classifier = 'sources'
from sourceSets.main.allSource
}
task javadocJar(type: Jar, dependsOn: javadoc) {
classifier = 'javadoc'
from javadoc.destinationDir
}
artifacts {
archives jar
archives sourcesJar
archives javadocJar
}
signing {
required { isReleaseVersion && gradle.taskGraph.hasTask("uploadArchives") }
sign configurations.archives
}
if (!project.hasProperty("sonatypeUsername") || !project.hasProperty("sonatypePassword")) {
println "sonatype username or password not set"
ext.sonatypeUsername = ""
ext.sonatypePassword = ""
}
uploadArchives {
repositories {
mavenDeployer {
beforeDeployment { deployment -> signing.signPom(deployment) }
repository(
url: (isReleaseVersion ?
"https://oss.sonatype.org/service/local/staging/deploy/maven2" :
"https://oss.sonatype.org/content/repositories/snapshots")) {
// User and Password are taken from ~/.gradle/gradle.properties
authentication(userName: project.sonatypeUsername, password: project.sonatypePassword)
}
pom.project {
name project.name
packaging 'jar'
description project.description
url project.url
scm {
url project.scmUrl
connection project.scmConnection
developerConnection project.scmConnection
}
licenses {
license {
name project.licenseName
url project.licenseUrl
distribution 'repo'
}
}
developers {
developer {
id 'pron'
name 'Ron Pressler'
}
}
}
}
}
}
[build, install, signArchives, uploadArchives]*.dependsOn shadowJar
install.repositories.mavenInstaller {
pom.whenConfigured {
it.dependencies.clear()
}
}
uploadArchives.repositories.mavenDeployer {
pom.whenConfigured {
it.dependencies.clear()
}
}
task wrapper(type: Wrapper) {
gradleVersion = '2.4'
}