Skip to content

Commit e672a85

Browse files
committed
Split monolithic build.gradle into project and settings files.
1 parent 65d8952 commit e672a85

File tree

3 files changed

+92
-47
lines changed

3 files changed

+92
-47
lines changed

build.gradle

+5-47
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,9 @@ apply(plugin: "idea");
3838
apply(plugin: "eclipse");
3939
apply(plugin: "net.ltgt.errorprone");
4040

41+
apply(from: "project.gradle");
42+
4143
group = "com.github.java-json-tools";
42-
version = "2.2.13-SNAPSHOT";
43-
sourceCompatibility = JavaVersion.VERSION_1_7;
44-
targetCompatibility = JavaVersion.VERSION_1_7; // defaults to sourceCompatibility
4544

4645
ext.forRelease = !version.endsWith("-SNAPSHOT");
4746

@@ -75,47 +74,6 @@ dependencies {
7574
errorproneJavac("com.google.errorprone:javac:9+181-r4173-1")
7675
}
7776

78-
/*
79-
* List of dependencies
80-
*/
81-
dependencies {
82-
compile(group: "com.google.guava", name: "guava", version: "28.1-android");
83-
compile(group: "com.github.java-json-tools", name: "json-schema-core", version: "1.2.12");
84-
compile(group: "com.sun.mail", name: "mailapi", version: "1.6.1");
85-
compile(group: "joda-time", name: "joda-time", version: "2.9.7");
86-
compile(group: "com.googlecode.libphonenumber", name: "libphonenumber", version: "8.10.22");
87-
compile(group: "com.google.code.findbugs", name: "jsr305", version: "3.0.2");
88-
compile(group: "net.sf.jopt-simple", name: "jopt-simple", version: "5.0.3");
89-
testCompile(group: "org.testng", name: "testng", version: "6.10") {
90-
exclude(group: "junit", module: "junit");
91-
exclude(group: "org.beanshell", module: "bsh");
92-
exclude(group: "org.yaml", module: "snakeyaml");
93-
};
94-
testCompile(group: "org.mockito", name: "mockito-core", version: "2.4.2");
95-
// FIXME: update to 3.x once we're off of Java 7.
96-
testCompile(group: "org.assertj", name: "assertj-core", version: "2.9.1");
97-
}
98-
99-
javadoc {
100-
options {
101-
def currentJavaVersion = org.gradle.api.JavaVersion.current()
102-
// FIXME: https://github.com/gradle/gradle/issues/11182
103-
if (currentJavaVersion.compareTo(org.gradle.api.JavaVersion.VERSION_1_9) >= 0) {
104-
addStringOption("-release", "7");
105-
}
106-
links("https://docs.oracle.com/javase/7/docs/api/");
107-
links("https://www.javadoc.io/doc/com.google.code.findbugs/jsr305/3.0.1/");
108-
links("https://fasterxml.github.io/jackson-databind/javadoc/2.2.0/");
109-
links("https://fasterxml.github.io/jackson-core/javadoc/2.2.0/");
110-
links("https://www.javadoc.io/doc/com.google.guava/guava/28.1-android/");
111-
links("https://java-json-tools.github.io/btf/");
112-
links("https://java-json-tools.github.io/msg-simple/");
113-
links("https://java-json-tools.github.io/jackson-coreutils/");
114-
links("https://java-json-tools.github.io/uri-template/");
115-
links("https://java-json-tools.github.io/json-schema-core/1.2.x/");
116-
}
117-
}
118-
11977
/*
12078
* Necessary! Otherwise TestNG will not be used...
12179
*
@@ -221,8 +179,8 @@ task pom {
221179

222180
project.ext {
223181
description = "A Java implementation of the JSON Schema specification";
224-
scmUrl = sprintf("[email protected]:box-metadata/%s", name);
225-
projectURL = sprintf("https://github.com/box-metadata/%s", name);
182+
scmUrl = sprintf("[email protected]:java-json-tools/%s.git", name);
183+
projectURL = sprintf("https://github.com/java-json-tools/%s", name);
226184
sonatypeStaging = "https://oss.sonatype.org/service/local/staging/deploy/maven2/";
227185
sonatypeSnapshots = "https://oss.sonatype.org/content/repositories/snapshots/";
228186
};
@@ -283,7 +241,7 @@ uploadArchives {
283241

284242
scm {
285243
url "${scmUrl}";
286-
connection "scm:git:${scmUrl}";
244+
connection "${scmUrl}";
287245
developerConnection "scm:git:${scmUrl}";
288246
}
289247

project.gradle

+67
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
/*
2+
* Copyright (c) 2014, Francis Galiegue ([email protected])
3+
*
4+
* This software is dual-licensed under:
5+
*
6+
* - the Lesser General Public License (LGPL) version 3.0 or, at your option, any
7+
* later version;
8+
* - the Apache Software License (ASL) version 2.0.
9+
*
10+
* The text of this file and of both licenses is available at the root of this
11+
* project or, if you have the jar distribution, in directory META-INF/, under
12+
* the names LGPL-3.0.txt and ASL-2.0.txt respectively.
13+
*
14+
* Direct link to the sources:
15+
*
16+
* - LGPL 3.0: https://www.gnu.org/licenses/lgpl-3.0.txt
17+
* - ASL 2.0: http://www.apache.org/licenses/LICENSE-2.0.txt
18+
*/
19+
20+
/*
21+
* Project-specific settings. Unfortunately we cannot put the name in there!
22+
*/
23+
group = "com.github.java-json-tools";
24+
version = "2.2.13-SNAPSHOT";
25+
sourceCompatibility = JavaVersion.VERSION_1_7;
26+
targetCompatibility = JavaVersion.VERSION_1_7; // defaults to sourceCompatibility
27+
28+
/*
29+
* List of dependencies
30+
*/
31+
dependencies {
32+
compile(group: "com.google.guava", name: "guava", version: "28.1-android");
33+
compile(group: "com.github.java-json-tools", name: "json-schema-core", version: "1.2.12");
34+
compile(group: "com.sun.mail", name: "mailapi", version: "1.6.1");
35+
compile(group: "joda-time", name: "joda-time", version: "2.9.7");
36+
compile(group: "com.googlecode.libphonenumber", name: "libphonenumber", version: "8.10.22");
37+
compile(group: "com.google.code.findbugs", name: "jsr305", version: "3.0.2");
38+
compile(group: "net.sf.jopt-simple", name: "jopt-simple", version: "5.0.3");
39+
testCompile(group: "org.testng", name: "testng", version: "6.10") {
40+
exclude(group: "junit", module: "junit");
41+
exclude(group: "org.beanshell", module: "bsh");
42+
exclude(group: "org.yaml", module: "snakeyaml");
43+
};
44+
testCompile(group: "org.mockito", name: "mockito-core", version: "2.4.2");
45+
// FIXME: update to 3.x once we're off of Java 7.
46+
testCompile(group: "org.assertj", name: "assertj-core", version: "2.9.1");
47+
}
48+
49+
javadoc {
50+
options {
51+
def currentJavaVersion = org.gradle.api.JavaVersion.current()
52+
// FIXME: https://github.com/gradle/gradle/issues/11182
53+
if (currentJavaVersion.compareTo(org.gradle.api.JavaVersion.VERSION_1_9) >= 0) {
54+
addStringOption("-release", "7");
55+
}
56+
links("https://docs.oracle.com/javase/7/docs/api/");
57+
links("https://www.javadoc.io/doc/com.google.code.findbugs/jsr305/3.0.1/");
58+
links("https://fasterxml.github.io/jackson-databind/javadoc/2.2.0/");
59+
links("https://fasterxml.github.io/jackson-core/javadoc/2.2.0/");
60+
links("https://www.javadoc.io/doc/com.google.guava/guava/28.1-android/");
61+
links("https://java-json-tools.github.io/btf/");
62+
links("https://java-json-tools.github.io/msg-simple/");
63+
links("https://java-json-tools.github.io/jackson-coreutils/");
64+
links("https://java-json-tools.github.io/uri-template/");
65+
links("https://java-json-tools.github.io/json-schema-core/1.2.x/");
66+
}
67+
}

settings.gradle

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
/*
2+
* Copyright (c) 2014, Francis Galiegue ([email protected])
3+
*
4+
* This software is dual-licensed under:
5+
*
6+
* - the Lesser General Public License (LGPL) version 3.0 or, at your option, any
7+
* later version;
8+
* - the Apache Software License (ASL) version 2.0.
9+
*
10+
* The text of this file and of both licenses is available at the root of this
11+
* project or, if you have the jar distribution, in directory META-INF/, under
12+
* the names LGPL-3.0.txt and ASL-2.0.txt respectively.
13+
*
14+
* Direct link to the sources:
15+
*
16+
* - LGPL 3.0: https://www.gnu.org/licenses/lgpl-3.0.txt
17+
* - ASL 2.0: http://www.apache.org/licenses/LICENSE-2.0.txt
18+
*/
19+
20+
rootProject.name = "json-schema-validator";

0 commit comments

Comments
 (0)