124 lines
4.9 KiB
XML
124 lines
4.9 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">
|
||
|
<parent>
|
||
|
<groupId>net.evilblock.stark</groupId>
|
||
|
<artifactId>stark-parent</artifactId>
|
||
|
<version>1.0-SNAPSHOT</version>
|
||
|
</parent>
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
||
|
<artifactId>rank-converter</artifactId>
|
||
|
|
||
|
<properties>
|
||
|
<kotlin.version>1.3.41</kotlin.version>
|
||
|
</properties>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>net.hylist</groupId>
|
||
|
<artifactId>spigot-server</artifactId>
|
||
|
<version>1.7.10-R0.1-SNAPSHOT</version>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>net.hylist</groupId>
|
||
|
<artifactId>spigot-api</artifactId>
|
||
|
<version>1.7.10-R0.1-SNAPSHOT</version>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>net.evilblock.stark</groupId>
|
||
|
<artifactId>bukkit</artifactId>
|
||
|
<version>1.0-SNAPSHOT</version>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>me.lucko.luckperms</groupId>
|
||
|
<artifactId>luckperms-api</artifactId>
|
||
|
<version>4.4</version>
|
||
|
<scope>compile</scope>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
<build>
|
||
|
<finalName>Stark</finalName>
|
||
|
<sourceDirectory>src/main/kotlin</sourceDirectory>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.jetbrains.kotlin</groupId>
|
||
|
<artifactId>kotlin-maven-plugin</artifactId>
|
||
|
<version>${kotlin.version}</version>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<id>compile</id>
|
||
|
<goals> <goal>compile</goal> </goals>
|
||
|
<configuration>
|
||
|
<sourceDirs>
|
||
|
<sourceDir>${project.basedir}/src/main/kotlin</sourceDir>
|
||
|
<sourceDir>${project.basedir}/src/main/java</sourceDir>
|
||
|
</sourceDirs>
|
||
|
</configuration>
|
||
|
</execution>
|
||
|
<execution>
|
||
|
<id>test-compile</id>
|
||
|
<goals> <goal>test-compile</goal> </goals>
|
||
|
<configuration>
|
||
|
<sourceDirs>
|
||
|
<sourceDir>${project.basedir}/src/test/kotlin</sourceDir>
|
||
|
<sourceDir>${project.basedir}/src/test/java</sourceDir>
|
||
|
</sourceDirs>
|
||
|
</configuration>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
<version>3.5.1</version>
|
||
|
<executions>
|
||
|
<!-- Replacing default-compile as it is treated specially by maven -->
|
||
|
<execution>
|
||
|
<id>default-compile</id>
|
||
|
<phase>none</phase>
|
||
|
</execution>
|
||
|
<!-- Replacing default-testCompile as it is treated specially by maven -->
|
||
|
<execution>
|
||
|
<id>default-testCompile</id>
|
||
|
<phase>none</phase>
|
||
|
</execution>
|
||
|
<execution>
|
||
|
<id>java-compile</id>
|
||
|
<phase>compile</phase>
|
||
|
<goals> <goal>compile</goal> </goals>
|
||
|
</execution>
|
||
|
<execution>
|
||
|
<id>java-test-compile</id>
|
||
|
<phase>test-compile</phase>
|
||
|
<goals> <goal>testCompile</goal> </goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-assembly-plugin</artifactId>
|
||
|
<version>2.6</version>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<id>make-assembly</id>
|
||
|
<phase>package</phase>
|
||
|
<goals> <goal>single</goal> </goals>
|
||
|
<configuration>
|
||
|
<descriptorRefs>
|
||
|
<descriptorRef>jar-with-dependencies</descriptorRef>
|
||
|
</descriptorRefs>
|
||
|
<appendAssemblyId>false</appendAssemblyId>
|
||
|
</configuration>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
|
||
|
</project>
|