T2Code-Alias/pom.xml

115 lines
3.7 KiB
XML
Raw Normal View History

2021-12-21 04:55:23 +00:00
<?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>
<groupId>net.t2code</groupId>
<artifactId>Alias</artifactId>
2024-07-05 20:37:44 +00:00
<version>1.6_dev-23</version>
<!--version>VERSION_snapshot-0</version-->
<!--version>VERSION_beta-0</version-->
<!--version>VERSION_dev-0</version-->
2021-12-21 04:55:23 +00:00
<packaging>jar</packaging>
<name>T2C-Alias</name>
<description>T2Code Alias</description>
<properties>
<java.version>1.8</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<url>T2Code.net</url>
<build>
<finalName>${project.name}_${project.version}</finalName>
2021-12-21 04:55:23 +00:00
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
2024-07-05 07:37:10 +00:00
<source>11</source>
<target>11</target>
2021-12-21 04:55:23 +00:00
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.4</version>
<executions>
<execution>
2024-07-01 19:21:27 +00:00
<id>shade</id>
2021-12-21 04:55:23 +00:00
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
2024-07-01 19:21:27 +00:00
<configuration>
<createDependencyReducedPom>false</createDependencyReducedPom>
<relocations>
</relocations>
</configuration>
2021-12-21 04:55:23 +00:00
</plugin>
</plugins>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
</build>
<repositories>
<!-- Spigot -->
<repository>
<id>spigot-repo</id>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
</repository>
2024-07-01 19:21:27 +00:00
<!-- Mojang authlib -->
<repository>
2024-07-01 19:21:27 +00:00
<id>paper-repo</id>
<url>https://papermc.io/repo/repository/maven-public/</url>
</repository>
2024-07-01 19:21:27 +00:00
2021-12-21 04:55:23 +00:00
<repository>
2022-01-26 23:58:22 +00:00
<id>T2Code</id>
<url>https://repo.t2code.net/repository/T2Code/</url>
2021-12-21 04:55:23 +00:00
</repository>
</repositories>
<dependencies>
<!-- Spigot-->
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
<version>1.20.6-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<!-- Mojang authlib -->
<dependency>
<groupId>com.mojang</groupId>
<artifactId>authlib</artifactId>
2024-07-01 19:21:27 +00:00
<version>3.4.40</version>
<scope>provided</scope>
</dependency>
2022-01-26 23:58:22 +00:00
<dependency>
<groupId>net.t2code</groupId>
<artifactId>T2CodeLib</artifactId>
2024-07-01 19:21:27 +00:00
<version>16.7</version>
2024-07-05 20:37:44 +00:00
<classifier>dev-23</classifier>
2023-05-04 14:38:21 +00:00
<scope>provided</scope>
2021-12-21 04:55:23 +00:00
</dependency>
2023-07-08 19:30:45 +00:00
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
2024-07-05 07:37:10 +00:00
<version>1.18.30</version>
2024-07-01 19:21:27 +00:00
<scope>provided</scope>
2023-07-08 19:30:45 +00:00
</dependency>
2021-12-21 04:55:23 +00:00
</dependencies>
</project>