Skip to content

Commit e73379e

Browse files
committed
build: fix gradle task dependencies
1 parent fb53b05 commit e73379e

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

lib/build.gradle.kts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,11 @@ publishing {
4040
group = "org.modelix.mps"
4141
artifactId = "stable-api"
4242
version = "0.0.3"
43-
// artifact(tasks.shadowJar)
44-
artifact(project(":api").tasks.named("sourcesJar"))
4543
from(components["shadow"])
4644
}
4745
}
4846
}
47+
48+
tasks.named("generateMetadataFileForMavenPublication") {
49+
dependsOn(tasks.jar)
50+
}

0 commit comments

Comments
 (0)