You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@johnzon.apache.org by rm...@apache.org on 2014/07/02 20:18:26 UTC

git commit: making sub modules published when publishing parent

Repository: incubator-fleece
Updated Branches:
  refs/heads/master 4aa966fa0 -> 5e4bb9431


making sub modules published when publishing parent


Project: http://git-wip-us.apache.org/repos/asf/incubator-fleece/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-fleece/commit/5e4bb943
Tree: http://git-wip-us.apache.org/repos/asf/incubator-fleece/tree/5e4bb943
Diff: http://git-wip-us.apache.org/repos/asf/incubator-fleece/diff/5e4bb943

Branch: refs/heads/master
Commit: 5e4bb9431d1704741ae3d6dc3bb0176f7ae899b6
Parents: 4aa966f
Author: Romain Manni-Bucau <rm...@gmail.com>
Authored: Wed Jul 2 20:18:09 2014 +0200
Committer: Romain Manni-Bucau <rm...@gmail.com>
Committed: Wed Jul 2 20:18:09 2014 +0200

----------------------------------------------------------------------
 fleece-core/pom.xml   | 2 +-
 fleece-jaxrs/pom.xml  | 2 +-
 fleece-mapper/pom.xml | 2 +-
 pom.xml               | 5 +++++
 4 files changed, 8 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-fleece/blob/5e4bb943/fleece-core/pom.xml
----------------------------------------------------------------------
diff --git a/fleece-core/pom.xml b/fleece-core/pom.xml
index 0ed4dd4..6fb26e9 100644
--- a/fleece-core/pom.xml
+++ b/fleece-core/pom.xml
@@ -31,6 +31,6 @@
   <name>Fleece :: Core</name>
 
   <properties>
-    <pubsub.url>scm:svn:${fleece.site.url}fleece-core/</pubsub.url>
+    <staging.directory>${project.parent.reporting.outputDirectory}</staging.directory>
   </properties>
 </project>

http://git-wip-us.apache.org/repos/asf/incubator-fleece/blob/5e4bb943/fleece-jaxrs/pom.xml
----------------------------------------------------------------------
diff --git a/fleece-jaxrs/pom.xml b/fleece-jaxrs/pom.xml
index fee0e8c..00cdf69 100644
--- a/fleece-jaxrs/pom.xml
+++ b/fleece-jaxrs/pom.xml
@@ -65,7 +65,7 @@
   </dependencies>
 
   <properties>
-    <pubsub.url>scm:svn:${fleece.site.url}fleece-jaxrs/</pubsub.url>
+    <staging.directory>${project.parent.reporting.outputDirectory}</staging.directory>
     <cxf.version>3.0.0</cxf.version>
   </properties>
 </project>

http://git-wip-us.apache.org/repos/asf/incubator-fleece/blob/5e4bb943/fleece-mapper/pom.xml
----------------------------------------------------------------------
diff --git a/fleece-mapper/pom.xml b/fleece-mapper/pom.xml
index 1212cb8..d7e4789 100644
--- a/fleece-mapper/pom.xml
+++ b/fleece-mapper/pom.xml
@@ -39,6 +39,6 @@
   </dependencies>
 
   <properties>
-    <pubsub.url>scm:svn:${fleece.site.url}fleece-mapper/</pubsub.url>
+    <staging.directory>${project.parent.reporting.outputDirectory}</staging.directory>
   </properties>
 </project>

http://git-wip-us.apache.org/repos/asf/incubator-fleece/blob/5e4bb943/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 9f11c1f..8196b0c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -102,6 +102,7 @@
         <artifactId>maven-scm-publish-plugin</artifactId>
         <version>1.0-beta-2</version>
         <configuration>
+          <automaticRemotePathCreation>true</automaticRemotePathCreation>
           <content>${project.reporting.outputDirectory}</content>
           <pubScmUrl>${pubsub.url}</pubScmUrl>
           <tryUpdate>true</tryUpdate>
@@ -122,6 +123,9 @@
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-site-plugin</artifactId>
         <version>3.3</version>
+        <configuration>
+          <stagingDirectory>${staging.directory}</stagingDirectory>
+        </configuration>
         <dependencies>
           <dependency>
             <groupId>org.apache.maven.doxia</groupId>
@@ -236,6 +240,7 @@
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
     <fleece.site.url>https://svn.apache.org/repos/asf/incubator/fleece/site/publish/</fleece.site.url>
     <pubsub.url>scm:svn:${fleece.site.url}</pubsub.url>
+    <staging.directory>${project.build.directory}/site</staging.directory>
   </properties>
 
   <reporting>