This repository has been archived by the owner on Apr 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.gradle
198 lines (173 loc) · 6.03 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
/*
* Copyright 2014 GoDataDriven B.V.
*
* 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.
*/
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'findbugs'
apply plugin: 'pmd'
apply plugin: 'jacoco'
apply plugin: 'maven'
if (properties['signing.keyId']) {
apply plugin: 'signing'
}
defaultTasks 'clean', 'build'
group = 'io.divolte'
version = '0.2'
sourceCompatibility = 1.7
compileJava.options.encoding = 'UTF-8'
configure(install.repositories.mavenInstaller) {
pom.project {
name 'Divolte Kafka Consumer'
description 'Helper for consuming Divolte events from Kafka.'
url 'https://github.com/divolte/divolte-kafka-consumer'
inceptionYear '2014'
organization {
name 'GoDataDriven B.V.'
url 'http://godatadriven.com'
}
scm {
connection 'scm:git:git@github.com:divolte/divolte-kafka-consumer.git'
developerConnection 'scm:git:git@github.com:divolte/divolte-kafka-consumer.git'
url 'git@github.com:divolte/divolte-kafka-consumer.git'
}
licenses {
license {
name 'Apache License, Version 2.0'
url 'http://www.apache.org/licenses/LICENSE-2.0.html'
distribution 'repo'
}
}
developers {
developer {
name 'Friso van Vollenhoven'
email 'frisovanvollenhoven@godatadriven.com'
organization 'GoDataDriven B.V.'
organizationUrl 'http://godatadriven.com/'
}
developer {
name 'Andrew Snare'
email 'andrewsnare@godatadriven.com'
organization 'GoDataDriven B.V.'
organizationUrl 'http://godatadriven.com/'
}
developer {
name 'Kris Geusebroek'
email 'krisgeusebroek@godatadriven.com'
organization 'GoDataDriven B.V.'
organizationUrl 'http://godatadriven.com/'
}
}
}
}
repositories {
mavenLocal()
mavenCentral()
}
task sourcesJar(type: Jar, dependsOn:classes) {
classifier = 'sources'
from sourceSets.main.allSource
}
task javadocJar(type: Jar, dependsOn:javadoc) {
classifier = 'javadoc'
from javadoc.destinationDir
}
artifacts {
archives sourcesJar
archives javadocJar
}
if (rootProject.properties['signing.keyId']) {
signing {
sign configurations.archives
}
}
gradle.taskGraph.whenReady { taskGraph ->
if (!taskGraph.hasTask(':release')) {
version = version + '-SNAPSHOT'
}
}
tasks.withType(JavaCompile) {
options.compilerArgs << "-Xlint:deprecation"
}
dependencies {
compile group: 'com.google.guava', name: 'guava', version: '17.0'
compile group: 'org.apache.avro', name: 'avro', version: '1.7.7'
compile group: 'org.apache.kafka', name:'kafka_2.10', version: '0.8.1.1'
// compile group: 'com.google.code.findbugs', name: 'jsr305', version: '3.0.0'
// We use the SLF4J API. At runtime, this is LogBack.
// (We also force any dependencies that use Log4J to go via SLF4J.)
compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.7'
runtime group: 'ch.qos.logback', name: 'logback-classic', version: '1.1.2'
runtime group: 'org.slf4j', name: 'log4j-over-slf4j', version: '1.7.7'
testCompile group: 'junit', name: 'junit', version: '4.11'
testCompile group: 'org.hamcrest', name: 'hamcrest-all', version: '1.3'
testCompile group: 'org.mockito', name: 'mockito-all', version: '1.9.5'
}
configurations {
// Exclude all traces of Log4J via transitive dependencies.
// (At runtime these are redirected over SLF4J.)
all*.exclude group: 'org.slf4j', module: 'slf4j-log4j12'
all*.exclude group: 'log4j', module: 'log4j'
}
findbugs {
toolVersion = "3.0.0"
}
pmd {
toolVersion = "5.1.3"
}
jacoco {
toolVersion = "0.7.1.201405082137"
}
task wrapper(type: Wrapper) {
gradleVersion = '2.1'
}
task release {
description "Release to OSSRH. (Remember to tag and change the version afterwards.)"
group "upload"
}
if (properties['ossrh.username'] && properties['ossrh.password'] && properties['signing.keyId']) {
uploadArchives {
repositories {
mavenDeployer {
beforeDeployment {
MavenDeployment deployment -> signing.signPom(deployment)
}
repository(url: "https://oss.sonatype.org/service/local/staging/deploy/maven2/") {
authentication(userName: project.properties['ossrh.username'],
password: project.properties['ossrh.password'])
}
snapshotRepository(url: "https://oss.sonatype.org/content/repositories/snapshots/") {
authentication(userName: project.properties['ossrh.username'],
password: project.properties['ossrh.password'])
}
pom = install.repositories.mavenInstaller.pom
}
}
}
release.dependsOn clean
release.dependsOn check
release.dependsOn uploadArchives
check.mustRunAfter clean
uploadArchives.mustRunAfter check
release << {
println "Browse to https://oss.sonatype.org/ to finish releasing to OSSRH."
}
} else {
uploadArchives << {
println "Upload to OSSRH skipped; the 'ossrh.username' and 'ossrh.password' properties are not set."
}
release << {
println "Release not possible; OSSRH and GPG credentials need to be configured."
}
}