Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-11-03 01:50:07 +01:00
107 Zeilen
2.8 KiB
Groovy
107 Zeilen
2.8 KiB
Groovy
buildscript {
|
|
repositories {
|
|
mavenLocal()
|
|
mavenCentral()
|
|
maven { url = "https://files.minecraftforge.net/maven" }
|
|
jcenter()
|
|
}
|
|
|
|
dependencies {
|
|
classpath group: 'net.minecraftforge.gradle', name: 'ForgeGradle', version: '3.+', changing: true
|
|
}
|
|
}
|
|
|
|
apply plugin: 'net.minecraftforge.gradle'
|
|
|
|
def minecraftVersion = "1.13.2"
|
|
def forgeVersion = "25.0.70"
|
|
|
|
dependencies {
|
|
compile project(':worldedit-core')
|
|
|
|
minecraft "net.minecraftforge:forge:${minecraftVersion}-${forgeVersion}"
|
|
|
|
testCompile group: 'org.mockito', name: 'mockito-core', version: '1.9.0-rc1'
|
|
}
|
|
|
|
sourceCompatibility = 1.8
|
|
targetCompatibility = 1.8
|
|
|
|
minecraft {
|
|
mappings channel: 'snapshot', version: '20190217-1.13.1'
|
|
|
|
runs {
|
|
client = {
|
|
// recommended logging data for a userdev environment
|
|
properties 'forge.logging.markers': 'SCAN,REGISTRIES,REGISTRYDUMP'
|
|
// recommended logging level for the console
|
|
properties 'forge.logging.console.level': 'debug'
|
|
workingDirectory project.file('run').canonicalPath
|
|
source sourceSets.main
|
|
}
|
|
server = {
|
|
// recommended logging data for a userdev environment
|
|
properties 'forge.logging.markers': 'SCAN,REGISTRIES,REGISTRYDUMP'
|
|
// recommended logging level for the console
|
|
properties 'forge.logging.console.level': 'debug'
|
|
workingDirectory project.file('run').canonicalPath
|
|
source sourceSets.main
|
|
}
|
|
}
|
|
|
|
accessTransformer = file('worldedit_at.cfg')
|
|
}
|
|
|
|
project.archivesBaseName = "${project.archivesBaseName}-mc${minecraftVersion}"
|
|
|
|
processResources {
|
|
// this will ensure that this task is redone when the versions change.
|
|
inputs.property 'version', project.version
|
|
inputs.property 'mcversion', minecraftVersion
|
|
inputs.property 'internalVersion', internalVersion
|
|
|
|
// replace stuff in mcmod.info, nothing else
|
|
from(sourceSets.main.resources.srcDirs) {
|
|
include 'META_INF/mods.toml'
|
|
|
|
// replace version and mcversion
|
|
expand 'version':project.version, 'mcversion': minecraftVersion, 'internalVersion': internalVersion
|
|
}
|
|
|
|
// copy everything else except the mcmod.info
|
|
from(sourceSets.main.resources.srcDirs) {
|
|
exclude 'META_INF/mods.toml'
|
|
}
|
|
}
|
|
|
|
jar {
|
|
manifest {
|
|
attributes("Class-Path": "truezip.jar WorldEdit/truezip.jar js.jar WorldEdit/js.jar",
|
|
"WorldEdit-Version": version,
|
|
"FMLAT": "worldedit_at.cfg")
|
|
}
|
|
}
|
|
|
|
shadowJar {
|
|
dependencies {
|
|
include(dependency(':worldedit-core'))
|
|
}
|
|
}
|
|
|
|
afterEvaluate {
|
|
reobf {
|
|
shadowJar {
|
|
mappings = createMcpToSrg.output
|
|
}
|
|
}
|
|
}
|
|
|
|
task deobfJar(type: Jar) {
|
|
from sourceSets.main.output
|
|
classifier = 'dev'
|
|
}
|
|
|
|
artifacts {
|
|
archives deobfJar
|
|
}
|