You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@vxquery.apache.org by ti...@apache.org on 2013/09/05 02:01:58 UTC

svn commit: r1520177 - in /incubator/vxquery/branches/vxquery_0_2_staging: ./ src/site/ vxquery-cli/ vxquery-cli/src/site/ vxquery-core/ vxquery-core/src/site/ vxquery-parent/ vxquery-xtest/ vxquery-xtest/src/site/

Author: tillw
Date: Thu Sep  5 00:01:58 2013
New Revision: 1520177

URL: http://svn.apache.org/r1520177
Log:
use maven-fluido-skin for site
remove timestamps from javadocs
add maven-install-plugin
move maven-gpg-plugin to vxquery-parent/pom.xml
update plugin versions


Modified:
    incubator/vxquery/branches/vxquery_0_2_staging/pom.xml
    incubator/vxquery/branches/vxquery_0_2_staging/src/site/site.xml
    incubator/vxquery/branches/vxquery_0_2_staging/vxquery-cli/pom.xml
    incubator/vxquery/branches/vxquery_0_2_staging/vxquery-cli/src/site/site.xml
    incubator/vxquery/branches/vxquery_0_2_staging/vxquery-core/pom.xml
    incubator/vxquery/branches/vxquery_0_2_staging/vxquery-core/src/site/site.xml
    incubator/vxquery/branches/vxquery_0_2_staging/vxquery-parent/pom.xml
    incubator/vxquery/branches/vxquery_0_2_staging/vxquery-xtest/pom.xml
    incubator/vxquery/branches/vxquery_0_2_staging/vxquery-xtest/src/site/site.xml

Modified: incubator/vxquery/branches/vxquery_0_2_staging/pom.xml
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_0_2_staging/pom.xml?rev=1520177&r1=1520176&r2=1520177&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_0_2_staging/pom.xml (original)
+++ incubator/vxquery/branches/vxquery_0_2_staging/pom.xml Thu Sep  5 00:01:58 2013
@@ -65,18 +65,13 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-assembly-plugin</artifactId>
-        <version>2.3</version>
+        <version>2.4</version>
         <configuration>
           <descriptors>
             <descriptor>src/main/assembly/source.xml</descriptor>
           </descriptors>
         </configuration>
       </plugin>
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-gpg-plugin</artifactId>
-        <version>1.4</version>
-      </plugin>
     </plugins>
   </build>
 

Modified: incubator/vxquery/branches/vxquery_0_2_staging/src/site/site.xml
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_0_2_staging/src/site/site.xml?rev=1520177&r1=1520176&r2=1520177&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_0_2_staging/src/site/site.xml (original)
+++ incubator/vxquery/branches/vxquery_0_2_staging/src/site/site.xml Thu Sep  5 00:01:58 2013
@@ -27,6 +27,12 @@ limitations under the License.
         <href>http://incubator.apache.org/</href>
     </bannerRight>
 
+    <skin>
+      <groupId>org.apache.maven.skins</groupId>
+      <artifactId>maven-fluido-skin</artifactId>
+      <version>1.3.0</version>
+    </skin>
+
     <body>
         <menu ref="reports"/>
         <menu ref="modules"/>

Modified: incubator/vxquery/branches/vxquery_0_2_staging/vxquery-cli/pom.xml
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_0_2_staging/vxquery-cli/pom.xml?rev=1520177&r1=1520176&r2=1520177&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_0_2_staging/vxquery-cli/pom.xml (original)
+++ incubator/vxquery/branches/vxquery_0_2_staging/vxquery-cli/pom.xml Thu Sep  5 00:01:58 2013
@@ -67,7 +67,7 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-site-plugin</artifactId>
-        <version>3.1</version>
+        <version>3.3</version>
       </plugin>
     </plugins>
   </build>
@@ -109,6 +109,9 @@
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-javadoc-plugin</artifactId>
         <version>2.9</version>
+        <configuration>
+          <notimestamp>true</notimestamp>
+        </configuration>
       </plugin>
     </plugins>
   </reporting>

Modified: incubator/vxquery/branches/vxquery_0_2_staging/vxquery-cli/src/site/site.xml
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_0_2_staging/vxquery-cli/src/site/site.xml?rev=1520177&r1=1520176&r2=1520177&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_0_2_staging/vxquery-cli/src/site/site.xml (original)
+++ incubator/vxquery/branches/vxquery_0_2_staging/vxquery-cli/src/site/site.xml Thu Sep  5 00:01:58 2013
@@ -27,6 +27,12 @@ limitations under the License.
         <href>http://incubator.apache.org/</href>
     </bannerRight>
 
+    <skin>
+      <groupId>org.apache.maven.skins</groupId>
+      <artifactId>maven-fluido-skin</artifactId>
+      <version>1.3.0</version>
+    </skin>
+
     <body>
         <menu ref="reports"/>
     </body>

Modified: incubator/vxquery/branches/vxquery_0_2_staging/vxquery-core/pom.xml
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_0_2_staging/vxquery-core/pom.xml?rev=1520177&r1=1520176&r2=1520177&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_0_2_staging/vxquery-core/pom.xml (original)
+++ incubator/vxquery/branches/vxquery_0_2_staging/vxquery-core/pom.xml Thu Sep  5 00:01:58 2013
@@ -42,11 +42,6 @@
   <build>
     <plugins>
       <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-resources-plugin</artifactId>
-        <version>2.6</version>
-      </plugin>
-      <plugin>
         <groupId>org.codehaus.mojo</groupId>
         <artifactId>javacc-maven-plugin</artifactId>
         <version>2.6</version>
@@ -126,7 +121,7 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-surefire-plugin</artifactId>
-        <version>2.12.4</version>
+        <version>2.15</version>
         <configuration>
           <redirectTestOutputToFile>true</redirectTestOutputToFile>
         </configuration>
@@ -134,7 +129,7 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-site-plugin</artifactId>
-        <version>3.1</version>
+        <version>3.3</version>
       </plugin>
     </plugins>
   </build>
@@ -258,6 +253,9 @@
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-javadoc-plugin</artifactId>
         <version>2.9</version>
+        <configuration>
+          <notimestamp>true</notimestamp>
+        </configuration>
       </plugin>
     </plugins>
   </reporting>

Modified: incubator/vxquery/branches/vxquery_0_2_staging/vxquery-core/src/site/site.xml
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_0_2_staging/vxquery-core/src/site/site.xml?rev=1520177&r1=1520176&r2=1520177&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_0_2_staging/vxquery-core/src/site/site.xml (original)
+++ incubator/vxquery/branches/vxquery_0_2_staging/vxquery-core/src/site/site.xml Thu Sep  5 00:01:58 2013
@@ -28,6 +28,12 @@ limitations under the License.
         <href>http://incubator.apache.org/</href>
     </bannerRight>
 
+    <skin>
+      <groupId>org.apache.maven.skins</groupId>
+      <artifactId>maven-fluido-skin</artifactId>
+      <version>1.3.0</version>
+    </skin>
+
     <body>
         <menu ref="reports"/>
         <menu name="Open Items">

Modified: incubator/vxquery/branches/vxquery_0_2_staging/vxquery-parent/pom.xml
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_0_2_staging/vxquery-parent/pom.xml?rev=1520177&r1=1520176&r2=1520177&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_0_2_staging/vxquery-parent/pom.xml (original)
+++ incubator/vxquery/branches/vxquery_0_2_staging/vxquery-parent/pom.xml Thu Sep  5 00:01:58 2013
@@ -24,6 +24,13 @@
   <name>VXQuery Parent</name>
   <url>http://incubator.apache.org/vxquery/</url>
 
+  <parent>
+    <groupId>org.apache</groupId>
+    <artifactId>apache</artifactId>
+    <version>13</version>
+    <relativePath></relativePath>
+  </parent>
+
   <organization>
     <name>Apache Software Foundation</name>
     <url>http://www.apache.org/</url>
@@ -154,6 +161,13 @@
   </scm>
 
   <distributionManagement>
+    <repository>
+      <uniqueVersion>false</uniqueVersion>
+      <id>dist</id>
+      <name>dist directory</name>
+      <url>file:dist</url>
+      <layout>default</layout>
+    </repository>
     <site>
       <id>vxquery.website</id>
       <name>VXQuery Website</name>
@@ -214,7 +228,7 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-compiler-plugin</artifactId>
-        <version>2.3.2</version>
+        <version>3.1</version>
         <configuration>
           <source>1.6</source>
           <target>1.6</target>
@@ -223,12 +237,34 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-site-plugin</artifactId>
-        <version>3.1</version>
+        <version>3.3</version>
+      </plugin>
+      <plugin>
+        <artifactId>maven-install-plugin</artifactId>
+        <version>2.4</version>
+        <configuration>
+          <createChecksum>true</createChecksum>
+        </configuration>
       </plugin>
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-release-plugin</artifactId>
-        <version>2.4</version>
+        <version>2.4.1</version>
+        <configuration>
+          <autoVersionSubmodules>true</autoVersionSubmodules>
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-gpg-plugin</artifactId>
+        <version>1.4</version>
+        <executions>
+          <execution>
+            <id>sign-artifacts</id>
+            <phase>verify</phase>
+            <goals><goal>sign</goal></goals>
+          </execution>
+        </executions>
       </plugin>
     </plugins>
   </build>
@@ -246,9 +282,18 @@
         </reportSets>
       </plugin>
       <plugin>
+        <groupId>org.apache.rat</groupId>
+        <artifactId>apache-rat-plugin</artifactId>
+        <version>0.7</version>
+      </plugin>
+      <plugin>
+        <inherited>true</inherited>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-javadoc-plugin</artifactId>
         <version>2.9</version>
+        <configuration>
+          <notimestamp>true</notimestamp>
+        </configuration>
       </plugin>
     </plugins>
   </reporting>  

Modified: incubator/vxquery/branches/vxquery_0_2_staging/vxquery-xtest/pom.xml
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_0_2_staging/vxquery-xtest/pom.xml?rev=1520177&r1=1520176&r2=1520177&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_0_2_staging/vxquery-xtest/pom.xml (original)
+++ incubator/vxquery/branches/vxquery_0_2_staging/vxquery-xtest/pom.xml Thu Sep  5 00:01:58 2013
@@ -67,7 +67,7 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-site-plugin</artifactId>
-        <version>3.1</version>
+        <version>3.3</version>
       </plugin>
     </plugins>
   </build>
@@ -115,6 +115,9 @@
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-javadoc-plugin</artifactId>
         <version>2.9</version>
+        <configuration>
+          <notimestamp>true</notimestamp>
+        </configuration>
       </plugin>
     </plugins>
   </reporting>

Modified: incubator/vxquery/branches/vxquery_0_2_staging/vxquery-xtest/src/site/site.xml
URL: http://svn.apache.org/viewvc/incubator/vxquery/branches/vxquery_0_2_staging/vxquery-xtest/src/site/site.xml?rev=1520177&r1=1520176&r2=1520177&view=diff
==============================================================================
--- incubator/vxquery/branches/vxquery_0_2_staging/vxquery-xtest/src/site/site.xml (original)
+++ incubator/vxquery/branches/vxquery_0_2_staging/vxquery-xtest/src/site/site.xml Thu Sep  5 00:01:58 2013
@@ -27,6 +27,12 @@ limitations under the License.
         <href>http://incubator.apache.org/</href>
     </bannerRight>
 
+    <skin>
+      <groupId>org.apache.maven.skins</groupId>
+      <artifactId>maven-fluido-skin</artifactId>
+      <version>1.3.0</version>
+    </skin>
+
     <body>
         <menu ref="reports"/>
     </body>