Can't build a jar using Leiningen
问题 I'm trying to make a stand alone jar from my bare-bones Clojure project using the Leiningen plugin in Intellij's Cursive. To create the project, I just created the project.clj file, opened it, and Cursive offered to import it as a project. project.clj: (defproject WaterTimer "1" :description "A timer that reminds you to drink water" :main tone-producer/main) tone-producer.clj: (ns tone-producer (:require [general-helpers :as g]) (:import [javax.sound.midi MidiSystem Synthesizer MidiChannel])