Fix Loss src file...

Signed-off-by: j502647092 <jtb1@163.com>
pull/1/MERGE
j502647092 2015-04-29 10:41:14 +08:00
parent d6a6402511
commit 11a919e8c1
4 changed files with 102 additions and 99 deletions

201
pom.xml
View File

@ -1,101 +1,104 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <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"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>com.me.tft_02.soulbound</groupId> <groupId>com.me.tft_02.soulbound</groupId>
<artifactId>Soulbound</artifactId> <artifactId>Soulbound</artifactId>
<version>1.1.10-SNAPSHOT</version> <version>1.1.10-SNAPSHOT</version>
<name>Soulbound</name> <name>Soulbound</name>
<url>https://github.com/TfT-02/Soulbound</url> <url>https://github.com/TfT-02/Soulbound</url>
<issueManagement> <issueManagement>
<system>GitHub</system> <system>GitHub</system>
<url>https://github.com/TfT-02/Soulbound/issues</url> <url>https://github.com/TfT-02/Soulbound/issues</url>
</issueManagement> </issueManagement>
<build> <build>
<finalName>Soulbound</finalName> <sourceDirectory>src</sourceDirectory>
<sourceDirectory>${basedir}/src/main/java</sourceDirectory> <resources>
<resources> <resource>
<resource> <directory>src/main/java</directory>
<targetPath>.</targetPath> <excludes>
<filtering>true</filtering> <exclude>**/*.java</exclude>
<directory>${basedir}/src/</directory> </excludes>
<includes> </resource>
<include>*.yml</include> </resources>
<include>.jenkins</include> <plugins>
</includes> <plugin>
</resource> <artifactId>maven-compiler-plugin</artifactId>
</resources> <version>3.0</version>
<plugins> <configuration>
<plugin> <source>1.6</source>
<artifactId>maven-compiler-plugin</artifactId> <target>1.6</target>
<version>3.0</version> </configuration>
<configuration> </plugin>
<source>1.6</source> <plugin>
<target>1.6</target> <groupId>org.apache.maven.plugins</groupId>
</configuration> <artifactId>maven-shade-plugin</artifactId>
</plugin> <version>1.5</version>
<plugin> <configuration>
<groupId>org.apache.maven.plugins</groupId> <artifactSet>
<artifactId>maven-shade-plugin</artifactId> <includes>
<version>1.5</version> <include>org.mcstats.bukkit:metrics</include>
<configuration> <include>org.nunnerycode.bukkit:mythicdropsapi-lib</include>
<artifactSet> </includes>
<includes> </artifactSet>
<include>org.mcstats.bukkit:metrics</include> <relocations>
<include>org.nunnerycode.bukkit:mythicdropsapi-lib</include> <relocation>
</includes> <pattern>org.mcstats.bukkit</pattern>
</artifactSet> <shadedPattern>com.me.tft_02.soulbound.util</shadedPattern>
<relocations> </relocation>
<relocation> <relocation>
<pattern>org.mcstats.bukkit</pattern> <pattern>org.nunnerycode.bukkit</pattern>
<shadedPattern>com.me.tft_02.soulbound.util</shadedPattern> <shadedPattern>com.me.tft_02.soulbound.util</shadedPattern>
</relocation> </relocation>
<relocation> </relocations>
<pattern>org.nunnerycode.bukkit</pattern> </configuration>
<shadedPattern>com.me.tft_02.soulbound.util</shadedPattern> <executions>
</relocation> <execution>
</relocations> <phase>package</phase>
</configuration> <goals>
<executions> <goal>shade</goal>
<execution> </goals>
<phase>package</phase> </execution>
<goals> </executions>
<goal>shade</goal> </plugin>
</goals> </plugins>
</execution> </build>
</executions> <repositories>
</plugin> <repository>
</plugins> <id>spigot-repo</id>
</build> <url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
<repositories> </repository>
<repository> <repository>
<id>spigot-repo</id> <id>Plugin Metrics</id>
<url>https://hub.spigotmc.org/nexus/content/groups/public/</url> <url>http://repo.mcstats.org/content/repositories/public</url>
</repository> </repository>
<repository> <repository>
<id>Plugin Metrics</id> <id>mythicdrops-repo</id>
<url>http://repo.mcstats.org/content/repositories/public</url> <url>http://repository-topplethenun.forge.cloudbees.com/snapshot/</url>
</repository> </repository>
<repository> </repositories>
<id>mythicdrops-repo</id> <dependencies>
<url>http://repository-topplethenun.forge.cloudbees.com/snapshot/</url> <dependency>
</repository> <groupId>org.bukkit</groupId>
</repositories> <artifactId>bukkit</artifactId>
<dependencies> <version>1.8-R0.1-SNAPSHOT</version>
<dependency> <type>jar</type>
<groupId>org.bukkit</groupId> <scope>provided</scope>
<artifactId>bukkit</artifactId> </dependency>
<version>1.8-R0.1-SNAPSHOT</version> <dependency>
<type>jar</type> <groupId>org.mcstats.bukkit</groupId>
<scope>provided</scope> <artifactId>metrics</artifactId>
</dependency> <version>R7</version>
<dependency> <scope>compile</scope>
<groupId>org.mcstats.bukkit</groupId> </dependency>
<artifactId>metrics</artifactId> <dependency>
<version>R7</version> <groupId>org.nunnerycode.bukkit</groupId>
<scope>compile</scope> <artifactId>mythicdropsapi-lib</artifactId>
</dependency> <version>1.0.0-SNAPSHOT</version>
</dependencies> <type>jar</type>
<properties> <scope>compile</scope>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </dependency>
</properties> </dependencies>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</project> </project>