-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
199 lines (169 loc) · 4.41 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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
description = "Common functionality Java library"
buildscript {
repositories {
mavenCentral()
}
}
apply plugin: "java"
apply plugin: "maven"
apply plugin: "signing"
group = "com.github.akurilov"
version = "2.3.6"
sourceCompatibility = 11
targetCompatibility = 11
ext {
moduleName = "com.github.akurilov.commons"
depVersion = [
"juel" : "2.2.7",
]
}
repositories {
mavenCentral()
}
wrapper {
gradleVersion = "4.10.3"
}
dependencies {
compile(
"de.odysseus.juel:juel-api:${depVersion.juel}",
"de.odysseus.juel:juel-impl:${depVersion.juel}",
)
testCompile("junit:junit:4.12")
}
compileJava {
inputs.property("moduleName", moduleName)
doFirst {
options.compilerArgs = [
'--module-path', classpath.asPath,
]
classpath = files()
}
}
compileTestJava {
inputs.property("moduleName", moduleName)
doFirst {
options.compilerArgs = [
'--module-path', classpath.asPath,
'--add-modules', 'junit',
'--add-reads', "$moduleName=junit",
'--patch-module', "$moduleName=" + files(sourceSets.test.java.srcDirs).asPath,
]
classpath = files()
}
}
jar {
manifest {
attributes (
"Automatic-Module-Name": moduleName,
"Implementation-Version": version,
"Implementation-Title": rootProject.name,
)
}
inputs.property("moduleName", moduleName)
from configurations.compile.collect {
it.isDirectory() ? it : zipTree(it)
}
}
task sourcesJar(type: Jar, dependsOn: classes) {
classifier = "sources"
from sourceSets.main.allSource
}
javadoc {
failOnError false
options.addStringOption("-module-path", classpath.asPath)
}
task javadocJar(type: Jar, dependsOn: javadoc) {
classifier = "javadoc"
from javadoc.destinationDir
}
artifacts {
archives jar
archives sourcesJar
archives javadocJar
}
test {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
inputs.property("moduleName", moduleName)
doFirst {
jvmArgs = [
'--module-path', classpath.asPath,
'--add-modules', 'ALL-MODULE-PATH',
'--add-reads', "$moduleName=junit",
'--patch-module', "$moduleName=" + files(sourceSets.test.java.outputDir).asPath,
]
classpath = files()
}
jvmArgs "-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=5005"
jvmArgs "-XX:MaxDirectMemorySize=1g"
jvmArgs "-XX:+HeapDumpOnOutOfMemoryError"
maxHeapSize "1g"
systemProperty "com.sun.management.jmxremote", "true"
systemProperty "com.sun.management.jmxremote.port", "9010"
systemProperty "com.sun.management.jmxremote.rmi.port", "9010"
systemProperty "com.sun.management.jmxremote.local.only", "false"
systemProperty "com.sun.management.jmxremote.authenticate", "false"
systemProperty "com.sun.management.jmxremote.ssl", "false"
testLogging {
events "passed", "skipped", "failed", "standardOut"
showExceptions = true
showStandardStreams = true
}
}
signing {
required {
gradle.taskGraph.hasTask("uploadArchives")
}
sign configurations.archives
}
// see http://central.sonatype.org/pages/gradle.html for details
uploadArchives {
def ossrhUsername = project.hasProperty("ossrhUsername") ?
project.property("ossrhUsername") : null
def ossrhPassword = project.hasProperty("ossrhPassword") ?
project.property("ossrhPassword") : null
repositories {
mavenDeployer {
beforeDeployment {
MavenDeployment deployment -> signing.signPom(deployment)
}
repository(url: "https://oss.sonatype.org/service/local/staging/deploy/maven2/") {
authentication(userName: ossrhUsername, password: ossrhPassword)
}
snapshotRepository(url: "https://oss.sonatype.org/content/repositories/snapshots/") {
authentication(userName: ossrhUsername, password: ossrhPassword)
}
pom {
name = rootProject.name
groupId = rootProject.group
project {
description = rootProject.description
url "https://github.com/akurilov/java-commons"
scm {
connection "https://github.com/akurilov/java-commons.git"
developerConnection "https://github.com/akurilov/java-commons.git"
url "https://github.com/akurilov/java-commons.git"
}
licenses {
license {
name "Apache License 2.0"
url "https://github.com/akurilov/java-commons/blob/master/LICENSE"
}
}
developers {
developer {
id "akurilov"
name "Andrey Kurilov"
email "[email protected]"
}
}
}
}
}
}
}
task printVersion {
group = "versioning"
description = "Prints version."
doLast { logger.quiet "Java-commons version: $version" }
}