Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Mac OS
.DS_Store

# IntelliJ
*.iml
*.ipr
*.iws
.idea/
out/

# Eclipse
.classpath
.project
.settings/

# Gradle
.gradle/
build/

# Maven
target/

# Vim
*.swp
7 changes: 6 additions & 1 deletion modules/VirtualPlayers/pom.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
<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>

<parent>
<groupId>mc.alk</groupId>
<artifactId>vp-parent</artifactId>
<version>parent</version>
<relativePath>../../</relativePath>
</parent>
<groupId>mc.alk</groupId>
<artifactId>VirtualPlayers</artifactId>
<version>1.5.10</version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
public class VirtualPlayers extends JavaPlugin implements Listener
{
Version server;
public static final String MAX = "1.7.10-R9.9-SNAPSHOT";
public static final String MAX = "1.7.10-R9.9";
public static final String MIN = "1.2.5";
String NMS;

Expand Down
9 changes: 1 addition & 8 deletions modules/v1_7_R4/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,21 +30,14 @@
<groupId>org.bukkit</groupId>
<artifactId>craftbukkit</artifactId>
<version>1.7.10-R0.1-SNAPSHOT</version>
<scope>system</scope>
<systemPath>C:/Users/Nikolai/Documents/lib/bukkit/1.7.10/craftbukkit.jar</systemPath>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>mc.alk</groupId>
<artifactId>vp-util</artifactId>
<version>parent</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
<version>1.7.5-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
Expand Down
Loading