FuckyWucky/DeepNested/pom.xml

38 lines
1.2 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<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>net.ahines</groupId>
<artifactId>DeepNested</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<developers>
<developer>
<name>ZeroHD</name>
<url>https://www.ahines.net</url>
</developer>
</developers>
<build>
<defaultGoal>install</defaultGoal>
<plugins>
<plugin>
<!-- Build an executable JAR -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
<configuration>
<archive>
<manifest>
<mainClass>net.ahines.DeepNested.DeepNested</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
</build>
</project>