Print

Print


Commit in hps-java on MAIN
pom.xml+76-311.93 -> 1.94
filter scripts

hps-java
pom.xml 1.93 -> 1.94
diff -u -r1.93 -r1.94
--- pom.xml	4 Jun 2013 18:07:31 -0000	1.93
+++ pom.xml	4 Jun 2013 19:58:07 -0000	1.94
@@ -1,5 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<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">
+<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>hps-java</artifactId>
     <groupId>org.lcsim</groupId>
@@ -10,7 +11,7 @@
         <groupId>org.lcsim</groupId>
         <artifactId>lcsim-parent</artifactId>
         <version>2.9</version>
-    </parent>    
+    </parent>
     <repositories>
         <repository>
             <id>lcsim-maven-repo</id>
@@ -25,7 +26,7 @@
                 <enabled>true</enabled>
             </releases>
         </repository>
-    </repositories>    
+    </repositories>
     <scm>
         <connection>scm:cvs:pserver:${lcd.cvs.username}:[log in to unmask]:/cvs/lcd:hps-java</connection>
         <developerConnection>scm:cvs:pserver:${lcd.cvs.username}:[log in to unmask]:/cvs/lcd:hps-java</developerConnection>
@@ -38,7 +39,7 @@
             <url>scpexe://svn.slac.stanford.edu///nfs/slac/g/lcd/mc/prj/www/lcsim/software/hps-java/${project.version}</url>
         </site>
     </distributionManagement>
-    <developers>        
+    <developers>
         <developer>
             <name>Jeremy McCormick</name>
             <email>[log in to unmask]</email>
@@ -51,7 +52,7 @@
             <properties>
                 <aim>jeremyslac</aim>
             </properties>
-        </developer>       
+        </developer>
         <developer>
             <name>Matthew Graham</name>
             <email>[log in to unmask]</email>
@@ -61,7 +62,7 @@
                 <role>developer</role>
             </roles>
             <timezone>-8</timezone>
-        </developer>     
+        </developer>
         <developer>
             <name>Sho Uemura</name>
             <email>[log in to unmask]</email>
@@ -94,16 +95,16 @@
     </developers>
     <mailingLists>
         <mailingList>
-          <name>hps-software</name>
-          <subscribe>Email [log in to unmask] with message: subscribe hps-software</subscribe>
-          <unsubscribe>Email [log in to unmask] with message: unsubscribe hps-software</unsubscribe>
-          <post>[log in to unmask]</post>
-          <archive>https://listserv.slac.stanford.edu/cgi-bin/wa?A0=HPS-SOFTWARE</archive>
+            <name>hps-software</name>
+            <subscribe>Email [log in to unmask] with message: subscribe hps-software</subscribe>
+            <unsubscribe>Email [log in to unmask] with message: unsubscribe hps-software</unsubscribe>
+            <post>[log in to unmask]</post>
+            <archive>https://listserv.slac.stanford.edu/cgi-bin/wa?A0=HPS-SOFTWARE</archive>
         </mailingList>
     </mailingLists>
     <issueManagement>
         <system>JIRA</system>
-        <url>https://jira.slac.stanford.edu/browse/HPSJAVA/</url>        
+        <url>https://jira.slac.stanford.edu/browse/HPSJAVA/</url>
     </issueManagement>
     <reporting>
         <plugins>
@@ -113,13 +114,14 @@
                 <configuration>
                     <anonymousConnection>scm:cvs:pserver:[log in to unmask]:/cvs/lcd:hps-java</anonymousConnection>
                 </configuration>
-            </plugin>                        
+            </plugin>
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-changes-plugin</artifactId>
                 <version>2.9</version>
                 <configuration>
-                    <columnNames>Type,Key,Summary,Assignee,Status,Resolution,Fix Version,Created</columnNames>
+                    <columnNames>Type,Key,Summary,Assignee,Status,Resolution,Fix
+                        Version,Created</columnNames>
                     <sortColumnNames>Type,Key DESC</sortColumnNames>
                     <statusIds>Resolved, Closed</statusIds>
                     <maxEntries>9999</maxEntries>
@@ -133,12 +135,53 @@
                         </reports>
                     </reportSet>
                 </reportSets>
-            </plugin>                                   
+            </plugin>
         </plugins>
     </reporting>
     <build>
         <plugins>
             <plugin>
+                <artifactId>maven-resources-plugin</artifactId>
+                <version>2.6</version>
+                <executions>
+                    <execution>
+                        <id>copy-resources</id>
+                        <phase>install</phase>
+                        <goals>
+                            <goal>copy-resources</goal>
+                        </goals>
+                        <configuration>
+                            <outputDirectory>${basedir}/target/scripts</outputDirectory>
+                            <resources>
+                                <resource>
+                                    <directory>scripts/</directory>
+                                    <filtering>true</filtering>
+                                </resource>
+                            </resources>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-antrun-plugin</artifactId>
+                <version>1.7</version>
+                <executions>
+                    <execution>
+                        <id>chmod-scripts</id>
+                        <phase>install</phase>
+                        <configuration>
+                            <target>
+                                <chmod file="target/scripts/*.sh" perm="755" />
+                            </target>
+                        </configuration>
+                        <goals>
+                            <goal>run</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+            <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-surefire-plugin</artifactId>
                 <configuration>
@@ -156,14 +199,14 @@
                 <artifactId>freehep-jas-plugin</artifactId>
                 <version>3.1.4</version>
                 <configuration>
-                  <excludes>
-                    <exclude>org.freehep:jas-core</exclude>
-                    <exclude>junit:junit</exclude>
-                    <exclude>org.freehep:freehep-application</exclude>
-                    <exclude>org.netbeans:openide-lookup</exclude>
-                    <exclude>jdom:jdom</exclude>
-                    <exclude>javax.help:javahelp</exclude>
-                  </excludes>
+                    <excludes>
+                        <exclude>org.freehep:jas-core</exclude>
+                        <exclude>junit:junit</exclude>
+                        <exclude>org.freehep:freehep-application</exclude>
+                        <exclude>org.netbeans:openide-lookup</exclude>
+                        <exclude>jdom:jdom</exclude>
+                        <exclude>javax.help:javahelp</exclude>
+                    </excludes>
                 </configuration>
                 <executions>
                     <execution>
@@ -172,10 +215,10 @@
                         </goals>
                     </execution>
                     <execution>
-                      <id>process-descriptor</id>
-                      <goals>
-                        <goal>process-descriptor</goal>
-                      </goals>
+                        <id>process-descriptor</id>
+                        <goals>
+                            <goal>process-descriptor</goal>
+                        </goals>
                     </execution>
                 </executions>
             </plugin>
@@ -193,8 +236,10 @@
                             <shadedArtifactAttached>true</shadedArtifactAttached>
                             <shadedClassifierName>bin</shadedClassifierName>
                             <transformers>
-                                <transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" />
-                                <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
+                                <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>
@@ -223,7 +268,7 @@
         <dependency>
             <groupId>org.lcsim</groupId>
             <artifactId>hps-detectors</artifactId>
-            <version>1.5-SNAPSHOT</version>
+            <version>1.4</version>
         </dependency>
         <dependency>
             <groupId>org.freehep</groupId>
@@ -231,4 +276,4 @@
             <version>3.3.0-12</version>
         </dependency>
     </dependencies>
-</project>
+</project>
\ No newline at end of file
CVSspam 0.2.12


Use REPLY-ALL to reply to list

To unsubscribe from the LCD-CVS list, click the following link:
https://listserv.slac.stanford.edu/cgi-bin/wa?SUBED1=LCD-CVS&A=1