Chat/galaxy/dependency-reduced-pom.xml

98 lines
2.8 KiB
XML
Raw Normal View History

2021-05-13 12:11:29 +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/maven-v4_0_0.xsd">
<parent>
<artifactId>Chat</artifactId>
<groupId>com.alttd.chat</groupId>
<version>1.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>galaxy-chat</artifactId>
<build>
<defaultGoal>clean package</defaultGoal>
<resources>
<resource>
<filtering>true</filtering>
<directory>src/main/resources</directory>
</resource>
</resources>
<finalName>${project.name}</finalName>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
2021-06-06 19:32:13 +00:00
<configuration>
2021-07-27 16:46:58 +00:00
<source>16</source>
<target>16</target>
2021-06-06 19:32:13 +00:00
</configuration>
2021-05-13 12:11:29 +00:00
</plugin>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.4</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
<configuration>
<artifactSet>
<includes>
<include>com.alttd.chat:chat-api</include>
</includes>
<excludes>
<exclude>META-INF/*.MF</exclude>
</excludes>
</artifactSet>
</configuration>
</plugin>
</plugins>
</build>
2021-07-17 22:48:55 +00:00
<repositories>
<repository>
<id>placeholderapi</id>
<url>https://repo.extendedclip.com/content/repositories/placeholderapi/</url>
</repository>
2021-08-01 13:08:24 +00:00
<repository>
<id>dv8tion</id>
<name>m2-dv8tion</name>
<url>https://m2.dv8tion.net/releases</url>
</repository>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
2021-07-17 22:48:55 +00:00
</repositories>
2021-05-13 12:11:29 +00:00
<dependencies>
<dependency>
2021-06-27 17:58:34 +00:00
<groupId>com.alttd</groupId>
2021-12-10 23:42:20 +00:00
<artifactId>Galaxy-API</artifactId>
<version>1.18.1-R0.1-SNAPSHOT</version>
2021-05-13 12:11:29 +00:00
<scope>compile</scope>
</dependency>
2021-07-17 22:48:55 +00:00
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
2021-12-10 23:42:20 +00:00
<version>1.7.32</version>
2021-07-17 22:48:55 +00:00
<scope>compile</scope>
</dependency>
<dependency>
<groupId>me.clip</groupId>
<artifactId>placeholderapi</artifactId>
<version>2.10.10</version>
<scope>provided</scope>
</dependency>
2021-08-01 13:08:24 +00:00
<dependency>
<groupId>com.gitlab.ruany</groupId>
<artifactId>LiteBansAPI</artifactId>
<version>0.3.4</version>
<scope>provided</scope>
</dependency>
2021-05-13 12:11:29 +00:00
</dependencies>
<properties>
2021-06-23 19:44:04 +00:00
<maven.compiler.target>11</maven.compiler.target>
<maven.compiler.source>11</maven.compiler.source>
2021-05-13 12:11:29 +00:00
</properties>
</project>