Description:
Update project to handle dependencies better and bump version to 0.1.6.
Commit status:
[Not Reviewed]
References:
Diff options:
Comments:
0 Commit comments
0 Inline Comments
Unresolved TODOs:
There are no unresolved TODOs
@@ -1,7 +1,12 | |||
|
1 | 1 | # Change Log |
|
2 | 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 | 10 | First tracked version |
|
6 | 11 | ### Changed |
|
7 | 12 |
@@ -1,13 +1,13 | |||
|
1 |
(defproject project-checkup "0.1. |
|
|
1 | (defproject project-checkup "0.1.6-SNAPSHOT" | |
|
2 | 2 | :description "Makes sure your project is healthy. :)" |
|
3 | 3 | :url "https://bitbucket.org/alysbrooks/project-checkup" |
|
4 | 4 | :license {:name "Eclipse Public License" |
|
5 | 5 | :url "http://www.eclipse.org/legal/epl-v10.html"} |
|
6 | 6 | :dependencies [[org.clojure/clojure "1.8.0"] |
|
7 | [org.clojure/clojurescript "1.9.521"] | |
|
8 | [org.clojure/core.async "0.4.474"] | |
|
9 | [org.clojure/test.check "0.10.0-alpha3"]] | |
|
7 | [org.clojure/clojurescript "1.9.521"] ] | |
|
10 | 8 | |
|
11 | 9 | :main ^:skip-aot project-checkup.core |
|
12 | 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