Commit in lcsim on MAIN
pom2.xml+181added 1.1
JM: Change maven 2 pom name to fix TJ Netbeans problem.

lcsim
pom2.xml added at 1.1
diff -N pom2.xml
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ pom2.xml	8 Aug 2007 17:37:46 -0000	1.1
@@ -0,0 +1,181 @@
+<?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.1-SNAPSHOT</version>
+  <description>org.lcsim</description>
+  <build>
+    <sourceDirectory>src</sourceDirectory>
+    <resources>
+      <resource>
+	<directory>src</directory>
+	<includes>
+	  <include>**/*.xml</include>
+	  <include>**/*.xsd</include>
+	  <include>**/*.properties</include>
+	  <include>META-INF/services/*</include>
+	</includes>
+      </resource>    	
+    </resources>
+    <testSourceDirectory>test</testSourceDirectory>
+    <testResources>
+      <testResource>
+	<directory>test</directory>
+	<includes>
+	  <include>**/*.xml</include>
+	  <include>**/*.xsd</include>
+	  <include>**/*.properties</include>
+	</includes>
+      </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>
+	  <excludes>
+	    <exclude>org/lcsim/recon/tracking/**</exclude>
+	    <exclude>org/lcsim/spacegeom/**</exclude>
+	    <!--http://jira.codehaus.org/browse/SUREFIRE-288-->
+	    <exclude>**/*$*</exclude>
+	  </excludes>	 
+        </configuration>
+      </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>hep.aida</groupId>
+      <artifactId>aida</artifactId>
+      <version>3.2.1</version>
+    </dependency>
+    <dependency>
+      <groupId>org.freehep</groupId>
+      <artifactId>freehep-jaida</artifactId>
+      <version>3.3.0-1</version>
+    </dependency>
+    <dependency>
+      <groupId>org.lcsim</groupId>
+      <artifactId>GeomConverter</artifactId>
+      <version>1.1-SNAPSHOT</version>
+    </dependency>
+    <dependency>
+      <groupId>hep.lcio</groupId>
+      <artifactId>lcio</artifactId>
+      <version>1.7.2-SNAPSHOT</version>
+    </dependency>
+    <dependency>
+      <groupId>org.freehep</groupId>
+      <artifactId>freehep-application</artifactId>
+      <version>2.0.1-SNAPSHOT</version>
+    </dependency>
+    <dependency>
+      <groupId>org.freehep</groupId>
+      <artifactId>freehep-swing</artifactId>
+      <version>2.0</version>
+    </dependency>
+    <dependency>
+      <groupId>org.freehep</groupId>
+      <artifactId>freehep-record</artifactId>
+      <version>2.0-SNAPSHOT</version>
+    </dependency>
+    <dependency>
+      <groupId>org.freehep</groupId>
+      <artifactId>freehep-stdhep</artifactId>
+      <version>2.0</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>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>
+  </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>
+          </links>
+        </configuration>
+      </plugin>
+    </plugins>
+  </reporting>
+  <distributionManagement>
+    <repository>
+      <id>freehep-maven-deploy</id>
+      <name>FreeHEP Maven Repository</name>
+      <url>scpexe://svn.freehep.org/nfs/slac/g/jas/maven2</url>
+    </repository>
+  </distributionManagement>
+</project>
CVSspam 0.2.8