2013-08-26 16:47:09 +02:00
|
|
|
<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>com.dre</groupId>
|
|
|
|
<artifactId>brewery</artifactId>
|
2013-11-21 22:08:47 +01:00
|
|
|
<version>1.1</version>
|
2013-08-26 16:47:09 +02:00
|
|
|
<name>Brewery</name>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<sourceDirectory>src</sourceDirectory>
|
|
|
|
|
|
|
|
<resources>
|
|
|
|
<!-- Static resources -->
|
|
|
|
<resource>
|
|
|
|
<filtering>false</filtering>
|
|
|
|
<directory>${project.basedir}</directory>
|
|
|
|
<includes>
|
|
|
|
<include>**/*.yml</include>
|
|
|
|
</includes>
|
2013-09-11 14:10:54 +02:00
|
|
|
<excludes>
|
|
|
|
<exclude>target/**</exclude>
|
|
|
|
</excludes>
|
2013-08-26 16:47:09 +02:00
|
|
|
</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>
|
|
|
|
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
2014-02-15 16:40:25 +01:00
|
|
|
<id>bukkit-repo</id>
|
|
|
|
<url>http://repo.bukkit.org/content/groups/public/</url>
|
2013-08-26 16:47:09 +02:00
|
|
|
<snapshots>
|
|
|
|
<enabled>true</enabled>
|
|
|
|
<updatePolicy>always</updatePolicy>
|
|
|
|
</snapshots>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<!-- Provided by third-party -->
|
|
|
|
<dependency>
|
2014-02-15 16:40:25 +01:00
|
|
|
<groupId>org.bukkit</groupId>
|
2013-08-26 16:47:09 +02:00
|
|
|
<artifactId>craftbukkit</artifactId>
|
2014-02-15 16:40:25 +01:00
|
|
|
<version>1.7.2-R0.3</version>
|
2013-08-26 16:47:09 +02:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2014-02-15 16:40:25 +01:00
|
|
|
</project>
|