-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
184 lines (160 loc) · 4.86 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
buildscript {
repositories {
mavenCentral();
}
dependencies {
classpath(group: "info.solidsoft.gradle.pitest",
name: "gradle-pitest-plugin", version: "1.1.9");
}
};
apply(plugin: "java");
apply(plugin: "maven");
apply(plugin: "signing");
apply(plugin: "osgi");
apply(plugin: "idea");
apply(plugin: "eclipse");
apply(plugin: "info.solidsoft.pitest");
group = "com.github.fge";
version = "0.1.0-SNAPSHOT";
description = "An equivalent of Guava's Range for primitive types";
def javaVersion = JavaVersion.VERSION_1_8;
sourceCompatibility = javaVersion;
targetCompatibility = javaVersion; // defaults to sourceCompatibility
/*
* List of dependencies
*/
dependencies {
testCompile(group: "org.testng", name: "testng", version: "[6.9.9,)") {
exclude(group: "org.apache.ant", module: "ant");
exclude(group: "com.google.inject", module: "guice");
exclude(group: "junit", module: "junit");
exclude(group: "org.beanshell", module: "bsh");
exclude(group: "org.yaml", module: "snakeyaml");
};
testCompile(group: "org.mockito", name: "mockito-core", version: "1.10.19");
testCompile(group: "org.assertj", name: "assertj-core", version: "[3.3.0,)");
}
javadoc.options.links("http://docs.oracle.com/javase/8/docs/api/");
javadoc.options.links("http://google.github.io/guava/releases/19.0/api/docs/");
/*
* Repositories to use
*/
repositories {
mavenCentral();
}
/*
* Necessary! Otherwise TestNG will not be used...
*/
test {
useTestNG() {
useDefaultListeners = true;
};
}
/*
* Necessary to generate the source and javadoc jars
*/
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 jar;
archives sourcesJar;
archives javadocJar;
}
task wrapper(type: Wrapper) {
gradleVersion = "2.12";
distributionUrl = "http://services.gradle.org/distributions/gradle-${gradleVersion}-all.zip";
}
/*
* SIGNING
*/
project.ext {
gitrwscm = sprintf("[email protected]:fge/%s", name);
gitroscm = sprintf("https://github.com/fge/%s.git", name);
projectURL = sprintf("https://github.com/fge/%s", name);
sonatypeStaging = "https://oss.sonatype.org/service/local/staging/deploy/maven2/";
sonatypeSnapshots = "https://oss.sonatype.org/content/repositories/snapshots/";
};
task checkSigningRequirements << {
def requiredProperties = [ "sonatypeUsername", "sonatypePassword" ];
def noDice = false;
requiredProperties.each {
if (project.properties[it] == null) {
noDice = true;
System.err.printf("property \"%s\" is not defined!")
}
}
if (noDice)
throw new IllegalStateException("missing required properties for " +
"upload");
}
uploadArchives {
dependsOn(checkSigningRequirements);
repositories {
mavenDeployer {
beforeDeployment {
MavenDeployment deployment -> signing.signPom(deployment);
}
repository(url: "${sonatypeStaging}") {
authentication(
userName: project.properties["sonatypeUsername"],
password: project.properties["sonatypePassword"]
);
}
snapshotRepository(url: "${sonatypeSnapshots}") {
authentication(
userName: project.properties["sonatypeUsername"],
password: project.properties["sonatypePassword"]
);
}
}
}
}
/*
* Configure pom.xml on install, uploadArchives
*/
[
install.repositories.mavenInstaller,
uploadArchives.repositories.mavenDeployer
]*.pom*.whenConfigured { pom ->
pom.project {
name "${project.name}";
packaging "jar";
description "${project.description}";
url "${projectURL}";
scm {
url "${gitrwscm}";
connection "${gitrwscm}";
developerConnection "${gitroscm}";
}
licenses {
license {
name "Lesser General Public License, version 3 or greater";
url "http://www.gnu.org/licenses/lgpl.html";
distribution "repo";
};
license {
name "Apache Software License, version 2.0";
url "http://www.apache.org/licenses/LICENSE-2.0";
distribution "repo";
}
}
developers {
developer {
id "fge";
name "Francis Galiegue";
email "[email protected]";
}
}
}
}
ext.forRelease = !version.endsWith("-SNAPSHOT");
signing {
required { forRelease && gradle.taskGraph.hasTask("uploadArchives") };
sign configurations.archives;
}