From 6fc010191492e5622dc7fcbea490235c45b68995 Mon Sep 17 00:00:00 2001 From: Kristin Rutenkolk Date: Thu, 27 Jun 2024 14:40:28 +0200 Subject: [PATCH] fix build/jar to call write-pom without arguments --- build.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.clj b/build.clj index 756cc2d..a909708 100644 --- a/build.clj +++ b/build.clj @@ -92,7 +92,7 @@ "Generates a `coffi.jar` file in the `target/` directory. This is a thin jar including only the sources." [opts] - (write-pom opts) + (write-pom) (compile-java) (copy-resources) (when-not (exists? target-dir jar-file)