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