mirror of
https://github.com/DreamExposure/DisCal-Discord-Bot.git
synced 2026-02-08 20:39:18 -06:00
I must have forgotten to update it because it and spring are no longer getting along. Hopefully its fixed now. Also changed the indents in the pom files to spaces to match our guidelines
68 lines
2.3 KiB
XML
68 lines
2.3 KiB
XML
<?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>
|
|
<packaging>jar</packaging>
|
|
|
|
<parent>
|
|
<groupId>org.dreamexposure</groupId>
|
|
<artifactId>DisCal</artifactId>
|
|
<version>${revision}</version>
|
|
</parent>
|
|
|
|
<groupId>org.dreamexposure.discal</groupId>
|
|
<artifactId>core</artifactId>
|
|
<version>${revision}</version>
|
|
|
|
<dependencies>
|
|
<!--Discord4J API-->
|
|
<dependency>
|
|
<groupId>com.discord4j</groupId>
|
|
<artifactId>discord4j-core</artifactId>
|
|
<version>${discord4j.version}</version>
|
|
</dependency>
|
|
<!--Discord4J Redis Stores-->
|
|
<dependency>
|
|
<groupId>com.discord4j</groupId>
|
|
<artifactId>stores-redis</artifactId>
|
|
<version>${discord4j.version}</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>io.netty</groupId>
|
|
<artifactId>*</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<finalName>DisCal-Core</finalName>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
<version>${maven.plugin.shade.version}</version>
|
|
<executions>
|
|
<execution>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>shade</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<version>${maven.plugin.jar.version}</version>
|
|
<configuration>
|
|
<archive>
|
|
<manifest>
|
|
<addClasspath>true</addClasspath>
|
|
</manifest>
|
|
</archive>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project> |