mirror of
https://github.com/ViaVersion/ViaFabric.git
synced 2024-12-21 16:17:37 +01:00
83 lines
2.1 KiB
Groovy
83 lines
2.1 KiB
Groovy
buildscript {
|
|
repositories {
|
|
mavenCentral()
|
|
maven { url 'https://www.jitpack.io' }
|
|
maven { url 'https://files.minecraftforge.net/maven' }
|
|
jcenter()
|
|
maven { url 'https://www.dimdev.org/maven/' }
|
|
maven { url 'https://repo.spongepowered.org/maven/' }
|
|
}
|
|
dependencies {
|
|
classpath 'com.github.Chocohead:ForgeGradle:moderniser-SNAPSHOT'
|
|
classpath 'org.spongepowered:mixingradle:0.6-SNAPSHOT'
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id 'net.minecrell.licenser' version '0.4.1'
|
|
id 'com.palantir.git-version' version '0.12.0-rc2'
|
|
}
|
|
|
|
apply plugin: 'net.minecraftforge.gradle.tweaker-client'
|
|
apply plugin: 'org.spongepowered.mixin'
|
|
apply plugin: 'java'
|
|
|
|
group 'com.github.creeper123123321.viarift'
|
|
version gitVersion()
|
|
archivesBaseName = 'ViaRift'
|
|
|
|
sourceCompatibility = 1.8
|
|
targetCompatibility = 1.8
|
|
|
|
repositories {
|
|
mavenLocal()
|
|
mavenCentral()
|
|
maven { url 'https://libraries.minecraft.net/' }
|
|
maven { url 'https://repo.viaversion.com/' }
|
|
maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
|
|
maven { url 'https://www.dimdev.org/maven/' }
|
|
maven { url 'https://jitpack.io' }
|
|
maven { url 'http://repo.strezz.org/artifactory/list/Strezz-Central' }
|
|
}
|
|
|
|
configurations {
|
|
shade
|
|
compile.extendsFrom shade
|
|
}
|
|
|
|
dependencies {
|
|
shade ('us.myles:viaversion:2.0.0-SNAPSHOT') {
|
|
transitive = false
|
|
changing = true
|
|
}
|
|
implementation 'com.github.Chocohead:Rift:jitpack-SNAPSHOT:dev'
|
|
}
|
|
|
|
jar {
|
|
configurations.shade.each { dep ->
|
|
from(project.zipTree(dep)){
|
|
//exclude 'META-INF', 'META-INF/**'
|
|
exclude 'us/myles/ViaVersion/SpongePlugin.class'
|
|
exclude 'javassist/**'
|
|
}
|
|
}
|
|
}
|
|
|
|
reobf {
|
|
jar {
|
|
extraLines += "PK: us/myles com/github/creeper123123321/viarift/shaded/us/myles"
|
|
}
|
|
}
|
|
|
|
mixin {
|
|
defaultObfuscationEnv notch
|
|
add sourceSets.main, 'mixins.viarift.refmap.json'
|
|
}
|
|
|
|
minecraft {
|
|
version = '1.13.2'
|
|
mappings = 'snapshot_20181130'
|
|
runDir = 'run'
|
|
tweakClass = 'org.dimdev.riftloader.launch.RiftLoaderClientTweaker'
|
|
}
|