Modifyworld/pom.xml

61 lines
2.1 KiB
XML
Raw Normal View History

2011-07-12 23:25:37 +02:00
<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>ru.tehkode</groupId>
<artifactId>Modifyworld</artifactId>
2011-11-01 08:15:36 +01:00
<version>1.16</version>
2011-07-12 23:25:37 +02:00
<name>Modifyworld</name>
<url>https://github.com/t3hk0d3/Modifyworld</url>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/t3hk0d3/Modifyworld/issues</url>
</issueManagement>
<build>
2011-07-13 11:56:19 +02:00
<finalName>${project.artifactId}</finalName>
2011-07-12 23:25:37 +02:00
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.0.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
2011-07-13 11:56:19 +02:00
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptors>
<descriptor>src/main/assembly/package.xml</descriptor>
</descriptors>
</configuration>
<executions>
<execution>
<id>build</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
2011-07-12 23:25:37 +02:00
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
<version>0.0.1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>ru.tehkode</groupId>
<artifactId>PermissionsEx</artifactId>
2011-11-01 08:15:36 +01:00
<version>1.16</version>
2011-07-12 23:25:37 +02:00
</dependency>
</dependencies>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</project>