mirror of
https://github.com/songoda/UltimateStacker.git
synced 2024-11-08 03:21:32 +01:00
72 lines
2.6 KiB
XML
72 lines
2.6 KiB
XML
<project xmlns="http://maven.apache.org/POM/4.0.0">
|
|
<groupId>com.songoda</groupId>
|
|
<artifactId>UltimateStacker</artifactId>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<version>maven-version-number</version>
|
|
<build>
|
|
<defaultGoal>clean install</defaultGoal>
|
|
<finalName>UltimateStacker-Legacy-${project.version}</finalName>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.8.0</version>
|
|
<configuration>
|
|
<source>1.8</source>
|
|
<target>1.8</target>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>com.google.code.maven-replacer-plugin</groupId>
|
|
<artifactId>replacer</artifactId>
|
|
<version>1.5.3</version>
|
|
<executions>
|
|
<execution>
|
|
<phase>prepare-package</phase>
|
|
<goals>
|
|
<goal>replace</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
<configuration>
|
|
<file>${project.build.directory}/classes/plugin.yml</file>
|
|
<replacements>
|
|
<replacement>
|
|
<token>maven-version-number</token>
|
|
<value>${project.version}</value>
|
|
</replacement>
|
|
</replacements>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<repositories>
|
|
<repository>
|
|
<id>private</id>
|
|
<url>http://repo.songoda.com/artifactory/private/</url>
|
|
</repository>
|
|
</repositories>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.gmail.filoghost.holographicdisplays</groupId>
|
|
<artifactId>holographicdisplays-api</artifactId>
|
|
<version>2.3.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.spigotmc</groupId>
|
|
<artifactId>spigot</artifactId>
|
|
<version>1.12.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.songoda</groupId>
|
|
<artifactId>arconix</artifactId>
|
|
<version>2.0.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.milkbowl</groupId>
|
|
<artifactId>vault</artifactId>
|
|
<version>1.7.1</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|