|
| 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