JAL-3718 Added digestonly key to getdown.txt to copy file to alt or release when...
[jalview.git] / getdown / src / getdown / launcher / pom.xml
index cf94571..dac34c0 100644 (file)
@@ -4,7 +4,7 @@
   <parent>
     <groupId>com.threerings.getdown</groupId>
     <artifactId>getdown</artifactId>
-    <version>1.8.3-SNAPSHOT</version>
+    <version>1.8.3-1.2.7_FJVL</version>
   </parent>
 
   <artifactId>getdown-launcher</artifactId>
@@ -40,6 +40,7 @@
 
   <build>
     <plugins>
+      <!--
       <plugin>
         <groupId>com.github.wvengen</groupId>
         <artifactId>proguard-maven-plugin</artifactId>
@@ -47,7 +48,9 @@
         <executions>
          <execution>
            <phase>package</phase>
-            <goals><goal>proguard</goal></goals>
+           <goals>
+             <goal>proguard</goal>
+           </goals>
          </execution>
         </executions>
         <dependencies>
           <addMavenDescriptor>false</addMavenDescriptor>
         </configuration>
       </plugin>
-
+      -->
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-jar-plugin</artifactId>
           <archive>
             <manifest>
               <mainClass>com.threerings.getdown.launcher.GetdownApp</mainClass>
+              <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
             </manifest>
             <manifestEntries>
               <Permissions>all-permissions</Permissions>
           </archive>
         </configuration>
       </plugin>
+
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-shade-plugin</artifactId>
+        <version>3.2.1</version>
+        <configuration>
+          <!-- put your configurations here -->
+        </configuration>
+        <executions>
+          <execution>
+            <phase>package</phase>
+            <goals>
+              <goal>shade</goal>
+            </goals>
+            <!--
+            <configuration>
+              <minimizeJar>true</minimizeJar>
+              <filters>
+                <filter>
+                  <artifact>install4j-runtime</artifact>
+                  <includes>
+                    <include>**</include>
+                  </includes>
+                </filter>
+              </filters>
+            </configuration>
+            -->
+          </execution>
+        </executions>
+      </plugin>
+
+
+
+
     </plugins>
   </build>