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 >io.github.olddeveloperalf</groupId >
8
+ <artifactId >hcfcore</artifactId >
9
+ <version >1.0-SNAPSHOT</version >
10
+
11
+ <repositories >
12
+
13
+ <repository >
14
+ <id >bukkit-repo</id >
15
+ <url >http://repo.md-5.net/content/repositories/public/</url >
16
+ </repository >
17
+
18
+ </repositories >
19
+
20
+ <dependencies >
21
+ <dependency >
22
+ <groupId >org.bukkit</groupId >
23
+ <artifactId >bukkit</artifactId >
24
+ <version >1.7.9-R0.1-SNAPSHOT</version >
25
+ </dependency >
26
+ <dependency >
27
+ <groupId >org.mongodb</groupId >
28
+ <artifactId >mongo-java-driver</artifactId >
29
+ <version >2.11.0</version >
30
+ </dependency >
31
+ <dependency >
32
+ <groupId >redis.clients</groupId >
33
+ <artifactId >jedis</artifactId >
34
+ <version >2.5.1</version >
35
+ </dependency >
36
+ <dependency >
37
+ <groupId >org.json</groupId >
38
+ <artifactId >json</artifactId >
39
+ <version >20090211</version >
40
+ <scope >compile</scope >
41
+ </dependency >
42
+ </dependencies >
43
+
44
+
45
+ <build >
46
+ <finalName >${project.name} </finalName >
47
+ <sourceDirectory >src/main/java</sourceDirectory >
48
+ <resources >
49
+ <resource >
50
+ <targetPath >.</targetPath >
51
+ <filtering >true</filtering >
52
+ <directory >${basedir} /src/main/resources</directory >
53
+ <includes >
54
+ <include >*.yml</include >
55
+ </includes >
56
+ </resource >
57
+ </resources >
58
+
59
+ <plugins >
60
+ <plugin >
61
+ <artifactId >maven-compiler-plugin</artifactId >
62
+ <version >2.3.2</version >
63
+ <configuration >
64
+ <source >1.7</source >
65
+ <target >1.7</target >
66
+ </configuration >
67
+ </plugin >
68
+
69
+ <plugin >
70
+ <groupId >org.apache.maven.plugins</groupId >
71
+ <artifactId >maven-shade-plugin</artifactId >
72
+ <version >2.2</version >
73
+ <executions >
74
+ <execution >
75
+ <phase >package</phase >
76
+ <goals >
77
+ <goal >shade</goal >
78
+ </goals >
79
+ <configuration >
80
+ <artifactSet >
81
+ <excludes >
82
+ <exclude >org.bukkit</exclude >
83
+ </excludes >
84
+ </artifactSet >
85
+ </configuration >
86
+ </execution >
87
+ </executions >
88
+ </plugin >
89
+ </plugins >
90
+ </build >
91
+
92
+ </project >
0 commit comments