Commit in projects/lcsim/trunk on MAIN
detector-data/pom.xml-103021 -> 3022
distribution/pom.xml-83021 -> 3022
parent/pom.xml+8-73021 -> 3022
pom.xml+54-233021 -> 3022
+62-48
4 modified files
New site deployment configuration using profiles to select which modules get include.

projects/lcsim/trunk/detector-data
pom.xml 3021 -> 3022
--- projects/lcsim/trunk/detector-data/pom.xml	2014-02-22 04:12:36 UTC (rev 3021)
+++ projects/lcsim/trunk/detector-data/pom.xml	2014-02-25 01:01:11 UTC (rev 3022)
@@ -30,16 +30,6 @@
                 </excludes>
             </resource>
         </resources>
-        <plugins>
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-site-plugin</artifactId>
-                <configuration>
-                    <skip>true</skip>
-                    <skipDeploy>true</skipDeploy>
-                </configuration>
-            </plugin>
-        </plugins>
     </build>
     
 </project>

projects/lcsim/trunk/distribution
pom.xml 3021 -> 3022
--- projects/lcsim/trunk/distribution/pom.xml	2014-02-22 04:12:36 UTC (rev 3021)
+++ projects/lcsim/trunk/distribution/pom.xml	2014-02-25 01:01:11 UTC (rev 3022)
@@ -43,14 +43,6 @@
                     </execution>
                 </executions>
             </plugin>
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-site-plugin</artifactId>
-                <configuration>
-                    <skip>true</skip>
-                    <skipDeploy>true</skipDeploy>
-                </configuration>
-            </plugin>
         </plugins>
     </build>
     

projects/lcsim/trunk/parent
pom.xml 3021 -> 3022
--- projects/lcsim/trunk/parent/pom.xml	2014-02-22 04:12:36 UTC (rev 3021)
+++ projects/lcsim/trunk/parent/pom.xml	2014-02-25 01:01:11 UTC (rev 3022)
@@ -67,7 +67,7 @@
         </snapshotRepository>
         <site>
             <id>lcsim-site</id>
-            <url>dav:http://srs.slac.stanford.edu/nexus/content/sites/lcsim-site/lcsim</url>
+            <url>dav:http://srs.slac.stanford.edu/nexus/content/sites/lcsim-site/lcsim/</url>
         </site>
     </distributionManagement>
 
@@ -257,9 +257,11 @@
                 <plugin>
                     <groupId>org.apache.maven.plugins</groupId>
                     <artifactId>maven-site-plugin</artifactId>
-                    <version>3.3</version>
+                    <inherited>false</inherited>
                     <configuration>
-                        <chmod>false</chmod>
+                        <skip>true</skip>
+                        <skipDeploy>true</skipDeploy>
+                        <generateReports>false</generateReports>
                     </configuration>
                     <executions>
                         <execution>
@@ -297,10 +299,10 @@
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-site-plugin</artifactId>
-                <inherited>false</inherited>
+                <version>3.3</version>
+                <inherited>true</inherited>
                 <configuration>
-                    <skip>true</skip>
-                    <skipDeploy>true</skipDeploy>
+                    <chmod>false</chmod>
                 </configuration>
             </plugin>
         </plugins>
@@ -333,7 +335,6 @@
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-javadoc-plugin</artifactId>
                 <version>2.9.1</version>
-                <inherited>true</inherited>
                 <configuration>
                     <source>1.7</source>
                     <show>private</show>

projects/lcsim/trunk
pom.xml 3021 -> 3022
--- projects/lcsim/trunk/pom.xml	2014-02-22 04:12:36 UTC (rev 3021)
+++ projects/lcsim/trunk/pom.xml	2014-02-25 01:01:11 UTC (rev 3022)
@@ -22,29 +22,6 @@
         <developerConnection>scm:svn:svn://svn.freehep.org/lcdet/projects/lcsim/trunk/</developerConnection>
     </scm>
 
-    <modules>
-        <module>parent</module>
-        <module>util</module>
-        <module>math</module>
-        <module>aida</module>
-        <module>conditions</module>
-        <module>detector-framework</module>
-        <module>event-model</module>
-        <module>event-processing</module>
-        <module>job-manager</module>
-        <module>tracking</module>
-        <module>vertexing</module>
-        <module>event-heprep</module>
-        <module>recon-drivers</module>
-        <module>cal-recon</module>
-        <module>cal-calib</module>
-        <module>trf</module>
-        <module>detector-data</module>
-        <module>analysis</module>
-        <module>distribution</module>
-        <module>plugin</module>
-    </modules>
-
     <distributionManagement>
         <site>
             <id>lcsim-site</id>
@@ -147,4 +124,58 @@
         </plugins>
     </reporting>
 
+    <profiles>
+        <profile>
+            <id>site</id>
+            <!-- Alphabetized list of modules for the site. -->
+            <modules>
+                <module>aida</module>
+                <module>analysis</module>
+                <module>cal-recon</module>
+                <module>cal-calib</module>
+                <module>conditions</module>                                                
+                <module>detector-framework</module>
+                <module>event-heprep</module>
+                <module>event-model</module>
+                <module>event-processing</module>
+                <module>job-manager</module>
+                <module>math</module>                                                                             
+                <module>plugin</module>
+                <module>recon-drivers</module>
+                <module>tracking</module>
+                <module>trf</module>
+                <module>vertexing</module>
+                <module>util</module>
+            </modules>
+        </profile>
+        <profile>
+            <id>default</id>
+            <activation>
+                <activeByDefault>true</activeByDefault>
+            </activation>
+            <!-- This is a list of all modules. -->
+            <modules>
+                <module>parent</module>
+                <module>util</module>
+                <module>math</module>
+                <module>aida</module>
+                <module>conditions</module>
+                <module>detector-framework</module>
+                <module>event-model</module>
+                <module>event-processing</module>
+                <module>job-manager</module>
+                <module>tracking</module>
+                <module>vertexing</module>
+                <module>event-heprep</module>
+                <module>recon-drivers</module>
+                <module>cal-recon</module>
+                <module>cal-calib</module>
+                <module>trf</module>
+                <module>detector-data</module>
+                <module>analysis</module>
+                <module>distribution</module>
+                <module>plugin</module>
+            </modules>
+        </profile>
+    </profiles>
 </project>
SVNspam 0.1


Use REPLY-ALL to reply to list

To unsubscribe from the LCDET-SVN list, click the following link:
https://listserv.slac.stanford.edu/cgi-bin/wa?SUBED1=LCDET-SVN&A=1