update_2023 #1
21
pom.xml
21
pom.xml
|
@ -31,6 +31,17 @@
|
||||||
</reporting>
|
</reporting>
|
||||||
<build>
|
<build>
|
||||||
<plugins>
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||||||
|
<version>3.1</version>
|
||||||
|
<configuration>
|
||||||
|
<source>1.7</source>
|
||||||
|
<target>1.7</target>
|
||||||
|
<encoding>UTF-8</encoding>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-shade-plugin</artifactId>
|
<artifactId>maven-shade-plugin</artifactId>
|
||||||
|
@ -75,9 +86,9 @@
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.bluestemsoftware.open.maven.plugin</groupId>
|
<groupId>com.akathist.maven.plugins.launch4j</groupId>
|
||||||
<artifactId>launch4j-plugin</artifactId>
|
<artifactId>launch4j-maven-plugin</artifactId>
|
||||||
<version>1.5.0.0</version>
|
<version>2.4.1</version>
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
<id>l4j-gui</id>
|
<id>l4j-gui</id>
|
||||||
|
@ -92,10 +103,12 @@
|
||||||
<errTitle>MouseMover Error</errTitle>
|
<errTitle>MouseMover Error</errTitle>
|
||||||
<icon>src/main/resources/mm.ico</icon>
|
<icon>src/main/resources/mm.ico</icon>
|
||||||
<jre>
|
<jre>
|
||||||
<minVersion>1.5.0</minVersion>
|
<minVersion>1.7.0</minVersion>
|
||||||
<maxVersion>1.9.0</maxVersion>
|
<maxVersion>1.9.0</maxVersion>
|
||||||
<initialHeapSize>128</initialHeapSize>
|
<initialHeapSize>128</initialHeapSize>
|
||||||
<maxHeapSize>1024</maxHeapSize>
|
<maxHeapSize>1024</maxHeapSize>
|
||||||
|
<path>./lib/jre</path>
|
||||||
|
|
||||||
</jre>
|
</jre>
|
||||||
<versionInfo>
|
<versionInfo>
|
||||||
<fileVersion>1.0.0.0</fileVersion>
|
<fileVersion>1.0.0.0</fileVersion>
|
||||||
|
|
Loading…
Reference in New Issue