added cleanup tasks after bundle jre
[taxeditor.git] / eu.etaxonomy.taxeditor / pom.xml
index a40f8c6cffc202fe1ac05bf8320f2cf1fcd3d7a3..7e7c37700a9c474dba61f32ab81da860938ebbe4 100644 (file)
@@ -3,7 +3,7 @@
   <parent>
     <groupId>eu.etaxonomy</groupId>
     <artifactId>taxeditor-parent</artifactId>
-    <version>3.3.8-SNAPSHOT</version>
+    <version>3.5.0-SNAPSHOT</version>
   </parent>
 
   <modelVersion>4.0.0</modelVersion>
   <name>EDIT Taxonomic Editor Product</name>
   <description>The EDIT Taxonomic Desktop Editor</description>
   <url>http://wp5.e-taxonomy.eu/taxeditor</url>
-
+  <properties>
+    <jre.vm>-vm jre/bin</jre.vm>
+    <product.id>eu.etaxonomy.taxeditor.product</product.id>
+  </properties>
   <build>
     <plugins>
       <plugin>
@@ -37,7 +40,7 @@
         <configuration>
           <products>
             <product>
-              <id>eu.etaxonomy.taxeditor.product</id>
+              <id>${product.id}</id>
               <rootFolder>EDIT Taxonomic Editor</rootFolder>
             </product>
           </products>
             <artifactId>maven-jarsigner-plugin</artifactId>
             <version>1.3.2</version>
             <configuration>
+              <alias>editor</alias>
+              <removeExistingSignatures>true</removeExistingSignatures>
+              <!-- keystore properties should be set in the ~/.m2/settings.xml -->
               <keystore>${keystore.path}</keystore>
               <storepass>${keystore.store.password}</storepass>
-              <alias>editor</alias>
               <keypass>${keystore.key.password}</keypass>
-              <removeExistingSignatures>true</removeExistingSignatures>
+
               <archiveDirectory>${project.build.directory}/repository</archiveDirectory>
+              <!-- Following two settings are to ensure that the product 
+                .zip files are not signed -->
+              <processMainArtifact>false</processMainArtifact>
+              <processAttachedArtifacts>false</processAttachedArtifacts>
               <includes>
-                <include>**/eu.etaxonomy.taxeditor*.jar</include>
+                <include>plugins/eu.etaxonomy.taxeditor*.jar</include>
+                <include>features/eu.etaxonomy.taxeditor*.jar</include>
               </includes>
-              <excludes>
-                <exclude>**/*.zip</exclude>
-              </excludes>
               <arguments>
                 <!-- Due to bug https://bugs.eclipse.org/bugs/show_bug.cgi?id=378155 
-                     we need to force the signature / digest algorithm to SHA1 since
-                     this is the only one which plays well with Eclipse 3.x -->
-                <argument>-sigalg</argument><argument>SHA1withDSA</argument>
-                <argument>-digestalg</argument><argument>SHA1</argument>
+                  we need to force the signature / digest algorithm to SHA1 since this is the 
+                  only one which plays well with Eclipse 3.x -->
+                <argument>-sigalg</argument>
+                <argument>SHA1withDSA</argument>
+                <argument>-digestalg</argument>
+                <argument>SHA1</argument>
               </arguments>
             </configuration>
             <executions>
@@ -89,6 +98,8 @@
     </profile>
     <profile>
       <!-- Upload the repo to the server -->
+      <!-- ATTENTION : This does not work well currently since the file permissions 
+        are set with read permission set to off after upload -->
       <id>uploadRepo</id>
       <build>
         <plugins>
             <configuration>
               <fromDir>${project.build.directory}/repository</fromDir>
               <url>scpexe://wp5.e-taxonomy.eu/var/www/download/taxeditor/update/${update.dir}</url>
-              <includes>binary/*,content.jar,artifacts.jar,**/eu.etaxonomy.*.jar</includes>
+              <includes>
+                binary/*,content.jar,artifacts.jar,**/eu.etaxonomy.*.jar
+              </includes>
               <!-- Comment out the above and uncomment the below to upload 
                 all jars -->
               <!-- <includes>**/*</includes> -->
         </plugins>
       </build>
     </profile>
+    <profile>
+      <!-- Configures the editor to lanuch using the packaged jre by adding 
+        the '-vm jre/bin' option the eu.etaxonomy.taxeditor/eu.etaxonomy.taxeditor.product -->
+      <id>bundleJre</id>
+      <build>
+        <plugins>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-antrun-plugin</artifactId>
+            <version>1.8</version>
+            <executions>
+              <execution>
+                <id>setProductWithJRE</id>
+                <phase>validate</phase>
+                <configuration>
+                  <target>
+                    <copy overwrite="true" force="true"
+                      file="${basedir}/eu.etaxonomy.taxeditor.product.with.jre"
+                      tofile="${basedir}/eu.etaxonomy.taxeditor.product" />
+                  </target>
+                </configuration>
+                <goals>
+                  <goal>run</goal>
+                </goals>
+              </execution>
+              <execution>
+                <id>setProductWithoutJRE</id>
+                <phase>clean</phase>
+                <configuration>
+                  <target>
+                    <copy overwrite="true" force="true"
+                      file="${basedir}/eu.etaxonomy.taxeditor.product.wo.jre"
+                      tofile="${basedir}/eu.etaxonomy.taxeditor.product" />
+                  </target>
+                </configuration>
+                <goals>
+                  <goal>run</goal>
+                </goals>
+              </execution>
+            </executions>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
   </profiles>
 
 </project>
\ No newline at end of file