123 lines
4.7 KiB
XML
123 lines
4.7 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>
|
||
|
<artifactId>iLib</artifactId>
|
||
|
<groupId>cc.invictusgames</groupId>
|
||
|
<version>1.0-SNAPSHOT</version>
|
||
|
</parent>
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
||
|
<artifactId>iLib-Bukkit</artifactId>
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>pl.project13.maven</groupId>
|
||
|
<artifactId>git-commit-id-plugin</artifactId>
|
||
|
<version>4.0.2</version>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<id>get-the-git-infos</id>
|
||
|
<goals>
|
||
|
<goal>revision</goal>
|
||
|
</goals>
|
||
|
<phase>validate</phase>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
<configuration>
|
||
|
<generateGitPropertiesFile>true</generateGitPropertiesFile>
|
||
|
<generateGitPropertiesFilename>${project.build.outputDirectory}/git.properties
|
||
|
</generateGitPropertiesFilename>
|
||
|
<includeOnlyProperties>
|
||
|
<includeOnlyProperty>^git.build.(time|version)$</includeOnlyProperty>
|
||
|
<includeOnlyProperty>^git.commit.id.(abbrev|full)$</includeOnlyProperty>
|
||
|
</includeOnlyProperties>
|
||
|
<commitIdGenerationMode>full</commitIdGenerationMode>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-antrun-plugin</artifactId>
|
||
|
<version>1.7</version>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<phase>install</phase>
|
||
|
<configuration>
|
||
|
<target>
|
||
|
<mkdir dir="${project.basedir}/../target/"/>
|
||
|
<copy file="${project.basedir}/target/${project.name}-${project.version}.jar"
|
||
|
tofile="${project.basedir}/../target/${project.name}-${project.version}.jar"/>
|
||
|
</target>
|
||
|
</configuration>
|
||
|
<goals>
|
||
|
<goal>run</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
|
||
|
</plugins>
|
||
|
</build>
|
||
|
|
||
|
<repositories>
|
||
|
<!--Spigot-->
|
||
|
<repository>
|
||
|
<id>spigot-repo</id>
|
||
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
||
|
</repository>
|
||
|
<repository>
|
||
|
<id>viaversion-repo</id>
|
||
|
<url>https://repo.viaversion.com</url>
|
||
|
</repository>
|
||
|
<repository>
|
||
|
<id>dmulloy2-repo</id>
|
||
|
<url>https://repo.dmulloy2.net/repository/public/</url>
|
||
|
</repository>
|
||
|
</repositories>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>com.viaversion</groupId>
|
||
|
<artifactId>viaversion-api</artifactId>
|
||
|
<version>LATEST</version>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>cc.invictusgames</groupId>
|
||
|
<artifactId>iLib-Shared</artifactId>
|
||
|
<version>1.0-SNAPSHOT</version>
|
||
|
<scope>compile</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.comphenix.protocol</groupId>
|
||
|
<artifactId>ProtocolLib</artifactId>
|
||
|
<version>4.7.0</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>eu.vortexdev.invictusspigot</groupId>
|
||
|
<artifactId>server</artifactId>
|
||
|
<version>1.8.8-R0.2-SNAPSHOT</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>lombok</groupId>
|
||
|
<artifactId>lomok</artifactId>
|
||
|
<version>1.0</version>
|
||
|
<scope>system</scope>
|
||
|
<systemPath>${project.basedir}/../libs/lombok.jar</systemPath>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.mongodb</groupId>
|
||
|
<artifactId>mongo-java-driver</artifactId>
|
||
|
<version>LATEST</version>
|
||
|
<type>jar</type>
|
||
|
<scope>compile</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>pl.project13.maven</groupId>
|
||
|
<artifactId>git-commit-id-plugin</artifactId>
|
||
|
<version>4.0.3</version>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
</project>
|