diff --git a/build.gradle b/build.gradle index e6a6350..b3c5bfb 100755 --- a/build.gradle +++ b/build.gradle @@ -10,7 +10,7 @@ apply plugin: 'java' apply plugin: 'application' apply from: 'gradle/javafx.plugin' -version = '0.5.0-SNAPSHOT' +version = '0.5.1-SNAPSHOT' group = 'org.shirolang' gradle.projectsEvaluated { @@ -156,7 +156,7 @@ signArchives.onlyIf { project.hasProperty('signing.keyId') && project.hasProperty('signing.password') && project.hasProperty('signing.secretKeyRingFile') } -def doUploadArchives = false //project.hasProperty('sonatypeUsername') && project.hasProperty('sonatypePassword') +def doUploadArchives = project.hasProperty('sonatypeUsername') && project.hasProperty('sonatypePassword') if(doUploadArchives) { uploadArchives { diff --git a/gradle.properties.example b/gradle.properties.example new file mode 100644 index 0000000..ffe78e8 --- /dev/null +++ b/gradle.properties.example @@ -0,0 +1,6 @@ +sonatypeUsername = +sonatypePassword = + +signing.keyId = +signing.password = +signing.secretKeyRingFile = /home//.gnupg/secring.gp \ No newline at end of file