Skip to content

Commit 554472a

Browse files
committed
Maven.
1 parent 06a8f18 commit 554472a

File tree

4 files changed

+2256
-2209
lines changed

4 files changed

+2256
-2209
lines changed

Diff for: .gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,5 @@ bin/
33
*.classpath
44
*.project
55
target/
6+
.idea
7+
ParticleEffect.iml

Diff for: pom.xml

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
7+
<groupId>com.darkblade12</groupId>
8+
<artifactId>particleeffect</artifactId>
9+
<version>1.0-SNAPSHOT</version>
10+
<repositories>
11+
<repository>
12+
<id>spigot-repo</id>
13+
<url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
14+
</repository>
15+
</repositories>
16+
<dependencies>
17+
<!--Bukkit API-->
18+
<dependency>
19+
<groupId>org.bukkit</groupId>
20+
<artifactId>bukkit</artifactId>
21+
<version>1.8.7-R0.1-SNAPSHOT</version>
22+
</dependency>
23+
</dependencies>
24+
<distributionManagement>
25+
<repository>
26+
<id>sinndev-repo</id>
27+
<name>Releases</name>
28+
<url>http://repo.sinndev.com/content/repositories/releases/</url>
29+
</repository>
30+
<snapshotRepository>
31+
<id>sinndev-repo</id>
32+
<name>Snapshots</name>
33+
<url>http://repo.sinndev.com/content/repositories/snapshots/</url>
34+
</snapshotRepository>
35+
</distributionManagement>
36+
<build>
37+
<plugins>
38+
<plugin>
39+
<groupId>org.apache.maven.plugins</groupId>
40+
<artifactId>maven-javadoc-plugin</artifactId>
41+
<version>2.10.3</version>
42+
</plugin>
43+
</plugins>
44+
</build>
45+
</project>

0 commit comments

Comments
 (0)