Description:
Update project to handle dependencies better and bump version to 0.1.6.
Commit status:
[Not Reviewed]
References:
Comments:
0 Commit comments 0 Inline Comments
Unresolved TODOs:
There are no unresolved TODOs
Add another comment

r36:27c426836a37 -

@@ -1,7 +1,12
1 # Change Log
1 # Change Log
2 All notable changes to this project will be documented in this file. This change log follows the conventions of [keepachangelog.com](http://keepachangelog.com/).
2 All notable changes to this project will be documented in this file. This change log follows the conventions of [keepachangelog.com](http://keepachangelog.com/).
3
3
4 ## [Unreleased]
4 ## [Unreleased] ##
5
6 ### Fixed
7 - test.check is no longer a dependency of the entire project, just tests.
8
9 ## [0.1.5]
5 First tracked version
10 First tracked version
6 ### Changed
11 ### Changed
7
12
@@ -1,13 +1,13
1 (defproject project-checkup "0.1.5"
1 (defproject project-checkup "0.1.6-SNAPSHOT"
2 :description "Makes sure your project is healthy. :)"
2 :description "Makes sure your project is healthy. :)"
3 :url "https://bitbucket.org/alysbrooks/project-checkup"
3 :url "https://bitbucket.org/alysbrooks/project-checkup"
4 :license {:name "Eclipse Public License"
4 :license {:name "Eclipse Public License"
5 :url "http://www.eclipse.org/legal/epl-v10.html"}
5 :url "http://www.eclipse.org/legal/epl-v10.html"}
6 :dependencies [[org.clojure/clojure "1.8.0"]
6 :dependencies [[org.clojure/clojure "1.8.0"]
7 [org.clojure/clojurescript "1.9.521"]
7 [org.clojure/clojurescript "1.9.521"] ]
8 [org.clojure/core.async "0.4.474"]
9 [org.clojure/test.check "0.10.0-alpha3"]]
10
8
11 :main ^:skip-aot project-checkup.core
9 :main ^:skip-aot project-checkup.core
12 :target-path "target/%s"
10 :target-path "target/%s"
13 :profiles {:uberjar {:aot :all}})
11 :profiles {:uberjar {:aot :all}
12 :test {:dependencies [[org.clojure/test.check "0.10.0-alpha3"]]}
13 })
You need to be logged in to leave comments. Login now