2016-11-26 03:12:18 +01:00
|
|
|
|
|
|
|
<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>
|
|
|
|
|
|
|
|
<parent>
|
2021-03-21 12:53:43 +01:00
|
|
|
<groupId>fr.pandacube.lib</groupId>
|
|
|
|
<artifactId>pandalib-parent</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
2016-11-26 03:12:18 +01:00
|
|
|
</parent>
|
|
|
|
|
2021-03-21 12:53:43 +01:00
|
|
|
<artifactId>pandalib-core</artifactId>
|
2016-11-26 03:12:18 +01:00
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
2021-03-21 12:53:43 +01:00
|
|
|
<name>PandaLib-Core</name>
|
2016-11-26 03:12:18 +01:00
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-lang</groupId>
|
|
|
|
<artifactId>commons-lang</artifactId>
|
|
|
|
<version>2.6</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2016-11-26 19:00:43 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>fr.pandacube.bungeecord</groupId>
|
|
|
|
<artifactId>bungeecord-chat</artifactId>
|
2017-07-05 03:52:13 +02:00
|
|
|
<version>${bungeecord.version}</version>
|
2016-11-26 19:00:43 +01:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2016-11-27 04:06:49 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.javatuples</groupId>
|
|
|
|
<artifactId>javatuples</artifactId>
|
|
|
|
<version>1.2</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2020-11-07 15:00:47 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.github.classgraph</groupId>
|
|
|
|
<artifactId>classgraph</artifactId>
|
|
|
|
<version>4.8.90</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2016-11-26 03:12:18 +01:00
|
|
|
</dependencies>
|
2020-11-07 15:00:47 +01:00
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
<version>2.4.3</version>
|
|
|
|
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<artifactSet>
|
|
|
|
<includes>
|
|
|
|
<include>io.github.classgraph:classgraph</include>
|
|
|
|
</includes>
|
|
|
|
</artifactSet>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2016-11-26 03:12:18 +01:00
|
|
|
</project>
|