aur/assembler_pom.patch
2025-06-19 00:06:14 +01:00

86 lines
3.4 KiB
Diff

--- pom.xml 2025-06-18 21:53:27.000000000 +0100
+++ pom-MODIFIED.xml 2025-06-18 23:41:25.678331045 +0100
@@ -47,19 +47,6 @@
<artifactId>download-maven-plugin</artifactId>
<executions>
<execution>
- <id>download-jre-windows</id>
- <phase>package</phase>
- <goals>
- <goal>wget</goal>
- </goals>
- <configuration>
- <url>https://github.com/nbauma109/jre-builder/releases/download/${jre.builder.version}/jre-${jre.builder.version}-${jre.version}-windows.zip</url>
- <unpack>true</unpack>
- <outputDirectory>${project.build.directory}/windows/jre</outputDirectory>
- <sha512>1df09e495aa76e55928d93f17f6128b0b05d8de817404d71b71ffc3c70f1c7d044a74d38b046bc69e8d71b49fa066336f4f43bbc2d9cbd907e34a881b19e0a05</sha512>
- </configuration>
- </execution>
- <execution>
<id>download-jre-linux</id>
<phase>package</phase>
<goals>
@@ -72,19 +59,6 @@
<sha512>07cf8d488c3ab7febe1f046a745cc6d5ecf62ddbe323ddac533278c2b5bc2abbb9407de330d4fa4380c1cdd0617d02a83b7935fbd19f18e11c8be3f31ac77598</sha512>
</configuration>
</execution>
- <execution>
- <id>download-jre-macos</id>
- <phase>package</phase>
- <goals>
- <goal>wget</goal>
- </goals>
- <configuration>
- <url>https://github.com/nbauma109/jre-builder/releases/download/${jre.builder.version}/jre-${jre.builder.version}-${jre.version}-macos.zip</url>
- <unpack>true</unpack>
- <outputDirectory>${project.build.directory}/macos/jre</outputDirectory>
- <sha512>8100c651e49263f8e4fed00f8823f962dcaadf93840671edec59539ee399526cf5bdc358cc6f34901d5f86d20ce40071d6707ee098a00e350d3ae5c828652bcc</sha512>
- </configuration>
- </execution>
</executions>
</plugin>
@@ -110,21 +84,6 @@
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
- <id>assemble-windows</id>
- <phase>package</phase>
- <goals>
- <goal>single</goal>
- </goals>
- <configuration>
- <attach>false</attach>
- <appendAssemblyId>false</appendAssemblyId>
- <finalName>jd-gui-duo-windows-${project.version}</finalName>
- <descriptors>
- <descriptor>assembly-windows.xml</descriptor>
- </descriptors>
- </configuration>
- </execution>
- <execution>
<id>assemble-linux</id>
<phase>package</phase>
<goals>
@@ -139,21 +98,6 @@
</descriptors>
</configuration>
</execution>
- <execution>
- <id>assemble-macos</id>
- <phase>package</phase>
- <goals>
- <goal>single</goal>
- </goals>
- <configuration>
- <attach>false</attach>
- <appendAssemblyId>false</appendAssemblyId>
- <finalName>jd-gui-duo-macos-${project.version}</finalName>
- <descriptors>
- <descriptor>assembly-macos.xml</descriptor>
- </descriptors>
- </configuration>
- </execution>
</executions>
</plugin>
<plugin>