From 629785d1179243f7c9bcee0abfdee0fd8f25f9fb Mon Sep 17 00:00:00 2001 From: Kosma Moczek Date: Sun, 12 Dec 2021 23:07:11 +0100 Subject: [PATCH] fabric/build.gradle: replace compile with implementation This fixes starting the Fabric mod under IntelliJ and command line: `./gradlew fabric-1.18:runServer` --- fabric-1.14.4/build.gradle | 2 +- fabric-1.15.2/build.gradle | 2 +- fabric-1.16.4/build.gradle | 2 +- fabric-1.17.1/build.gradle | 2 +- fabric-1.18/build.gradle | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/fabric-1.14.4/build.gradle b/fabric-1.14.4/build.gradle index f0352ecf..7551ab23 100644 --- a/fabric-1.14.4/build.gradle +++ b/fabric-1.14.4/build.gradle @@ -19,7 +19,7 @@ group = parent.group configurations { shadow - compile.extendsFrom(shadow) + implementation.extendsFrom(shadow) } dependencies { diff --git a/fabric-1.15.2/build.gradle b/fabric-1.15.2/build.gradle index f0352ecf..7551ab23 100644 --- a/fabric-1.15.2/build.gradle +++ b/fabric-1.15.2/build.gradle @@ -19,7 +19,7 @@ group = parent.group configurations { shadow - compile.extendsFrom(shadow) + implementation.extendsFrom(shadow) } dependencies { diff --git a/fabric-1.16.4/build.gradle b/fabric-1.16.4/build.gradle index f0352ecf..7551ab23 100644 --- a/fabric-1.16.4/build.gradle +++ b/fabric-1.16.4/build.gradle @@ -19,7 +19,7 @@ group = parent.group configurations { shadow - compile.extendsFrom(shadow) + implementation.extendsFrom(shadow) } dependencies { diff --git a/fabric-1.17.1/build.gradle b/fabric-1.17.1/build.gradle index 2ae65bf5..2ad1772e 100644 --- a/fabric-1.17.1/build.gradle +++ b/fabric-1.17.1/build.gradle @@ -19,7 +19,7 @@ group = parent.group configurations { shadow - compile.extendsFrom(shadow) + implementation.extendsFrom(shadow) } dependencies { diff --git a/fabric-1.18/build.gradle b/fabric-1.18/build.gradle index 824a9af0..1597e68b 100644 --- a/fabric-1.18/build.gradle +++ b/fabric-1.18/build.gradle @@ -24,7 +24,7 @@ group = parent.group configurations { shadow - compile.extendsFrom(shadow) + implementation.extendsFrom(shadow) } dependencies {