lets-plot icon indicating copy to clipboard operation
lets-plot copied to clipboard

Plot-image-export artifact publication is broken

Open ileasile opened this issue 1 year ago • 0 comments

Now in master, empty JAR is published for plot-image-export, to fix, this or similar patch should be applied

Index: plot-image-export/build.gradle.kts
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
diff --git a/plot-image-export/build.gradle.kts b/plot-image-export/build.gradle.kts
--- a/plot-image-export/build.gradle.kts	(revision 97501d5bc10a9d541e24a2ebcafaa280f5cbf437)
+++ b/plot-image-export/build.gradle.kts	(date 1715969263780)
@@ -78,6 +78,8 @@
 val jvmJarPlotImageExport by tasks.registering (Jar::class) {
     archiveFileName.set("$artifactBaseName-${artifactVersion}.jar")
 
+    from(kotlin.jvm().compilations["main"].output)
+
     // Add LICENSE file to the META-INF folder inside published JAR files.
     metaInf {
         from("$rootDir") {

ileasile avatar May 17 '24 18:05 ileasile