Commits
md_5 authored 7560d3b5ab2
1 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
2 2 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
3 3 | <modelVersion>4.0.0</modelVersion> |
4 4 | <groupId>org.bukkit</groupId> |
5 5 | <artifactId>craftbukkit</artifactId> |
6 6 | <packaging>jar</packaging> |
7 7 | <version>1.13.2-R0.1-SNAPSHOT</version> |
8 8 | <name>CraftBukkit</name> |
9 9 | <url>http://www.bukkit.org</url> |
10 10 | |
11 11 | <properties> |
12 + | <skipTests>true</skipTests> |
12 13 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
13 14 | <api.version>unknown</api.version> |
14 15 | <minecraft.version>1.13.2</minecraft.version> |
15 16 | <minecraft_version>1_13_R2</minecraft_version> |
16 17 | <buildtag.prefix>git-Bukkit-</buildtag.prefix> |
17 18 | <buildtag.suffix></buildtag.suffix> |
18 19 | <maven.build.timestamp.format>yyyyMMdd-HHmm</maven.build.timestamp.format> |
19 20 | <maven.compiler.source>1.8</maven.compiler.source> |
20 21 | <maven.compiler.target>1.8</maven.compiler.target> |
21 22 | </properties> |
223 224 | <profiles> |
224 225 | <profile> |
225 226 | <id>shadeSourcesJar</id> |
226 227 | <properties> |
227 228 | <shadeSourcesJar>true</shadeSourcesJar> |
228 229 | <shadeSourcesContent>true</shadeSourcesContent> |
229 230 | </properties> |
230 231 | </profile> |
231 232 | <profile> |
232 233 | <id>development</id> |
234 + | <properties> |
235 + | <skipTests>false</skipTests> |
236 + | </properties> |
233 237 | <build> |
234 238 | <plugins> |
235 239 | <plugin> |
236 240 | <groupId>org.codehaus.mojo</groupId> |
237 241 | <artifactId>animal-sniffer-maven-plugin</artifactId> |
238 242 | <version>1.17</version> |
239 243 | <executions> |
240 244 | <execution> |
241 245 | <phase>process-classes</phase> |
242 246 | <goals> |