Revert buildscript changes, will bring back once 0.13 loom is ready.

This commit is contained in:
modmuss50 2022-06-27 22:48:24 +01:00
parent 63eaf354d9
commit f3177b691a
22 changed files with 7 additions and 7 deletions

View file

@ -198,6 +198,7 @@ dependencies {
} }
def modCompat(Map args) { def modCompat(Map args) {
/*
SourceSet compatSourceSet = sourceSets.create(args.name) { SourceSet compatSourceSet = sourceSets.create(args.name) {
compileClasspath += args.sourceSet.compileClasspath compileClasspath += args.sourceSet.compileClasspath
runtimeClasspath += args.sourceSet.runtimeClasspath runtimeClasspath += args.sourceSet.runtimeClasspath
@ -215,6 +216,7 @@ def modCompat(Map args) {
sourcesJar { sourcesJar {
from compatSourceSet.allSource from compatSourceSet.allSource
} }
*/
def excludes = { def excludes = {
exclude group: "net.fabricmc.fabric-api" exclude group: "net.fabricmc.fabric-api"
@ -236,6 +238,7 @@ def modCompat(Map args) {
} }
} }
/*
allprojects { allprojects {
loom { loom {
mods { mods {
@ -245,6 +248,7 @@ def modCompat(Map args) {
} }
} }
} }
*/
} }
modCompat( modCompat(
@ -255,11 +259,11 @@ modCompat(
sourceSet: sourceSets.client, sourceSet: sourceSets.client,
) )
/*
modCompat( modCompat(
name: "jei", name: "jei",
runtime: [ runtime: [
// Uncomment to enable JEI "mezz.jei:jei-1.19-fabric:${project.jei_version}"
// "mezz.jei:jei-1.19-fabric:${project.jei_version}"
], ],
compile: [ compile: [
"mezz.jei:jei-1.19-common-api:${project.jei_version}", "mezz.jei:jei-1.19-common-api:${project.jei_version}",
@ -267,6 +271,7 @@ modCompat(
], ],
sourceSet: sourceSets.client, sourceSet: sourceSets.client,
) )
*/
loom { loom {
runs { runs {

View file

@ -1,5 +0,0 @@
package techreborn.client.compat.jei;
public class TechRebornJEI {
// Hello o/
}