Skip to content

Commit 7d5a0c1

Browse files
committed
Update
1 parent 1c174a7 commit 7d5a0c1

9 files changed

Lines changed: 623 additions & 428 deletions

File tree

.gitignore

Lines changed: 143 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,3 +44,146 @@ Temporary Items
4444
.classpath
4545
*.project
4646
*.class
47+
### Maven template
48+
target/
49+
pom.xml.tag
50+
pom.xml.releaseBackup
51+
pom.xml.versionsBackup
52+
pom.xml.next
53+
release.properties
54+
dependency-reduced-pom.xml
55+
buildNumber.properties
56+
.mvn/timing.properties
57+
58+
# Avoid ignoring Maven wrapper jar file (.jar files are usually ignored)
59+
!/.mvn/wrapper/maven-wrapper.jar
60+
### JetBrains template
61+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
62+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
63+
64+
# User-specific stuff
65+
.idea/**/workspace.xml
66+
.idea/**/tasks.xml
67+
.idea/**/dictionaries
68+
.idea/**/shelf
69+
70+
# Sensitive or high-churn files
71+
.idea/**/dataSources/
72+
.idea/**/dataSources.ids
73+
.idea/**/dataSources.local.xml
74+
.idea/**/sqlDataSources.xml
75+
.idea/**/dynamic.xml
76+
.idea/**/uiDesigner.xml
77+
.idea/**/dbnavigator.xml
78+
79+
# Gradle
80+
.idea/**/gradle.xml
81+
.idea/**/libraries
82+
83+
# CMake
84+
cmake-build-debug/
85+
cmake-build-release/
86+
87+
# Mongo Explorer plugin
88+
.idea/**/mongoSettings.xml
89+
90+
# File-based project format
91+
*.iws
92+
93+
# IntelliJ
94+
out/
95+
96+
# mpeltonen/sbt-idea plugin
97+
.idea_modules/
98+
99+
# JIRA plugin
100+
atlassian-ide-plugin.xml
101+
102+
# Cursive Clojure plugin
103+
.idea/replstate.xml
104+
105+
# Crashlytics plugin (for Android Studio and IntelliJ)
106+
com_crashlytics_export_strings.xml
107+
crashlytics.properties
108+
crashlytics-build.properties
109+
fabric.properties
110+
111+
# Editor-based Rest Client
112+
.idea/httpRequests
113+
### Eclipse template
114+
115+
.metadata
116+
bin/
117+
tmp/
118+
*.tmp
119+
*.bak
120+
*.swp
121+
*~.nib
122+
local.properties
123+
.settings/
124+
.loadpath
125+
.recommenders
126+
127+
# External tool builders
128+
.externalToolBuilders/
129+
130+
# Locally stored "Eclipse launch configurations"
131+
*.launch
132+
133+
# PyDev specific (Python IDE for Eclipse)
134+
*.pydevproject
135+
136+
# CDT-specific (C/C++ Development Tooling)
137+
.cproject
138+
139+
# CDT- autotools
140+
.autotools
141+
142+
# Java annotation processor (APT)
143+
.factorypath
144+
145+
# PDT-specific (PHP Development Tools)
146+
.buildpath
147+
148+
# sbteclipse plugin
149+
.target
150+
151+
# Tern plugin
152+
.tern-project
153+
154+
# TeXlipse plugin
155+
.texlipse
156+
157+
# STS (Spring Tool Suite)
158+
.springBeans
159+
160+
# Code Recommenders
161+
.recommenders/
162+
163+
# Scala IDE specific (Scala & Java development for Eclipse)
164+
.cache-main
165+
.scala_dependencies
166+
.worksheet
167+
### Gradle template
168+
.gradle
169+
/build/
170+
171+
# Ignore Gradle GUI config
172+
gradle-app.setting
173+
174+
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
175+
!gradle-wrapper.jar
176+
177+
# Cache of project
178+
.gradletasknamecache
179+
180+
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
181+
# gradle/wrapper/gradle-wrapper.properties
182+
183+
.idea/compiler.xml
184+
.idea/encodings.xml
185+
.idea/misc.xml
186+
.idea/modules.xml
187+
.idea/plot2dynmap.iml
188+
.idea/vcs.xml
189+
src/test/
File renamed without changes.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
Plot2Dynmap
22
===========
33

4-
Plot^2 dynmap addon.
4+
Dynmap addon for PlotSquared 4.

pom.xml

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
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.github.intellectualsites.plotsquared</groupId>
8+
<artifactId>plot2dynmap</artifactId>
9+
<version>2.0</version>
10+
11+
<repositories>
12+
<repository>
13+
<id>Incendo</id>
14+
<url>https://incendo.org/mvn/repository/maven-releases/</url>
15+
</repository>
16+
<repository>
17+
<id>Incendo-sk89q-mirror</id>
18+
<url>https://incendo.org/mvn/repository/sk89q-mirror/</url>
19+
</repository>
20+
<repository>
21+
<id>mikeprimm</id>
22+
<url>http://repo.mikeprimm.com/</url>
23+
</repository>
24+
</repositories>
25+
26+
<dependencies>
27+
<dependency>
28+
<groupId>com.github.intellectualsites.plotsquared</groupId>
29+
<artifactId>Plotsquared</artifactId>
30+
<classifier>bukkit</classifier>
31+
<version>latest</version>
32+
<scope>provided</scope>
33+
</dependency>
34+
<dependency>
35+
<groupId>us.dynmap</groupId>
36+
<artifactId>dynmap</artifactId>
37+
<version>2.6-beta-1</version>
38+
</dependency>
39+
<dependency>
40+
<groupId>org.projectlombok</groupId>
41+
<artifactId>lombok</artifactId>
42+
<version>1.18.4</version>
43+
<scope>compile</scope>
44+
</dependency>
45+
</dependencies>
46+
47+
<build>
48+
<plugins>
49+
<plugin>
50+
<artifactId>maven-compiler-plugin</artifactId>
51+
<configuration>
52+
<source>8</source>
53+
<target>8</target>
54+
</configuration>
55+
</plugin>
56+
</plugins>
57+
</build>
58+
</project>

0 commit comments

Comments
 (0)