Skip to content

Commit

Permalink
Maven.
Browse files Browse the repository at this point in the history
  • Loading branch information
JamieSinn committed Jun 23, 2015
1 parent 06a8f18 commit 554472a
Show file tree
Hide file tree
Showing 4 changed files with 2,256 additions and 2,209 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,5 @@ bin/
*.classpath
*.project
target/
.idea
ParticleEffect.iml
45 changes: 45 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
<?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>com.darkblade12</groupId>
<artifactId>particleeffect</artifactId>
<version>1.0-SNAPSHOT</version>
<repositories>
<repository>
<id>spigot-repo</id>
<url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
</repository>
</repositories>
<dependencies>
<!--Bukkit API-->
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
<version>1.8.7-R0.1-SNAPSHOT</version>
</dependency>
</dependencies>
<distributionManagement>
<repository>
<id>sinndev-repo</id>
<name>Releases</name>
<url>http://repo.sinndev.com/content/repositories/releases/</url>
</repository>
<snapshotRepository>
<id>sinndev-repo</id>
<name>Snapshots</name>
<url>http://repo.sinndev.com/content/repositories/snapshots/</url>
</snapshotRepository>
</distributionManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.3</version>
</plugin>
</plugins>
</build>
</project>
Loading

0 comments on commit 554472a

Please sign in to comment.