Commit in CDMS on MAIN
pom.xml+180added 1.1
First attempt at a pom file

CDMS
pom.xml added at 1.1
diff -N pom.xml
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ pom.xml	2 Jul 2010 01:08:49 -0000	1.1
@@ -0,0 +1,180 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+    <modelVersion>4.0.0</modelVersion>
+    <artifactId>CDMS</artifactId>
+    <name>CDMS</name>
+    <version>1.0</version>
+    <description>CDMS image analysis software.</description>
+    <scm>
+        <connection>scm:cvs:pserver:[log in to unmask]:/cvs/lcd:CDMS</connection>
+        <developerConnection>scm:cvs:pserver:[log in to unmask]:/cvs/lcd:lcsim</developerConnection>
+        <url>http://source.freehep.org/jcvsweb/ilc/LCSIM/list/lcsim</url>
+  </scm>             
+    <repositories>
+        <repository>
+            <id>lcsim-maven</id>
+            <name>org.lcsim Maven Repository</name>
+            <url>http://lcsim.org/maven2</url>
+        </repository>
+    </repositories>
+    <pluginRepositories>
+        <pluginRepository>
+            <id>lcsim-maven-plugin</id>
+            <name>org.lcsim Maven Plugin Repository</name>
+            <url>http://lcsim.org/maven2</url>
+        </pluginRepository>
+    </pluginRepositories>
+    <parent>
+        <groupId>org.lcsim</groupId>
+        <artifactId>lcsim-parent</artifactId>
+        <version>1.5-SNAPSHOT</version>
+    </parent>
+    <distributionManagement>
+        <site>
+            <id>org.lcsim</id>
+            <name>org.lcsim</name>
+            <url>scp://svn.slac.stanford.edu///nfs/slac/g/lcd/mc/prj/www/lcsim/software/lcsim/${project.version}</url>
+        </site>
+        <snapshotRepository>
+            <id>lcsim-maven</id>
+            <name>org.lcsim Maven Repository</name>
+            <url>scp://svn.slac.stanford.edu///nfs/slac/g/lcd/mc/prj/www/lcsim/maven2/</url>
+            <uniqueVersion>false</uniqueVersion>
+        </snapshotRepository>
+    </distributionManagement>
+    <properties>
+        <!-- Timestamp file for getting build time into output jar. -->
+        <lcsim.filterfile>${project.build.directory}/filter.properties</lcsim.filterfile>
+    </properties>
+    <build>
+        <defaultGoal>install</defaultGoal>
+        <filters>
+            <filter>${lcsim.filterfile}</filter>
+        </filters>
+        <resources>
+            <resource>
+                <directory>resources</directory>
+                <filtering>true</filtering>
+                <includes>
+                    <include>**/*.properties</include>
+                </includes>
+            </resource>
+            <resource>
+                <directory>resources</directory>
+                <filtering>false</filtering>
+                <excludes>
+                    <exclude>**/*.properties</exclude>
+                </excludes>
+            </resource>
+        </resources>
+        <plugins>
+            <plugin>
+                <groupId>org.freehep</groupId>
+                <artifactId>freehep-jas-plugin</artifactId>
+                <version>2.0.1</version>
+                <executions>
+                    <execution>
+                        <goals>
+                            <goal>install</goal>
+                        </goals>
+                    </execution>
+                </executions>
+                <configuration>
+                    <jarName>lcsim</jarName>
+                    <includes>
+                        <include>org.freehep:freehep-physics</include>
+                        <include>org.freehep:freehep-sio</include>
+                        <include>org.lcsim:GeomConverter</include>
+                        <include>org.lcsim:lcsim-conditions</include>
+                        <include>xerces:xercesImpl</include>
+                        <include>commons-math:commons-math</include>
+                    </includes>
+                </configuration>
+            </plugin>      
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-surefire-plugin</artifactId>
+                <configuration>
+                    <excludes>
+                        <exclude>org/lcsim/NonTrivialPFASingleEventTest.java</exclude>
+                        <exclude>**/TestCircle.java</exclude>
+                        <exclude>**/TestSquare.java</exclude>
+                        <exclude>org/lcsim/ReadoutTest.java</exclude>
+                        <exclude>org/lcsim/recon/cluster/directedtree/DirectedTreeProdTest.java</exclude>
+                        <exclude>org/lcsim/LCIOHeaderTest.java</exclude>
+                        <exclude>org/lcsim/PFATest.java</exclude>
+                        <exclude>org/lcsim/recon/cluster/directedtree/DirectedTreeCompareTest.java</exclude>
+                        <exclude>org/lcsim/recon/cluster/nn/NearestNeighborClustererTest.java</exclude> 
+                        <exclude>org/lcsim/LCIOReadTest.java</exclude>
+                        <exclude>org/lcsim/LCIOReconReadTest.java</exclude>
+                        <exclude>org/lcsim/SidloiCalorimeterHitTest.java</exclude>
+                        <exclude>org/lcsim/mc/fast/tracking/fix/FastMCTrackFactoryTest.java</exclude>
+                        <exclude>org/lcsim/mc/fast/tracking/fix/HelixSwimmerTrackConsistencyTest.java</exclude>
+                        <exclude>org/lcsim/DummyTrackStateRelationTest.java</exclude>
+                    </excludes>
+                </configuration>
+            </plugin>
+            <plugin>
+                <artifactId>maven-assembly-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <phase>package</phase>
+                        <configuration>
+                            <descriptors>
+                                <descriptor>${basedir}/src/assembly/bin.xml</descriptor>
+                            </descriptors>
+                            <archive>
+                                <manifest>
+                                    <mainClass>org.lcsim.job.JobControlManager</mainClass>
+                                </manifest>
+                            </archive>                            
+                        </configuration>
+                        <goals>
+                            <goal>attached</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-antrun-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <id>make-timestamp-filter</id>
+                        <phase>generate-resources</phase>
+                        <goals>
+                            <goal>run</goal>
+                        </goals>
+                        <configuration>
+                            <tasks>                      
+                                <mkdir dir="${project.build.directory}" />
+                                <tstamp>
+                                    <format property="last.updated" pattern="yyyy-MM-dd kk:mm:ss z" /> 
+                                </tstamp>
+                                <echo file="${lcsim.filterfile}" message="build.date=${last.updated}" />
+                            </tasks>
+                        </configuration>
+                    </execution>
+                    <execution>
+                        <id>make-test-output-dir</id>
+                        <phase>test</phase>
+                        <goals>
+                            <goal>run</goal>
+                        </goals>
+                        <configuration>
+                            <tasks>                      
+                                <mkdir dir="${project.build.directory}/test-output" />
+                            </tasks>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>            
+        </plugins>
+    </build>
+    <dependencies>
+        <dependency>
+            <groupId>org.lcsim</groupId>
+            <artifactId>GeomConverter</artifactId>
+            <version>1.10-SNAPSHOT</version>
+        </dependency>
+    </dependencies>
+</project>
CVSspam 0.2.8