Skip to content

Commit 8f63f9b

Browse files
committed
Added noinspection to build.gradle.
Signed-off-by: Pavel Erokhin (MairwunNx) <[email protected]>
1 parent 343fad8 commit 8f63f9b

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

build.gradle

+5
Original file line numberDiff line numberDiff line change
@@ -42,22 +42,26 @@ minecraft {
4242

4343
runs {
4444
client {
45+
//noinspection GroovyAssignabilityCheck
4546
workingDirectory(project.file(dev_run_client_path))
4647
property("forge.logging.markers", "SCAN,REGISTRIES,REGISTRYDUMP")
4748
property("forge.logging.console.level", "debug")
4849
mods {
4950
ProjectEssentialsPermissions {
51+
//noinspection GroovyAssignabilityCheck
5052
source(sourceSets.main)
5153
}
5254
}
5355
}
5456

5557
server {
58+
//noinspection GroovyAssignabilityCheck
5659
workingDirectory(project.file(dev_run_server_path))
5760
property("forge.logging.markers", "SCAN,REGISTRIES,REGISTRYDUMP")
5861
property("forge.logging.console.level", "debug")
5962
mods {
6063
ProjectEssentialsPermissions {
64+
//noinspection GroovyAssignabilityCheck
6165
source(sourceSets.main)
6266
}
6367
}
@@ -126,6 +130,7 @@ sourceCompatibility = targetCompatibility =
126130
compileKotlin.kotlinOptions.jvmTarget =
127131
compileTestKotlin.kotlinOptions.jvmTarget = project_jvm_version_target
128132

133+
//noinspection GroovyAssignabilityCheck
129134
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all {
130135
kotlinOptions {
131136
freeCompilerArgs += "-Xuse-experimental=kotlin.Experimental"

0 commit comments

Comments
 (0)