Ugh, i don't know

This commit is contained in:
Adubbz 2014-01-26 18:02:49 +11:00
parent 5969b756a5
commit a1561f2cf1
1 changed files with 60 additions and 17 deletions

View File

@ -65,10 +65,6 @@ minecraft {
// add some stuff to the version
version = "${config.minecraft_version}-${config.mod_version}.${System.getenv().BUILD_NUMBER}"
jenkins {
job = 'BiomesOPlenty'
}
processResources {
// replace stuff in the files we want.
from(sourceSets.main.resources.srcDirs) {
@ -141,6 +137,10 @@ artifacts {
archives apiZip
}
jenkins {
job = 'BiomesOPlenty'
}
uploadArchives {
repositories {
add getProject().repositories.mavenLocal()
@ -168,6 +168,49 @@ uploadArchives {
packaging 'jar'
description 'Biomes O Plenty'
url 'https://github.com/Glitchfiend/BiomesOPlenty'
scm {
url 'https://github.com/Glitchfiend/BiomesOPlenty'
connection 'scm:git:git://github.com/Glitchfiend/BiomesOPlenty.git'
developerConnection 'scm:git:git@github.com:Glitchfiend/BiomesOPlenty.git'
}
issueManagement {
system 'github'
url 'https://github.com/Glitchfiend/BiomesOPlenty/issues'
}
licenses {
license {
name 'Creative Commons Attribution-NonCommercial-NoDerivs 3.0 Unported'
url 'http://creativecommons.org/licenses/by-nc-nd/3.0/deed.en_US'
distribution 'repo'
}
}
developers {
developer {
id 'Adubbz'
name 'Adubbz'
roles { role 'developer' }
}
developer {
id 'Forstride'
name 'Forstride'
roles { role 'developer' }
}
developer {
id 'Amnet'
name 'Amnet'
roles { role 'developer' }
}
developer {
id 'ted80'
name 'ted80'
roles { role 'developer' }
}
}
}
}
}