@@ -38,10 +38,9 @@ apply(plugin: "idea");
38
38
apply(plugin : " eclipse" );
39
39
apply(plugin : " net.ltgt.errorprone" );
40
40
41
+ apply(from : " project.gradle" );
42
+
41
43
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
45
44
46
45
ext. forRelease = ! version. endsWith(" -SNAPSHOT" );
47
46
@@ -75,47 +74,6 @@ dependencies {
75
74
errorproneJavac(" com.google.errorprone:javac:9+181-r4173-1" )
76
75
}
77
76
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
-
119
77
/*
120
78
* Necessary! Otherwise TestNG will not be used...
121
79
*
@@ -221,8 +179,8 @@ task pom {
221
179
222
180
project. ext {
223
181
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);
226
184
sonatypeStaging = " https://oss.sonatype.org/service/local/staging/deploy/maven2/" ;
227
185
sonatypeSnapshots = " https://oss.sonatype.org/content/repositories/snapshots/" ;
228
186
};
@@ -283,7 +241,7 @@ uploadArchives {
283
241
284
242
scm {
285
243
url " ${ scmUrl} " ;
286
- connection " scm:git: ${ scmUrl} " ;
244
+ connection " ${ scmUrl} " ;
287
245
developerConnection " scm:git:${ scmUrl} " ;
288
246
}
289
247
0 commit comments