mirror of
https://github.com/songoda/UltimateStacker.git
synced 2024-11-25 19:45:55 +01:00
87 lines
2.8 KiB
XML
87 lines
2.8 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">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<groupId>com.craftaro</groupId>
|
|
<artifactId>UltimateStacker-Parent</artifactId>
|
|
<version>3.1.7</version>
|
|
</parent>
|
|
<artifactId>UltimateStacker-API</artifactId>
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>de.m3y.maven</groupId>
|
|
<artifactId>inject-maven-plugin</artifactId>
|
|
<version>1.3</version>
|
|
|
|
<executions>
|
|
<execution>
|
|
<phase>process-classes</phase>
|
|
|
|
<goals>
|
|
<goal>inject</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
|
|
<configuration>
|
|
<injections>
|
|
<injection>
|
|
<value>${project.version}</value>
|
|
<pointCut>com.craftaro.ultimatestacker.api.UltimateStackerApi.getVersion</pointCut>
|
|
</injection>
|
|
</injections>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
<version>3.5.0</version>
|
|
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>jar</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
|
|
<configuration>
|
|
<links>
|
|
<link>https://hub.spigotmc.org/javadocs/spigot/</link>
|
|
</links>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.craftaro</groupId>
|
|
<artifactId>CraftaroCore</artifactId>
|
|
<version>${craftaro.coreVersion}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.spigotmc</groupId>
|
|
<artifactId>spigot-api</artifactId>
|
|
<version>1.8.8-R0.1-SNAPSHOT</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.jetbrains</groupId>
|
|
<artifactId>annotations</artifactId>
|
|
<version>24.0.1</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|