@@ -43,20 +43,17 @@ apply(plugin: "osgi");
43
43
apply(plugin : " idea" );
44
44
apply(plugin : " eclipse" );
45
45
46
- group = " com.github.fge " ;
46
+ group = " com.github.java-json-tools " ;
47
47
version = " 1.10-SNAPSHOT" ;
48
- description = " JSON Patch (RFC 6902) and JSON Merge Patch (RFC 7386) implementation in Java" ;
49
48
sourceCompatibility = " 1.6" ;
50
49
targetCompatibility = " 1.6" ; // defaults to sourceCompatibility
51
50
52
51
/*
53
52
* List of dependencies
54
53
*/
55
54
dependencies {
56
- provided(group : " com.google.code.findbugs" , name : " jsr305" ,
57
- version : " 2.0.1" );
58
- compile(group : " com.github.fge" , name : " jackson-coreutils" ,
59
- version : " 1.6" );
55
+ provided(group : " com.google.code.findbugs" , name : " jsr305" , version : " 2.0.1" );
56
+ compile(group : " com.github.java-json-tools" , name : " jackson-coreutils" , version : " 1.9" );
60
57
testCompile(group : " org.testng" , name : " testng" , version : " 6.8.7" ) {
61
58
exclude(group : " junit" , module : " junit" );
62
59
exclude(group : " org.beanshell" , module : " bsh" );
@@ -121,7 +118,7 @@ artifacts {
121
118
}
122
119
123
120
task wrapper (type : Wrapper ) {
124
- gradleVersion = " 1.11 " ;
121
+ gradleVersion = " 3.5 " ;
125
122
distributionUrl = " http://services.gradle.org/distributions/gradle-${ gradleVersion} -all.zip" ;
126
123
}
127
124
@@ -134,9 +131,9 @@ task pom << {
134
131
*/
135
132
136
133
project. ext {
137
- gitrwscm = sprintf ( " [email protected] :fge/%s" , name) ;
138
- gitroscm = sprintf (" https:// github.com/fge/ %s.git" , name);
139
- projectURL = sprintf (" https://github.com/fge /%s" , name);
134
+ description = " JSON Patch (RFC 6902) and JSON Merge Patch (RFC 7386) implementation in Java " ;
135
+ scmUrl = sprintf (" git@ github.com:java-json-tools/ %s.git" , name)
136
+ projectURL = sprintf (" https://github.com/java-json-tools /%s" , name);
140
137
sonatypeStaging = " https://oss.sonatype.org/service/local/staging/deploy/maven2/" ;
141
138
sonatypeSnapshots = " https://oss.sonatype.org/content/repositories/snapshots/" ;
142
139
};
@@ -190,13 +187,13 @@ uploadArchives {
190
187
pom. project {
191
188
name " ${ project.name} " ;
192
189
packaging " jar" ;
193
- description " ${ project.description} " ;
190
+ description " ${ project.ext. description} " ;
194
191
url " ${ projectURL} " ;
195
192
196
193
scm {
197
- url " ${ gitrwscm } " ;
198
- connection " ${ gitrwscm } " ;
199
- developerConnection " ${ gitroscm } " ;
194
+ url " ${ scmUrl } " ;
195
+ connection " ${ scmUrl } " ;
196
+ developerConnection " scm:git: ${ scmUrl } " ;
200
197
}
201
198
202
199
licenses {
@@ -214,9 +211,9 @@ uploadArchives {
214
211
215
212
developers {
216
213
developer {
217
- id " fge " ;
218
- name " Francis Galiegue " ;
219
- email " fgaliegue @gmail.com" ;
214
+ id " huggsboson " ;
215
+ name " John Huffaker " ;
216
+ email " jhuffaker+java-json-tools @gmail.com" ;
220
217
}
221
218
}
222
219
}
0 commit comments