Reverting build file
This commit is contained in:
parent
b1a33301de
commit
aee749d87f
1 changed files with 61 additions and 67 deletions
126
build.gradle
126
build.gradle
|
@ -107,78 +107,72 @@ artifacts {
|
||||||
|
|
||||||
uploadArchives {
|
uploadArchives {
|
||||||
dependsOn 'build'
|
dependsOn 'build'
|
||||||
repositories {
|
|
||||||
if (project.hasProperty("filesmaven")) {
|
repositories.mavenDeployer {
|
||||||
|
if ("$System.env.maven_username" != "null" && "$System.env.maven_password" != "null") {
|
||||||
logger.info('Publishing to files server')
|
logger.info('Publishing to files server')
|
||||||
|
|
||||||
mavenDeployer {
|
repository(url: "http://files.minecraftforge.net/maven/manage/upload") {
|
||||||
configuration = configurations.deployJars
|
authentication(userName: "$System.env.maven_username", privateKey: "$System.env.maven_password")
|
||||||
|
|
||||||
repository(url: project.filesmaven.url) {
|
|
||||||
authentication(userName: project.filesmaven.username, privateKey: project.filesmaven.key)
|
|
||||||
}
|
|
||||||
|
|
||||||
// This is just the pom data for the maven repo
|
|
||||||
pom {
|
|
||||||
groupId = project.group
|
|
||||||
version = project.version
|
|
||||||
artifactId = project.archivesBaseName
|
|
||||||
project {
|
|
||||||
name project.archivesBaseName
|
|
||||||
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 4.0 International Public License'
|
|
||||||
url 'http://creativecommons.org/licenses/by-nc-nd/4.0/'
|
|
||||||
distribution 'repo'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
developers {
|
|
||||||
developer {
|
|
||||||
id 'Adubbz'
|
|
||||||
name 'Adubbz'
|
|
||||||
roles { role 'developer' }
|
|
||||||
}
|
|
||||||
developer {
|
|
||||||
id 'Amnet'
|
|
||||||
name 'Amnet'
|
|
||||||
roles { role 'developer' }
|
|
||||||
}
|
|
||||||
developer {
|
|
||||||
id 'Forstride'
|
|
||||||
name 'Forstride'
|
|
||||||
roles { role 'developer' }
|
|
||||||
}
|
|
||||||
developer {
|
|
||||||
id 'ted80'
|
|
||||||
name 'ted80'
|
|
||||||
roles { role 'developer' }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
logger.info('Publishing to repo folder')
|
logger.info('Publishing to repo folder')
|
||||||
|
|
||||||
mavenDeployer {
|
pom.version = "${project.minecraft.version}-${project.version}"
|
||||||
pom.version = "${project.minecraft.version}-${project.version}"
|
repository(url: 'file://localhost/' + project.file('repo').getAbsolutePath())
|
||||||
repository(url: 'file://localhost/' + project.file('repo').getAbsolutePath())
|
}
|
||||||
|
|
||||||
|
pom {
|
||||||
|
groupId = project.group
|
||||||
|
version = project.version
|
||||||
|
artifactId = project.archivesBaseName
|
||||||
|
project {
|
||||||
|
name project.archivesBaseName
|
||||||
|
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 4.0 International Public License'
|
||||||
|
url 'http://creativecommons.org/licenses/by-nc-nd/4.0/'
|
||||||
|
distribution 'repo'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
developers {
|
||||||
|
developer {
|
||||||
|
id 'Adubbz'
|
||||||
|
name 'Adubbz'
|
||||||
|
roles { role 'developer' }
|
||||||
|
}
|
||||||
|
developer {
|
||||||
|
id 'Amnet'
|
||||||
|
name 'Amnet'
|
||||||
|
roles { role 'developer' }
|
||||||
|
}
|
||||||
|
developer {
|
||||||
|
id 'Forstride'
|
||||||
|
name 'Forstride'
|
||||||
|
roles { role 'developer' }
|
||||||
|
}
|
||||||
|
developer {
|
||||||
|
id 'ted80'
|
||||||
|
name 'ted80'
|
||||||
|
roles { role 'developer' }
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue