Makes comments apply when inside nested classes of nested classes.

This commit is contained in:
adrianoy
2021-07-25 22:20:35 -03:00
parent 48f5962f57
commit 1fe4d53565
4 changed files with 120 additions and 5 deletions
+10
View File
@@ -188,7 +188,9 @@ afterEvaluate {
sourceSets {
testmod {
compileClasspath += main.output
compileClasspath += main.compileClasspath
runtimeClasspath += main.output
runtimeClasspath += main.runtimeClasspath
}
test {
@@ -239,5 +241,13 @@ publishing {
}
}
}
//todo: remove before pr'ing
import net.fabricmc.loom.task.RunClientTask
task runTestMod(type: RunClientTask) {
classpath = configurations.runtimeClasspath
classpath sourceSets.main.output
classpath sourceSets.testmod.output
}
tasks.publish.dependsOn build //stupid fix for maven/loom not publishing the main artifact