Compare commits

..

No commits in common. "update_2023" and "master" have entirely different histories.

1 changed files with 133 additions and 146 deletions

279
pom.xml
View File

@ -1,146 +1,133 @@
<project <project
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>de.lusiardi</groupId> <groupId>de.lusiardi</groupId>
<artifactId>MouseMover</artifactId> <artifactId>MouseMover</artifactId>
<version>0.0.1</version> <version>0.0.1</version>
<prerequisites> <prerequisites>
<maven>3.0</maven> <maven>3.0</maven>
</prerequisites> </prerequisites>
<pluginRepositories> <pluginRepositories>
<pluginRepository> <pluginRepository>
<id>launch4j-xml-plugin-repo</id> <id>launch4j-xml-plugin-repo</id>
<name>launch4j-xml-plugin Repository for Maven</name> <name>launch4j-xml-plugin Repository for Maven</name>
<url>https://launch4j-xml-plugin.googlecode.com/svn/repo</url> <url>https://launch4j-xml-plugin.googlecode.com/svn/repo</url>
</pluginRepository> </pluginRepository>
</pluginRepositories> </pluginRepositories>
<reporting> <reporting>
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.codehaus.mojo</groupId> <groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId> <artifactId>cobertura-maven-plugin</artifactId>
<version>2.5.2</version> <version>2.5.2</version>
<configuration> <configuration>
<formats> <formats>
<format>html</format> <format>html</format>
</formats> </formats>
</configuration> </configuration>
</plugin> </plugin>
</plugins> </plugins>
</reporting> </reporting>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId> <artifactId>maven-shade-plugin</artifactId>
<version>3.1</version> <version>1.3.1</version>
<configuration> <executions>
<source>1.7</source> <execution>
<target>1.7</target> <phase>package</phase>
<encoding>UTF-8</encoding> <goals>
</configuration> <goal>shade</goal>
</plugin> </goals>
</execution>
<plugin> </executions>
<groupId>org.apache.maven.plugins</groupId> <configuration>
<artifactId>maven-shade-plugin</artifactId> <filters>
<version>1.3.1</version> <filter>
<executions> <artifact>*:*</artifact>
<execution> <excludes>
<phase>package</phase> <exclude>META-INF/*.SF</exclude>
<goals> <exclude>META-INF/*.DSA</exclude>
<goal>shade</goal> <exclude>META-INF/*.RSA</exclude>
</goals> </excludes>
</execution> </filter>
</executions> </filters>
<configuration> <transformers>
<filters> <transformer
<filter> implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<artifact>*:*</artifact> <manifestEntries>
<excludes> <Main-Class>de.lusiardi.mousemover.Main</Main-Class>
<exclude>META-INF/*.SF</exclude> </manifestEntries>
<exclude>META-INF/*.DSA</exclude> </transformer>
<exclude>META-INF/*.RSA</exclude> <transformer
</excludes> implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
</filter> <resource>lang/messages.properties</resource>
</filters> </transformer>
<transformers> <transformer
<transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> <resource>lang/messages_de.properties</resource>
<manifestEntries> </transformer>
<Main-Class>de.lusiardi.mousemover.Main</Main-Class> <transformer
</manifestEntries> implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" />
</transformer> </transformers>
<transformer </configuration>
implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer"> </plugin>
<resource>lang/messages.properties</resource> <plugin>
</transformer> <groupId>org.bluestemsoftware.open.maven.plugin</groupId>
<transformer <artifactId>launch4j-plugin</artifactId>
implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer"> <version>1.5.0.0</version>
<resource>lang/messages_de.properties</resource> <executions>
</transformer> <execution>
<transformer <id>l4j-gui</id>
implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" /> <phase>package</phase>
</transformers> <goals>
</configuration> <goal>launch4j</goal>
</plugin> </goals>
<plugin> <configuration>
<groupId>com.akathist.maven.plugins.launch4j</groupId> <headerType>gui</headerType>
<artifactId>launch4j-maven-plugin</artifactId> <outfile>target/MouseMover.exe</outfile>
<version>2.4.1</version> <jar>target/MouseMover-0.0.1.jar</jar>
<executions> <errTitle>MouseMover Error</errTitle>
<execution> <icon>src/main/resources/mm.ico</icon>
<id>l4j-gui</id> <jre>
<phase>package</phase> <minVersion>1.5.0</minVersion>
<goals> <maxVersion>1.9.0</maxVersion>
<goal>launch4j</goal> <initialHeapSize>128</initialHeapSize>
</goals> <maxHeapSize>1024</maxHeapSize>
<configuration> </jre>
<headerType>gui</headerType> <versionInfo>
<outfile>target/MouseMover.exe</outfile> <fileVersion>1.0.0.0</fileVersion>
<jar>target/MouseMover-0.0.1.jar</jar> <txtFileVersion>1.0.0.0</txtFileVersion>
<errTitle>MouseMover Error</errTitle> <fileDescription>Desc</fileDescription>
<icon>src/main/resources/mm.ico</icon> <copyright>C</copyright>
<jre> <productVersion>1.0.0.0</productVersion>
<minVersion>1.7.0</minVersion> <txtProductVersion>1.0.0.0</txtProductVersion>
<maxVersion>20.0.1</maxVersion> <productName>MouseMover</productName>
<initialHeapSize>128</initialHeapSize> <internalName>MouseMover</internalName>
<maxHeapSize>1024</maxHeapSize> <originalFilename>MouseMover.exe</originalFilename>
<path>./lib/jre</path> </versionInfo>
</configuration>
</jre> </execution>
<versionInfo> </executions>
<fileVersion>1.0.0.0</fileVersion> </plugin>
<txtFileVersion>1.0.0.0</txtFileVersion> <plugin>
<fileDescription>Desc</fileDescription> <groupId>org.codehaus.mojo</groupId>
<copyright>C</copyright> <artifactId>cobertura-maven-plugin</artifactId>
<productVersion>1.0.0.0</productVersion> <version>2.5.2</version>
<txtProductVersion>1.0.0.0</txtProductVersion> <configuration>
<productName>MouseMover</productName> <instrumentation>
<internalName>MouseMover</internalName> </instrumentation>
<originalFilename>MouseMover.exe</originalFilename> </configuration>
</versionInfo> <executions>
</configuration> <execution>
</execution> <goals>
</executions> <goal>clean</goal>
</plugin> </goals>
<plugin> </execution>
<groupId>org.codehaus.mojo</groupId> </executions>
<artifactId>cobertura-maven-plugin</artifactId> </plugin>
<version>2.5.2</version> </plugins>
<configuration> </build>
<instrumentation> </project>
</instrumentation>
</configuration>
<executions>
<execution>
<goals>
<goal>clean</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>