mirror of
https://github.com/DieReicheErethons/Brewery.git
synced 2024-11-05 09:00:18 +01:00
66 lines
1.6 KiB
XML
66 lines
1.6 KiB
XML
<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>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
<name>Brewery</name>
|
|
|
|
<build>
|
|
<sourceDirectory>src</sourceDirectory>
|
|
|
|
<resources>
|
|
<!-- Static resources -->
|
|
<resource>
|
|
<filtering>false</filtering>
|
|
<directory>${project.basedir}</directory>
|
|
<includes>
|
|
<include>**/*.yml</include>
|
|
</includes>
|
|
</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>
|
|
<id>spout-repo</id>
|
|
<url>http://nexus.spout.org/content/groups/public/</url>
|
|
<snapshots>
|
|
<enabled>true</enabled>
|
|
<updatePolicy>always</updatePolicy>
|
|
</snapshots>
|
|
</repository>
|
|
|
|
<repository>
|
|
<id>milkbowl-repo</id>
|
|
<url>http://ci.herocraftonline.com/plugin/repository/everything</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<dependencies>
|
|
<!-- Provided by third-party -->
|
|
<dependency>
|
|
<groupId>org.spout</groupId>
|
|
<artifactId>craftbukkit</artifactId>
|
|
<version>1.6.2-R0.2-SNAPSHOT</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>net.milkbowl.vault</groupId>
|
|
<artifactId>Vault</artifactId>
|
|
<version>1.2.16-SNAPSHOT</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project> |