Commits
md_5 authored 82f06fff5e9
1 - | <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"> |
2 - | <modelVersion>4.0.0</modelVersion> |
3 - | <groupId>org.bukkit</groupId> |
4 - | <artifactId>bukkit</artifactId> |
5 - | <version>1.8-R0.1-SNAPSHOT</version> |
6 - | <name>Bukkit</name> |
7 - | <url>http://www.bukkit.org</url> |
8 - | |
9 - | <properties> |
10 - | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
11 - | </properties> |
12 - | |
13 - | <distributionManagement> |
14 - | <repository> |
15 - | <id>spigotmc-releases</id> |
16 - | <url>https://hub.spigotmc.org/nexus/content/repositories/releases/</url> |
17 - | </repository> |
18 - | <snapshotRepository> |
19 - | <id>spigotmc-releases</id> |
20 - | <url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url> |
21 - | </snapshotRepository> |
22 - | </distributionManagement> |
23 - | |
24 - | <build> |
25 - | <plugins> |
26 - | <plugin> |
27 - | <groupId>org.apache.maven.plugins</groupId> |
28 - | <artifactId>maven-compiler-plugin</artifactId> |
29 - | <version>3.2</version> |
30 - | <configuration> |
31 - | <source>1.6</source> |
32 - | <target>1.6</target> |
33 - | </configuration> |
34 - | </plugin> |
35 - | <plugin> |
36 - | <groupId>org.apache.maven.plugins</groupId> |
37 - | <artifactId>maven-shade-plugin</artifactId> |
38 - | <version>2.3</version> |
39 - | <executions> |
40 - | <execution> |
41 - | <phase>package</phase> |
42 - | <goals> |
43 - | <goal>shade</goal> |
44 - | </goals> |
45 - | </execution> |
46 - | </executions> |
47 - | </plugin> |
48 - | <plugin> |
49 - | <groupId>org.apache.maven.plugins</groupId> |
50 - | <artifactId>maven-site-plugin</artifactId> |
51 - | <version>3.4</version> |
52 - | <configuration> |
53 - | <reportPlugins> |
54 - | <plugin> |
55 - | <groupId>org.codehaus.mojo</groupId> |
56 - | <artifactId>jxr-maven-plugin</artifactId> |
57 - | <version>2.0-beta-1</version> |
58 - | </plugin> |
59 - | <plugin> |
60 - | <groupId>org.apache.maven.plugins</groupId> |
61 - | <artifactId>maven-javadoc-plugin</artifactId> |
62 - | <version>2.10.1</version> |
63 - | <configuration> |
64 - | <linksource>true</linksource> |
65 - | </configuration> |
66 - | <reportSets> |
67 - | <reportSet> |
68 - | <reports> |
69 - | <report>javadoc</report> |
70 - | </reports> |
71 - | </reportSet> |
72 - | </reportSets> |
73 - | </plugin> |
74 - | </reportPlugins> |
75 - | </configuration> |
76 - | </plugin> |
77 - | </plugins> |
78 - | </build> |
79 - | <dependencies> |
80 - | <dependency> |
81 - | <groupId>org.yaml</groupId> |
82 - | <artifactId>snakeyaml</artifactId> |
83 - | <version>1.14</version> |
84 - | <type>jar</type> |
85 - | <scope>compile</scope> |
86 - | </dependency> |
87 - | <dependency> |
88 - | <groupId>com.googlecode.json-simple</groupId> |
89 - | <artifactId>json-simple</artifactId> |
90 - | <version>1.1.1</version> |
91 - | <type>jar</type> |
92 - | <scope>compile</scope> |
93 - | </dependency> |
94 - | <dependency> |
95 - | <groupId>org.avaje</groupId> |
96 - | <artifactId>ebean</artifactId> |
97 - | <version>2.8.1</version> |
98 - | <type>jar</type> |
99 - | <scope>compile</scope> |
100 - | </dependency> |
101 - | <!-- Should be kept in sync with Minecraft --> |
102 - | <dependency> |
103 - | <groupId>com.google.guava</groupId> |
104 - | <artifactId>guava</artifactId> |
105 - | <version>17.0</version> |
106 - | <type>jar</type> |
107 - | <scope>compile</scope> |
108 - | </dependency> |
109 - | <dependency> |
110 - | <groupId>commons-lang</groupId> |
111 - | <artifactId>commons-lang</artifactId> |
112 - | <version>2.6</version> |
113 - | </dependency> |
114 - | |
115 - | <!-- testing --> |
116 - | <dependency> |
117 - | <groupId>junit</groupId> |
118 - | <artifactId>junit</artifactId> |
119 - | <version>4.12</version> |
120 - | <scope>test</scope> |
121 - | </dependency> |
122 - | <dependency> |
123 - | <groupId>org.hamcrest</groupId> |
124 - | <artifactId>hamcrest-library</artifactId> |
125 - | <version>1.3</version> |
126 - | <scope>test</scope> |
127 - | </dependency> |
128 - | </dependencies> |
129 - | </project> |