File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ plugins {
55}
66
77group = " dev.arbjerg"
8- version = " 1.1.0 "
8+ version = " 1.1.1 "
99
1010repositories {
1111 mavenCentral()
Original file line number Diff line number Diff line change @@ -118,7 +118,7 @@ private fun Project.configureTasks(serverDependency: Provider<Dependency>) {
118118 .filterIsInstance<ProjectDependency >()
119119 .forEach { dependency ->
120120 val project = dependency.dependencyProject
121- if (project.plugins.hasPlugin(" org.jetbrains.kotlin.multiplatform" )) {
121+ if (project.plugins.hasPlugin(" org.jetbrains.kotlin.multiplatform" ) && project.tasks.findByName( " jvmMainClasses " ) != null ) {
122122 dependsOn(project.tasks.named(" jvmMainClasses" ))
123123 from(project.layout.buildDirectory.file(" classes/kotlin/jvm/main" )) {
124124 include(" **/*.class" )
You can’t perform that action at this time.
0 commit comments