Fix #1281 , Fix #1282 , and Sponge gradle

This commit is contained in:
MattBDev
2016-07-29 12:31:45 -04:00
parent 1f341e6ba9
commit 610e204d12
5 changed files with 16 additions and 4 deletions

View File

@ -14,7 +14,7 @@ buildscript {
}
}
apply plugin: 'net.minecraftforge.gradle.forge'
apply plugin: 'net.minecrell.vanilla.server.library'
dependencies {
compile project(':Core')
@ -41,7 +41,7 @@ repositories {
}
}
minecraft {
version = "2014"
version = "1.10.2"
mappings = "snapshot_20160629"
runDir = 'run'
}

View File

@ -68,6 +68,14 @@ import org.spongepowered.api.world.gen.GenerationPopulator;
import org.spongepowered.api.world.gen.WorldGenerator;
import org.spongepowered.api.world.gen.WorldGeneratorModifier;
import java.io.File;
import java.nio.file.Path;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import java.util.UUID;
import java.util.stream.Collectors;
@Plugin(id = "plotsquared", name = "PlotSquared", description = "Easy, yet powerful Plot World generation and management.",
url = "https://github.com/IntellectualSites/PlotSquared", version = "3.5.0-SNAPSHOT")
public class SpongeMain implements IPlotMain {