mirror of
https://github.com/LordBoos/boosCooldowns.git
synced 2024-11-22 18:45:15 +01:00
6c50eaf6c4
Refactor code
78 lines
2.7 KiB
XML
78 lines
2.7 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<parent>
|
|
<artifactId>boosCooldowns</artifactId>
|
|
<groupId>cz.boosik</groupId>
|
|
<relativePath>../pom.xml</relativePath>
|
|
<version>${boosCooldowns.version}</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>jar</artifactId>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>cz.boosik</groupId>
|
|
<artifactId>NMS</artifactId>
|
|
<version>3.11.0</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>cz.boosik</groupId>
|
|
<artifactId>NMS_hook_1_8_R3</artifactId>
|
|
<version>3.11.0</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>cz.boosik</groupId>
|
|
<artifactId>NMS_hook_1_9_R1</artifactId>
|
|
<version>3.11.0</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>cz.boosik</groupId>
|
|
<artifactId>NMS_hook_1_8_R1</artifactId>
|
|
<version>3.11.0</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>cz.boosik</groupId>
|
|
<artifactId>NMS_hook_1_8_R2</artifactId>
|
|
<version>3.11.0</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>cz.boosik</groupId>
|
|
<artifactId>plugin</artifactId>
|
|
<version>3.11.0</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
<version>2.6</version>
|
|
<executions>
|
|
<execution>
|
|
<id>package-all</id>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>single</goal>
|
|
</goals>
|
|
<configuration>
|
|
<appendAssemblyId>false</appendAssemblyId>
|
|
<finalName>boosCooldowns</finalName>
|
|
<descriptors>
|
|
<descriptor>all-jar.xml</descriptor>
|
|
</descriptors>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project> |