<?xml version="1.0" encoding="UTF-8"?> <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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>net.aufdemrand</groupId> <artifactId>denizen</artifactId> <name>Denizen</name> <version>0.9.2-SNAPSHOT</version> <description>Scriptable NPCs for Citizens2</description> <url>http://wiki.citizensnpcs.com/Denizen</url> <ciManagement> <system>jenkins</system> <url>http://ci.citizensnpcs.com</url> </ciManagement> <scm> <connection>scm:git:git://github.com/aufdemrand/Denizen.git</connection> <developerConnection>scm:git:git:@github.com:aufdemrand/Denizen.git</developerConnection> <url>https://github.com/aufdemrand/Denizen/tree/master/</url> </scm> <build> <plugins> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>1.5</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <artifactSet> <includes> <include>org.abstractmeta</include> <include>org.json</include> </includes> </artifactSet> <relocations> <relocation> <pattern>org.abstractmeta</pattern> <shadedPattern>org.shade.abstractmeta</shadedPattern> </relocation> <relocation> <pattern>org.json</pattern> <shadedPattern>org.shade.json</shadedPattern> </relocation> </relocations> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>2.2</version> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>2.5.1</version> <configuration /> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9</version> <configuration> <stylesheetfile>${basedir}/src/javadoc/stylesheet.css</stylesheetfile> <javadocDirectory>${basedir}/src/javadoc</javadocDirectory> <docfilessubdirs>true</docfilessubdirs> <links> <link>http://commons.apache.org/lang/api</link> <link>http://java.sun.com/j2se/1.5.0/docs/api</link> </links> </configuration> </plugin> </plugins> </build> <repositories> <repository> <id>vault-repo</id> <url>http://ci.herocraftonline.com/plugin/repository/everything/</url> </repository> <repository> <id>bukkit-repo</id> <url>http://repo.bukkit.org/content/groups/public/</url> </repository> <repository> <id>everything</id> <url>http://repo.citizensnpcs.com</url> </repository> <repository> <id>sk89q-repo</id> <url>http://maven.sk89q.com/repo/</url> </repository> <repository> <id>comphenix-repo</id> <url>http://repo.comphenix.net/content/groups/public</url> </repository> </repositories> <dependencies> <dependency> <groupId>org.bukkit</groupId> <artifactId>bukkit</artifactId> <version>1.6.2-R0.1-SNAPSHOT</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.bukkit</groupId> <artifactId>craftbukkit</artifactId> <version>1.6.2-R0.1-SNAPSHOT</version> <scope>provided</scope> </dependency> <dependency> <groupId>net.citizensnpcs</groupId> <artifactId>citizens</artifactId> <version>2.0.9-SNAPSHOT</version> <scope>provided</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.10</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>hamcrest-core</artifactId> <groupId>org.hamcrest</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>net.milkbowl.vault</groupId> <artifactId>Vault</artifactId> <version>LATEST</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.jmock</groupId> <artifactId>jmock-junit4</artifactId> <version>2.5.1</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>jmock</artifactId> <groupId>org.jmock</groupId> </exclusion> <exclusion> <artifactId>junit-dep</artifactId> <groupId>junit</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.sk89q</groupId> <artifactId>worldguard</artifactId> <version>5.7.3-SNAPSHOT</version> <scope>provided</scope> <exclusions> <exclusion> <artifactId>worldedit</artifactId> <groupId>com.sk89q</groupId> </exclusion> <exclusion> <artifactId>commandbook</artifactId> <groupId>com.sk89q</groupId> </exclusion> <exclusion> <artifactId>iconomy</artifactId> <groupId>com.nijikokun</groupId> </exclusion> <exclusion> <artifactId>prtree</artifactId> <groupId>org.khelekore</groupId> </exclusion> <exclusion> <artifactId>opencsv</artifactId> <groupId>net.sf.opencsv</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.comphenix.protocol</groupId> <artifactId>ProtocolLib</artifactId> <version>2.2.0</version> <scope>compile</scope> </dependency> </dependencies> <properties> <build.number>Unknown</build.number> <citizens.version>2.0.9-SNAPSHOT</citizens.version> <json.version>20090211</json.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <craftbukkit.version>1.6.2-R0.1-SNAPSHOT</craftbukkit.version> </properties> </project>