fabric/build.gradle: replace compile with implementation

This fixes starting the Fabric mod under IntelliJ and command line:

`./gradlew fabric-1.18:runServer`
This commit is contained in:
Kosma Moczek 2021-12-12 23:07:11 +01:00
parent 0d477db78b
commit 629785d117
5 changed files with 5 additions and 5 deletions

View File

@ -19,7 +19,7 @@ group = parent.group
configurations {
shadow
compile.extendsFrom(shadow)
implementation.extendsFrom(shadow)
}
dependencies {

View File

@ -19,7 +19,7 @@ group = parent.group
configurations {
shadow
compile.extendsFrom(shadow)
implementation.extendsFrom(shadow)
}
dependencies {

View File

@ -19,7 +19,7 @@ group = parent.group
configurations {
shadow
compile.extendsFrom(shadow)
implementation.extendsFrom(shadow)
}
dependencies {

View File

@ -19,7 +19,7 @@ group = parent.group
configurations {
shadow
compile.extendsFrom(shadow)
implementation.extendsFrom(shadow)
}
dependencies {

View File

@ -24,7 +24,7 @@ group = parent.group
configurations {
shadow
compile.extendsFrom(shadow)
implementation.extendsFrom(shadow)
}
dependencies {