plugin/pom.xml

85 lines
2.7 KiB
XML
Raw Normal View History

2012-02-25 18:05:39 +00:00
<?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>us.camin</groupId>
2012-02-25 18:59:29 +00:00
<artifactId>Caminus</artifactId>
2012-02-25 18:05:39 +00:00
<packaging>jar</packaging>
2012-03-18 22:28:31 +00:00
<version>0.2</version>
2012-02-25 18:05:39 +00:00
<name>bukkitplugin</name>
<url>http://maven.apache.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
2012-03-18 22:28:31 +00:00
<version>1.2.2-R0.1-SNAPSHOT</version>
<scope>provided</scope>
2012-02-25 18:05:39 +00:00
</dependency>
2012-02-27 15:20:36 +00:00
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20090211</version>
2012-02-27 16:34:55 +00:00
</dependency>
<dependency>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty</artifactId>
<version>6.1H.22</version>
<scope>test</scope>
2012-02-27 15:20:36 +00:00
</dependency>
2012-02-25 18:05:39 +00:00
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
2012-02-27 16:34:55 +00:00
<version>4.10</version>
2012-02-25 18:05:39 +00:00
<scope>test</scope>
</dependency>
</dependencies>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
2012-02-25 18:05:39 +00:00
<plugins>
2012-02-28 00:15:19 +00:00
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
</manifest>
</archive>
<descriptors>
<descriptor>src/assembly/bukkit.xml</descriptor>
</descriptors>
</configuration>
2012-02-28 00:15:19 +00:00
<executions>
<execution>
<id>make-assembly</id>
2012-02-28 00:15:19 +00:00
<phase>package</phase>
<goals>
<goal>single</goal>
2012-02-28 00:15:19 +00:00
</goals>
</execution>
</executions>
</plugin>
2012-02-25 18:05:39 +00:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>bukkit-repo</id>
<url>http://repo.bukkit.org/service/local/repositories/snapshots/content/</url>
</repository>
</repositories>
</project>