Skip to content

Commit

Permalink
mavenize
Browse files Browse the repository at this point in the history
Untested
  • Loading branch information
RoboMWM authored Sep 16, 2016
1 parent ce29c2f commit 426466a
Showing 1 changed file with 62 additions and 0 deletions.
62 changes: 62 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
<?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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>me.ryanhamshire</groupId>
<artifactId>PopulationDensity</artifactId>
<version>5.8.2</version>
<repositories>
<repository>
<id>spigot-repo</id>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
</repository>

</repositories>
<build>
<!--Maintain existing structure (as much as possible)-->
<sourceDirectory>${project.basedir}/src</sourceDirectory>
<!--currently in same folder as source files...-->
<testSourceDirectory>${project.basedir}/tests/java</testSourceDirectory>
<testResources>
<testResource>
<directory>${project.basedir}/tests/resources</directory>
</testResource>
</testResources>
<finalName>${project.name}</finalName>
<resources>
<resource>
<!-- Use plugin.yml in root directory-->
<!-- This can also automatically update plugin.yml version from pom, if you use ${project.version} as version number-->
<directory>${basedir}</directory>
<filtering>true</filtering>
<includes>
<include>plugin.yml</include>
</includes>
</resource>
</resources>
</build>
<dependencies>
<!--Bukkit API-->
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
<version>1.10.2-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<!--Google stuff-->
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>19.0</version>
</dependency>
<!--json stuff-->
<dependency>
<groupId>com.googlecode.json-simple</groupId>
<artifactId>json-simple</artifactId>
<version>1.1.1</version>
</dependency>
</dependencies>

</project>

0 comments on commit 426466a

Please sign in to comment.