mirror of
https://github.com/webbukkit/dynmap.git
synced 2024-12-25 10:07:37 +01:00
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:
parent
0d477db78b
commit
629785d117
@ -19,7 +19,7 @@ group = parent.group
|
||||
|
||||
configurations {
|
||||
shadow
|
||||
compile.extendsFrom(shadow)
|
||||
implementation.extendsFrom(shadow)
|
||||
}
|
||||
|
||||
dependencies {
|
||||
|
@ -19,7 +19,7 @@ group = parent.group
|
||||
|
||||
configurations {
|
||||
shadow
|
||||
compile.extendsFrom(shadow)
|
||||
implementation.extendsFrom(shadow)
|
||||
}
|
||||
|
||||
dependencies {
|
||||
|
@ -19,7 +19,7 @@ group = parent.group
|
||||
|
||||
configurations {
|
||||
shadow
|
||||
compile.extendsFrom(shadow)
|
||||
implementation.extendsFrom(shadow)
|
||||
}
|
||||
|
||||
dependencies {
|
||||
|
@ -19,7 +19,7 @@ group = parent.group
|
||||
|
||||
configurations {
|
||||
shadow
|
||||
compile.extendsFrom(shadow)
|
||||
implementation.extendsFrom(shadow)
|
||||
}
|
||||
|
||||
dependencies {
|
||||
|
@ -24,7 +24,7 @@ group = parent.group
|
||||
|
||||
configurations {
|
||||
shadow
|
||||
compile.extendsFrom(shadow)
|
||||
implementation.extendsFrom(shadow)
|
||||
}
|
||||
|
||||
dependencies {
|
||||
|
Loading…
Reference in New Issue
Block a user