Modifyworld/pom.xml

110 lines
4.0 KiB
XML
Raw Permalink 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>
2013-08-31 22:26:36 +02:00
<version>1.20-SNAPSHOT</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>
2013-06-08 06:44:28 +02:00
<scm>
<connection>scm:git:git://github.com/PEXPlugins/Modifyworld.git</connection>
<developerConnection>scm:git:ssh://git@github.com/PEXPlugins/Modifyworld.git</developerConnection>
<url>https://github.com/PEXPlugins/PermissionsEx.git</url>
</scm>
2011-07-12 23:25:37 +02:00
<build>
2011-07-13 11:56:19 +02:00
<finalName>${project.artifactId}</finalName>
2013-06-08 06:44:28 +02:00
<resources>
<resource>
2013-06-09 06:10:51 +02:00
<directory>${project.basedir}/src/main/resources</directory>
<!--<targetPath>/</targetPath>-->
2013-06-08 06:44:28 +02:00
<includes>
<include>**</include>
</includes>
<filtering>true</filtering>
</resource>
</resources>
2011-07-12 23:25:37 +02:00
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
2017-06-04 20:06:38 +02:00
<version>3.6.1</version>
2011-07-12 23:25:37 +02:00
<configuration>
2017-06-04 20:06:38 +02:00
<source>1.8</source>
<target>1.8</target>
2011-07-12 23:25:37 +02:00
</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>
2013-06-08 06:44:28 +02:00
<plugin>
<artifactId>maven-release-plugin</artifactId>
<configuration>
<preparationGoals>assembly:assembly</preparationGoals>
<goals>assembly:assembly</goals>
<tagNameFormat>STABLE-@{project.version}</tagNameFormat>
</configuration>
</plugin>
2011-07-12 23:25:37 +02:00
</plugins>
</build>
2017-06-04 20:06:38 +02:00
2011-07-12 23:25:37 +02:00
<dependencies>
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
2017-06-04 20:06:38 +02:00
<version>1.12-pre2-SNAPSHOT</version>
2012-01-27 19:11:47 +01:00
<type>jar</type>
2011-07-12 23:25:37 +02:00
</dependency>
<dependency>
<groupId>ru.tehkode</groupId>
<artifactId>PermissionsEx</artifactId>
2017-06-04 20:06:38 +02:00
<version>1.23.1</version>
<exclusions>
<exclusion>
<groupId>*</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
2011-07-12 23:25:37 +02:00
</dependency>
<dependency>
<groupId>net.milkbowl.vault</groupId>
<artifactId>VaultAPI</artifactId>
2017-06-04 20:06:38 +02:00
<version>1.6</version>
<scope>provided</scope>
</dependency>
2011-07-12 23:25:37 +02:00
</dependencies>
<repositories>
2012-01-27 19:11:47 +01:00
<repository>
<id>spigot-repo</id>
<url>https://hub.spigotmc.org/nexus/content/groups/public</url>
2012-01-27 19:11:47 +01:00
</repository>
<repository>
<id>vault-repo</id>
2017-06-04 20:06:38 +02:00
<url>http://nexus.hc.to/content/repositories/pub_releases</url>
</repository>
2014-06-08 00:11:41 +02:00
<repository>
<id>pex-repo</id>
2017-06-04 20:06:38 +02:00
<url>https://pex-repo.aoeu.xyz/</url>
2014-06-08 00:11:41 +02:00
</repository>
2012-01-27 19:11:47 +01:00
</repositories>
2011-07-12 23:25:37 +02:00
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</project>