forked from Kr1S-D/UltimateAntibotRecoded
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
128 lines (123 loc) · 5.75 KB
/
pom.xml
File metadata and controls
128 lines (123 loc) · 5.75 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<?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>
<groupId>me.kr1s_d.ultimateantibot</groupId>
<artifactId>UltimateAntibot</artifactId>
<version>4.1.2-ABYSS</version>
<packaging>pom</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.14.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.6.1</version>
<configuration>
<relocations>
<relocation>
<pattern>org.checkerframework</pattern>
<shadedPattern>me.kr1s_d.ultimateantibot.libs.checkerframework</shadedPattern>
</relocation>
<relocation>
<pattern>com.google.errorprone</pattern>
<shadedPattern>me.kr1s_d.ultimateantibot.libs.google.errorprone</shadedPattern>
</relocation>
<relocation>
<pattern>org.apache.commons</pattern>
<shadedPattern>me.kr1s_d.ultimateantibot.libs.apache.commons</shadedPattern>
</relocation>
<relocation>
<pattern>org.apache.http</pattern>
<shadedPattern>me.kr1s_d.ultimateantibot.libs.apache.http</shadedPattern>
</relocation>
<relocation>
<pattern>com.fasterxml.jackson</pattern>
<shadedPattern>me.kr1s_d.ultimateantibot.libs.fasterxml</shadedPattern>
</relocation>
<relocation>
<pattern>com.google.gson</pattern>
<shadedPattern>me.kr1s_d.ultimateantibot.libs.gson</shadedPattern>
</relocation>
<relocation>
<pattern>com.github.benmanes</pattern>
<shadedPattern>me.kr1s_d.ultimateantibot.libs.caffeine</shadedPattern>
</relocation>
<!-- Velocity Relocation -->
<relocation>
<pattern>org.yaml.snakeyaml</pattern>
<shadedPattern>me.kr1s_d.ultimateantibot.libs.snakeyaml</shadedPattern>
</relocation>
<relocation>
<pattern>org.bspfsystems.yamlconfiguration</pattern>
<shadedPattern>me.kr1s_d.ultimateantibot.libs.yamlconfig</shadedPattern>
</relocation>
<!-- UniversalScheduler -->
<relocation>
<pattern>com.github.Anon8281.universalScheduler</pattern>
<!-- Don't forget to replace -->
<shadedPattern>me.kr1s_d.ultimateantibot.libs.universalScheduler</shadedPattern>
</relocation>
</relocations>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<createDependencyReducedPom>false</createDependencyReducedPom>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
</build>
<dependencies>
<!-- Gson -->
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.13.2</version>
<scope>compile</scope>
</dependency>
<!-- JSON Handler -->
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.20.1</version>
<scope>compile</scope>
</dependency>
<!-- ApacheHTTPClient -->
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.5.14</version>
<scope>compile</scope>
</dependency>
<!-- caffeine -->
<dependency>
<groupId>com.github.ben-manes.caffeine</groupId>
<artifactId>caffeine</artifactId>
<version>3.2.3</version>
<scope>compile</scope>
</dependency>
</dependencies>
<modules>
<module>ultimateantibot-common</module>
<module>ultimateantibot-spigot</module>
<module>ultimateantibot-bungeecord</module>
<module>ultimateantibot-velocity</module>
</modules>
</project>