Print

Print


Commit in GeomConverter on MAIN
pom2.xml+134-1541.5 -> 1.6
Update maven2 support

GeomConverter
pom2.xml 1.5 -> 1.6
diff -u -r1.5 -r1.6
--- pom2.xml	12 Sep 2007 18:24:28 -0000	1.5
+++ pom2.xml	7 Nov 2007 02:58:01 -0000	1.6
@@ -1,157 +1,137 @@
-<?xml version="1.0" encoding="UTF-8"?><project>
-<modelVersion>4.0.0</modelVersion>
-<groupId>org.lcsim</groupId>
-<artifactId>GeomConverter</artifactId>
-<name>GeomConverter</name>
-<version>1.1-SNAPSHOT</version>
-<description>LCSIM Geometry Converter</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>    	
-    <resource>
-      <directory>resources</directory>
-      <includes>
-	<include>**/**</include>
-      </includes>
-    </resource>
-  </resources>
-  <testSourceDirectory>test</testSourceDirectory>    
-  <testResources>
-    <testResource>
-      <directory>test</directory>
-      <includes>
-	<include>**/*.xml</include>
-	<include>**/*.xsd</include>
-	<include>**/*.properties</include>
-      </includes>
-    </testResource>
-    <testResource>
-      <directory>testResources</directory>
-      <includes>
-	<include>**/**</include>
-      </includes>
-    </testResource>
-  </testResources>   
-  <defaultGoal>install</defaultGoal>
-  <plugins>
-    <plugin>
-      <artifactId>maven-compiler-plugin</artifactId>
-      <configuration>
-	<source>1.5</source>
-	<target>1.5</target>
-      </configuration>
-    </plugin>
+<?xml version="1.0" encoding="UTF-8"?>
+<project>
+    <modelVersion>4.0.0</modelVersion>
+    <groupId>org.lcsim</groupId>
+    <artifactId>GeomConverter</artifactId>
+    <name>GeomConverter</name>
+    <version>1.2-SNAPSHOT</version>
+    <description>LCSIM Geometry Converter</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>
+                <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>
+                </configuration>
+            </plugin>
+            
+            <!-- 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>
+    <distributionManagement>
+        <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>
+        </repository>
+    </distributionManagement>
+    <dependencies>
+        <dependency>
+            <groupId>jdom</groupId>
+            <artifactId>jdom</artifactId>
+            <version>1.0</version>
+        </dependency>
+        <dependency>
+            <groupId>org.freehep</groupId>
+            <artifactId>freehep-heprep</artifactId>
+            <version>2.0.3</version>
+        </dependency>
+        <dependency>
+            <groupId>org.freehep</groupId>
+            <artifactId>freehep-jheprep</artifactId>
+            <version>2.0.5</version>
+        </dependency>
+        <dependency>
+            <groupId>org.freehep</groupId>
+            <artifactId>freehep-physics</artifactId>
+            <version>2.1</version>
+        </dependency>
+        <dependency>
+            <groupId>org.gnu</groupId>
+            <artifactId>jel</artifactId>
+            <version>0.9.10</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>
     
-    <plugin>
-      <groupId>org.apache.maven.plugins</groupId>
-      <artifactId>maven-surefire-plugin</artifactId>
-      <configuration>
-	<argLine>-Xmx1024m</argLine>
-      </configuration>
-    </plugin>
-
-    <!-- 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>
+    <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>
     
-  </plugins>
-
-</build>
-<repositories>
-  <repository>
-    <id>freehep-maven</id>
-    <name>Maven FreeHEP</name>
-    <url>http://java.freehep.org/maven2</url>
-  </repository>
-</repositories>
-<dependencies>
-  <dependency>
-    <groupId>jdom</groupId>
-    <artifactId>jdom</artifactId>
-    <version>1.0</version>
-  </dependency>
-  <dependency>
-    <groupId>org.freehep</groupId>
-    <artifactId>freehep-heprep</artifactId>
-    <version>2.0.2</version>
-  </dependency>
-
-  <dependency>
-    <groupId>org.freehep</groupId>
-    <artifactId>freehep-jheprep</artifactId>
-    <version>2.0.4</version>
-  </dependency>
-
-  <dependency>
-    <groupId>org.freehep</groupId>
-    <artifactId>freehep-physics</artifactId>
-    <version>2.1</version>
-  </dependency>
-  <dependency>
-    <groupId>org.gnu</groupId>
-    <artifactId>jel</artifactId>
-    <version>0.9.10</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