2019-12-31 07:00:04 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2016-05-12 13:27:43 +00:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2017-06-22 16:14:19 +00:00
|
|
|
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>
|
2018-09-01 01:17:33 +00:00
|
|
|
<!-- A good example on why temporary names for project identification shouldn't be used -->
|
2017-06-22 16:14:19 +00:00
|
|
|
<groupId>LibsDisguises</groupId>
|
|
|
|
<artifactId>LibsDisguises</artifactId>
|
2020-02-21 00:53:08 +00:00
|
|
|
<version>9.9.7-SNAPSHOT</version>
|
2016-05-12 13:27:43 +00:00
|
|
|
|
2017-06-22 16:14:19 +00:00
|
|
|
<build>
|
2020-02-13 06:47:02 +00:00
|
|
|
<defaultGoal>exec:java clean install</defaultGoal>
|
2017-06-22 16:14:19 +00:00
|
|
|
<finalName>LibsDisguises</finalName>
|
2016-05-12 13:27:43 +00:00
|
|
|
|
2017-06-22 16:14:19 +00:00
|
|
|
<resources>
|
|
|
|
<resource>
|
2018-09-01 01:10:38 +00:00
|
|
|
<directory>src/main/resources</directory>
|
2017-06-22 16:14:19 +00:00
|
|
|
<filtering>true</filtering>
|
2018-09-01 01:10:38 +00:00
|
|
|
<includes>
|
|
|
|
<include>*</include>
|
|
|
|
</includes>
|
|
|
|
</resource>
|
|
|
|
<resource>
|
2017-06-22 16:14:19 +00:00
|
|
|
<directory>${project.basedir}</directory>
|
|
|
|
<includes>
|
|
|
|
<include>README.md</include>
|
|
|
|
</includes>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
2018-11-14 23:22:53 +00:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<version>3.0.0-M1</version>
|
|
|
|
</plugin>
|
2020-02-13 06:47:02 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>exec-maven-plugin</artifactId>
|
|
|
|
<version>1.6.0</version>
|
|
|
|
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>my-execution</id>
|
|
|
|
<phase>compile</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>java</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
|
|
|
<includePluginDependencies>true</includePluginDependencies>
|
2020-02-18 23:57:39 +00:00
|
|
|
<mainClass>me.libraryaddict.disguise.utilities.watchers.CompileMethods</mainClass>
|
2020-02-13 06:47:02 +00:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2018-11-14 23:22:53 +00:00
|
|
|
</plugins>
|
2017-06-22 16:14:19 +00:00
|
|
|
</build>
|
2016-05-12 13:27:43 +00:00
|
|
|
|
|
|
|
|
2017-06-22 16:14:19 +00:00
|
|
|
<properties>
|
2018-12-16 01:47:42 +00:00
|
|
|
<build.number>unknown</build.number>
|
2019-02-16 03:57:07 +00:00
|
|
|
<timestamp>${maven.build.timestamp}</timestamp>
|
|
|
|
<maven.build.timestamp.format>dd/MM/yyyy HH:mm</maven.build.timestamp.format>
|
2018-08-05 08:34:02 +00:00
|
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
2017-06-22 16:14:19 +00:00
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
2016-05-12 13:27:43 +00:00
|
|
|
|
|
|
|
|
2017-06-22 16:14:19 +00:00
|
|
|
<dependencies>
|
2020-02-18 23:57:39 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.ow2.asm</groupId>
|
|
|
|
<artifactId>asm</artifactId>
|
|
|
|
<version>7.3.1</version>
|
|
|
|
</dependency>
|
2020-02-01 22:59:18 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
<version>1.18.10</version>
|
|
|
|
</dependency>
|
2017-06-22 16:14:19 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.comphenix.protocol</groupId>
|
|
|
|
<artifactId>ProtocolLib</artifactId>
|
2020-01-17 03:55:05 +00:00
|
|
|
<version>4.5.0</version>
|
2017-06-22 16:14:19 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>spigot-api</artifactId>
|
2020-02-13 06:50:06 +00:00
|
|
|
<version>1.15-R0.1-SNAPSHOT</version>
|
2017-06-22 16:14:19 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>spigot</artifactId>
|
2020-02-13 06:50:06 +00:00
|
|
|
<version>1.15-R0.1-SNAPSHOT</version>
|
2017-06-22 16:14:19 +00:00
|
|
|
</dependency>
|
2018-10-23 21:13:13 +00:00
|
|
|
<!-- testing -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>4.12</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2017-06-22 16:14:19 +00:00
|
|
|
</dependencies>
|
2016-05-12 13:27:43 +00:00
|
|
|
|
2017-06-22 16:14:19 +00:00
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>dmulloy2-repo</id>
|
2020-02-11 14:23:01 +00:00
|
|
|
<url>https://repo.dmulloy2.net/nexus/repository/public/</url>
|
2017-06-22 16:14:19 +00:00
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<id>md_5-releases</id>
|
2020-02-13 03:31:18 +00:00
|
|
|
<url>https://repo.md-5.net/content/groups/public/</url>
|
2017-06-22 16:14:19 +00:00
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<id>spigot-repo</id>
|
|
|
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
2016-05-17 23:34:25 +00:00
|
|
|
|
2017-06-22 16:14:19 +00:00
|
|
|
<distributionManagement>
|
|
|
|
<repository>
|
|
|
|
<id>md_5-releases</id>
|
|
|
|
<url>https://repo.md-5.net/content/repositories/releases/</url>
|
|
|
|
</repository>
|
|
|
|
<snapshotRepository>
|
|
|
|
<id>md_5-snapshots</id>
|
|
|
|
<url>https://repo.md-5.net/content/repositories/snapshots/</url>
|
|
|
|
</snapshotRepository>
|
|
|
|
</distributionManagement>
|
2017-07-03 00:13:04 +00:00
|
|
|
</project>
|