Commit in lcsim-cal-calib on MAIN
pom.xml+66-791.1 -> 1.2
cleaned up dependencies

lcsim-cal-calib
pom.xml 1.1 -> 1.2
diff -u -r1.1 -r1.2
--- pom.xml	19 May 2008 21:31:58 -0000	1.1
+++ pom.xml	22 Jul 2008 23:20:44 -0000	1.2
@@ -1,83 +1,70 @@
-<?xml version="1.0" encoding="UTF-8"?><project>
-  <modelVersion>4.0.0</modelVersion>
-  <groupId>org.lcsim</groupId>
+<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-cal-calib</artifactId>
   <name>lcsim Calorimeter Calibration</name>
   <version>0.1-SNAPSHOT</version>
   <description>An org.lcsim based calorimeter calibration package.</description>
-  <build>
-    <sourceDirectory>src</sourceDirectory>
-    <defaultGoal>install</defaultGoal>
-    <testSourceDirectory>test</testSourceDirectory>
-    <testResources>
-      <testResource>
-        <directory>test</directory>
-      </testResource>
-    </testResources>
-    <pluginManagement>
-      <plugins>
-        <plugin>
-          <artifactId>maven-compiler-plugin</artifactId>
-          <configuration>
-            <excludes>
-              <exclude>org/lcsim/contrib/**</exclude>
-            </excludes>
-            <source>1.5</source>
-            <target>1.5</target>
-          </configuration>
-        </plugin>
-      </plugins>
-    </pluginManagement>
-  </build>
-  <repositories>
-    <repository>
-      <id>freehep-maven</id>
-      <name>Maven FreeHEP</name>
-      <url>http://java.freehep.org/maven2</url>
-    </repository>
-  </repositories>
-  <dependencies>
-    <dependency>
-      <groupId>org.freehep</groupId>
-      <artifactId>freehep-jaida</artifactId>
-      <version>3.3.0-5</version> 
-    </dependency>
-    <dependency>
-      <groupId>org.lcsim</groupId>
-      <artifactId>lcsim</artifactId>
-      <version>1.2-SNAPSHOT</version>
-    </dependency>
-    <dependency>
-      <groupId>commons-cli</groupId>
-      <artifactId>commons-cli</artifactId>
-      <version>1.0</version>
-      <type>jar</type>
-    </dependency>
-    <dependency>
-      <groupId>commons-io</groupId>
-      <artifactId>commons-io</artifactId>
-      <version>1.1</version>
-      <type>jar</type>
-    </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>
\ No newline at end of file
+    <groupId>org.lcsim</groupId>
+    <packaging>jar</packaging>
+    <build>
+        <defaultGoal>assembly:assembly</defaultGoal>
+        <plugins>
+            <plugin>
+                <artifactId>maven-compiler-plugin</artifactId>
+                <configuration>
+                    <source>1.5</source>
+                    <target>1.5</target>
+                </configuration>
+            </plugin>
+            <plugin>
+                <artifactId>maven-assembly-plugin</artifactId>
+                <configuration>
+                    <descriptors>
+                        <descriptor>src/main/assembly/deps.xml</descriptor>
+                    </descriptors>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-jar-plugin</artifactId>
+                <configuration>
+                    <archive>
+                        <manifest>
+                            <addClasspath>true</addClasspath>
+                            <classpathPrefix></classpathPrefix>
+                            <mainClass>org.lcsim.cal.calib.Calibrate</mainClass>
+                            <packageName>org.lcsim</packageName>
+                        </manifest>
+                    </archive>
+                </configuration>
+            </plugin>
+            <plugin>
+                <artifactId>maven-antrun-plugin</artifactId>
+                <version>1.1</version>
+                <executions>
+                    <execution>
+                        <phase>install</phase>
+                        <configuration>
+                            <tasks>
+                                <unzip src="${project.build.directory}/${project.build.finalName}-deps.zip" 
+                                       dest="${project.basedir}"/>
+                            </tasks>
+                        </configuration> 
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+    </build>  
+    <parent>
+        <groupId>org.lcsim</groupId>
+        <artifactId>lcsim-parent</artifactId>
+        <version>1.1-SNAPSHOT</version>
+    </parent>
+    <dependencies>
+        <dependency>
+            <groupId>org.lcsim</groupId>
+            <artifactId>lcsim</artifactId>
+            <version>1.3-SNAPSHOT</version>
+        </dependency>
+    </dependencies>
+</project>
CVSspam 0.2.8