2019-03-04 04:10:45 +01:00
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
jcenter()
|
|
|
|
maven {
|
|
|
|
name = "forge"
|
|
|
|
url = "http://files.minecraftforge.net/maven"
|
|
|
|
}
|
|
|
|
maven {url = "https://oss.sonatype.org/content/repositories/snapshots/"}
|
|
|
|
}
|
|
|
|
dependencies {
|
|
|
|
classpath group: 'net.minecraftforge.gradle', name: 'ForgeGradle', version: '3.+', changing: true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
apply plugin: 'net.minecraftforge.gradle'
|
2019-03-14 05:05:06 +01:00
|
|
|
apply plugin: 'eclipse'
|
2020-04-26 02:50:23 +02:00
|
|
|
apply plugin: 'com.github.johnrengelman.shadow'
|
2019-03-04 04:10:45 +01:00
|
|
|
|
|
|
|
dependencies {
|
2020-04-26 02:50:23 +02:00
|
|
|
compile project(path: ":DynmapCore", configuration: "shadow")
|
2020-01-13 01:31:01 +01:00
|
|
|
minecraft 'net.minecraftforge:forge:1.13.2-25.0.219'
|
2019-03-04 04:10:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
sourceCompatibility = 1.8
|
|
|
|
targetCompatibility = 1.8
|
|
|
|
ext.buildNumber = System.getenv().BUILD_NUMBER ?: "Dev"
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
maven {
|
|
|
|
name = 'forge'
|
|
|
|
url = 'http://files.minecraftforge.net/maven'
|
|
|
|
}
|
|
|
|
}
|
2019-03-14 05:05:06 +01:00
|
|
|
|
2019-03-04 04:10:45 +01:00
|
|
|
minecraft {
|
2020-01-13 01:31:01 +01:00
|
|
|
mappings channel: 'stable', version: '47-1.13.2'
|
2019-03-04 04:10:45 +01:00
|
|
|
runs {
|
|
|
|
server {
|
2019-03-14 05:05:06 +01:00
|
|
|
workingDirectory project.file('run').canonicalPath
|
2019-03-04 04:10:45 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-10 01:38:30 +01:00
|
|
|
project.archivesBaseName = "${project.archivesBaseName}-forge-1.13.2"
|
2019-03-04 04:10:45 +01:00
|
|
|
|
|
|
|
processResources
|
|
|
|
{
|
2019-03-14 05:05:06 +01:00
|
|
|
inputs.property "version", project.version + '-' + project.ext.buildNumber
|
|
|
|
|
2019-03-04 04:10:45 +01:00
|
|
|
// replace stuff in mcmod.info, nothing else
|
|
|
|
from(sourceSets.main.resources.srcDirs) {
|
2019-03-14 05:05:06 +01:00
|
|
|
include 'META-INF/mods.toml'
|
2019-03-04 04:10:45 +01:00
|
|
|
|
|
|
|
// replace version and mcversion
|
2019-03-14 05:05:06 +01:00
|
|
|
expand version: project.version + '-' + project.ext.buildNumber
|
2019-03-04 04:10:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// copy everything else, thats not the mcmod.info
|
|
|
|
from(sourceSets.main.resources.srcDirs) {
|
2019-03-14 05:05:06 +01:00
|
|
|
include 'META-INF/mods.toml'
|
2019-03-04 04:10:45 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
shadowJar {
|
|
|
|
dependencies {
|
|
|
|
include(dependency(':DynmapCore'))
|
2020-04-26 02:50:23 +02:00
|
|
|
}
|
2019-03-10 01:38:30 +01:00
|
|
|
archiveName = "Dynmap-${parent.version}-forge-1.13.2.jar"
|
2019-03-04 04:10:45 +01:00
|
|
|
destinationDir = file '../target'
|
2020-04-26 02:50:23 +02:00
|
|
|
manifest {
|
|
|
|
attributes 'FMLAT': 'dynmap_at.cfg'
|
|
|
|
}
|
2019-03-04 04:10:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
shadowJar.doLast {
|
|
|
|
task ->
|
|
|
|
ant.checksum file: task.archivePath
|
|
|
|
}
|
|
|
|
|
2019-03-14 05:05:06 +01:00
|
|
|
afterEvaluate {
|
|
|
|
reobf {
|
|
|
|
shadowJar {
|
|
|
|
mappings = createMcpToSrg.output
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-03-04 04:10:45 +01:00
|
|
|
|
|
|
|
task deobfJar(type: Jar) {
|
|
|
|
from sourceSets.main.output
|
|
|
|
classifier = 'dev'
|
|
|
|
}
|
|
|
|
|
|
|
|
artifacts {
|
|
|
|
archives deobfJar
|
|
|
|
}
|
|
|
|
|
|
|
|
build.dependsOn(shadowJar)
|