Skip to content

Commit

Permalink
First alpha release of the main artifact got ready
Browse files Browse the repository at this point in the history
  • Loading branch information
lxsameer committed Feb 6, 2018
1 parent da583b5 commit be8f664
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 15 deletions.
13 changes: 4 additions & 9 deletions core/project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
:license {"mit"
"https://opensource.org/licenses/MIT"}
:url "http://hellhound.io"
:scm {:url "https://github.com/Codamic/hellhound"}
:scm {:name "git"
:url "https://github.com/Codamic/hellhound"}

:exclusions [ch.qos.logback/logback-classic]

Expand All @@ -18,10 +19,6 @@
[org.slf4j/jcl-over-slf4j "1.7.25"]
[manifold "0.1.6"]]


:lein-release {:deploy-via :clojars
:build-uberjar true}

:plugins [[lein-codox "0.10.3"]]

:min-lein-version "2.6.1"
Expand All @@ -31,11 +28,9 @@
:test-paths ["test/clj" "test/cljc"]
:clean-targets ^{:protect false} [:target-path]

:uberjar-name "hellhound.core.jar"
:uberjar-name "hellhound.core.standalone.jar"
:jar-name "hellhound.core.jar"

;; nREPL by default starts in the :main namespace, we want to start in `user`
;; because that's where our development helper functions like (run) and
;; (browser-repl) live.
:repl-options {:init-ns user}

:profiles {:dev
Expand Down
15 changes: 9 additions & 6 deletions project.clj
Original file line number Diff line number Diff line change
@@ -1,17 +1,20 @@
(defproject codamic/hellhound "1.0.0-SNAPSHOT"
(defproject codamic/hellhound "1.0.0-alpha1"
:description "Build asynchronous, high performance and scalable applications at ease."
:url "https://github.com/ring-clojure/ring"
:license {:name "The MIT License"
:url "http://opensource.org/licenses/MIT"}
:scm {:name "git"
:url "https://github.com/Codamic/hellhound"}
:dependencies [[org.clojure/clojure "1.9.0"]
[codamic/hellhound.core "1.0.0-SNAPSHOT"]
[codamic/hellhound.http "1.0.0-SNAPSHOT"]]
[codamic/hellhound.core "1.0.0-alpha1"]]
;[codamic/hellhound.http "1.0.0-SNAPSHOT"]]

:plugins [[lein-sub "0.3.0"]
[lein-codox "0.10.3"]]
:sub ["core"
"i18n"
"http"]
:sub ["core"]
;; "i18n"
;; "http"


:codox {:output-path "docs/api/"
:metadata {:doc/format :markdown}
Expand Down

0 comments on commit be8f664

Please sign in to comment.