mirror of
https://github.com/webbukkit/dynmap.git
synced 2024-11-04 17:50:18 +01:00
95 lines
2.1 KiB
Groovy
95 lines
2.1 KiB
Groovy
buildscript {
|
|
repositories {
|
|
jcenter()
|
|
maven {
|
|
name = "forge"
|
|
url = "http://files.minecraftforge.net/maven"
|
|
}
|
|
maven {url = "https://oss.sonatype.org/content/repositories/snapshots/"}
|
|
}
|
|
dependencies {
|
|
classpath 'net.minecraftforge.gradle:ForgeGradle:2.1-SNAPSHOT'
|
|
}
|
|
}
|
|
|
|
apply plugin: 'net.minecraftforge.gradle.forge'
|
|
apply plugin: 'com.github.johnrengelman.shadow'
|
|
|
|
dependencies {
|
|
compile project(path: ":DynmapCoreAPI", configuration: "shadow")
|
|
compile project(path: ":DynmapCore", configuration: "shadow")
|
|
}
|
|
|
|
sourceCompatibility = 1.8
|
|
targetCompatibility = 1.8
|
|
ext.buildNumber = System.getenv().BUILD_NUMBER ?: "Dev"
|
|
|
|
repositories {
|
|
maven {
|
|
name = 'forge'
|
|
url = 'http://files.minecraftforge.net/maven'
|
|
}
|
|
}
|
|
minecraft {
|
|
version = "1.8.9-11.15.1.1902-1.8.9"
|
|
mappings = "stable_22"
|
|
runDir = 'run'
|
|
}
|
|
|
|
project.archivesBaseName = "${project.archivesBaseName}-forge-1.8.9"
|
|
|
|
processResources
|
|
{
|
|
// replace stuff in mcmod.info, nothing else
|
|
from(sourceSets.main.resources.srcDirs) {
|
|
include 'mcmod.info'
|
|
|
|
// replace version and mcversion
|
|
expand(
|
|
version: project.version + '-' + project.ext.buildNumber,
|
|
mcversion: "1.8.9"
|
|
)
|
|
}
|
|
|
|
// copy everything else, thats not the mcmod.info
|
|
from(sourceSets.main.resources.srcDirs) {
|
|
exclude 'mcmod.info'
|
|
}
|
|
// Move access transformer to META-INF
|
|
rename '(.+_at.cfg)', 'META-INF/$1'
|
|
}
|
|
|
|
shadowJar {
|
|
dependencies {
|
|
include(dependency(':DynmapCore'))
|
|
include(dependency(':DynmapCoreAPI'))
|
|
}
|
|
archiveName = "Dynmap-${parent.version}-forge-1.8.9.jar"
|
|
destinationDir = file '../target'
|
|
manifest {
|
|
attributes 'FMLAT': 'dynmap_at.cfg'
|
|
}
|
|
}
|
|
shadowJar.doLast {
|
|
task ->
|
|
ant.checksum file: task.archivePath
|
|
}
|
|
|
|
|
|
reobf {
|
|
shadowJar {
|
|
mappingType = 'SEARGE'
|
|
}
|
|
}
|
|
|
|
task deobfJar(type: Jar) {
|
|
from sourceSets.main.output
|
|
classifier = 'dev'
|
|
}
|
|
|
|
artifacts {
|
|
archives deobfJar
|
|
}
|
|
|
|
build.dependsOn(shadowJar)
|