Skip to content

Commit

Permalink
Fork lein plugin as well
Browse files Browse the repository at this point in the history
  • Loading branch information
camsaul committed Sep 6, 2019
1 parent bea08bc commit b6a01f5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions lein-cloverage/project.clj
@@ -1,18 +1,18 @@
(defproject lein-cloverage "1.1.2-SNAPSHOT"
(defproject camsaul/lein-cloverage "1.1.2"
:description "Lein plugin for cloverage"
:url "https://github.com/cloverage/cloverage"
:url "https://github.com/camsaul/cloverage"
:scm {:name "git"
:dir ".."
:url "https://www.github.com/cloverage/cloverage"
:url "https://www.github.com/camsaul/cloverage"
:tag "HEAD"}
:vcs :git
:license {:name "Eclipse Public License - v 1.0"
:url "http://www.eclipse.org/legal/epl-v10.html"
:distribution :repo
:comments "same as Clojure"}
:deploy-repositories {"releases"
{:url "https://repo.clojars.org"
:creds :gpg}}
:deploy-repositories [["clojars"
{:url "https://clojars.org/repo"
:sign-releases false}]]
:lein-release {:scm :git ; Because we're not in the top-level directory, so it doesn't auto-detect
:deploy-via :clojars}
:release-tasks [["vcs" "assert-committed"]
Expand Down
2 changes: 1 addition & 1 deletion lein-cloverage/src/leiningen/cloverage.clj
Expand Up @@ -23,7 +23,7 @@
(let [project (if (already-has-cloverage? project)
project
(update-in project [:dependencies]
conj ['cloverage (get-lib-version)]))
conj ['camsaul/cloverage (get-lib-version)]))
test-selectors (:test-selectors project)
opts (assoc (:cloverage project)
:src-ns-path (vec (:source-paths project))
Expand Down

0 comments on commit b6a01f5

Please sign in to comment.