Skip to content

Commit

Permalink
Add binary libraries for certain old plugins.
Browse files Browse the repository at this point in the history
  • Loading branch information
bensku committed Mar 8, 2016
1 parent fa96b9c commit bf48f90
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 12 deletions.
19 changes: 11 additions & 8 deletions .classpath
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry excluding="ch/njol/skript/CommandHandler.java|ch/njol/skript/PlayerCommand.java|ch/njol/skript/ConfigCommandHandler.java|ch/njol/skript/expressions/ExprAttackerAlt.java|ch/njol/skript/effects/EffExec.java|ch/njol/skript/events/EvtServerStart.java|ch/njol/skript/config/ParseOptionNode.java|ch/njol/skript/effects/IndeterminateDelay.java|ch/njol/skript/bukkitutil/UnresolvedOfflinePlayer.java" including="**/*.java" kind="src" path="src/main/java"/>
<classpathentry including="**/*.java" kind="src" output="target/test-classes" path="src/test/java"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER"/>
<classpathentry kind="output" path="target/classes"/>
</classpath>
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry excluding="ch/njol/skript/CommandHandler.java|ch/njol/skript/PlayerCommand.java|ch/njol/skript/ConfigCommandHandler.java|ch/njol/skript/expressions/ExprAttackerAlt.java|ch/njol/skript/effects/EffExec.java|ch/njol/skript/events/EvtServerStart.java|ch/njol/skript/config/ParseOptionNode.java|ch/njol/skript/effects/IndeterminateDelay.java|ch/njol/skript/bukkitutil/UnresolvedOfflinePlayer.java" including="**/*.java" kind="src" path="src/main/java"/>
<classpathentry including="**/*.java" kind="src" output="target/test-classes" path="src/test/java"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER"/>
<classpathentry kind="lib" path="lib/worldguard-6.1.jar"/>
<classpathentry kind="lib" path="lib/Vault.jar"/>
<classpathentry kind="lib" path="lib/worldedit-bukkit-6.1.jar"/>
<classpathentry kind="output" path="target/classes"/>
</classpath>
11 changes: 7 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,18 +40,21 @@
<version>7.1</version>
</dependency>

<!--<dependency>
<dependency>
<groupId>net.milkbowl.vault</groupId>
<artifactId>Vault</artifactId>
<version>1.5.4</version>
<scope>provided</scope>
<scope>system</scope>
<systemPath>${project.basedir}/lib/Vault.jar</systemPath>
</dependency>
<dependency>
<groupId>com.sk89q</groupId>
<artifactId>worldguard</artifactId>
<version>6.1.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>-->
<scope>system</scope>
<systemPath>${project.basedir}/lib/worldguard-6.1.jar</systemPath>
</dependency>

<dependency>
<groupId>me.ryanhamshire</groupId>
<artifactId>griefprevention</artifactId>
Expand Down

0 comments on commit bf48f90

Please sign in to comment.