ButtonArchives/pom.xml
Daniel 2f96d050c6 Update: After a long wait, Potato is finally updated to 1.7.5
#1 1.7.5-ready

#2 Because the potatoifications say the Potato-god is compiled in Java 6, we must should do so too.

#3 Update compiler and jar maven plugin.
2014-03-10 19:30:01 +02:00

35 lines
1.2 KiB
XML

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.drtshock</groupId>
<artifactId>potato</artifactId>
<version>1.7.5</version>
<name>Potato</name>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
<configuration>
<archive>
<addMavenDescriptor>false</addMavenDescriptor>
<manifest>
<addClasspath>true</addClasspath>
<mainClass>org.drtshock.Potato</mainClass>
</manifest>
</archive>
<finalName>Potato</finalName>
</configuration>
</plugin>
</plugins>
</build>
</project>