mirror of
https://github.com/CivMC/Civ.git
synced 2026-07-18 00:20:44 +00:00
67 lines
1.9 KiB
XML
67 lines
1.9 KiB
XML
<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>com.biggestnerd.namecolors</groupId>
|
|
<artifactId>NameColors</artifactId>
|
|
<version>1.0.0</version>
|
|
|
|
<properties>
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
|
</properties>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>spigot-repo</id>
|
|
<url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>devoted-repo</id>
|
|
<url>https://build.devotedmc.com/plugin/repository/everything/</url>
|
|
</repository>
|
|
</repositories>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.spigotmc</groupId>
|
|
<artifactId>spigot-api</artifactId>
|
|
<version>1.14.4-R0.1-SNAPSHOT</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>vg.civcraft.mc.civmodcore</groupId>
|
|
<artifactId>CivModCore</artifactId>
|
|
<version>1.7.8</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>vg.civcraft.mc.civchat2</groupId>
|
|
<artifactId>CivChat2</artifactId>
|
|
<version>1.7.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>vg.civcraft.mc.namelayer</groupId>
|
|
<artifactId>NameLayer</artifactId>
|
|
<version>2.13.0</version>
|
|
</dependency>
|
|
</dependencies>
|
|
<build>
|
|
<finalName>${project.name}-${project.version}</finalName>
|
|
<resources>
|
|
<resource>
|
|
<directory>${basedir}/src/main/resources</directory>
|
|
<filtering>true</filtering>
|
|
</resource>
|
|
</resources>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.1</version>
|
|
<configuration>
|
|
<source>1.8</source>
|
|
<target>1.8</target>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project> |