Update Launch4j to snapshot of development version. Closes #1995 too.
This commit is contained in:
parent
0d500827bf
commit
0fefb2ad45
BIN
packaging/lib-local/launch4j-3.13-SNAPSHOT-core.jar
Normal file
BIN
packaging/lib-local/launch4j-3.13-SNAPSHOT-core.jar
Normal file
Binary file not shown.
BIN
packaging/lib-local/launch4j-3.13-SNAPSHOT-workdir-linux.jar
Normal file
BIN
packaging/lib-local/launch4j-3.13-SNAPSHOT-workdir-linux.jar
Normal file
Binary file not shown.
BIN
packaging/lib-local/launch4j-3.13-SNAPSHOT-workdir-linux64.jar
Normal file
BIN
packaging/lib-local/launch4j-3.13-SNAPSHOT-workdir-linux64.jar
Normal file
Binary file not shown.
BIN
packaging/lib-local/launch4j-3.13-SNAPSHOT-workdir-mac.jar
Normal file
BIN
packaging/lib-local/launch4j-3.13-SNAPSHOT-workdir-mac.jar
Normal file
Binary file not shown.
BIN
packaging/lib-local/launch4j-3.13-SNAPSHOT-workdir-win32.jar
Normal file
BIN
packaging/lib-local/launch4j-3.13-SNAPSHOT-workdir-win32.jar
Normal file
Binary file not shown.
BIN
packaging/openrefine.ico
Normal file
BIN
packaging/openrefine.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 64 KiB |
@ -23,6 +23,105 @@
|
|||||||
|
|
||||||
<build>
|
<build>
|
||||||
<plugins>
|
<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 -->
|
<plugin> <!-- necessary for launch4j -->
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-antrun-plugin</artifactId>
|
<artifactId>maven-antrun-plugin</artifactId>
|
||||||
@ -95,6 +194,25 @@
|
|||||||
<groupId>com.akathist.maven.plugins.launch4j</groupId>
|
<groupId>com.akathist.maven.plugins.launch4j</groupId>
|
||||||
<artifactId>launch4j-maven-plugin</artifactId>
|
<artifactId>launch4j-maven-plugin</artifactId>
|
||||||
<version>1.7.25</version>
|
<version>1.7.25</version>
|
||||||
|
|
||||||
|
<!-- 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 the maven plugin is updated to use launch4j-3.13,
|
||||||
|
this can be removed. -->
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>net.sf.launch4j</groupId>
|
||||||
|
<artifactId>launch4j</artifactId>
|
||||||
|
<classifier>core</classifier>
|
||||||
|
<version>3.13-SNAPSHOT</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.thoughtworks.xstream</groupId>
|
||||||
|
<artifactId>xstream</artifactId>
|
||||||
|
<version>1.4.9</version>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
<id>l4j-clui</id>
|
<id>l4j-clui</id>
|
||||||
@ -106,6 +224,7 @@
|
|||||||
<jar>server/target/lib/openrefine-${project.version}-server.jar</jar>
|
<jar>server/target/lib/openrefine-${project.version}-server.jar</jar>
|
||||||
<dontWrapJar>true</dontWrapJar>
|
<dontWrapJar>true</dontWrapJar>
|
||||||
<saveConfig>true</saveConfig>
|
<saveConfig>true</saveConfig>
|
||||||
|
<icon>openrefine.ico</icon>
|
||||||
<classPath>
|
<classPath>
|
||||||
<mainClass>com.google.refine.Refine</mainClass>
|
<mainClass>com.google.refine.Refine</mainClass>
|
||||||
<jarLocation>server/target/lib/</jarLocation>
|
<jarLocation>server/target/lib/</jarLocation>
|
||||||
@ -114,7 +233,7 @@
|
|||||||
<jre>
|
<jre>
|
||||||
<path>%JAVA_HOME%;%PATH%</path>
|
<path>%JAVA_HOME%;%PATH%</path>
|
||||||
<minVersion>1.8.0</minVersion>
|
<minVersion>1.8.0</minVersion>
|
||||||
<jdkPreference>preferJre</jdkPreference>
|
<bundledJreAsFallback>true</bundledJreAsFallback>
|
||||||
<initialHeapSize>512</initialHeapSize>
|
<initialHeapSize>512</initialHeapSize>
|
||||||
<maxHeapSize>2048</maxHeapSize>
|
<maxHeapSize>2048</maxHeapSize>
|
||||||
<opts>
|
<opts>
|
||||||
|
Loading…
Reference in New Issue
Block a user