Commit in GeomConverter on MAIN
pom.xml+25-21.42 -> 1.43
src/assembly/bin.xml+25added 1.1
+50-2
1 added + 1 modified, total 2 files
replace GeomConverter run script with a standalone, executable jar (requested by Norman)

GeomConverter
pom.xml 1.42 -> 1.43
diff -u -r1.42 -r1.43
--- pom.xml	14 Aug 2009 23:21:26 -0000	1.42
+++ pom.xml	7 Dec 2009 22:59:27 -0000	1.43
@@ -8,7 +8,7 @@
         <connection>scm:cvs:pserver:[log in to unmask]:/cvs/lcd:GeomConverter</connection>
         <developerConnection>scm:cvs:pserver:[log in to unmask]:/cvs/lcd:GeomConverter</developerConnection>
         <url>http://source.freehep.org/jcvsweb/ilc/GeomConverter/list/GeomConverter</url>
-  </scm>    
+    </scm>    
     <build>
         <plugins>
             <plugin>
@@ -21,6 +21,28 @@
                 </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.geometry.compact.converter.Main</mainClass>
+                                </manifest>
+                            </archive>                            
+                        </configuration>
+                         <goals>
+                            <goal>attached</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+<!--
+            <plugin>
                 <groupId>org.lcsim</groupId>
                 <artifactId>run-script-maven-plugin</artifactId>
                 <version>1.1</version>
@@ -38,7 +60,8 @@
                         </configuration>
                     </execution>
                 </executions>
-            </plugin>                   
+            </plugin>           
+-->        
         </plugins>
     </build>    
     <repositories>

GeomConverter/src/assembly
bin.xml added at 1.1
diff -N bin.xml
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ bin.xml	7 Dec 2009 22:59:27 -0000	1.1
@@ -0,0 +1,25 @@
+<?xml version="1.0" encoding="utf-8"?>
+<assembly>
+    <id>bin</id>
+    <formats>
+        <format>jar</format>
+    </formats>
+    <includeBaseDirectory>false</includeBaseDirectory>
+    <fileSets>
+        <fileSet>
+            <directory>target/classes</directory>
+            <outputDirectory>/</outputDirectory>
+        </fileSet>
+    </fileSets>
+    <dependencySets>
+        <dependencySet>
+            <outputDirectory>/</outputDirectory>
+            <unpack>true</unpack>
+            <scope>runtime</scope>
+            <excludes>
+                <exclude>**/*.testdata.*</exclude>
+            </excludes>
+            <useTransitiveDependencies>true</useTransitiveDependencies>
+        </dependencySet>
+    </dependencySets>
+</assembly>
\ No newline at end of file
CVSspam 0.2.8