# HG changeset patch # User alys # Date 2019-01-01 03:22:32 # Node ID 21e167d65a186eb39e87c77932acf509ace1279c # Parent 88a01b98809cd681ecfa074a10c29d4e56c02606 Various documentation updates. diff --git a/README.md b/README.md --- a/README.md +++ b/README.md @@ -4,13 +4,13 @@ ## Installation -Download from http://example.com/FIXME. +Download from https://bitbucket.org/alysbrooks/project-checkup/. ## Usage Run the app in the current working directory: - $ java -jar project-checkup-0.1.2-standalone.jar + $ java -jar project-checkup-0.1.4.jar ## License diff --git a/project.clj b/project.clj --- a/project.clj +++ b/project.clj @@ -1,6 +1,6 @@ (defproject project-checkup "0.1.4" :description "Makes sure your project is healthy. " - :url "http://example.com/FIXME" + :url "https://bitbucket.org/alysbrooks/project-checkup" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.8.0"] @@ -8,29 +8,6 @@ [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}})