Commit in lcsim on MAIN
pom2.xml+105-1881.10 -> 1.11
Move stuff to parent poms

lcsim
pom2.xml 1.10 -> 1.11
diff -u -r1.10 -r1.11
--- pom2.xml	7 Nov 2007 02:59:23 -0000	1.10
+++ pom2.xml	15 Jan 2008 20:18:43 -0000	1.11
@@ -1,194 +1,111 @@
-<?xml version="1.0" encoding="UTF-8"?><project>
-  <modelVersion>4.0.0</modelVersion>
-  <groupId>org.lcsim</groupId>
-  <artifactId>lcsim</artifactId>
-  <name>org DOT lcsim</name>
-  <version>1.2-SNAPSHOT</version>
-  <description>org.lcsim</description>
-  <build>
-    <sourceDirectory>src</sourceDirectory>
-    <resources>
-      <resource>
-	<directory>resources</directory>
-      </resource>
-    </resources>
-    <testSourceDirectory>test</testSourceDirectory>
-    <testResources>
-      <testResource>
-	<directory>testResources</directory>
-      </testResource>
-    </testResources>    
-    <defaultGoal>install</defaultGoal>
-    <plugins>
-      <plugin>
-        <groupId>org.freehep</groupId>
-        <artifactId>freehep-jas-plugin</artifactId>
-        <version>2.0-SNAPSHOT</version>
-        <executions>
-          <execution>
-            <goals>
-              <goal>install</goal>
-            </goals>
-          </execution>
-        </executions>
-        <configuration>
-          <jarName>lcsim</jarName>
-          <includes>
-            <include>org.freehep:freehep-physics</include>
-            <include>hep.lcio:sio</include>
-            <include>org.lcsim:GeomConverter</include>
-            <include>xerces:xercesImpl</include>
-            <include>commons-math:commons-math</include>
-          </includes>
-        </configuration>
-      </plugin>
-      <plugin>
-        <artifactId>maven-compiler-plugin</artifactId>
-        <configuration>
-          <source>1.5</source>
-          <target>1.5</target>
-        </configuration>
-      </plugin>
-      
-      <plugin>
-	<groupId>org.apache.maven.plugins</groupId>
-	<artifactId>maven-surefire-plugin</artifactId>
-	<configuration>
-	  <argLine>-Xmx1024m</argLine>
-	  <disableXmlReport>true</disableXmlReport>
-	  <forkMode>always</forkMode>
-	  <excludes>
-	    <!-- 
-		 Fix for http://jira.codehaus.org/browse/SUREFIRE-288 
-		 Ignore inner classes when scanning for tests.
-	    -->
-	    <exclude>**/*$*</exclude>
-	  </excludes>	 
-	  <includes>
-	    <include>org/lcsim/**/*Test.java</include>
-	    <include>org/lcsim/recon/tracking/*/*_t.java</include>
-	  </includes>
-        </configuration>
-      </plugin>
+<?xml version="1.0" encoding="UTF-8"?>
 
-      <!-- Create the directory for test output. -->
-      <plugin>
-	<artifactId>maven-antrun-plugin</artifactId>
-	<executions>
-	  <execution>
-	    <phase>generate-test-resources</phase>
-	    <configuration>
-	      <tasks>
-		<mkdir dir="${project.build.directory}/test-output" />
-	      </tasks>
-	    </configuration>
-	    <goals>
-	      <goal>run</goal>
-	    </goals>
-	  </execution>
-	</executions>
-      </plugin>
-      
-    </plugins>    
-  </build>
-  <repositories>
-    <repository>
-      <id>freehep-maven</id>
-      <name>Maven FreeHEP</name>
-      <url>http://java.freehep.org/maven2</url>
-    </repository>
-  </repositories>
-  <pluginRepositories>
-    <pluginRepository>
-      <id>freehep-maven</id>
-      <name>Maven FreeHEP</name>
-      <url>http://java.freehep.org/maven2</url>
-    </pluginRepository>
-  </pluginRepositories>
-  <dependencies>
-    <dependency>
-      <groupId>org.freehep</groupId>
-      <artifactId>freehep-jaida</artifactId>
-      <version>3.3.0-5</version>
-    </dependency>
-    <dependency>
-      <groupId>org.lcsim</groupId>
-      <artifactId>GeomConverter</artifactId>
-      <version>1.2-SNAPSHOT</version>
-    </dependency>
-    <dependency>
-      <groupId>org.freehep</groupId>
-      <artifactId>freehep-record</artifactId>
-      <version>2.0</version>
-    </dependency>
-    <dependency>
-      <groupId>org.freehep</groupId>
-      <artifactId>freehep-sio</artifactId>
-      <version>2.0</version>
-    </dependency>
-    <dependency>
-      <groupId>org.freehep</groupId>
-      <artifactId>freehep-stdhep</artifactId>
-      <version>2.0.1</version>
-    </dependency>
-    <dependency>
-      <groupId>org.freehep</groupId>
-      <artifactId>freehep-physics</artifactId>
-      <version>2.1</version>
-    </dependency>
-    <dependency>
-      <groupId>org.freehep</groupId>
-      <artifactId>jas3</artifactId>
-      <version>0.8.1</version>
-    </dependency>
-    <dependency>
-      <groupId>org.freehep</groupId>
-      <artifactId>jas-plotter</artifactId>
-      <version>2.2.2</version>
-    </dependency>
-    <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <version>3.8.2</version>
-      <scope>test</scope>
-    </dependency>
-    <dependency>
-      <groupId>commons-math</groupId>
-      <artifactId>commons-math</artifactId>
-      <version>1.1</version>
-    </dependency>
-    <dependency>
-      <groupId>xerces</groupId>
-      <artifactId>xercesImpl</artifactId>
-      <version>2.7.1</version>
-    </dependency>
-    <dependency>
-      <groupId>net.java.dev</groupId>
-      <artifactId>truezip</artifactId>
-      <version>6.6</version>
-    </dependency>
-  </dependencies>
-  <reporting>
-    <plugins>
-      <plugin>
-        <artifactId>maven-javadoc-plugin</artifactId>
-        <configuration>
-          <source>1.5</source>
-          <links>
-               <link>http://java.sun.com/j2se/1.5.0/docs/api/</link>
-               <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>
-          </links>
-        </configuration>
-      </plugin>
-    </plugins>
-  </reporting>
-    <distributionManagement>
+<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>lcsim</artifactId>
+    <name>org DOT lcsim</name>
+    <version>1.2-SNAPSHOT</version>
+    <description>org.lcsim</description>
+    
+    <parent>
+        <groupId>org.lcsim</groupId>
+        <artifactId>lcsim-parent</artifactId>
+        <version>1.0-SNAPSHOT</version>
+    </parent>
+    
+     <repositories>
         <repository>
             <id>lcsim-maven</id>
             <name>org.lcsim Maven Repository</name>
-            <url>scpexe://cvs.freehep.org//nfs/slac/g/lcd/mc/prj/www/lcsim/maven2</url>
+            <url>http://lcsim.org/maven2</url>
         </repository>
-    </distributionManagement>
+    </repositories>
+    
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.freehep</groupId>
+                <artifactId>freehep-jas-plugin</artifactId>
+                <version>2.0-SNAPSHOT</version>
+                <executions>
+                    <execution>
+                        <goals>
+                            <goal>install</goal>
+                        </goals>
+                    </execution>
+                </executions>
+                <configuration>
+                    <jarName>lcsim</jarName>
+                    <includes>
+                        <include>org.freehep:freehep-physics</include>
+                        <include>hep.lcio:sio</include>
+                        <include>org.lcsim:GeomConverter</include>
+                        <include>xerces:xercesImpl</include>
+                        <include>commons-math:commons-math</include>
+                    </includes>
+                </configuration>
+            </plugin>      
+        </plugins>    
+    </build>
+    
+    <dependencies>
+        <dependency>
+            <groupId>org.freehep</groupId>
+            <artifactId>freehep-jaida</artifactId>
+            <version>3.3.0-5</version>
+        </dependency>
+        <dependency>
+            <groupId>org.lcsim</groupId>
+            <artifactId>GeomConverter</artifactId>
+            <version>1.2-SNAPSHOT</version>
+        </dependency>
+        <dependency>
+            <groupId>org.freehep</groupId>
+            <artifactId>freehep-record</artifactId>
+            <version>2.0</version>
+        </dependency>
+        <dependency>
+            <groupId>org.freehep</groupId>
+            <artifactId>freehep-sio</artifactId>
+            <version>2.0</version>
+        </dependency>
+        <dependency>
+            <groupId>org.freehep</groupId>
+            <artifactId>freehep-stdhep</artifactId>
+            <version>2.0.1</version>
+        </dependency>
+        <dependency>
+            <groupId>org.freehep</groupId>
+            <artifactId>freehep-physics</artifactId>
+            <version>2.1</version>
+        </dependency>
+        <dependency>
+            <groupId>org.freehep</groupId>
+            <artifactId>jas3</artifactId>
+            <version>0.8.1</version>
+        </dependency>
+        <dependency>
+            <groupId>org.freehep</groupId>
+            <artifactId>jas-plotter</artifactId>
+            <version>2.2.2</version>
+        </dependency>
+        <dependency>
+            <groupId>commons-math</groupId>
+            <artifactId>commons-math</artifactId>
+            <version>1.1</version>
+        </dependency>
+        <dependency>
+            <groupId>xerces</groupId>
+            <artifactId>xercesImpl</artifactId>
+            <version>2.7.1</version>
+        </dependency>
+        <dependency>
+            <groupId>net.java.dev</groupId>
+            <artifactId>truezip</artifactId>
+            <version>6.6</version>
+        </dependency>
+    </dependencies>
 </project>
CVSspam 0.2.8