1. core.clj에 (:gen-class) 구문 추가
    (ns <프로젝트명>.core
     (:gen-class))
    
  2. core.clj에 main 함수 추가
    (defn -main
     [& args]
     (<시작 함수명> <시작 함수 파라미터>))
    
  3. 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
    
,