Nothing to see here, move along

This commit is contained in:
Sauilitired 2015-07-27 20:26:19 +02:00
parent 4939f997dc
commit aa735f8073

16
pom.xml
View File

@ -37,16 +37,17 @@
</resource> </resource>
</resources> </resources>
<plugins> <plugins>
<plugin> <plugin>
<artifactId>maven-jar-plugin</artifactId> <artifactId>maven-jar-plugin</artifactId>
<executions> <executions>
<execution> <execution>
<id>bukkit</id> <id>bukkit</id>
<goals><goal>jar</goal></goals> <goals>
<goal>jar</goal>
</goals>
<phase>package</phase> <phase>package</phase>
<configuration> <configuration>
<classifier>bukkit</classifier> <finalName>PlotSquared-Bukkit</finalName>
<excludes> <excludes>
<exclude>**/com/plotsquared/sponge/*</exclude> <exclude>**/com/plotsquared/sponge/*</exclude>
</excludes> </excludes>
@ -54,10 +55,12 @@
</execution> </execution>
<execution> <execution>
<id>sponge</id> <id>sponge</id>
<goals><goal>jar</goal></goals> <goals>
<goal>jar</goal>
</goals>
<phase>package</phase> <phase>package</phase>
<configuration> <configuration>
<classifier>sponge</classifier> <finalName>PlotSquared-Sponge</finalName>
<excludes> <excludes>
<exclude>**/com/plotsquared/bukkit/*</exclude> <exclude>**/com/plotsquared/bukkit/*</exclude>
</excludes> </excludes>
@ -85,7 +88,8 @@
</build> </build>
<repositories> <repositories>
<repository> <repository>
<id>techcable-repo</id> <!-- Just leave the repositories section alone or bukkit won't work --> <id>techcable-repo</id>
<!-- Just leave the repositories section alone or bukkit won't work -->
<url>http://repo.techcable.net/content/groups/public/</url> <url>http://repo.techcable.net/content/groups/public/</url>
</repository> </repository>
<repository> <repository>