You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by il...@apache.org on 2012/04/26 14:19:05 UTC

svn commit: r1330804 - in /incubator/syncope/trunk/parent: pom.xml src/site/site.xml

Author: ilgrosso
Date: Thu Apr 26 12:19:04 2012
New Revision: 1330804

URL: http://svn.apache.org/viewvc?rev=1330804&view=rev
Log:
Moving maven-site-plugin to site profile

Modified:
    incubator/syncope/trunk/parent/pom.xml
    incubator/syncope/trunk/parent/src/site/site.xml

Modified: incubator/syncope/trunk/parent/pom.xml
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/parent/pom.xml?rev=1330804&r1=1330803&r2=1330804&view=diff
==============================================================================
--- incubator/syncope/trunk/parent/pom.xml (original)
+++ incubator/syncope/trunk/parent/pom.xml Thu Apr 26 12:19:04 2012
@@ -944,69 +944,11 @@ under the License.
         <artifactId>maven-jxr-plugin</artifactId>
         <version>2.3</version>
       </plugin>
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-site-plugin</artifactId>
-        <version>3.0</version>
-        <configuration>
-          <locales>en</locales>
-          <reportPlugins>
-            <plugin>
-              <groupId>org.apache.maven.plugins</groupId>
-              <artifactId>maven-project-info-reports-plugin</artifactId>
-              <version>2.4</version>
-              <configuration>
-                <dependencyDetailsEnabled>false</dependencyDetailsEnabled>
-                <dependencyLocationsEnabled>false</dependencyLocationsEnabled>
-                <anonymousConnection>scm:svn:http://svn.apache.org/repos/asf/incubator/syncope/trunk</anonymousConnection>
-                <developerConnection>scm:svn:https://svn.apache.org/repos/asf/incubator/syncope/trunk</developerConnection>
-                <webAccessUrl>http://svn.apache.org/viewvc/incubator/syncope/trunk</webAccessUrl>
-              </configuration>
-              <reportSets>
-                <reportSet>
-                  <reports>
-                    <report>index</report>
-                    <report>summary</report>
-                    <report>mailing-list</report>
-                    <report>project-team</report>
-                    <report>scm</report>
-                    <report>cim</report>
-                    <report>issue-tracking</report>
-                    <report>dependency-management</report>
-                    <report>plugin-management</report>
-                    <report>plugins</report>
-                    <report>license</report>
-                  </reports>
-                </reportSet>
-              </reportSets>
-            </plugin>
-            <plugin>
-              <groupId>org.apache.maven.plugins</groupId>
-              <artifactId>maven-javadoc-plugin</artifactId>
-              <version>2.8.1</version>
-              <reportSets>
-                <reportSet>
-                  <reports>
-                    <report>aggregate</report>
-                  </reports>
-                </reportSet>
-              </reportSets>
-            </plugin>
-          </reportPlugins>
-        </configuration>
-        <executions>
-          <execution>
-            <id>attach-descriptor</id>
-            <goals>
-              <goal>attach-descriptor</goal>
-            </goals>
-          </execution>
-        </executions>
-      </plugin>
     </plugins>
   </build>
 
   <profiles>
+    
     <profile>
       <id>all</id>
       <modules>
@@ -1015,8 +957,67 @@ under the License.
         <module>../hibernate-enhancer</module>
       </modules>
     </profile>
+    
     <profile>
       <id>site</id>
+      <build>
+        <defaultGoal>clean site-deploy</defaultGoal>
+        
+        <plugins>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-site-plugin</artifactId>
+            <version>3.0</version>
+            <configuration>
+              <locales>en</locales>
+              <reportPlugins>
+                <plugin>
+                  <groupId>org.apache.maven.plugins</groupId>
+                  <artifactId>maven-project-info-reports-plugin</artifactId>
+                  <version>2.4</version>
+                  <configuration>
+                    <dependencyDetailsEnabled>false</dependencyDetailsEnabled>
+                    <dependencyLocationsEnabled>false</dependencyLocationsEnabled>
+                    <anonymousConnection>scm:svn:http://svn.apache.org/repos/asf/incubator/syncope/trunk</anonymousConnection>
+                    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/incubator/syncope/trunk</developerConnection>
+                    <webAccessUrl>http://svn.apache.org/viewvc/incubator/syncope/trunk</webAccessUrl>
+                  </configuration>
+                  <reportSets>
+                    <reportSet>
+                      <reports>
+                        <report>index</report>
+                        <report>summary</report>
+                        <report>mailing-list</report>
+                        <report>project-team</report>
+                        <report>scm</report>
+                        <report>cim</report>
+                        <report>issue-tracking</report>
+                        <report>dependency-management</report>
+                        <report>plugin-management</report>
+                        <report>plugins</report>
+                        <report>license</report>
+                      </reports>
+                    </reportSet>
+                  </reportSets>
+                </plugin>
+                <plugin>
+                  <groupId>org.apache.maven.plugins</groupId>
+                  <artifactId>maven-javadoc-plugin</artifactId>
+                  <version>2.8.1</version>
+                  <reportSets>
+                    <reportSet>
+                      <reports>
+                        <report>aggregate</report>
+                      </reports>
+                    </reportSet>
+                  </reportSets>
+                </plugin>
+              </reportPlugins>
+            </configuration>
+          </plugin>
+        </plugins>
+      </build>
+      
       <modules>
         <module>../quality</module>
         <module>../archetype</module>
@@ -1027,5 +1028,6 @@ under the License.
         <module>../console</module>
       </modules>
     </profile>
+    
   </profiles>
 </project>

Modified: incubator/syncope/trunk/parent/src/site/site.xml
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/parent/src/site/site.xml?rev=1330804&r1=1330803&r2=1330804&view=diff
==============================================================================
--- incubator/syncope/trunk/parent/src/site/site.xml (original)
+++ incubator/syncope/trunk/parent/src/site/site.xml Thu Apr 26 12:19:04 2012
@@ -61,7 +61,6 @@ under the License.
       <item name="Continuous Integration" href="integration.html"/>
       <item name="Issue Tracking" href="issue-tracking.html"/>
       <item name="Dependency Management" href="dependency-management.html"/>
-      <item name="Distribution Management" href="distribution-management.html"/>
       <item name="Plugin Management" href="plugin-management.html"/>
       <item name="Project Plugins" href="plugins.html"/>
       <item name="Project License" href="license.html"/>