-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
56 lines (56 loc) · 1.73 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>x.samantha</groupId>
<artifactId>CommandsJDA</artifactId>
<version>0.1.4_1</version>
<packaging>aar</packaging>
<name>CommandsJDA</name>
<inceptionYear>2020</inceptionYear>
<licenses>
<license>
<name>MIT</name>
<url>https://opensource.org/licenses/MIT</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>Samantha Blackrose</name>
<roles>
<role>Lead Developer</role>
</roles>
</developer>
</developers>
<scm>
<connection>https://github.com/x-Samantha/CommandsJDA.git</connection>
<developerConnection>https://github.com/x-Samantha/CommandsJDA.git</developerConnection>
</scm>
<dependencies>
<dependency>
<groupId>net.dv8tion</groupId>
<artifactId>JDA</artifactId>
<version>4.2.0_218</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.2.3</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-core</artifactId>
<version>8.7.0</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-queryparser</artifactId>
<version>8.7.0</version>
<scope>runtime</scope>
</dependency>
</dependencies>
</project>