forked from gocd/gocd-analytics-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
245 lines (199 loc) · 7.76 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
/*
* Copyright 2020 ThoughtWorks, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
plugins {
id "com.moowork.node" version "1.3.1"
}
apply from: "https://raw.githubusercontent.com/gocd/gocd-plugin-gradle-task-helpers/master/helper.gradle?_=${(int) (new Date().toInstant().epochSecond / 60)}"
apply plugin: 'java'
node {
version = "14.3.0"
}
group = 'com.thoughtworks.gocd'
gocdPlugin {
id = 'com.thoughtworks.gocd.analytics'
pluginVersion = '3.1.0'
goCdVersion = '20.9.0'
name = 'GoCD Analytics Plugin'
description = 'GoCD Analytics Plugin'
vendorName = 'ThoughtWorks, Inc.'
vendorUrl = 'https://github.com/gocd/gocd-analytics-plugin'
githubRepo {
owner = System.getenv('GITHUB_USER') ?: 'bob'
repo = 'gocd-analytics-plugin'
token = System.getenv('GITHUB_TOKEN') ?: 'bad-token'
}
pluginProject = project
prerelease = !"No".equalsIgnoreCase(System.getenv('PRERELEASE'))
assetsToRelease = [project.tasks.findByName('jar')]
}
version = gocdPlugin.fullVersion(project)
sourceCompatibility = 11
targetCompatibility = 11
// In this section you declare where to find the dependencies of your project
repositories {
mavenCentral()
mavenLocal()
}
sourceSets {
test {
java {
runtimeClasspath += configurations.compileClasspath
}
}
integrationTest {
java.srcDirs = ['src/integration/java']
resources.srcDirs += ['src/testdata']
compileClasspath += main.output
runtimeClasspath += configurations.compileClasspath
}
}
configurations {
integrationTestImplementation.extendsFrom testImplementation
}
dependencies {
compileOnly group: 'cd.go.plugin', name: 'go-plugin-api', version: '21.2.0'
implementation group: 'com.google.code.gson', name: 'gson', version: '2.8.7'
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.12.0'
implementation group: 'commons-io', name: 'commons-io', version: '2.8.0'
implementation group: 'commons-codec', name: 'commons-codec', version: '1.15'
implementation group: 'org.postgresql', name: 'postgresql', version: '42.2.20'
implementation group: 'org.apache.commons', name: 'commons-dbcp2', version: '2.8.0'
implementation group: 'org.mybatis', name: 'mybatis', version: '3.5.7'
implementation group: 'ch.qos.logback', name: 'logback-classic', version: '1.2.3'
implementation group: 'com.google.code.gson', name: 'gson', version: '2.8.7'
implementation group: 'com.google.guava', name: 'guava', version: '23.0'
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.12.0'
implementation group: 'org.flywaydb', name: 'flyway-core', version: '4.2.0'
implementation group: 'org.slf4j', name: 'slf4j-simple', version: '1.7.30'
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: '5.7.2'
testImplementation group: 'org.mockito', name: 'mockito-core', version: '3.10.0'
testImplementation group: 'org.skyscreamer', name: 'jsonassert', version: '1.5.0'
testImplementation group: 'org.jsoup', name: 'jsoup', version: '1.13.1'
testImplementation group: 'com.github.stefanbirkner', name: 'system-rules', version: '1.19.0'
testImplementation group: 'org.skyscreamer', name: 'jsonassert', version: '1.3.0'
testImplementation group: 'cd.go.plugin', name: 'go-plugin-api', version: '21.1.0'
integrationTestImplementation group: 'org.slf4j', name: 'slf4j-simple', version: '1.7.30'
}
clean.doFirst {
delete "${rootDir}/src/main/resources-generated"
delete "${rootDir}/build"
}
task generateWebpackAssets(type: NpmTask) {
inputs.files(fileTree('node_modules'))
inputs.files(fileTree('assets'))
inputs.file('package.json')
inputs.file('package-lock.json')
inputs.file('config/webpack.config.js')
outputs.dir('build/resources/webpack')
dependsOn npm_install
args = ['run', System.getenv('FOR_ENVIRONMENT') == 'development' ? 'webpack-dev' : 'webpack-prod']
}
def props = [
'db.host' : System.getenv('DB_HOST') ? System.getenv('DB_HOST') : 'localhost',
'db.user' : System.getenv('DB_USER') ? System.getenv('DB_USER') : 'postgres',
'db.password': System.getenv('DB_PASSWORD') ? System.getenv('DB_PASSWORD') : 'postgres',
'db.port' : System.getenv('DB_PORT') ? System.getenv('DB_PORT') : '5432',
'db.name' : System.getenv('DB_NAME') ? System.getenv('DB_NAME') : 'gocd_test'
]
project.ext.testSystemProperties = props
task dropDB(type: Exec) {
outputs.upToDateWhen { false }
commandLine = ['dropdb', '--if-exists', '--host', project.testSystemProperties['db.host'], '--port', project.testSystemProperties['db.port'], '--username', project.testSystemProperties['db.user'], project.testSystemProperties['db.name']]
standardOutput = System.out
errorOutput = System.err
doFirst {
logger.lifecycle("Attempting to drop DB '${project.testSystemProperties['db.name']}' on '${project.testSystemProperties['db.host']}'")
}
}
task createDB(type: Exec) {
dependsOn dropDB
outputs.upToDateWhen { false }
commandLine = ['createdb', '--host', project.testSystemProperties['db.host'], '--port', project.testSystemProperties['db.port'], '--username', project.testSystemProperties['db.user'], project.testSystemProperties['db.name']]
standardOutput = System.out
errorOutput = System.err
doFirst {
logger.lifecycle("Attempting to create DB '${project.testSystemProperties['db.name']}' on '${project.testSystemProperties['db.host']}'")
}
}
task prepareDb() {
dependsOn createDB
}
task integrationTest(type: Test, description: 'Runs the DB integration tests.') {
systemProperties(props)
dependsOn prepareDb
testClassesDirs = sourceSets.integrationTest.output
classpath = sourceSets.integrationTest.runtimeClasspath
shouldRunAfter test
}
task packageAssetSourceMaps(type: Zip) {
dependsOn generateWebpackAssets
from "${project.buildDir}/resources/webpack"
destinationDirectory = file("${project.buildDir}/libs")
archiveFileName = "${project.name}-${project.version}-source-maps.zip"
include '**/*.map'
preserveFileTimestamps = false
reproducibleFileOrder = true
}
task packageAssets(type: Zip) {
dependsOn packageAssetSourceMaps
from "${project.buildDir}/resources/webpack"
destinationDirectory = file("${project.buildDir}/resources")
archiveFileName = 'assets.zip'
exclude '**/*.map'
preserveFileTimestamps = false
reproducibleFileOrder = true
}
processResources {
from("src/main/resource-templates") {
filesMatching('plugin.xml') {
expand project.pluginDesc
}
filesMatching('plugin.properties') {
expand project.pluginDesc
}
}
from packageAssets
dependsOn "generateResources" // defined in gocd-plugin-gradle-task-helpers
}
task lint(type: NpmTask) {
inputs.files(fileTree('node_modules'))
inputs.files(fileTree('assets/js'))
inputs.file('package.json')
inputs.file('package-lock.json')
dependsOn npm_install
args = ['run', 'lint']
}
task assetSpecs(type: NpmTask) {
inputs.files(fileTree('node_modules'))
inputs.files(fileTree('spec'))
inputs.file('package.json')
inputs.file('package-lock.json')
inputs.file('config/webpack.config.js')
inputs.file('config/karma.config.js')
dependsOn npm_install
args = ['run', 'specs-ci']
}
test.dependsOn lint
test.dependsOn assetSpecs
check.dependsOn integrationTest
test {
useJUnitPlatform()
}
jar {
from(configurations.compileClasspath) {
into "lib/"
}
}