File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ buildscript {
1616 classpath(
1717 " org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion "
1818 )
19- classpath (
19+ classpath(
2020 " org.jetbrains.dokka:dokka-gradle-plugin:$dokkaVersion "
2121 )
2222 }
@@ -44,22 +44,26 @@ minecraft {
4444
4545 runs {
4646 client {
47+ // noinspection GroovyAssignabilityCheck
4748 workingDirectory(project. file(devRunClientPath))
4849 property(" forge.logging.markers" , " SCAN,REGISTRIES,REGISTRYDUMP" )
4950 property(" forge.logging.console.level" , " debug" )
5051 mods {
5152 ProjectEssentialsCore {
53+ // noinspection GroovyAssignabilityCheck
5254 source(sourceSets. main)
5355 }
5456 }
5557 }
5658
5759 server {
60+ // noinspection GroovyAssignabilityCheck
5861 workingDirectory(project. file(devRunServerPath))
5962 property(" forge.logging.markers" , " SCAN,REGISTRIES,REGISTRYDUMP" )
6063 property(" forge.logging.console.level" , " debug" )
6164 mods {
6265 ProjectEssentialsCore {
66+ // noinspection GroovyAssignabilityCheck
6367 source(sourceSets. main)
6468 }
6569 }
You can’t perform that action at this time.
0 commit comments