-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
338 lines (277 loc) · 12.3 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
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
import com.bmuschko.gradle.docker.tasks.image.Dockerfile
buildscript {
ext {
springBootVersion = '2.7.12'
dockerJavaVersion = '3.2.13'
junitPlatformCustomTestTags = 'docker, battery'
javaTargetCompatibility = 8
javaSourceCompatibility = 8
}
ext['logback.version'] = '1.2.13'
apply from: "https://raw.githubusercontent.com/blackducksoftware/integration-resources/master/gradle_common/buildscript-repositories.gradle", to: buildscript
apply from: 'https://raw.githubusercontent.com/blackducksoftware/integration-resources/master/gradle_common/buildscript-cgp-version.gradle'
dependencies { classpath "com.blackduck.integration:common-gradle-plugin:${managedCgpVersion}" }
// TODO don't seem to need this repositories
repositories {
gradlePluginPortal()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
classpath 'com.bmuschko:gradle-docker-plugin:6.7.0'
classpath 'org.freemarker:freemarker:2.3.31'
}
}
plugins {
id 'org.springframework.boot' version "${springBootVersion}" apply false
id "com.dorongold.task-tree" version "2.1.0"
}
project.ext.inspectorImageFamily = "blackduck-imageinspector"
project.ext.inspectorImageVersion = "6.0.1"
version = '11.1.0-SNAPSHOT'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'
apply plugin: 'com.bmuschko.docker-remote-api'
apply plugin: 'com.blackduck.integration.solution'
final def externalRepoHost = "https://repo.blackduck.com"
final def internalRepoHost = System.getenv('SNPS_INTERNAL_ARTIFACTORY')
repositories {
println "Checking if environment property SNPS_INTERNAL_ARTIFACTORY is configured: ${internalRepoHost}"
maven {
url = uri("${internalRepoHost}/artifactory/bds-integrations-release")
}
maven {
url = uri("${internalRepoHost}/artifactory/bds-integrations-snapshot")
}
maven {
url = uri("${internalRepoHost}/artifactory/bds-integration-placeholder-release")
}
maven {
url = uri("${externalRepoHost}/artifactory/bds-integration-placeholder-release")
}
maven {
url "${externalRepoHost}/bds-bdio-release"
}
}
apply from: 'airgap.gradle'
springBoot { mainClass = 'com.blackduck.integration.blackduck.dockerinspector.DockerInspector' }
// By default, starting in 2.5.0, spring boot creates an extra "plain" .jar that we don't want
jar {
enabled = false
}
def createArtifactName() {
return "${buildDir}/libs/${project.name}-${version}.jar"
}
repositories {
maven { url "https://repo.blackduck.com/bds-bdio-release" }
}
// TODO if we s/compile/implementation/, can this go?:
configurations {
integrationTestCompile.extendsFrom testCompile
integrationTestRuntime.extendsFrom testRuntime
}
task writeVersionToPropertiesFile() {
doLast {
println '\tChecking version properties'
File versionPropertiesHashFile = new File('src/main/resources/version.hashcode')
String existingHash = versionPropertiesHashFile.text
Properties versionProperties = new Properties()
versionProperties.setProperty('program.version', version)
versionProperties.setProperty('inspector.image.family', project.ext.inspectorImageFamily)
versionProperties.setProperty('inspector.image.version', project.ext.inspectorImageVersion)
int versionPropertiesHashCode = versionProperties.hashCode()
if (!Integer.toString(versionPropertiesHashCode).equals(existingHash)) {
println '\tGenerating version properties file'
File versionPropertiesFile = new File('src/main/resources/version.properties')
versionPropertiesFile.delete()
versionPropertiesFile.createNewFile()
versionProperties.store(versionPropertiesFile.newWriter(), null)
versionPropertiesHashFile.delete()
versionPropertiesHashFile.createNewFile()
versionPropertiesHashFile.text = versionPropertiesHashCode
}
}
}
task produceFinalZip(type: Zip, dependsOn: [build, writeVersionToPropertiesFile]) {
from("${buildDir}/libs") { include '*.jar' }
from("${projectDir}/src/main/resources") {
include 'application.properties'
into 'config'
}
}
def generatedDocPath = "docs/generated"
task docsClean(type: Delete) {
delete "${generatedDocPath}"
}
task docsPrep() {
doLast {
project.file("${generatedDocPath}").mkdirs()
}
}
task docs(type: Exec, dependsOn: [docsPrep, bootJar]) {
ignoreExitValue true
commandLine "java", "-jar", "${createArtifactName()}", "--help", "--help.output.path=${generatedDocPath}"
}
task servedocs() {
dependsOn docs
doLast {
exec {
commandLine 'mkdocs', 'serve'
workingDir "docs"
}
}
}
task signJar() {
dependsOn build
finalizedBy 'verifyJar'
doLast {
exec {
commandLine 'signing-client', '--username', "${System.getenv('SIGNING_USER')}", '--password', "env:SIGNING_TOKEN", '--server', "${System.getenv('SIGNING_SERVER')}", '--port', "${System.getenv('SIGNING_SERVER_PORT')}", '--signer', 'jarsigner', '--output', "${createArtifactName()}", "${createArtifactName()}"
}
}
}
task verifyJar() {
dependsOn signJar
doLast {
exec {
// returns 0 if successfully verified as signed; non-0 if not
commandLine 'jarsigner', '-verify', '-strict', "${createArtifactName()}"
}
}
}
artifactoryPublish.dependsOn signJar
task removeTestImage(type: Exec) {
ignoreExitValue true
commandLine "docker", "rmi", "blackducksoftware/centos_minus_vim_plus_bacula:1.0"
}
task removeTestBaseImage(type: Exec) {
ignoreExitValue true
commandLine "docker", "rmi", "centos@sha256:773bb32cbd1d171da7df52de8d7b731320748707b821bdbabb885d6eda894e87"
}
task createTestImagesDir() {
doLast {
File imagesDir = new File("${buildDir}", "images")
File testImagesDir = new File("${imagesDir}", "test")
testImagesDir.mkdirs()
}
}
task createTestDockerfile(type: Dockerfile, dependsOn: createTestImagesDir) {
destFile = project.file("${buildDir}/images/test/centos_minus_vim_plus_bacula/Dockerfile")
println "destFile: ${destFile}"
from 'centos@sha256:773bb32cbd1d171da7df52de8d7b731320748707b821bdbabb885d6eda894e87'
environmentVariable('LANG', 'en_US.UTF-8')
runCommand 'rpm -e vim-minimal && \
yum install -y bacula-director-5.2.13-23.1.el7 bacula-storage-5.2.13-23.1.el7 bacula-client-5.2.13-23.1.el7 \
bacula-console-5.2.13-23.1.el7'
}
task buildTestDockerImage(type: Exec, dependsOn: [removeTestBaseImage, removeTestImage, createTestImagesDir]) {
commandLine "docker", "build", "--no-cache", "--tag", "blackducksoftware/centos_minus_vim_plus_bacula:1.0", \
"src/test/resources"
}
task buildTestDockerTarfile(type: Exec, dependsOn: [createTestImagesDir, buildTestDockerImage]) {
outputs.files file("${buildDir}/images/test/centos_minus_vim_plus_bacula.tar")
commandLine "docker", "save", "-o", "${buildDir}/images/test/centos_minus_vim_plus_bacula.tar", \
"blackducksoftware/centos_minus_vim_plus_bacula:1.0"
}
task createWhTestDockerfile(type: Dockerfile, dependsOn: createTestImagesDir) {
destFile = project.file("${buildDir}/images/test/whiteouttest/Dockerfile")
println "destFile: ${destFile}"
from 'ubuntu@sha256:3097ac92b852f878f802c22a38f97b097b4084dbef82893ba453ba0297d76a6a'
environmentVariable('LANG', 'en_US.UTF-8')
runCommand 'apt-get update && apt-get -y install curl && apt-get -y remove curl && apt-get -y clean'
}
task removeWhImage(type: Exec) {
ignoreExitValue true
commandLine "docker", "rmi", "blackducksoftware/whiteouttest:1.0"
}
task removeWhBaseImage(type: Exec) {
ignoreExitValue true
commandLine "docker", "rmi", "ubuntu@sha256:3097ac92b852f878f802c22a38f97b097b4084dbef82893ba453ba0297d76a6a"
}
task buildWhTestDockerImage(type: Exec, dependsOn: [removeWhBaseImage, removeWhImage, createTestImagesDir, createWhTestDockerfile]) {
commandLine "docker", "build", "--no-cache", "--tag", "blackducksoftware/whiteouttest:1.0", "${buildDir}/images/test/whiteouttest"
}
task buildWhTestDockerTarfile(type: Exec, dependsOn: buildWhTestDockerImage) {
commandLine "docker", "save", "-o", "${buildDir}/images/test/whiteouttest.tar", "blackducksoftware/whiteouttest:1.0"
}
task pullAlpineLatest(type: Exec) {
commandLine "docker", "pull", "alpine:latest"
}
task pullAlpine36(type: Exec) {
commandLine "docker", "pull", "alpine@sha256:de5701d6a3a36dc6a5db260d21be0422fd30dd2d158c1e048b34263e73205cb6"
}
task pullUbuntu1404(type: Exec) {
commandLine "docker", "pull", "ubuntu@sha256:71529e96591eb36a4100cd0cc5353ff1a2f4ee7a85011e3d3dd07cb5eb524a3e"
}
task buildAlpineTestDockerTarfile(type: Exec, dependsOn: [pullAlpineLatest, createTestImagesDir]) {
commandLine "docker", "save", "-o", "${buildDir}/images/test/alpine.tar", "alpine:latest"
}
task buildUbuntuTestDockerTarfile(type: Exec, dependsOn: [pullUbuntu1404, createTestImagesDir]) {
commandLine "docker", "save", "-o", "${buildDir}/images/test/ubuntu1404.tar", "ubuntu@sha256:71529e96591eb36a4100cd0cc5353ff1a2f4ee7a85011e3d3dd07cb5eb524a3e"
}
task buildAlpine36TestDockerTarfile(type: Exec, dependsOn: [pullAlpine36, createTestImagesDir]) {
commandLine "docker", "save", "-o", "${buildDir}/images/test/alpine36.tar", "alpine@sha256:de5701d6a3a36dc6a5db260d21be0422fd30dd2d158c1e048b34263e73205cb6"
}
task buildAggTestDockerTarfile(type: Exec, dependsOn: [createTestImagesDir, buildTestDockerImage, buildWhTestDockerImage]) {
commandLine "docker", "save", "-o", "${buildDir}/images/test/aggregated.tar", "blackducksoftware/centos_minus_vim_plus_bacula:1.0", \
"blackducksoftware/whiteouttest:1.0"
}
build.dependsOn docs
clean.dependsOn docsClean
compileJava.dependsOn writeVersionToPropertiesFile
task checkVersion() {
doFirst {
println "Checking to make sure this version (${version}) is a release version"
if ((version.contains("-SNAPSHOT")) || (version.contains("-RC"))) {
println "Throwing exception to terminate this build"
throw new InvalidUserDataException("This version (${version}) looks like a snapshot or release candidate; failing build")
}
}
}
task buildTestTarfiles(dependsOn: [buildTestDockerTarfile, buildWhTestDockerTarfile, buildAggTestDockerTarfile, \
buildAlpineTestDockerTarfile, buildAlpine36TestDockerTarfile, buildUbuntuTestDockerTarfile]) {}
task testPrep(dependsOn: [docs, buildTestTarfiles]) {
doLast {
project.file('test/containerShared/target').mkdirs()
project.file('test/containerShared/output').mkdirs()
}
}
task cleanExtras(type: Delete, dependsOn: docsClean) {
delete 'test', 'out'
}
clean.dependsOn cleanExtras
test.dependsOn testPrep
publishing {
publications {
mavenJava(MavenPublication) {
artifact("${createArtifactName()}")
}
}
}
artifactory {
publish {
defaults { publications('mavenJava') }
}
}
dependencies {
implementation "com.blackduck.integration:integration-rest:11.0.0"
implementation 'com.blackduck.integration:hub-imageinspector-lib:15.0.1'
implementation 'ch.qos.logback:logback-classic:1.2.13'
constraints {
implementation('ch.qos.logback:logback-core:1.2.13') {
because 'previous version has a vulnerability'
}
}
implementation("org.springframework:spring-core:5.3.34")
implementation "org.springframework:spring-aop:5.3.34"
implementation "org.springframework:spring-beans:5.3.34"
implementation "org.springframework:spring-expression:5.3.34"
implementation("org.springframework:spring-context:5.3.34")
implementation "com.github.docker-java:docker-java-core:${dockerJavaVersion}"
implementation "com.github.docker-java:docker-java-transport-httpclient5:${dockerJavaVersion}"
implementation 'org.springframework.boot:spring-boot-starter'
implementation 'org.yaml:snakeyaml:2.0'
implementation group: 'org.freemarker', name: 'freemarker', version: '2.3.31'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'io.fabric8:kubernetes-client:3.1.8'
testImplementation 'io.fabric8:kubernetes-model:2.0.8'
}