chore: 添加Maven项目管理 移动配置文件 调整库文件

Signed-off-by: 502647092 <admin@yumc.pw>
master
502647092 2016-06-26 00:53:03 +08:00
parent b4fe1d233e
commit 5fc8c9ab54
6 changed files with 123 additions and 10 deletions

BIN
libs/ScheduledCommands.jar Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

122
pom.xml Normal file
View File

@ -0,0 +1,122 @@
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>org.black_ixx</groupId>
<artifactId>bossshop</artifactId>
<version>2.2.3</version>
<name>BossShop</name>
<build>
<finalName>${project.name}</finalName>
<resources>
<resource>
<directory>src/main/resource</directory>
<excludes>
<exclude>**/*.java</exclude>
</excludes>
</resource>
</resources>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
</plugins>
</build>
<ciManagement>
<system>Jenkins</system>
<url>http://ci.yumc.pw/job/${project.artifactId}/</url>
</ciManagement>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<repositories>
<repository>
<id>yumc-repo</id>
<url>http://repo.yumc.pw/content/groups/public/</url>
</repository>
<repository>
<id>spigot-repo</id>
<url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
</repository>
</repositories>
<distributionManagement>
<repository>
<id>jtb</id>
<name>YUMC</name>
<url>http://repo.yumc.pw/content/repositories/yumcenter/</url>
</repository>
</distributionManagement>
<dependencies>
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
<type>jar</type>
<version>1.9.4-R0.1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>net.milkbowl.vault</groupId>
<artifactId>Vault</artifactId>
<version>1.5.6</version>
</dependency>
<dependency>
<groupId>pw.yumc</groupId>
<artifactId>CommandPoints</artifactId>
<version>1.0</version>
<scope>system</scope>
<systemPath>${project.basedir}/libs/CommandPoints.jar</systemPath>
</dependency>
<dependency>
<groupId>pw.yumc</groupId>
<artifactId>craftbukkit-1.7.9</artifactId>
<version>1.0</version>
<scope>system</scope>
<systemPath>${project.basedir}/libs/craftbukkit-1.7.9.jar</systemPath>
</dependency>
<dependency>
<groupId>pw.yumc</groupId>
<artifactId>EnjinMinecraftPlugin</artifactId>
<version>1.0</version>
<scope>system</scope>
<systemPath>${project.basedir}/libs/EnjinMinecraftPlugin.jar</systemPath>
</dependency>
<dependency>
<groupId>pw.yumc</groupId>
<artifactId>forge</artifactId>
<version>1.0</version>
<scope>system</scope>
<systemPath>${project.basedir}/libs/forge.jar</systemPath>
</dependency>
<dependency>
<groupId>pw.yumc</groupId>
<artifactId>PlaceholderAPI</artifactId>
<version>1.0</version>
<scope>system</scope>
<systemPath>${project.basedir}/libs/PlaceholderAPI.jar</systemPath>
</dependency>
<dependency>
<groupId>pw.yumc</groupId>
<artifactId>PointsAPI</artifactId>
<version>1.0</version>
<scope>system</scope>
<systemPath>${project.basedir}/libs/PointsAPI.jar</systemPath>
</dependency>
<dependency>
<groupId>pw.yumc</groupId>
<artifactId>PlayerPoints</artifactId>
<version>1.0</version>
<scope>system</scope>
<systemPath>${project.basedir}/libs/PlayerPoints.jar</systemPath>
</dependency>
<dependency>
<groupId>pw.yumc</groupId>
<artifactId>ScheduledCommands</artifactId>
<version>1.0</version>
<scope>system</scope>
<systemPath>${project.basedir}/libs/ScheduledCommands.jar</systemPath>
</dependency>
</dependencies>
</project>

View File

@ -1,9 +0,0 @@
public class Test{
public static void main(String[] args){
System.out.println(System.class.getPackage().getSpecificationVersion());
}
}

View File

@ -104,7 +104,7 @@ LotterySystem:
# 1|0.HIDE_ENCHANTS 附魔
# 2|1.HIDE_ATTRIBUTES 前缀
# 4|2.HIDE_UNBREAKABLE 不可破坏
# 8|3.HIDE_DESTROYS, 受损度
# 8|3.HIDE_DESTROYS, 受损度
# 16|4.HIDE_PLACED_ON, 放置
# 32|5.HIDE_POTION_EFFECTS 药水效果
# 如何隐藏物品的状态??如果想隐藏相应的属性,只要把前面的数字加起来就可以了,如果要全部隐藏,就是63(默认)