equivalent-exchange-3/build.gradle

236 lines
7.2 KiB
Groovy
Raw Normal View History

2013-12-13 10:45:03 +01:00
buildscript {
repositories {
mavenCentral()
maven {
name = "forge"
2021-12-04 06:37:08 +01:00
url = "https://maven.minecraftforge.net"
2013-12-13 10:45:03 +01:00
}
2014-03-28 02:34:47 +01:00
maven {
name = "sonatype"
url = "https://oss.sonatype.org/content/repositories/snapshots/"
}
2021-12-04 06:37:08 +01:00
maven {
url = "https://jitpack.io"
}
2013-12-13 10:45:03 +01:00
}
dependencies {
2021-12-04 06:37:08 +01:00
classpath 'com.github.GTNewHorizons:ForgeGradle:1.2.4'
2013-12-13 10:45:03 +01:00
}
}
2014-09-30 17:29:45 +02:00
apply plugin: 'java'
2021-12-04 06:37:08 +01:00
//apply plugin: 'scala'
2014-03-28 02:34:47 +01:00
apply plugin: 'forge'
2014-09-30 17:29:45 +02:00
2016-05-19 03:43:16 +02:00
sourceCompatibility = 1.8
targetCompatibility = 1.8
2014-09-30 17:29:45 +02:00
repositories {
2021-12-04 06:37:08 +01:00
mavenCentral()
maven {
name = "gt"
url = "https://gregtech.overminddl1.com/"
2014-09-30 17:29:45 +02:00
}
2021-12-04 06:37:08 +01:00
maven {
name = "jitpack"
url = "https://jitpack.io"
}
2014-09-30 17:29:45 +02:00
}
dependencies {
2021-12-04 06:37:08 +01:00
implementation "com.github.GTNewHorizons:NotEnoughItems:master-SNAPSHOT:dev"
implementation "com.github.GTNewHorizons:EnderStorage:master-SNAPSHOT:dev"
implementation "com.github.GTNewHorizons:waila:master-SNAPSHOT:dev"
2014-09-30 17:29:45 +02:00
}
2013-12-13 10:45:03 +01:00
ext.configFile = file "build.properties"
configFile.withReader {
def prop = new Properties()
prop.load(it)
project.ext.config = new ConfigSlurper().parse prop
}
version = config.mod_version
2014-03-28 02:34:47 +01:00
group = "com.pahimar.ee3" // http://maven.apache.org/guides/mini/guide-naming-conventions.html
archivesBaseName = "EquivalentExchange3"
2013-12-13 10:45:03 +01:00
minecraft {
version = config.minecraft_version + "-" + config.forge_version
replaceIn "reference/Reference.java"
replace "@MOD_VERSION@", "${config.mod_version}.${System.getenv("BUILD_NUMBER") ?: 0}"
2015-05-05 16:41:44 +02:00
if (project.hasProperty("ee3_sha1_signature")) {
replace "@FINGERPRINT@", project.ee3_sha1_signature
}
replaceIn "api/package-info.java"
replace "@API_VERSION@", config.api_version
replaceIn "api/array/package-info.java"
replace "@API_VERSION@", config.api_version
replaceIn "api/event/package-info.java"
replace "@API_VERSION@", config.api_version
replaceIn "api/exchange/package-info.java"
replace "@API_VERSION@", config.api_version
replaceIn "api/knowledge/package-info.java"
replace "@API_VERSION@", config.api_version
replaceIn "api/recipe/package-info.java"
replace "@API_VERSION@", config.api_version
replaceIn "api/util/package-info.java"
replace "@API_VERSION@", config.api_version
}
version = "${config.minecraft_version}-${config.mod_version}.${System.getenv("BUILD_NUMBER") ?: 0}"
processResources {
// exclude xcf files, as they are for development only
exclude '**/*.xcf'
// replace stuff in mcmod.info, nothing else
from(sourceSets.main.resources.srcDirs) {
include '*.info'
2014-03-28 02:34:47 +01:00
// replace version and mcversion
expand 'mod_version': project.version, 'minecraft_version': project.config.minecraft_version
}
2014-03-28 02:34:47 +01:00
// copy everything else, thats not the mcmod.info
from(sourceSets.main.resources.srcDirs) {
2014-06-10 00:20:25 +02:00
exclude '**/*.info'
}
}
task devJar(type: Jar, dependsOn: 'classes') {
from(sourceSets.main.output) {
include '**'
}
extension = 'jar'
classifier = 'dev'
}
artifacts {
archives devJar
}
import net.minecraftforge.gradle.delayed.*
import net.minecraftforge.gradle.tasks.dev.ChangelogTask
task createChangelog(type: ChangelogTask) {
2014-06-05 03:49:23 +02:00
if (("${System.getenv().JOB_NAME}" != null) && project.hasProperty("jenkins_server") && project.hasProperty("jenkins_password")) {
2014-06-05 03:50:44 +02:00
def jobName = "${System.getenv().JOB_NAME}"
2014-06-05 03:49:23 +02:00
def buildNumber = "${System.getenv().BUILD_NUMBER}"
setServerRoot(new DelayedString(project, project.jenkins_server))
setJobName(new DelayedString(project, jobName.toString()))
setAuthName(new DelayedString(project, project.jenkins_user))
setAuthPassword(new DelayedString(project, project.jenkins_password))
setTargetBuild({ buildNumber.toString() });
2014-09-04 21:58:11 +02:00
setOutput(new DelayedFile(project, 'build/libs/' + project.archivesBaseName + '-' + project.version + '-changelog.txt'));
2014-06-05 03:49:23 +02:00
}
onlyIf {
return (("${System.getenv().JOB_NAME}" != null) && project.hasProperty("jenkins_server") && project.hasProperty("jenkins_password"))
}
}
tasks.build.dependsOn('createChangelog')
2014-09-03 21:54:07 +02:00
tasks.build.dependsOn('signJar')
if (!project.hasProperty("keystore_location")) // keystore stuff
ext.keystore_location = "."
if (!project.hasProperty("keystore_password")) // keystore stuff
ext.keystore_password = ""
if (!project.hasProperty("ee3_keystore_alias")) // keystore stuff
ext.ee3_keystore_alias = ""
2014-09-04 19:09:07 +02:00
task signJar(dependsOn: ["reobf", "devJar"]) {
inputs.dir jar.destinationDir
2014-09-03 21:54:07 +02:00
inputs.file keystore_location
inputs.property "ee3_keystore_alias", ee3_keystore_alias
inputs.property "keystore_password", keystore_password
2014-09-04 19:09:07 +02:00
outputs.dir devJar.destinationDir
2014-09-03 21:54:07 +02:00
// only sign if the keystore exists
onlyIf {
return keystore_location != "." && keystore_password != ""
}
// the actual action.. sign the jar.
doLast {
2014-09-04 19:09:07 +02:00
jar.destinationDir.eachFile { file ->
if (!file.getPath().endsWith(".jar"))
return; // skip non-jars
logger.lifecycle "signing $file"
ant.signjar(
destDir: file.getParentFile(), // same place it came from
jar: file,
keystore: keystore_location,
alias: ee3_keystore_alias,
storepass: keystore_password
2014-09-04 19:09:07 +02:00
)
}
2014-09-03 21:54:07 +02:00
}
}
uploadArchives {
repositories {
mavenDeployer {
if (project.hasProperty("forgemaven_url")) {
logger.info('Publishing to files server')
repository(url: project.forgemaven_url) {
authentication(userName: project.forgemaven_username, password: project.forgemaven_password)
}
}
pom {
groupId = project.group
version = project.version
artifactId = project.archivesBaseName
}
pom.project {
name project.archivesBaseName
packaging 'jar'
description 'Equivalent Exchange 3'
url 'https://github.com/pahimar/Equivalent-Exchange-3/'
2014-07-18 03:38:41 +02:00
scm {
url 'https://github.com/pahimar/Equivalent-Exchange-3/'
connection 'scm:git:git://github.com/pahimar/Equivalent-Exchange-3.git'
developerConnection 'scm:git:git@github.com/pahimar/Equivalent-Exchange-3.git'
}
2014-07-18 03:38:41 +02:00
issueManagement {
system 'github'
url 'https://github.com/pahimar/Equivalent-Exchange-3/issues'
}
2014-07-18 03:38:41 +02:00
licenses {
license {
name 'GNU Lesser General Public License 3.0'
url 'https://www.gnu.org/licenses/lgpl-3.0.txt'
distribution 'repo'
}
}
2014-07-18 03:38:41 +02:00
developers {
developer {
id 'Pahimar'
name 'Pahimar'
roles {
role 'developer'
}
}
}
}
}
}
2014-09-04 19:09:07 +02:00
}