-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.gradle
164 lines (142 loc) · 4.99 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
subprojects {
apply(plugin: "java");
apply(plugin: "maven");
apply(plugin: "signing");
apply(plugin: "osgi");
apply(plugin: "idea");
apply(plugin: "eclipse");
group = "com.github.javachat";
version = "0.3.0-SNAPSHOT";
def javaVersion = JavaVersion.VERSION_1_8;
sourceCompatibility = javaVersion;
targetCompatibility = javaVersion; // defaults to sourceCompatibility
repositories {
mavenCentral();
}
dependencies {
testCompile(group: "org.testng", name: "testng", version: "6.9.10") {
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/");
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;
}
/*
* 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!", it);
}
}
if (noDice)
throw new IllegalStateException("missing required properties for " +
"upload");
}
task enforceVersion << {
def foundVersion = JavaVersion.current();
if (foundVersion != javaVersion)
throw new IllegalStateException("Wrong java version; required is " +
javaVersion + ", but found " + foundVersion);
}
uploadArchives {
dependsOn(enforceVersion, 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}";
description "${project.description}";
packaging "jar";
url "${projectURL}";
scm {
url "${gitrwscm}";
connection "${gitrwscm}";
developerConnection "${gitroscm}";
}
licenses {
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;
}
}
task wrapper(type: Wrapper) {
gradleVersion = "2.12";
distributionUrl = "http://services.gradle.org/distributions/gradle-${gradleVersion}-all.zip";
}