Remove unused launch4j jars (#4218)

This commit is contained in:
Antonin Delpeuch 2021-10-20 14:45:30 +02:00 committed by GitHub
parent 9036e50954
commit 94ffe4811f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 0 additions and 99 deletions

View File

@ -103,105 +103,6 @@
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<version>2.5.2</version>
<executions>
<!-- This is a clean snapshot of launch4j's master branch,
which includes fixes to Java discovery that we need
to support recent versions of Java. When launch4j-3.13
is officially released, remove this and the locally stored
jars -->
<execution>
<id>install-launch4j-core</id>
<phase>process-resources</phase>
<configuration>
<file>${basedir}/lib-local/launch4j-3.13-SNAPSHOT-core.jar</file>
<repositoryLayout>default</repositoryLayout>
<groupId>net.sf.launch4j</groupId>
<artifactId>launch4j</artifactId>
<classifier>core</classifier>
<version>3.13-SNAPSHOT</version>
<packaging>jar</packaging>
<generatePom>true</generatePom>
</configuration>
<goals>
<goal>install-file</goal>
</goals>
</execution>
<execution>
<id>install-launch4j-linux64</id>
<phase>process-resources</phase>
<configuration>
<file>${basedir}/lib-local/launch4j-3.13-SNAPSHOT-workdir-linux64.jar</file>
<repositoryLayout>default</repositoryLayout>
<groupId>net.sf.launch4j</groupId>
<artifactId>launch4j</artifactId>
<classifier>workdir-linux64</classifier>
<version>3.13-SNAPSHOT</version>
<packaging>jar</packaging>
<generatePom>true</generatePom>
</configuration>
<goals>
<goal>install-file</goal>
</goals>
</execution>
<execution>
<id>install-launch4j-linux</id>
<phase>process-resources</phase>
<configuration>
<file>${basedir}/lib-local/launch4j-3.13-SNAPSHOT-workdir-linux.jar</file>
<repositoryLayout>default</repositoryLayout>
<groupId>net.sf.launch4j</groupId>
<artifactId>launch4j</artifactId>
<classifier>workdir-linux</classifier>
<version>3.13-SNAPSHOT</version>
<packaging>jar</packaging>
<generatePom>true</generatePom>
</configuration>
<goals>
<goal>install-file</goal>
</goals>
</execution>
<execution>
<id>install-launch4j-win32</id>
<phase>process-resources</phase>
<configuration>
<file>${basedir}/lib-local/launch4j-3.13-SNAPSHOT-workdir-win32.jar</file>
<repositoryLayout>default</repositoryLayout>
<groupId>net.sf.launch4j</groupId>
<artifactId>launch4j</artifactId>
<classifier>workdir-win32</classifier>
<version>3.13-SNAPSHOT</version>
<packaging>jar</packaging>
<generatePom>true</generatePom>
</configuration>
<goals>
<goal>install-file</goal>
</goals>
</execution>
<execution>
<id>install-launch4j-mac</id>
<phase>process-resources</phase>
<configuration>
<file>${basedir}/lib-local/launch4j-3.13-SNAPSHOT-workdir-mac.jar</file>
<repositoryLayout>default</repositoryLayout>
<groupId>net.sf.launch4j</groupId>
<artifactId>launch4j</artifactId>
<classifier>workdir-mac</classifier>
<version>3.13-SNAPSHOT</version>
<packaging>jar</packaging>
<generatePom>true</generatePom>
</configuration>
<goals>
<goal>install-file</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin> <!-- necessary for launch4j -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>