You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2014/03/27 23:25:29 UTC

svn commit: r1582512 - /maven/skins/trunk/maven-skins/pom.xml

Author: hboutemy
Date: Thu Mar 27 22:25:29 2014
New Revision: 1582512

URL: http://svn.apache.org/r1582512
Log:
updated parent pom

Modified:
    maven/skins/trunk/maven-skins/pom.xml

Modified: maven/skins/trunk/maven-skins/pom.xml
URL: http://svn.apache.org/viewvc/maven/skins/trunk/maven-skins/pom.xml?rev=1582512&r1=1582511&r2=1582512&view=diff
==============================================================================
--- maven/skins/trunk/maven-skins/pom.xml (original)
+++ maven/skins/trunk/maven-skins/pom.xml Thu Mar 27 22:25:29 2014
@@ -25,7 +25,7 @@ under the License.
   <parent>
     <groupId>org.apache.maven</groupId>
     <artifactId>maven-parent</artifactId>
-    <version>23</version>
+    <version>24</version>
     <relativePath>../../pom/maven/pom.xml</relativePath>
   </parent>
 
@@ -60,7 +60,7 @@ under the License.
   </distributionManagement>
 
   <properties>
-    <maven.site.path>skins-archives/maven-skins-LATEST</maven.site.path>
+    <maven.site.path>skins-archives/${project.artifactId}-LATEST</maven.site.path>
     <sitePluginVersion>3.3</sitePluginVersion>
   </properties>
 
@@ -74,16 +74,6 @@ under the License.
             <arguments>-Papache-release,rat,run-its</arguments>
           </configuration>
         </plugin>
-        <plugin>
-          <groupId>org.apache.maven.plugins</groupId>
-          <artifactId>maven-site-plugin</artifactId>
-          <version>3.3</version>
-        </plugin>
-        <plugin>
-          <groupId>org.apache.maven.plugins</groupId>
-          <artifactId>maven-invoker-plugin</artifactId>
-          <version>1.8</version>
-        </plugin>
       </plugins>
     </pluginManagement>
     <plugins>
@@ -91,22 +81,9 @@ under the License.
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-scm-publish-plugin</artifactId>
         <configuration>
-          <content>${project.build.directory}/staging/${maven.site.path}</content>
-          <pubScmUrl>scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/content/${maven.site.path}</pubScmUrl>
-          <checkoutDirectory>${maven.site.cache}/${maven.site.path}</checkoutDirectory>
-          <tryUpdate>true</tryUpdate>
+          <content>${project.reporting.outputDirectory}</content><!-- skins are mono-module, no real need for site:stage -->
         </configuration>
       </plugin>
     </plugins>
   </build>
-
-  <reporting>
-    <plugins>
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-project-info-reports-plugin</artifactId>
-        <version>2.7</version><!-- TODO remove when upgrading parent to 24 -->
-      </plugin>
-    </plugins>
-  </reporting>
 </project>