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+ <parent >
7+ <groupId >com.zetaplugins</groupId >
8+ <artifactId >NetwatchZ</artifactId >
9+ <version >1.0.0</version >
10+ </parent >
11+
12+ <groupId >com.zetaplugins.netwatchz</groupId >
13+ <artifactId >common</artifactId >
14+
15+ <properties >
16+ <maven .compiler.source>17</maven .compiler.source>
17+ <maven .compiler.target>17</maven .compiler.target>
18+ <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
19+ </properties >
20+
21+ <build >
22+ <plugins >
23+ <plugin >
24+ <groupId >org.apache.maven.plugins</groupId >
25+ <artifactId >maven-shade-plugin</artifactId >
26+ <version >3.6.0</version >
27+ <executions >
28+ <execution >
29+ <phase >package</phase >
30+ <goals ><goal >shade</goal ></goals >
31+ <configuration >
32+ <createDependencyReducedPom >false</createDependencyReducedPom >
33+ <relocations >
34+ <relocation >
35+ <pattern >com.maxmind</pattern >
36+ <shadedPattern >com.zetaplugins.shadow.com.maxmind</shadedPattern >
37+ </relocation >
38+ <relocation >
39+ <pattern >org.apache.commons.compress</pattern >
40+ <shadedPattern >com.zetaplugins.shadow.org.apache.commons.compress</shadedPattern >
41+ </relocation >
42+ <relocation >
43+ <pattern >com.github.benmanes.caffeine</pattern >
44+ <shadedPattern >com.zetaplugins.shadow.com.github.benmanes.caffeine</shadedPattern >
45+ </relocation >
46+ <relocation >
47+ <pattern >com.googlecode.json</pattern >
48+ <shadedPattern >com.zetaplugins.shadow.com.googlecode.json</shadedPattern >
49+ </relocation >
50+ </relocations >
51+ </configuration >
52+ </execution >
53+ </executions >
54+ </plugin >
55+ </plugins >
56+ </build >
57+
58+ <dependencies >
59+ <dependency >
60+ <groupId >com.maxmind.geoip2</groupId >
61+ <artifactId >geoip2</artifactId >
62+ <version >4.4.0</version >
63+ </dependency >
64+ <dependency >
65+ <groupId >org.apache.commons</groupId >
66+ <artifactId >commons-compress</artifactId >
67+ <version >1.28.0</version >
68+ </dependency >
69+ <dependency >
70+ <groupId >com.github.ben-manes.caffeine</groupId >
71+ <artifactId >caffeine</artifactId >
72+ <version >3.2.0</version >
73+ </dependency >
74+ <dependency >
75+ <groupId >com.googlecode.json-simple</groupId >
76+ <artifactId >json-simple</artifactId >
77+ <version >1.1.1</version >
78+ </dependency >
79+ <dependency >
80+ <groupId >org.jetbrains</groupId >
81+ <artifactId >annotations</artifactId >
82+ <version >26.0.2</version >
83+ <scope >compile</scope >
84+ </dependency >
85+ </dependencies >
86+ </project >
0 commit comments