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 {
5
5
}
6
6
7
7
group = " dev.arbjerg"
8
- version = " 1.1.0 "
8
+ version = " 1.1.1 "
9
9
10
10
repositories {
11
11
mavenCentral()
Original file line number Diff line number Diff line change @@ -118,7 +118,7 @@ private fun Project.configureTasks(serverDependency: Provider<Dependency>) {
118
118
.filterIsInstance<ProjectDependency >()
119
119
.forEach { dependency ->
120
120
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 ) {
122
122
dependsOn(project.tasks.named(" jvmMainClasses" ))
123
123
from(project.layout.buildDirectory.file(" classes/kotlin/jvm/main" )) {
124
124
include(" **/*.class" )
You can’t perform that action at this time.
0 commit comments