Commits
md_5 authored bf79482272d
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 - | <parent> |
7 - | <groupId>org.sonatype.oss</groupId> |
8 - | <artifactId>oss-parent</artifactId> |
9 - | <version>9</version> |
10 - | </parent> |
11 - | |
12 6 | <groupId>org.bukkit</groupId> |
13 7 | <artifactId>bukkit</artifactId> |
14 8 | <version>1.12.1-R0.1-SNAPSHOT</version> |
15 9 | <packaging>jar</packaging> |
16 10 | |
17 11 | <name>Bukkit</name> |
18 - | <url>http://www.bukkit.org/</url> |
12 + | <url>https://www.spigotmc.org/</url> |
19 13 | <description>A plugin API for Minecraft servers.</description> |
20 14 | |
21 15 | <properties> |
22 16 | <maven.compiler.source>1.6</maven.compiler.source> |
23 17 | <maven.compiler.target>1.6</maven.compiler.target> |
24 18 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
25 19 | </properties> |
26 20 | |
27 21 | <distributionManagement> |
28 22 | <repository> |
143 137 | <version>3.0.0</version> |
144 138 | <executions> |
145 139 | <execution> |
146 140 | <phase>package</phase> |
147 141 | <goals> |
148 142 | <goal>shade</goal> |
149 143 | </goals> |
150 144 | </execution> |
151 145 | </executions> |
152 146 | <configuration> |
153 - | <!-- utterly useless artifact from shade 2.x --> |
154 - | <createDependencyReducedPom>false</createDependencyReducedPom> |
155 147 | <!-- when downloading via Maven we can pull depends individually --> |
156 148 | <shadedArtifactAttached>true</shadedArtifactAttached> |
157 149 | </configuration> |
158 150 | </plugin> |
159 151 | </plugins> |
160 152 | </build> |
161 153 | </project> |