Please enable JavaScript to use RhodeCode Enterprise
Commit Description:
Add license check.
Commit Description:
Add license check.
( defproject project-checkup "0.1.4-SNAPSHOT"
:description "Makes sure your project is healthy. "
:url "http://example.com/FIXME"
:license { :name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html" }
:dependencies [[ org.clojure/clojure "1.8.0" ]
[ org.clojure/clojurescript "1.9.521" ]
; [andare "0.9.0"]
[ org.clojure/core.async "0.4.474" ]
[ org.clojure/test.check "0.10.0-alpha3" ]]
:plugins [[ lein-cljsbuild "1.1.5" ]]
:cljsbuild { :builds [{ :id "development"
:source-paths [ "src" ]
:compiler { :main project-checkup.core
:output-to "package/index.js"
:target :nodejs
:output-dir "target/development"
:install-deps true
:optimizations :none
:pretty-print true
:parallel-build true }}
{ :id "optimized"
:source-paths [ "src" ]
:compiler { :main project-checkup.core
:output-to "package/index.js"
:target :nodejs
:output-dir "target/optimized"
;; :externs ["externs.js"]
:install-deps true
:optimizations :advanced
:pretty-print true
:parallel-build true }}]}
:main ^ :skip-aot project-checkup.core
:target-path "target/%s"
:profiles { :uberjar { :aot :all }})
Site-wide shortcuts
/
Use quick search box
g h
Goto home page
g g
Goto my private gists page
g G
Goto my public gists page
n r
New repository page
n g
New gist page
Repositories
g s
Goto summary page
g c
Goto changelog page
g f
Goto files page
g F
Goto files page with file search activated
g p
Goto pull requests page
g o
Goto repository settings
g O
Goto repository permissions settings