Bump version to 2.2

This commit is contained in:
ProfessorProspector 2017-04-14 12:35:09 -07:00
parent fb888cb769
commit db3c7f0585

View file

@ -61,7 +61,8 @@ repositories {
url = "http://maven.ic2.player.to/"
}
maven {// HWYLA
maven {
// HWYLA
name "TehNut"
url "http://tehnut.info/maven/"
}
@ -77,7 +78,7 @@ configurations {
}
version = "2.1.11"
version = "2.2.0"
def ENV = System.getenv()
if (ENV.BUILD_NUMBER) {
@ -191,15 +192,12 @@ uploadArchives {
repositories {
mavenDeployer {
//This is used when the build is done on a slave node
if (project.hasProperty('mavenPass'))
{
if (project.hasProperty('mavenPass')) {
println 'Uploading to remote Maven Repo'
repository(url: "http://mavenupload.modmuss50.me/") {
authentication(userName: "buildslave", password: project.getProperty('mavenPass'))
}
}
else
{
} else {
//this is when the build is executed on the master node
println 'Uploading to local Maven Repo'
repository(url: "file:///var/www/maven/")
@ -310,14 +308,15 @@ build.dependsOn signJar
apply from: 'https://github.com/FabricMC/fabric-docs/raw/master/gradle/ideconfig.gradle'
import org.apache.commons.io.FileUtils;
import groovy.util.XmlSlurper;
import java.io.File;
import groovy.util.XmlSlurper
import org.apache.commons.io.FileUtils
task curseTools {
doLast {
def cacheFiles = new File(".gradle/curseTools")
if (!cacheFiles.exists()) cacheFiles.mkdirs()
if (!cacheFiles.exists()) {
cacheFiles.mkdirs()
}
def mavenMetadata = new File(cacheFiles, "maven-metadata.xml")