Skip to content

Commit ff71ab7

Browse files
committed
Suppressed some warnings in build.gradle file.
1 parent c7e9c31 commit ff71ab7

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

build.gradle

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)