Commits
md_5 authored 06355ab5473
1 1 | |
2 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
3 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
4 4 | <modelVersion>4.0.0</modelVersion> |
5 5 | |
6 6 | <groupId>org.bukkit</groupId> |
7 7 | <artifactId>bukkit</artifactId> |
8 - | <version>1.12.1-R0.1-SNAPSHOT</version> |
8 + | <version>1.12.2-R0.1-SNAPSHOT</version> |
9 9 | <packaging>jar</packaging> |
10 10 | |
11 11 | <name>Bukkit</name> |
12 12 | <url>https://www.spigotmc.org/</url> |
13 13 | <description>A plugin API for Minecraft servers.</description> |
14 14 | |
15 15 | <properties> |
16 16 | <maven.compiler.source>1.6</maven.compiler.source> |
17 17 | <maven.compiler.target>1.6</maven.compiler.target> |
18 18 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
89 89 | <version>1.3</version> |
90 90 | <scope>test</scope> |
91 91 | </dependency> |
92 92 | </dependencies> |
93 93 | |
94 94 | <build> |
95 95 | <plugins> |
96 96 | <plugin> |
97 97 | <groupId>org.apache.maven.plugins</groupId> |
98 98 | <artifactId>maven-compiler-plugin</artifactId> |
99 - | <version>3.6.2</version> |
99 + | <version>3.7.0</version> |
100 100 | <configuration> |
101 101 | <!-- we use the Eclipse compiler as it doesn't need a JDK --> |
102 102 | <compilerId>eclipse</compilerId> |
103 103 | </configuration> |
104 104 | <dependencies> |
105 105 | <!-- we need our custom version as it fixes some bugs on case sensitive file systems --> |
106 106 | <dependency> |
107 107 | <groupId>org.codehaus.plexus</groupId> |
108 108 | <artifactId>plexus-compiler-eclipse</artifactId> |
109 109 | <version>2.8.2-spigotmc</version> |
110 110 | </dependency> |
111 111 | </dependencies> |
112 112 | </plugin> |
113 113 | <plugin> |
114 114 | <groupId>org.codehaus.mojo</groupId> |
115 115 | <artifactId>animal-sniffer-maven-plugin</artifactId> |
116 - | <version>1.15</version> |
116 + | <version>1.16</version> |
117 117 | <executions> |
118 118 | <execution> |
119 119 | <phase>process-classes</phase> |
120 120 | <goals> |
121 121 | <goal>check</goal> |
122 122 | </goals> |
123 123 | </execution> |
124 124 | </executions> |
125 125 | <configuration> |
126 126 | <signature> |
127 127 | <groupId>org.codehaus.mojo.signature</groupId> |
128 128 | <artifactId>java16</artifactId> |
129 129 | <version>1.1</version> |
130 130 | </signature> |
131 131 | </configuration> |
132 132 | </plugin> |
133 133 | <plugin> |
134 134 | <groupId>org.apache.maven.plugins</groupId> |
135 135 | <artifactId>maven-shade-plugin</artifactId> |
136 - | <version>3.0.0</version> |
136 + | <version>3.1.0</version> |
137 137 | <executions> |
138 138 | <execution> |
139 139 | <phase>package</phase> |
140 140 | <goals> |
141 141 | <goal>shade</goal> |
142 142 | </goals> |
143 143 | </execution> |
144 144 | </executions> |
145 145 | <configuration> |
146 146 | <!-- when downloading via Maven we can pull depends individually --> |