forked from detro/browsermob-proxy-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
255 lines (211 loc) · 7.89 KB
/
build.gradle
File metadata and controls
255 lines (211 loc) · 7.89 KB
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
/*
This file is part of the BrowserMob Proxy Client project by Ivan De Marino (http://ivandemarino.me).
Copyright (c) 2014, Ivan De Marino (http://ivandemarino.me)
All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
apply plugin: "java"
apply plugin: "idea"
apply plugin: "eclipse"
apply plugin: "maven"
apply plugin: "signing"
project.buildDir = "gradle/build"
task wrapper(type: Wrapper) {
gradleVersion = "1.11"
jarFile = "gradle/gradle-wrapper.jar"
}
repositories {
mavenCentral()
}
project.ext {
projectLongName = "BrowserMob Proxy Client"
projectArtefactDir = "jars/"
projectCreator = "Ivan De Marino (https://github.com/detro)"
projectGroupId = "com.github.detro"
projectArtifactId = "browsermob-proxy-client"
testngVersion = "6.8.8"
gsonVersion = "2.2.4"
jsonPathVersion = "0.9.1"
seleniumVersion = "2.40.0"
httpclientVersion = "4.3.3"
phantomjsdriverVersion = "1.1.0"
}
dependencies {
compile "com.google.code.gson:gson:$gsonVersion"
compile "com.jayway.jsonpath:json-path:$jsonPathVersion"
compile "org.seleniumhq.selenium:selenium-java:$seleniumVersion"
compile "org.apache.httpcomponents:httpclient:$httpclientVersion"
testCompile "org.testng:testng:$testngVersion"
testCompile "com.github.detro.ghostdriver:phantomjsdriver:$phantomjsdriverVersion"
}
// Forces Java 6 compile source/target
compileJava {
sourceCompatibility = 1.6
targetCompatibility = 1.6
}
tasks.withType(JavaExec) {
classpath = configurations.compile + sourceSets.test.output
args project.hasProperty("args") ? project.args.split("\\s") : []
}
test {
// TestNG specific options
useTestNG()
// Listening to test execution events
beforeTest { descriptor ->
logger.lifecycle("Running " + descriptor)
}
}
// Collect Build Information
task buildInfo {
def cmdOutput = "git describe --tags --match [0-9]*-release".execute().text
ext.buildVersion = cmdOutput.toString().trim().replaceAll("-release", "")
ext.buildVersionMajor = buildVersion.replaceAll("^(\\d+).*\$", "\$1")
ext.buildVersionMinor = buildVersion.replaceAll("^\\d+\\.(\\d+).*\$", "\$1")
ext.buildVersionRev = buildVersion.replaceAll("^\\d+\\.\\d+\\.(\\d+).*\$", "\$1")
ext.buildTimestamp = (int)(new Date().getTime()/1000)
project.version = ext.buildVersion
// println("* Version: " + ext.buildVersion)
// println("** Major: " + ext.buildVersionMajor)
// println("** Minor: " + ext.buildVersionMinor)
// println("** Revision: " + ext.buildVersionRev)
}
// Binary Jar
jar {
dependsOn buildInfo
// destination directory for the jar
destinationDir = file(projectArtefactDir)
// get the version
version = buildInfo.buildVersion
// manifest definition
manifest {
attributes(
"Implementation-Title" : projectLongName,
"Implementation-Version" : buildInfo.buildVersion,
"Gradle-Version" : project.gradle.gradleVersion,
"Created-By" : projectCreator
)
}
}
// Source Jar
task sourcesJar(type: Jar, dependsOn: [classes, buildInfo]) {
classifier = "sources"
from sourceSets.main.allSource
// destination directory for the jar
destinationDir = file(projectArtefactDir)
// get the version
version = buildInfo.buildVersion
// manifest definition
manifest {
attributes(
"Implementation-Title" : projectLongName,
"Implementation-Version" : buildInfo.buildVersion,
"Gradle-Version" : project.gradle.gradleVersion,
"Created-By" : projectCreator
)
}
}
// JavaDoc Jar
task javadocJar(type: Jar, dependsOn: [javadoc, buildInfo]) {
classifier = "javadoc"
from javadoc.destinationDir
// destination directory for the jar
destinationDir = file(projectArtefactDir)
// get the version
version = buildInfo.buildVersion
// manifest definition
manifest {
attributes(
"Implementation-Title" : projectLongName,
"Implementation-Version" : buildInfo.buildVersion,
"Gradle-Version" : project.gradle.gradleVersion,
"Created-By" : projectCreator
)
}
}
// Make all Jars
task jars {
dependsOn jar, sourcesJar, javadocJar
}
// Store JavaDoc
task storeJavadoc(type: Sync, dependsOn: javadoc) {
from project.docsDir
into "docs"
}
// Artifact-making Tasks
artifacts {
archives jar
archives javadocJar
archives sourcesJar
}
// Sign artifacts
signing {
sign configurations.archives
}
// Upload archives to OSS Sonatype
//
// NOTE: requires you to first setup
// 1) ~/.gnupg/* with a PGP key to sign the artifacts
// 2) ~/.gradle/gradle.properties defining
//
// signing.keyId=<YOUR PGP KEY ID>
// signing.password=<PASSWORD TO PGP SECRET RING>
// signing.secretKeyRingFile=<FULLPATH TO PGP SECRET RING>
// ossrhUsername=<OSS Sonatype Username>
// ossrhPassword=<OSS Sonatype Password>
//
uploadArchives {
dependsOn buildInfo
repositories {
mavenDeployer {
beforeDeployment {
MavenDeployment deployment -> signing.signPom(deployment)
}
repository(url: "https://oss.sonatype.org/service/local/staging/deploy/maven2/") {
authentication(userName: ossrhUsername, password: ossrhPassword)
}
pom.project {
name "BrowserMob Proxy Client"
groupId projectGroupId
artifactId projectArtifactId
version buildInfo.buildVersion
packaging "jar"
description "Java client library to install, launch and control a BrowserMob Proxy exclusively via it's REST API"
url "https://github.com/detro/browsermob-proxy-client"
scm {
connection "https://github.com/detro/browsermob-proxy-client.git"
developerConnection "git@github.com:detro/browsermob-proxy-client.git"
url "https://github.com/detro/browsermob-proxy-client"
}
licenses {
license {
name "BSD-2-Clause"
url "https://github.com/detro/jsonconf/blob/master/LICENSE.BSD"
}
}
developers {
developer {
id "detro"
name "Ivan De Marino"
email "detronizator@gmail.com"
}
}
}
}
}
}