Added prerequisite to maven 3.0

This commit is contained in:
shing19m 2013-07-24 21:06:16 +02:00
parent 157cd0a9e6
commit 967fdf387f
1 changed files with 101 additions and 98 deletions

199
pom.xml
View File

@ -1,100 +1,103 @@
<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>
<pluginRepositories> <prerequisites>
<pluginRepository> <maven>3.0</maven>
<id>launch4j-xml-plugin-repo</id> </prerequisites>
<name>launch4j-xml-plugin Repository for Maven</name> <pluginRepositories>
<url>https://launch4j-xml-plugin.googlecode.com/svn/repo</url> <pluginRepository>
</pluginRepository> <id>launch4j-xml-plugin-repo</id>
</pluginRepositories> <name>launch4j-xml-plugin Repository for Maven</name>
<build> <url>https://launch4j-xml-plugin.googlecode.com/svn/repo</url>
<plugins> </pluginRepository>
<plugin> </pluginRepositories>
<groupId>org.apache.maven.plugins</groupId> <build>
<artifactId>maven-shade-plugin</artifactId> <plugins>
<version>1.3.1</version> <plugin>
<executions> <groupId>org.apache.maven.plugins</groupId>
<execution> <artifactId>maven-shade-plugin</artifactId>
<phase>package</phase> <version>1.3.1</version>
<goals> <executions>
<goal>shade</goal> <execution>
</goals> <phase>package</phase>
</execution> <goals>
</executions> <goal>shade</goal>
<configuration> </goals>
<filters> </execution>
<filter> </executions>
<artifact>*:*</artifact> <configuration>
<excludes> <filters>
<exclude>META-INF/*.SF</exclude> <filter>
<exclude>META-INF/*.DSA</exclude> <artifact>*:*</artifact>
<exclude>META-INF/*.RSA</exclude> <excludes>
</excludes> <exclude>META-INF/*.SF</exclude>
</filter> <exclude>META-INF/*.DSA</exclude>
</filters> <exclude>META-INF/*.RSA</exclude>
<transformers> </excludes>
<transformer </filter>
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> </filters>
<manifestEntries> <transformers>
<Main-Class>de.lusiardi.mousemover.Main</Main-Class> <transformer
</manifestEntries> implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
</transformer> <manifestEntries>
<transformer <Main-Class>de.lusiardi.mousemover.Main</Main-Class>
implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer"> </manifestEntries>
<resource>lang/messages.properties</resource> </transformer>
</transformer> <transformer
<transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer"> <resource>lang/messages.properties</resource>
<resource>lang/messages_de.properties</resource> </transformer>
</transformer> <transformer
<transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" /> <resource>lang/messages_de.properties</resource>
</transformers> </transformer>
</configuration> <transformer
</plugin> implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" />
<plugin> </transformers>
<groupId>org.bluestemsoftware.open.maven.plugin</groupId> </configuration>
<artifactId>launch4j-plugin</artifactId> </plugin>
<version>1.5.0.0</version> <plugin>
<executions> <groupId>org.bluestemsoftware.open.maven.plugin</groupId>
<execution> <artifactId>launch4j-plugin</artifactId>
<id>l4j-gui</id> <version>1.5.0.0</version>
<phase>package</phase> <executions>
<goals> <execution>
<goal>launch4j</goal> <id>l4j-gui</id>
</goals> <phase>package</phase>
<configuration> <goals>
<headerType>gui</headerType> <goal>launch4j</goal>
<outfile>target/MouseMover.exe</outfile> </goals>
<jar>target/MouseMover-0.0.1.jar</jar> <configuration>
<errTitle>MouseMover Error</errTitle> <headerType>gui</headerType>
<icon>src/main/resources/mm.ico</icon> <outfile>target/MouseMover.exe</outfile>
<jre> <jar>target/MouseMover-0.0.1.jar</jar>
<minVersion>1.5.0</minVersion> <errTitle>MouseMover Error</errTitle>
<maxVersion>1.6.0</maxVersion> <icon>src/main/resources/mm.ico</icon>
<initialHeapSize>128</initialHeapSize> <jre>
<maxHeapSize>1024</maxHeapSize> <minVersion>1.5.0</minVersion>
</jre> <maxVersion>1.6.0</maxVersion>
<versionInfo> <initialHeapSize>128</initialHeapSize>
<fileVersion>1.0.0.0</fileVersion> <maxHeapSize>1024</maxHeapSize>
<txtFileVersion>1.0.0.0</txtFileVersion> </jre>
<fileDescription>Desc</fileDescription> <versionInfo>
<copyright>C</copyright> <fileVersion>1.0.0.0</fileVersion>
<productVersion>1.0.0.0</productVersion> <txtFileVersion>1.0.0.0</txtFileVersion>
<txtProductVersion>1.0.0.0</txtProductVersion> <fileDescription>Desc</fileDescription>
<productName>MouseMover</productName> <copyright>C</copyright>
<internalName>MouseMover</internalName> <productVersion>1.0.0.0</productVersion>
<originalFilename>MouseMover.exe</originalFilename> <txtProductVersion>1.0.0.0</txtProductVersion>
</versionInfo> <productName>MouseMover</productName>
</configuration> <internalName>MouseMover</internalName>
</execution> <originalFilename>MouseMover.exe</originalFilename>
</executions> </versionInfo>
</plugin> </configuration>
</plugins> </execution>
</build> </executions>
</plugin>
</plugins>
</build>
</project> </project>