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 0
/
build.gradle
183 lines (159 loc) · 5.19 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
/*
* Copyright 2015 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.1'
sourceCompatibility = 1.8
compileJava.options.encoding = 'UTF-8'
configure(install.repositories.mavenInstaller) {
pom.project {
name 'Java8 User Agent Parser'
description 'User Agent parser based on https://github.com/ua-parser/uap-core.'
url 'https://github.com/divolte/uap-java8'
inceptionYear '2015'
organization {
name 'GoDataDriven B.V.'
url 'http://godatadriven.com'
}
scm {
connection 'scm:git:git@github.com:divolte/uap-java8.git'
developerConnection 'scm:git:git@github.com:divolte/uap-java8.git'
url 'git@github.com:divolte/uap-java8.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: 'org.yaml', name: 'snakeyaml', version: '1.14'
compile group: 'com.google.code.findbugs', name: 'jsr305', version: '3.0.0'
testCompile group: 'junit', name: 'junit', version: '4.11'
testCompile group: 'org.hamcrest', name: 'hamcrest-all', version: '1.3'
}
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."
}
}