From d61f91060866c85d10d2c510d66109791831b8fd Mon Sep 17 00:00:00 2001 From: Ben Sturmfels Date: Fri, 16 May 2025 09:38:05 +1000 Subject: [PATCH] Rename build asset to payroll-importer --- README.md | 4 ++-- build.clj | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 57b6e84..572b7d0 100644 --- a/README.md +++ b/README.md @@ -7,8 +7,8 @@ data. ## Usage -The run, the program requires a Java runtime (tested with OpenJDK 17 and 21). -On Debian 12 (Bookworm): +This program requires a Java runtime environment (tested with OpenJDK 17 and +21). On Debian 12 (Bookworm): sudo apt install openjdk-17-jre diff --git a/build.clj b/build.clj index a313f8c..0c10561 100644 --- a/build.clj +++ b/build.clj @@ -1,7 +1,7 @@ (ns build (:require [clojure.tools.build.api :as b])) -(def lib 'import) +(def lib 'payroll-importer) (def version (format "0.0.%s" (b/git-count-revs nil))) (def class-dir "target/classes") (def uber-file (format "target/%s-%s-standalone.jar" (name lib) version))