-
Notifications
You must be signed in to change notification settings - Fork 51
/
build.gradle
250 lines (213 loc) · 7.25 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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
apply plugin: 'groovy'
apply plugin: 'maven-publish'
apply plugin: 'signing'
apply plugin: "com.gradle.plugin-publish"
apply plugin: 'base'
group = 'io.openliberty.tools'
version = '3.9.2-SNAPSHOT'
base {
archivesName='liberty-gradle-plugin'
}
repositories {
mavenLocal()
mavenCentral()
maven {
url 'https://public.dhe.ibm.com/ibmdl/export/pub/software/websphere/wasdev/maven/repository/'
}
maven {
url 'https://oss.sonatype.org/content/repositories/snapshots/'
}
}
buildscript {
repositories {
mavenLocal()
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.gradle.publish:plugin-publish-plugin:0.12.0"
}
}
configurations {
provided
}
compileJava {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
compileTestJava {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
compileGroovy {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
compileTestGroovy {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
def libertyAntVersion = "1.9.16"
def libertyCommonVersion = "1.8.35"
dependencies {
implementation gradleApi()
implementation localGroovy()
implementation ("io.openliberty.tools:liberty-ant-tasks:$libertyAntVersion")
implementation ("io.openliberty.tools:ci.common:$libertyCommonVersion")
implementation group: 'commons-io', name: 'commons-io', version: '2.14.0'
provided group: 'com.ibm.websphere.appserver.spi', name: 'com.ibm.websphere.appserver.spi.kernel.embeddable', version: '1.0.0'
testImplementation 'junit:junit:4.13.1'
testImplementation gradleTestKit()
}
sourceSets.main.compileClasspath += configurations.provided
task sourcesJar(type: Jar) {
archiveClassifier = 'sources'
from sourceSets.main.allSource
}
task groovydocJar(type: Jar) {
archiveClassifier = 'groovydoc'
from groovydoc
}
artifacts {
archives groovydocJar, sourcesJar
}
test {
minHeapSize = "1G"
maxHeapSize = "3G"
jvmArgs '-Xmx3G'
systemProperties System.getProperties()
systemProperty 'runit', 'online'
doFirst {
String runtimeGroup
String runtimeArtifactId
String kernelArtifactId
String libertyRuntime = System.getProperty('runtime')
String runtimeVersion = System.getProperty('runtimeVersion')
if (libertyRuntime == null || libertyRuntime.isEmpty()) {
throw new GradleException('Tests could not be run. Please specify a Liberty runtime. Choose either wlp or ol.')
}
if (runtimeVersion == null || runtimeVersion.isEmpty()) {
throw new GradleException('Tests could not be run. Please specify a Liberty runtime version.')
}
Properties prop = new Properties()
OutputStream output = null
try {
output = new FileOutputStream("${project.getLayout().getBuildDirectory().getAsFile().get()}/gradle.properties")
if (libertyRuntime == "ol") {
runtimeGroup = "io.openliberty"
runtimeArtifactId = "openliberty-runtime"
kernelArtifactId = "openliberty-kernel"
} else {
runtimeGroup = "com.ibm.websphere.appserver.runtime"
runtimeArtifactId = "wlp-javaee7"
kernelArtifactId = "wlp-kernel"
}
// set the properties value
prop.setProperty("lgpVersion", version)
prop.setProperty("runtimeGroup", runtimeGroup)
prop.setProperty("runtimeArtifactId", runtimeArtifactId)
prop.setProperty("kernelArtifactId", kernelArtifactId)
prop.setProperty("runtimeVersion", runtimeVersion)
prop.setProperty("antVersion", libertyAntVersion)
prop.setProperty("commonVersion", libertyCommonVersion)
// save properties to project root folder
prop.store(output, null)
} catch (IOException io) {
io.printStackTrace()
} finally {
if (output != null) {
try {
output.close()
} catch (IOException e) {
e.printStackTrace()
}
}
}
}
if (project.hasProperty('test.exclude')){
for (String pattern: project.property('test.exclude').split(',')) {
exclude pattern
}
}
if (project.hasProperty('test.include')){
for (String pattern: project.property('test.include').split(',')) {
include pattern
}
}
}
pluginBundle {
website = 'https://github.com/OpenLiberty/ci.gradle'
vcsUrl = 'https://github.com/OpenLiberty/ci.gradle'
description = 'Gradle plugin for managing Liberty servers'
tags = ['liberty', 'websphere', 'devops']
plugins {
cigradle {
id = 'io.openliberty.tools.gradle.Liberty'
displayName = 'ci.gradle'
}
}
}
publishing {
publications {
libertyGradle (MavenPublication) {
artifactId = base.archivesName.get()
from components.java
artifact groovydocJar
artifact sourcesJar
pom {
name = 'liberty-gradle-plugin'
packaging = 'jar'
description = 'Liberty Gradle Plug-in.'
url = 'https://wasdev.github.io'
licenses {
license {
name = 'The Apache Software License, Version 2.0'
url = 'https://raw.github.com/OpenLiberty/ci.gradle/main/LICENSE'
}
}
developers {
developer {
id = 'jgawor'
name = 'Jarek Gawor'
email = '[email protected]'
}
}
scm {
connection = 'scm:git:[email protected]:OpenLiberty/ci.gradle.git'
developerConnection = 'scm:git:[email protected]:OpenLiberty/ci.gradle.git'
url = '[email protected]:OpenLiberty/ci.gradle.git'
tag = 'HEAD'
}
}
}
}
}
if (project.hasProperty('ossrhUsername') && project.hasProperty('ossrhPassword')) {
if (!version.endsWith("SNAPSHOT")) {
signing {
sign publishing.publications.libertyGradle
}
} else {
signing.required = false
}
publishing {
repositories {
maven {
name = "Nexus"
def releasesRepoUrl = "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
def snapshotsRepoUrl = "https://oss.sonatype.org/content/repositories/snapshots/"
url = version.endsWith('SNAPSHOT') ? snapshotsRepoUrl : releasesRepoUrl
credentials {
username = ossrhUsername
password = ossrhPassword
}
}
}
}
}
task install {
dependsOn "publishToMavenLocal", ":pluginRepo:publishTestPublicationToTestRepository"
}
publishToMavenLocal.dependsOn jar
groovydoc.enabled = false