mirror of
https://github.com/webbukkit/dynmap.git
synced 2024-11-04 17:50:18 +01:00
80 lines
1.7 KiB
Groovy
80 lines
1.7 KiB
Groovy
buildscript {
|
|
repositories {
|
|
maven { url = 'https://files.minecraftforge.net/maven' }
|
|
maven { url "https://repo.mikeprimm.com" }
|
|
jcenter()
|
|
mavenCentral()
|
|
maven {url = "https://oss.sonatype.org/content/repositories/snapshots/"}
|
|
}
|
|
dependencies {
|
|
classpath group: 'net.minecraftforge.gradle', name: 'ForgeGradle', version: '5.+', changing: true
|
|
}
|
|
}
|
|
|
|
apply plugin: 'net.minecraftforge.gradle'
|
|
apply plugin: 'eclipse'
|
|
apply plugin: 'com.github.johnrengelman.shadow'
|
|
|
|
dependencies {
|
|
implementation project(path: ":DynmapCore", configuration: "shadow")
|
|
minecraft 'net.minecraftforge:forge:1.13.2-25.0.219'
|
|
}
|
|
|
|
sourceCompatibility = 1.8
|
|
targetCompatibility = 1.8
|
|
ext.buildNumber = System.getenv().BUILD_NUMBER ?: "Dev"
|
|
|
|
minecraft {
|
|
mappings channel: 'stable', version: '47-1.13.2'
|
|
runs {
|
|
server {
|
|
workingDirectory project.file('run').canonicalPath
|
|
}
|
|
}
|
|
}
|
|
|
|
project.archivesBaseName = "${project.archivesBaseName}-forge-1.13.2"
|
|
|
|
processResources
|
|
{
|
|
filesMatching('META-INF/mods.toml') {
|
|
// replace version and mcversion
|
|
expand(
|
|
version: project.version + '-' + project.ext.buildNumber,
|
|
mcversion: "1.13.2"
|
|
)
|
|
}
|
|
}
|
|
|
|
shadowJar {
|
|
dependencies {
|
|
include(dependency(':DynmapCore'))
|
|
}
|
|
archiveName = "Dynmap-${parent.version}-forge-1.13.2.jar"
|
|
destinationDir = file '../target'
|
|
}
|
|
|
|
shadowJar.doLast {
|
|
task ->
|
|
ant.checksum file: task.archivePath
|
|
}
|
|
|
|
afterEvaluate {
|
|
reobf {
|
|
shadowJar {
|
|
mappings = createMcpToSrg.output
|
|
}
|
|
}
|
|
}
|
|
|
|
task deobfJar(type: Jar) {
|
|
from sourceSets.main.output
|
|
classifier = 'dev'
|
|
}
|
|
|
|
artifacts {
|
|
archives deobfJar
|
|
}
|
|
|
|
build.dependsOn(shadowJar)
|