parent
a27d2145ca
commit
978141f24e
@ -1,7 +1,20 @@ |
|||||||
<?xml version="1.0" encoding="UTF-8"?> |
<?xml version="1.0" encoding="UTF-8"?> |
||||||
<classpath> |
<classpath> |
||||||
<classpathentry kind="src" path="src"/> |
<classpathentry including="**/*.java" kind="src" output="target/classes" path="src"> |
||||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/> |
<attributes> |
||||||
<classpathentry kind="lib" path="D:/Downloads/spigot-1.12.2.jar"/> |
<attribute name="optional" value="true"/> |
||||||
<classpathentry kind="output" path="bin"/> |
<attribute name="maven.pomderived" value="true"/> |
||||||
|
</attributes> |
||||||
|
</classpathentry> |
||||||
|
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"> |
||||||
|
<attributes> |
||||||
|
<attribute name="maven.pomderived" value="true"/> |
||||||
|
</attributes> |
||||||
|
</classpathentry> |
||||||
|
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER"> |
||||||
|
<attributes> |
||||||
|
<attribute name="maven.pomderived" value="true"/> |
||||||
|
</attributes> |
||||||
|
</classpathentry> |
||||||
|
<classpathentry kind="output" path="target/classes"/> |
||||||
</classpath> |
</classpath> |
||||||
|
@ -1 +1,2 @@ |
|||||||
/bin/ |
/bin/ |
||||||
|
/target/ |
||||||
|
@ -0,0 +1,4 @@ |
|||||||
|
activeProfiles= |
||||||
|
eclipse.preferences.version=1 |
||||||
|
resolveWorkspaceProjects=true |
||||||
|
version=1 |
Binary file not shown.
@ -0,0 +1,51 @@ |
|||||||
|
<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>net.z-gamers</groupId> |
||||||
|
<artifactId>twosidekeeper</artifactId> |
||||||
|
<version>3.9.9a</version> |
||||||
|
<name>TwosideKeeper4</name> |
||||||
|
<description>A plugin for Sig's Minecraft server created to enhance and further improve survival features.</description> |
||||||
|
<build> |
||||||
|
<sourceDirectory>src</sourceDirectory> |
||||||
|
<resources> |
||||||
|
<resource> |
||||||
|
<directory>src</directory> |
||||||
|
<excludes> |
||||||
|
<exclude>**/*.java</exclude> |
||||||
|
</excludes> |
||||||
|
</resource> |
||||||
|
</resources> |
||||||
|
<plugins> |
||||||
|
<plugin> |
||||||
|
<artifactId>maven-compiler-plugin</artifactId> |
||||||
|
<version>3.5.1</version> |
||||||
|
<configuration> |
||||||
|
<source>1.8</source> |
||||||
|
<target>1.8</target> |
||||||
|
</configuration> |
||||||
|
</plugin> |
||||||
|
</plugins> |
||||||
|
</build> |
||||||
|
<repositories> |
||||||
|
<repository> |
||||||
|
<id>spigot-repo</id> |
||||||
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url> |
||||||
|
</repository> |
||||||
|
</repositories> |
||||||
|
<dependencies> |
||||||
|
<!--Spigot API--> |
||||||
|
<dependency> |
||||||
|
<groupId>org.spigotmc</groupId> |
||||||
|
<artifactId>spigot-api</artifactId> |
||||||
|
<version>1.12.2-R0.1-SNAPSHOT</version> |
||||||
|
<scope>provided</scope> |
||||||
|
</dependency> |
||||||
|
<!--Bukkit API--> |
||||||
|
<dependency> |
||||||
|
<groupId>org.bukkit</groupId> |
||||||
|
<artifactId>bukkit</artifactId> |
||||||
|
<version>1.12.2-R0.1-SNAPSHOT</version> |
||||||
|
<scope>provided</scope> |
||||||
|
</dependency> |
||||||
|
</dependencies> |
||||||
|
</project> |
Loading…
Reference in new issue