1. 연구 모듈/Lisp - Clojure
[Lisp/Clojure] default template 프로젝트 app template 프로젝트로 변환하기
사용자-1
2017. 1. 3. 05:51
- core.clj에 (:gen-class) 구문 추가
(ns <프로젝트명>.core (:gen-class))
- core.clj에 main 함수 추가
(defn -main [& args] (<시작 함수명> <시작 함수 파라미터>))
- project.clj에 다음 구문 추가
:main ^:skip-aot <프로젝트명>.core :target-path "target/%s" :profiles {:uberjar {:aot :all}}
<테스트 버전> Eclipse 버전 : Mars CCW 버전 : 0.35.0.STABLE001 Leiningen 버전 : 1.0.0