-
Notifications
You must be signed in to change notification settings - Fork 5
/
build.gradle
217 lines (196 loc) · 6.71 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
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
apply plugin: 'java'
apply plugin: 'maven'
apply plugin: 'signing'
sourceCompatibility = java_target_version
targetCompatibility = java_target_version
repositories {
mavenLocal()
if (project.hasProperty('additional_repositories')){
additional_repositories.split(';').each{ repo ->
maven { url repo }
}
}
mavenCentral()
}
configurations {
compile {
description = 'Includes all dependencies required for compile and runtime'
}
testCompile {
description = 'Includes all dependencies required for testing'
}
}
// import dependencies
apply from: 'dependencies.gradle'
sourceSets{
main {
java.srcDir 'src'
resources {
srcDir 'src'
exclude '**/*.java'
}
}
test {
java.srcDir 'test'
resources {
srcDir 'test'
exclude '**/*.java'
}
}
}
jar {
manifest {
attributes 'Implementation-Title': product_name,
'Implementation-Version': version
}
exclude '**/.gitignore'
}
javadoc {
project.configure(options) {
memberLevel = org.gradle.external.javadoc.JavadocMemberLevel.PROTECTED
charSet = "UTF-8"
docTitle = "$product_name"
windowTitle = "$product_name"
header = "<b>$product_name</b>"
author = "true"
use = "true"
source= java_target_version
}
}
task javadocJar(type: Jar, dependsOn: javadoc) {
classifier = 'javadoc'
from "${buildDir}/docs/javadoc"
}
task sourcesJar(type: Jar) {
from sourceSets.main.allSource
classifier = 'sources'
}
test {
useJUnit()
include 'com/alkacon/simapi/AllTests*'
// important: exclude all anonymous classes
exclude '**/*$*.class'
scanForTestClasses false
testClassesDirs = sourceSets.test.output.classesDirs
testLogging.showStandardStreams = true
ignoreFailures true
}
artifacts {
archives jar
tasks.each{ task ->
if (task.name.endsWith("Jar")){
archives task
}
}
}
signing {
required {gradle.taskGraph.hasTask("uploadArchives") }
sign configurations.archives
}
if (project.hasProperty('publish_repository')){
uploadArchives {
repositories {
mavenDeployer {
beforeDeployment { MavenDeployment deployment -> signing.signPom(deployment) }
repository(url: publish_repository) {
authentication(userName: publish_user, password: publish_password)
}
artifacts.each{ arch ->
def filterName=arch.name
filterName=filterName.substring(0, filterName.lastIndexOf("-"))
addFilter(filterName){artifact, file ->
artifact.name.startsWith(filterName)
}
pom(filterName) {
// we do not want test dependencies in the POM
whenConfigured { p ->
p.dependencies = p.dependencies.findAll { dep -> dep.scope != "test" };
}
project {
name product_name
packaging 'jar'
description product_description
groupId group_id
url "http://www.opencms.org"
scm {
url "scm:[email protected]:alkacon/${artifact_name}.git"
connection "scm:[email protected]:alkacon/${artifact_name}.git"
developerConnection "scm:[email protected]:alkacon/${artifact_name}.git"
}
licenses {
license {
name 'GNU Lesser General Public License'
url 'http://www.gnu.org/licenses/lgpl.html'
distribution 'repo'
}
}
organization {
name 'Alkacon Software'
url 'http://www.alkacon.com'
}
developers {
developer {
name 'Alkacon Software'
url 'http://www.alkacon.com'
}
}
}
}
}
}
}
}
}
install {
repositories {
mavenInstaller {
artifacts.each{ arch ->
def filterName=arch.name
filterName=filterName.substring(0, filterName.lastIndexOf("-"))
addFilter(filterName){artifact, file ->
artifact.name.startsWith(filterName)
}
pom(filterName) {
// we do not want test dependencies in the POM
whenConfigured { p ->
p.dependencies = p.dependencies.findAll { dep -> dep.scope != "test" };
}
project {
name product_name
packaging 'jar'
description product_description
groupId group_id
url "http://www.opencms.org"
scm {
url "scm:[email protected]:alkacon/${artifact_name}.git"
connection "scm:[email protected]:alkacon/${artifact_name}.git"
developerConnection "scm:[email protected]:alkacon/${artifact_name}.git"
}
licenses {
license {
name 'GNU Lesser General Public License'
url 'http://www.gnu.org/licenses/lgpl.html'
distribution 'repo'
}
}
organization {
name 'Alkacon Software'
url 'http://www.alkacon.com'
}
developers {
developer {
name 'Alkacon Software'
url 'http://www.alkacon.com'
}
}
}
}
}
}
}
}
tasks.withType(Javadoc) {
if (JavaVersion.current().isJava8Compatible()) {
options.addStringOption("Xdoclint:none", "-quiet")
}
}