Skip to content

Commit f6594aa

Browse files
authored
Main Files
1 parent 003cd8c commit f6594aa

File tree

1 file changed

+112
-0
lines changed

1 file changed

+112
-0
lines changed

pom.xml

Lines changed: 112 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,112 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
7+
<groupId>club.lite.bot</groupId>
8+
<artifactId>Bot</artifactId>
9+
<version>1.0</version>
10+
<url>https://dsc.gg/liteclubdevelopment</url>
11+
12+
<properties>
13+
<java.version>1.8</java.version>
14+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
15+
</properties>
16+
17+
<build>
18+
<plugins>
19+
<plugin>
20+
<groupId>org.apache.maven.plugins</groupId>
21+
<artifactId>maven-compiler-plugin</artifactId>
22+
<version>3.8.1</version>
23+
<configuration>
24+
<source>8</source>
25+
<target>8</target>
26+
</configuration>
27+
</plugin>
28+
<plugin>
29+
<groupId>org.apache.maven.plugins</groupId>
30+
<artifactId>maven-shade-plugin</artifactId>
31+
<version>3.2.4</version>
32+
<executions>
33+
<execution>
34+
<phase>package</phase>
35+
<goals>
36+
<goal>shade</goal>
37+
</goals>
38+
<configuration>
39+
<createDependencyReducedPom>false</createDependencyReducedPom>
40+
</configuration>
41+
</execution>
42+
</executions>
43+
</plugin>
44+
</plugins>
45+
</build>
46+
47+
<repositories>
48+
<repository>
49+
<id>central</id>
50+
<url>https://repo1.maven.org/maven2/</url>
51+
</repository>
52+
<repository>
53+
<id>jitpack.io</id>
54+
<url>https://jitpack.io</url>
55+
</repository>
56+
</repositories>
57+
58+
<dependencies>
59+
<!-- Misc -->
60+
<dependency>
61+
<groupId>org.projectlombok</groupId>
62+
<artifactId>lombok</artifactId>
63+
<version>1.18.22</version>
64+
<scope>provided</scope>
65+
</dependency>
66+
<dependency>
67+
<groupId>org.slf4j</groupId>
68+
<artifactId>slf4j-api</artifactId>
69+
<version>1.7.32</version>
70+
</dependency>
71+
<dependency>
72+
<groupId>com.google.code.gson</groupId>
73+
<artifactId>gson</artifactId>
74+
<version>2.10.1</version>
75+
</dependency>
76+
<dependency>
77+
<groupId>commons-codec</groupId>
78+
<artifactId>commons-codec</artifactId>
79+
<version>1.15</version>
80+
<scope>compile</scope>
81+
</dependency>
82+
83+
<!-- Spigot -->
84+
<dependency>
85+
<groupId>org.spigotmc</groupId>
86+
<artifactId>spigot-1.8.8</artifactId>
87+
<version>1.8.8</version>
88+
<scope>system</scope>
89+
<systemPath>${project.basedir}/libs/spigots/1.8.8.jar</systemPath>
90+
</dependency>
91+
92+
<!-- JDA -->
93+
<dependency>
94+
<groupId>net.dv8tion</groupId>
95+
<artifactId>JDA</artifactId>
96+
<version>LATEST</version>
97+
<scope>compile</scope>
98+
<exclusions>
99+
<exclusion>
100+
<groupId>club.minnced</groupId>
101+
<artifactId>opus-java</artifactId>
102+
</exclusion>
103+
</exclusions>
104+
</dependency>
105+
106+
<dependency>
107+
<groupId>org.jetbrains</groupId>
108+
<artifactId>annotations</artifactId>
109+
<version>24.0.1</version>
110+
</dependency>
111+
</dependencies>
112+
</project>

0 commit comments

Comments
 (0)