2019-04-24 15:01:22 +02:00
|
|
|
<!-- Citizens build file -->
|
2019-05-13 10:44:50 +02:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
2023-02-22 17:06:13 +01:00
|
|
|
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>
|
|
|
|
<parent>
|
|
|
|
<groupId>net.citizensnpcs</groupId>
|
|
|
|
<artifactId>citizens-parent</artifactId>
|
2023-10-01 11:27:38 +02:00
|
|
|
<version>2.0.33-SNAPSHOT</version>
|
2023-02-22 17:06:13 +01:00
|
|
|
</parent>
|
|
|
|
<artifactId>citizens-v1_14_R1</artifactId>
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<craftbukkit.version>1.14.4-R0.1-SNAPSHOT</craftbukkit.version>
|
|
|
|
</properties>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>citizens-main</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<type>jar</type>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>craftbukkit</artifactId>
|
|
|
|
<version>${craftbukkit.version}</version>
|
|
|
|
<type>jar</type>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
|
|
<defaultGoal>clean package install</defaultGoal>
|
|
|
|
<sourceDirectory>${basedir}/src/main/java</sourceDirectory>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2023-04-19 19:35:44 +02:00
|
|
|
<version>${maven-compiler-plugin.version}</version>
|
2023-02-22 17:06:13 +01:00
|
|
|
<configuration>
|
2023-05-14 16:54:45 +02:00
|
|
|
<release>8</release>
|
2023-02-22 17:06:13 +01:00
|
|
|
<source>1.8</source>
|
|
|
|
<target>1.8</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2022-09-10 04:08:33 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
2023-04-19 19:35:44 +02:00
|
|
|
<version>${maven-deploy-plugin.version}</version>
|
2022-09-10 04:08:33 +02:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>default-deploy</id>
|
|
|
|
<phase>none</phase>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
2023-02-22 17:06:13 +01:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
2023-04-19 19:35:44 +02:00
|
|
|
<version>${maven-jar-plugin.version}</version>
|
2023-02-22 17:06:13 +01:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
2023-04-19 19:35:44 +02:00
|
|
|
<version>${maven-shade-plugin.version}</version>
|
2023-02-22 17:06:13 +01:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2019-04-24 15:01:22 +02:00
|
|
|
</project>
|