Version Bump

This commit is contained in:
MattBDev 2016-07-05 23:39:38 -04:00
parent cf5d2a5e86
commit ca8b82dcbe
2 changed files with 6 additions and 5 deletions

View File

@ -76,7 +76,7 @@ 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.3.3")
url = "https://github.com/IntellectualSites/PlotSquared", version = "3.5.0-SNAPSHOT")
public class SpongeMain implements IPlotMain {
public static SpongeMain THIS;

View File

@ -6,19 +6,20 @@ buildscript {
maven { url = "https://oss.sonatype.org/content/repositories/snapshots/"}
jcenter()
}
dependencies {
dependencies {
classpath 'com.github.jengelman.gradle.plugins:shadow:1.2.3'
classpath 'org.ajoberstar:grgit:1.7.0'
}
}
group = 'com.intellectualcrafters'
def revision = ""
ext {
git = Grgit.open()
revision = "-${git.head().abbreviatedId}"
revision = "${git.head().abbreviatedId}"
}
version = "3.4.4-SNAPSHOT${revision}"
version = "3.5.0-SNAPSHOT-${revision}"
description = """PlotSquared"""
subprojects {