[Lisp/Clojure] default template 프로젝트 app template 프로젝트로 변환하기
1. 연구 모듈/Lisp - Clojure 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
'1. 연구 모듈 > Lisp - Clojure' 카테고리의 다른 글
[겉핥기 프로젝트] Clojure에서 GUI 프로그래밍 (0) | 2017.02.24 |
---|---|
[Lisp/Clojure] Clojure에서 커맨드 파라미터 처리 (0) | 2017.02.11 |
[Lisp/Clojure] 비 Eclipse 프로젝트 Eclipse에서 Import하기 (0) | 2016.12.22 |
[Lisp/Clojure] HTTP 요청하기 (clj-http 모듈 사용) (0) | 2016.10.18 |
[Lisp/Clojure] Clojure 개발 환경 구축 - 2. Eclipse 사용 (0) | 2016.10.03 |