Skip to content

Commit 282b8b5

Browse files
committed
v1.0
- Compatible with ChestCommand v3.1.4
0 parents  commit 282b8b5

6 files changed

Lines changed: 439 additions & 0 deletions

File tree

.gitignore

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
/bin/
2+
/target/
3+
.classpath
4+
.project
5+
.settings
6+
.metadata
7+
*.jardesc
8+
.idea
9+
.recommenders
10+
*.iml
11+
*.eml
12+
.DS_Store
13+
META-INF
14+
out
15+
16+
lib/ChestCommands.jar

lib/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Building
2+
Place your `ChestCommands.jar` file in this folder.

pom.xml

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
<groupId>com.perceivedev</groupId>
5+
<artifactId>papichestcommands</artifactId>
6+
<version>1.0</version>
7+
<name>PAPI-ChestCommands</name>
8+
<description>A bukkit plugin to allow ChestCommands to use PlaceholderAPI placeholders</description>
9+
<repositories>
10+
<repository>
11+
<id>spigot-repo</id>
12+
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
13+
</repository>
14+
<repository>
15+
<id>placeholderapi</id>
16+
<url>http://repo.extendedclip.com/content/repositories/placeholderapi/</url>
17+
</repository>
18+
</repositories>
19+
<dependencies>
20+
<dependency>
21+
<groupId>org.bukkit</groupId>
22+
<artifactId>bukkit</artifactId>
23+
<version>1.10.2-R0.1-SNAPSHOT</version>
24+
<scope>provided</scope>
25+
</dependency>
26+
<dependency>
27+
<groupId>me.clip</groupId>
28+
<artifactId>placeholderapi</artifactId>
29+
<version>2.0.8</version>
30+
<scope>provided</scope>
31+
</dependency>
32+
<dependency>
33+
<artifactId>chestCommands-local</artifactId>
34+
<groupId>filoghost</groupId>
35+
<version>3.1.4</version>
36+
<systemPath>${basedir}/lib/ChestCommands.jar</systemPath>
37+
<scope>system</scope>
38+
</dependency>
39+
<!-- <dependency>
40+
<groupId>com.perceivedev</groupId>
41+
<artifactId>perceivecore</artifactId>
42+
<version>0.0.1</version>
43+
<scope>provided</scope>
44+
</dependency> -->
45+
</dependencies>
46+
<build>
47+
<defaultGoal>clean compile test package</defaultGoal>
48+
<finalName>${project.name}-${project.version}</finalName>
49+
<sourceDirectory>${basedir}/src/main/java</sourceDirectory>
50+
<resources>
51+
<resource>
52+
<directory>${basedir}/src/main/resources</directory>
53+
<includes>
54+
<include>*.yml</include>
55+
</includes>
56+
</resource>
57+
</resources>
58+
</build>
59+
</project>

0 commit comments

Comments
 (0)