You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by bi...@apache.org on 2013/02/27 20:26:53 UTC

svn commit: r1450934 - in /accumulo/trunk: examples/instamo/pom.xml examples/simple/pom.xml pom.xml

Author: bimargulies
Date: Wed Feb 27 19:26:52 2013
New Revision: 1450934

URL: http://svn.apache.org/r1450934
Log:
ACCUMULO-1122: incremental work on making the pubsub plugin work. Not yet complete/working.

Modified:
    accumulo/trunk/examples/instamo/pom.xml
    accumulo/trunk/examples/simple/pom.xml
    accumulo/trunk/pom.xml

Modified: accumulo/trunk/examples/instamo/pom.xml
URL: http://svn.apache.org/viewvc/accumulo/trunk/examples/instamo/pom.xml?rev=1450934&r1=1450933&r2=1450934&view=diff
==============================================================================
--- accumulo/trunk/examples/instamo/pom.xml (original)
+++ accumulo/trunk/examples/instamo/pom.xml Wed Feb 27 19:26:52 2013
@@ -106,6 +106,18 @@
     </dependency>
   </dependencies>
   <build>
+    <pluginManagement>
+      <plugins>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-site-plugin</artifactId>
+          <version>3.2</version>
+          <configuration>
+            <skip>true</skip><!-- this is just an example. Leave it out. -->
+          </configuration>
+        </plugin>
+      </plugins>
+    </pluginManagement>
     <plugins>
       <plugin>
         <artifactId>maven-compiler-plugin</artifactId>

Modified: accumulo/trunk/examples/simple/pom.xml
URL: http://svn.apache.org/viewvc/accumulo/trunk/examples/simple/pom.xml?rev=1450934&r1=1450933&r2=1450934&view=diff
==============================================================================
--- accumulo/trunk/examples/simple/pom.xml (original)
+++ accumulo/trunk/examples/simple/pom.xml Wed Feb 27 19:26:52 2013
@@ -91,6 +91,18 @@
   </dependencies>
 
   <build>
+    <pluginManagement>
+      <plugins>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-site-plugin</artifactId>
+          <version>3.2</version>
+          <configuration>
+            <skip>true</skip><!-- this is just an example. Leave it out. -->
+          </configuration>
+        </plugin>
+      </plugins>
+    </pluginManagement>
     <plugins>
       <plugin>
         <artifactId>maven-jar-plugin</artifactId>

Modified: accumulo/trunk/pom.xml
URL: http://svn.apache.org/viewvc/accumulo/trunk/pom.xml?rev=1450934&r1=1450933&r2=1450934&view=diff
==============================================================================
--- accumulo/trunk/pom.xml (original)
+++ accumulo/trunk/pom.xml Wed Feb 27 19:26:52 2013
@@ -41,7 +41,8 @@
     <site>
       <id>accumulo.mvn.website</id>
       <name>Accumulo Maven Site</name>
-      <url>scp://people.apache.org/x1/home/bimargulies/public_html/accumulo-site-stage</url>
+      <!-- this is not likely to be what we really want, but it's good enough for a test -->
+      <url>scm:svn:https://svn.apache.org/repos/asf/accumulo/site/trunk/maven-site</url>
     </site>
   </distributionManagement>
 
@@ -69,6 +70,28 @@
     <defaultGoal>package</defaultGoal>
     <plugins>
       <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-site-plugin</artifactId>
+        <version>3.2</version>
+        <configuration>
+          <skipDeploy>true</skipDeploy>
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-scm-publish-plugin</artifactId>
+        <version>1.0-beta-2</version>
+        <executions>
+          <execution>
+            <id>scm-publish</id>
+            <phase>site-deploy</phase>
+            <goals>
+              <goal>publish-scm</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+      <plugin>
         <groupId>org.codehaus.mojo</groupId>
         <artifactId>buildnumber-maven-plugin</artifactId>
         <version>1.1</version>
@@ -351,13 +374,14 @@
 
   <reporting>
     <plugins>
+      <!--
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-changes-plugin</artifactId>
         <version>2.8</version>
         <configuration>
           <onlyCurrentVersion>true</onlyCurrentVersion>
-          <statusIds>closed,resolved</statusIds>
+          <statusIds>resolved</statusIds>
           <maxEntries>10000</maxEntries>
         </configuration>
         <reportSets>
@@ -368,6 +392,7 @@
           </reportSet>
         </reportSets>
       </plugin>
+-->
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-jxr-plugin</artifactId>