You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by cm...@apache.org on 2016/04/23 21:35:51 UTC

svn commit: r1740664 - in /openoffice/devtools/guno-extension/trunk: ./ build.gradle gradle.properties

Author: cmarcum
Date: Sat Apr 23 19:35:51 2016
New Revision: 1740664

URL: http://svn.apache.org/viewvc?rev=1740664&view=rev
Log:
#i126770# merged changes from release 0.1 release branch 
updated version to 0.1.5
removed closure after uploadArchives task and changed to . operator
added java 1.6 source and target compatibility
added sample properties for signing and maven repository login

Modified:
    openoffice/devtools/guno-extension/trunk/   (props changed)
    openoffice/devtools/guno-extension/trunk/build.gradle
    openoffice/devtools/guno-extension/trunk/gradle.properties

Propchange: openoffice/devtools/guno-extension/trunk/
------------------------------------------------------------------------------
--- svn:mergeinfo (added)
+++ svn:mergeinfo Sat Apr 23 19:35:51 2016
@@ -0,0 +1 @@
+/openoffice/devtools/guno-extension/branches/0.1:1737622-1740662

Modified: openoffice/devtools/guno-extension/trunk/build.gradle
URL: http://svn.apache.org/viewvc/openoffice/devtools/guno-extension/trunk/build.gradle?rev=1740664&r1=1740663&r2=1740664&view=diff
==============================================================================
--- openoffice/devtools/guno-extension/trunk/build.gradle (original)
+++ openoffice/devtools/guno-extension/trunk/build.gradle Sat Apr 23 19:35:51 2016
@@ -32,7 +32,7 @@ repositories {
 }
 
 group 'org.openoffice'
-version "0.1.4"
+version "0.1.5"
 description 'Groovy UNO Extension extends the Apache OpenOffice UNO API'
 mainClassName = 'org.openoffice.FakeClassName'
 
@@ -60,14 +60,16 @@ groovydoc {
 // jar.baseName = 'guno-extension'
 archivesBaseName = 'guno-extension'
 
+sourceCompatibility = 1.6
+targetCompatibility = 1.6
+
 signing {
     // only pgp sign if not a snapshot and we are uploading to maven repo
     required { isReleaseVersion && gradle.taskGraph.hasTask("uploadArchives") }
     sign configurations.archives
 }
 
-uploadArchives {
-    repositories.mavenDeployer {
+uploadArchives.repositories.mavenDeployer {
         // pgp sign the pom file also
         beforeDeployment { MavenDeployment deployment -> signing.signPom(deployment) }
 
@@ -120,7 +122,7 @@ uploadArchives {
         }
 
     }
-}
+
 
 groovydoc.mustRunAfter clean
 jar.mustRunAfter groovydoc

Modified: openoffice/devtools/guno-extension/trunk/gradle.properties
URL: http://svn.apache.org/viewvc/openoffice/devtools/guno-extension/trunk/gradle.properties?rev=1740664&r1=1740663&r2=1740664&view=diff
==============================================================================
--- openoffice/devtools/guno-extension/trunk/gradle.properties (original)
+++ openoffice/devtools/guno-extension/trunk/gradle.properties Sat Apr 23 19:35:51 2016
@@ -0,0 +1,6 @@
+signing.keyId=12345678
+signing.password=my key password
+signing.secretKeyRingFile=/path/to/keyring.gpg
+mavenUser=mavenUser
+mavenPassword=mavenPassword
+