Commit in lcsim on MAIN
pom.xml+29-11.116 -> 1.117
add maven shade plugin to produce shade-bin uber jar; fixes problem with overwritten service files in META-INF

lcsim
pom.xml 1.116 -> 1.117
diff -u -r1.116 -r1.117
--- pom.xml	4 Jun 2010 21:27:46 -0000	1.116
+++ pom.xml	16 Jun 2010 23:36:33 -0000	1.117
@@ -205,7 +205,35 @@
                         </configuration>
                     </execution>
                 </executions>
-            </plugin>            
+            </plugin>       
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-shade-plugin</artifactId>
+                <version>1.3.3</version>
+                <executions>
+                    <execution>
+                        <phase>package</phase>
+                        <goals>
+                            <goal>shade</goal>
+                        </goals>
+                        <configuration>
+                            <shadedArtifactAttached>true</shadedArtifactAttached>
+                            <shadedClassifierName>shade-bin</shadedClassifierName>
+                            <transformers>
+                                <transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer"/>
+                                <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
+                                    <mainClass>org.lcsim.job.JobControlManager</mainClass>
+                                </transformer>
+                            </transformers>
+                            <artifactSet>
+                                <excludes>
+                                    <exclude>hep.testdata.aida:*</exclude>
+                                </excludes>
+                            </artifactSet>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>                 
         </plugins>
     </build>
     <dependencies>
CVSspam 0.2.8