Commit in java/trunk on MAIN
parent/pom.xml+21-24208 -> 209
site/build.sh+3added 209
    /pom.xml+135added 209
+159-24
2 added + 1 modified, total 3 files
alpha version of project website config; does not include any custom pages yet

java/trunk/parent
pom.xml 208 -> 209
--- java/trunk/parent/pom.xml	2014-02-07 20:06:51 UTC (rev 208)
+++ java/trunk/parent/pom.xml	2014-02-08 00:04:32 UTC (rev 209)
@@ -15,6 +15,12 @@
         <org.lcsim.cacheDir>${user.home}</org.lcsim.cacheDir>
         <lcsimVersion>3.0.3-SNAPSHOT</lcsimVersion>
     </properties>
+    
+    <scm>
+        <url>http://java.freehep.org/svn/repos/hps/list/java/trunk/parent/</url>
+        <connection>scm:svn:svn://svn.freehep.org/hps/java/trunk/parent/</connection>
+        <developerConnection>scm:svn:svn://svn.freehep.org/hps/java/trunk/parent/</developerConnection>
+    </scm>
 
     <repositories>
         <repository>
@@ -143,6 +149,7 @@
                         <link>http://java.freehep.org/freehep-physics/apidocs/</link>
                         <link>http://java.freehep.org/heprep/apidocs/</link>
                         <link>http://www.jdom.org/docs/apidocs/</link>
+                        <link>http://www.lcsim.org/sites/lcsim/apidocs/index.html</link>
                     </links>
                 </configuration>
             </plugin>
@@ -150,33 +157,23 @@
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-project-info-reports-plugin</artifactId>
                 <version>2.7</version>
-            </plugin>
+                <reportSets>
+                    <reportSet>
+                        <id>non-aggregate</id>
+                        <reports>
+                            <report>dependencies</report>
+                            <report>index</report>
+                            <report>scm</report>
+                            <report>summary</report>
+                        </reports> 
+                    </reportSet> 
+                </reportSets> 
+            </plugin> 
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-surefire-report-plugin</artifactId>
                 <version>2.16</version>
             </plugin>
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-changes-plugin</artifactId>
-                <version>2.9</version>
-                <configuration>
-                    <columnNames>Type,Key,Summary,Assignee,Status,Resolution,Fix
-                        Version,Created</columnNames>
-                    <sortColumnNames>Type,Key DESC</sortColumnNames>
-                    <statusIds>Resolved, Closed</statusIds>
-                    <maxEntries>9999</maxEntries>
-                    <xmlPath>${basedir}/src/site/changes.xml</xmlPath>
-                </configuration>
-                <reportSets>
-                    <reportSet>
-                        <reports>
-                            <report>changes-report</report>
-                            <report>jira-report</report>
-                        </reports>
-                    </reportSet>
-                </reportSets>
-            </plugin>
         </plugins>
     </reporting>
 
@@ -185,8 +182,8 @@
         <extensions>
             <extension>
                 <groupId>org.apache.maven.wagon</groupId>
-                <artifactId>wagon-ssh-external</artifactId>
-                <version>2.5</version>
+                <artifactId>wagon-webdav-jackrabbit</artifactId>
+                <version>2.2</version>
             </extension>
         </extensions>
         <plugins>

java/trunk/site
build.sh added at 209
--- java/trunk/site/build.sh	                        (rev 0)
+++ java/trunk/site/build.sh	2014-02-08 00:04:32 UTC (rev 209)
@@ -0,0 +1,3 @@
+#!/bin/sh
+rm -rf /scratch/hps_site/
+mvn clean site:site site:stage -DstagingDirectory=/scratch/hps_site/

java/trunk/site
pom.xml added at 209
--- java/trunk/site/pom.xml	                        (rev 0)
+++ java/trunk/site/pom.xml	2014-02-08 00:04:32 UTC (rev 209)
@@ -0,0 +1,135 @@
+<project>
+
+    <modelVersion>4.0.0</modelVersion>
+    <groupId>org.hps</groupId>
+    <artifactId>hps-site</artifactId>
+    <packaging>pom</packaging>
+    <name>HPS Java</name>
+    <description>HPS Java Software Project</description>
+    <url>http://www.lcsim.org/sites/hps/</url>
+
+    <parent>
+        <groupId>org.hps</groupId>
+        <artifactId>hps-parent</artifactId>
+        <version>3.0.1-SNAPSHOT</version>
+        <relativePath>../parent/pom.xml</relativePath>
+    </parent>
+
+    <scm>
+        <url>http://java.freehep.org/svn/repos/hps/list/java/trunk/site/</url>
+        <connection>scm:svn:svn://svn.freehep.org/hps/java/trunk/site/</connection>
+        <developerConnection>scm:svn:svn://svn.freehep.org/hps/java/trunk/site/</developerConnection>
+    </scm>
+
+    <distributionManagement>
+        <site>
+            <id>lcsim-site</id>
+            <url>dav:http://srs.slac.stanford.edu/nexus/content/sites/lcsim-site/hps/</url>
+        </site>
+    </distributionManagement>
+
+    <modules>
+        <module>../hps-java</module>
+        <module>../users</module>
+        <module>../monitoring-app</module>
+        <module>../conditions</module>
+        <module>../jevio</module>
+        <module>../et</module>
+        <module>../util</module>
+        <module>../monitoring-drivers</module>
+    </modules>
+
+    <build>
+        <pluginManagement>
+            <plugins>
+                <plugin>
+                    <groupId>org.apache.maven.plugins</groupId>
+                    <artifactId>maven-site-plugin</artifactId>
+                    <configuration>
+                        <chmod>false</chmod>
+                        <generateReports>true</generateReports>
+                        <generateSitemap>true</generateSitemap>
+                        <generateProjectInfo>true</generateProjectInfo>
+                    </configuration>
+                </plugin>
+            </plugins>
+        </pluginManagement>
+    </build>
+
+    <reporting>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-project-info-reports-plugin</artifactId>
+                <version>2.7</version>
+                <reportSets>
+                    <reportSet>
+                        <id>aggregate</id>
+                        <reports>
+                            <report>cim</report>
+                            <report>dependency-convergence</report>
+                            <report>index</report>
+                            <report>issue-tracking</report>
+                            <report>mailing-list</report>
+                            <report>modules</report>
+                            <report>plugin-management</report>
+                            <report>plugins</report>
+                            <report>project-team</report>
+                        </reports>
+                    </reportSet>
+                </reportSets>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-surefire-report-plugin</artifactId>
+                <version>2.16</version>
+                <configuration>
+                    <aggregate>true</aggregate>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-changes-plugin</artifactId>
+                <version>2.9</version>
+                <configuration>
+                    <columnNames>Type,Key,Summary,Assignee,Status,Resolution,Fix
+                        Version,Created</columnNames>
+                    <sortColumnNames>Type,Key DESC</sortColumnNames>
+                    <statusIds>Resolved, Closed</statusIds>
+                    <maxEntries>9999</maxEntries>
+                </configuration>
+                <reportSets>
+                    <reportSet>
+                        <reports>
+                            <report>jira-report</report>
+                        </reports>
+                    </reportSet>
+                </reportSets>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-javadoc-plugin</artifactId>
+                <version>2.9.1</version>
+                <reportSets>
+                    <reportSet>
+                        <id>aggregate</id>
+                        <reports>
+                            <report>aggregate</report>
+                            <report>test-aggregate</report>
+                        </reports>
+                    </reportSet>
+                </reportSets>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-jxr-plugin</artifactId>
+                <version>2.3</version>
+                <configuration>
+                    <aggregate>true</aggregate>
+                    <linkJavadoc>true</linkJavadoc>
+                </configuration>
+            </plugin>
+        </plugins>
+    </reporting>
+
+</project>
SVNspam 0.1