Deploying Clojure apps with Leiningen

前端 未结 1 786
深忆病人
深忆病人 2021-02-04 05:33

This is my project.clj file so far:

(defproject raj \"0.0.1-SNAPSHOT\"
  :description \"FIXME: write description\"
  :dependencies [[org.clojure/clojure \"1.3.0\         


        
1条回答
  •  生来不讨喜
    2021-02-04 05:48

    You need to add a :gen-class declaration to the raj.core namespace:

    (ns raj.core
      (:use raj.core)
      (:gen-class))
    

    0 讨论(0)
提交回复
热议问题