Skip to content

Commit

Permalink
Merge pull request gmlaxfanatic#53 from WildWeazel/patch-3
Browse files Browse the repository at this point in the history
maven build script
  • Loading branch information
ttk2 committed Jun 26, 2014
2 parents 2a9ce4a + f7b9b85 commit 1314193
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
<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.github.igotyou</groupId>
<artifactId>FactoryMod</artifactId>
<packaging>jar</packaging>
<version>1.0-SNAPSHOT</version>
<name>FactoryMod</name>
<url>https://github.com/ttk2/FactoryMod</url>

<build>
<sourceDirectory>${basedir}/src</sourceDirectory>
<resources>
<resource>
<directory>${basedir}</directory>
<includes>
<include>*.yml</include>
</includes>
</resource>
</resources>
</build>

<dependencies>
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>craftbukkit</artifactId>
<version>1.7.2</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.untamedears</groupId>
<artifactId>Citadel</artifactId>
<version>2.5.23</version>
<scope>provided</scope>
</dependency>
</dependencies>

<repositories>
<repository>
<id>lib</id>
<name>lib</name>
<url>${project.baseUri}lib</url>
</repository>
</repositories>
</project>

0 comments on commit 1314193

Please sign in to comment.