forked from Aiven-Open/transforms-for-apache-kafka-connect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
251 lines (199 loc) · 7.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
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
/*
* Copyright 2019 Aiven Oy
*
* 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.
*/
import org.gradle.util.VersionNumber
plugins {
// https://docs.gradle.org/current/userguide/java_library_plugin.html
id 'java-library'
// https://docs.gradle.org/current/userguide/distribution_plugin.html
id 'distribution'
// https://docs.gradle.org/current/userguide/checkstyle_plugin.html
id 'checkstyle'
// https://docs.gradle.org/current/userguide/idea_plugin.html
id 'idea'
// https://ajoberstar.org/grgit/grgit-gradle.html
id 'org.ajoberstar.grgit' version '3.1.1'
}
repositories {
jcenter()
}
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
ext {
kafkaVersion = "2.0.1"
testcontainersVersion = "1.12.1"
}
distributions {
main {
contents {
from jar
from configurations.runtimeClasspath
}
}
}
sourceSets {
integrationTest {
java.srcDir file('src/integration-test/java')
resources.srcDir file('src/integration-test/resources')
compileClasspath += sourceSets.main.output + configurations.testRuntime
runtimeClasspath += output + compileClasspath
}
}
idea {
module {
testSourceDirs += project.sourceSets.integrationTest.java.srcDirs
testSourceDirs += project.sourceSets.integrationTest.resources.srcDirs
}
}
configurations {
integrationTestImplementation.extendsFrom testImplementation
integrationTestRuntime.extendsFrom testRuntime
}
dependencies {
compileOnly "org.apache.kafka:connect-api:$kafkaVersion"
implementation "org.slf4j:slf4j-api:1.7.25"
testImplementation "org.junit.jupiter:junit-jupiter:5.5.1"
testImplementation "org.hamcrest:hamcrest:2.1"
testImplementation "org.apache.kafka:connect-api:$kafkaVersion"
testImplementation "org.testcontainers:junit-jupiter:$testcontainersVersion"
testRuntime "org.apache.logging.log4j:log4j-slf4j-impl:2.12.1"
testRuntime "org.apache.logging.log4j:log4j-api:2.12.1"
testRuntime "org.apache.logging.log4j:log4j-core:2.12.1"
integrationTestImplementation "org.apache.kafka:connect-api:$kafkaVersion"
integrationTestImplementation("org.apache.kafka:connect-runtime:$kafkaVersion") {
exclude group: "org.slf4j", module: "slf4j-log4j12"
}
integrationTestImplementation "org.apache.kafka:connect-json:$kafkaVersion"
integrationTestImplementation "org.apache.kafka:connect-transforms:$kafkaVersion"
integrationTestImplementation "org.testcontainers:junit-jupiter:$testcontainersVersion"
integrationTestImplementation "org.testcontainers:kafka:$testcontainersVersion" // this is not Kafka version
// Make test utils from 'test' available in 'integration-test'
integrationTestImplementation sourceSets.test.output
}
checkstyle {
toolVersion "8.21"
}
task integrationTest(type: Test) {
description = 'Runs the integration tests.'
group = 'verification'
testClassesDirs = sourceSets.integrationTest.output.classesDirs
classpath = sourceSets.integrationTest.runtimeClasspath
dependsOn test, distTar
useJUnitPlatform()
// Run always.
outputs.upToDateWhen { false }
// Pass the distribution file path to the tests.
systemProperty("integration-test.distribution.file.path", distTar.archiveFile.get().asFile.path)
systemProperty("integration-test.classes.path", sourceSets.integrationTest.output.classesDirs.getAsPath())
}
check.dependsOn integrationTest
test {
useJUnitPlatform {
includeEngines 'junit-jupiter'
}
}
processResources {
filesMatching('aiven-kafka-connect-transforms-version.properties') {
expand(version: version)
}
}
jar {
manifest {
attributes(
'Version': "${getArchiveVersion()}"
)
}
}
task releaseCommitsAndTag() {
description 'Make release commits and the tag necessary for release'
group 'GitHub release'
doFirst {
checkReleasePrerequisites()
}
outputs.upToDateWhen {
def tag = releaseTag()
def tagExists = grgit.tag.list().stream().anyMatch { it.getName() == tag }
if (tagExists) {
logger.quiet("Tag $tag exists")
}
return tagExists
}
doLast {
def releaseMessage = "Release version $releaseVersion"
def tag = releaseTag()
setVersionInGradleProperties(releaseVersion)
logger.quiet('Committing')
grgit.add(patterns: ['gradle.properties'])
grgit.commit(message: releaseMessage)
logger.quiet('Tagging with tag {}', tag)
grgit.tag.add(name: tag, annotate: true, message: releaseMessage)
setVersionInGradleProperties(nextSnapshotVersion)
logger.quiet('Committing')
grgit.add(patterns: ['gradle.properties'])
grgit.commit(message: "Bump version to $nextSnapshotVersion")
}
}
def checkReleasePrerequisites() {
if (!project.hasProperty('releaseVersion')) {
throw new GradleException('releaseVersion property is not set')
}
if (!(releaseVersion ==~ /\d+\.\d+\.\d+/)) {
throw new GradleException("Invalid releaseVersion format, must be 'x.y.z'")
}
if (!project.hasProperty('nextSnapshotVersion')) {
throw new GradleException('nextSnapshotVersion property is not set')
}
if (!(nextSnapshotVersion ==~ /\d+\.\d+\.\d+-SNAPSHOT/)) {
throw new GradleException("Invalid nextSnapshotVersion format, must be 'x.y.z-SNAPSHOT'")
}
def releaseVersionParsed = VersionNumber.parse(releaseVersion)
def nextSnapshotVersionParsed = VersionNumber.parse(nextSnapshotVersion)
if (nextSnapshotVersionParsed.getBaseVersion() <= releaseVersionParsed.getBaseVersion()) {
throw new GradleException('Next snapshot version must be higher than release version')
}
if (grgit.branch.current().getName() != 'master') {
throw new GradleException("Repository must be on branch 'master'")
}
}
def setVersionInGradleProperties(ver) {
logger.quiet('Changing version in gradle.properties to {}', ver)
file('gradle.properties.new').withWriter { writer ->
file('gradle.properties').eachLine { line ->
if (line ==~ /version=.*/) {
writer.writeLine("version=${ver}")
} else {
writer.writeLine(line)
}
}
}
file('gradle.properties.new').renameTo('gradle.properties')
}
task releasePush() {
description 'Push commits and release tag'
group 'GitHub release'
dependsOn releaseCommitsAndTag
outputs.upToDateWhen {
return false
}
doLast {
def githubRepo = 'https://github.com/aiven/aiven-kafka-connect-transforms'
grgit.push(tags: false, dryRun: false)
grgit.push(tags: true, dryRun: false)
logger.warn('Please visit {}/releases/tag/{} and add the distribution files and changelog', githubRepo, releaseTag())
}
}
def releaseTag() {
return 'v' + releaseVersion
}