Skip to content

Commit 62ffedd

Browse files
committed
Initial functional mod
1 parent eb8e256 commit 62ffedd

File tree

5 files changed

+570
-0
lines changed

5 files changed

+570
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/target/
2+
/.classpath
3+
/.project

pom.xml

Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
<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">
2+
<modelVersion>4.0.0</modelVersion>
3+
4+
<properties>
5+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
6+
<timestamp>${maven.build.timestamp}</timestamp>
7+
<maven.build.timestamp.format>yyyyMMddHHmm</maven.build.timestamp.format>
8+
<BUILD_NUMBER>Dev${timestamp}</BUILD_NUMBER>
9+
</properties>
10+
11+
<developers>
12+
<developer>
13+
<name>mikeprimm</name>
14+
</developer>
15+
</developers>
16+
17+
<build>
18+
<defaultGoal>package</defaultGoal>
19+
<resources>
20+
<resource>
21+
<directory>src/main/resources</directory>
22+
<filtering>true</filtering>
23+
</resource>
24+
</resources>
25+
<plugins>
26+
<plugin>
27+
<artifactId>maven-compiler-plugin</artifactId>
28+
<version>3.5.1</version>
29+
<configuration>
30+
<source>1.8</source>
31+
<target>1.8</target>
32+
</configuration>
33+
</plugin>
34+
</plugins>
35+
</build>
36+
37+
<repositories>
38+
<repository>
39+
<id>sponge</id>
40+
<url>https://repo.spongepowered.org/maven</url>
41+
</repository>
42+
<repository>
43+
<id>nucleus</id>
44+
<url>http://repo.drnaylor.co.uk/artifactory/list/minecraft</url>
45+
</repository>
46+
<repository>
47+
<id>dynmap</id>
48+
<url>http://repo.mikeprimm.com</url>
49+
</repository>
50+
</repositories>
51+
52+
<dependencies>
53+
<dependency>
54+
<groupId>org.spongepowered</groupId>
55+
<artifactId>spongeapi</artifactId>
56+
<version>6.0.0</version>
57+
</dependency>
58+
<dependency>
59+
<groupId>us.dynmap</groupId>
60+
<artifactId>DynmapCoreAPI</artifactId>
61+
<version>2.6-SNAPSHOT</version>
62+
</dependency>
63+
<dependency>
64+
<groupId>io.github.nucleuspowered</groupId>
65+
<artifactId>nucleus-api</artifactId>
66+
<version>1.0.0-SNAPSHOT-S6.0</version>
67+
</dependency>
68+
</dependencies>
69+
70+
<groupId>us.dynmap</groupId>
71+
<artifactId>Dynmap-Nucleus</artifactId>
72+
<version>0.1</version>
73+
<name>Dynmap for Nucleus</name>
74+
<description>Dynmap plugin for Nucleus</description>
75+
</project>

0 commit comments

Comments
 (0)