how to add a hook into the uberjar process (building with lein)

662 Views Asked by At

i would like to add a hook to the uberjar process. the specific example is to download the maxmind geoip dat file into the resources folder so an updated version is bundled into the jar every time it deploys. examples/suggestions appreciated thanks!

1

There are 1 best solutions below

0
On

I recommend making a custom lein task that calls uberjar, rather than using a hook. For example, if your project is called foo:

file: foo/tasks/leiningen/foobuild.clj

(ns leiningen.foobuild
  (:require leiningen.uberjar))

(defn foobuild [project]
  (download-maxmind-geoip-data)
  (leiningen.uberjar/uberjar project))

Then you can run this with:

lein foobuild