2016-07-21 22:40:24 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2016-12-02 21:20:24 +01:00
|
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
2016-07-21 22:40:24 +02:00
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<parent>
|
|
|
|
<artifactId>luckperms</artifactId>
|
2016-07-26 03:21:51 +02:00
|
|
|
<groupId>me.lucko.luckperms</groupId>
|
2017-04-10 23:26:20 +02:00
|
|
|
<version>3.1-SNAPSHOT</version>
|
2016-07-21 22:40:24 +02:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<artifactId>luckperms-api</artifactId>
|
2017-05-09 13:55:45 +02:00
|
|
|
|
2016-07-21 22:40:24 +02:00
|
|
|
<build>
|
2017-04-10 23:26:20 +02:00
|
|
|
<finalName>LuckPerms-API-${release.version}</finalName>
|
2017-04-15 20:01:39 +02:00
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>../</directory>
|
|
|
|
<filtering>false</filtering>
|
|
|
|
<includes>
|
|
|
|
<include>LICENSE.txt</include>
|
|
|
|
</includes>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
2016-07-21 22:40:24 +02:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2017-03-12 15:19:22 +01:00
|
|
|
<version>${compiler.version}</version>
|
2016-07-21 22:40:24 +02:00
|
|
|
<configuration>
|
|
|
|
<source>1.8</source>
|
|
|
|
<target>1.8</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2016-08-20 16:43:54 +02:00
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<!-- guava -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
<version>19.0</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
2016-07-21 22:40:24 +02:00
|
|
|
</project>
|