@@ -9,7 +9,6 @@ plugins {
99apply plugin :' java'
1010apply plugin :' maven'
1111apply plugin :' maven-publish'
12- apply plugin :' signing'
1312
1413repositories {
1514 jcenter()
@@ -35,20 +34,20 @@ uploadArchives {
3534 mavenDeployer {
3635 beforeDeployment { MavenDeployment deployment -> signing. signPom(deployment) }
3736
38- // repository(url: "file://${buildDir}/repo") {}
37+ repository(url : " file://${ buildDir} /repo" ) {}
3938
40- repository(url : " https://oss.sonatype.org/service/local/staging/deploy/maven2" ) {
41- authentication(userName : ' ' , password : ' ' )
42- }
39+ // repository(url: "https://oss.sonatype.org/service/local/staging/deploy/maven2") {
40+ // authentication(userName: '', password: '')
41+ // }
4342
4443 // snapshotRepository(url: "https://oss.sonatype.org/content/repositories/snapshots/") {
4544 // authentication(userName: ossrhUsername, password: ossrhPassword)
4645 // }
4746
4847 pom. project {
4948 groupId = ' org.arkecosystem'
50- version = ' 0.1.1 '
51- artifactId = ' arkecosystem- client'
49+ version = ' 0.1.2 '
50+ artifactId = ' client'
5251
5352 name = ' java-client'
5453 description = ' A simple Java API client for the ARK Blockchain.'
@@ -80,14 +79,16 @@ uploadArchives {
8079 scm {
8180 connection = ' scm:git:git://github.com/ArkEcosystem/java-client.git'
8281 developerConnection = ' scm:git:ssh://github.com:ArkEcosystem/java-client.git'
83- url = ' https://github.com/ArkEcosystem/java-client/tree/0.1.1 '
82+ url = ' https://github.com/ArkEcosystem/java-client/tree/0.1.2 '
8483 }
8584 }
8685 }
8786 }
8887}
8988
9089if (project. hasProperty(" signing.keyId" )) {
90+ apply plugin :' signing'
91+
9192 signing {
9293 sign configurations. archives
9394 }
0 commit comments