Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
frenchy64 committed Dec 20, 2023
1 parent d0c0af0 commit 7eca699
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,23 @@
:target "gh-pages/doc"
:src-uri "http://github.com/metosin/ring-swagger/blob/master/"
:src-uri-prefix "#L"}
:deploy-repositories [["releases" :clojars]]
:deploy-repositories [["snapshot" {:url "https://clojars.org/repo"
:username :env/clojars_user
:password :env/clojars_token
:sign-releases false}]
["release" {:url "https://clojars.org/repo"
:username :env/clojars_user
:password :env/clojars_token
:sign-releases false}]]
:release-tasks [["clean"]
["vcs" "assert-committed"]
["change" "version" "leiningen.release/bump-version" "release"]
["vcs" "commit"]
["vcs" "tag" "--no-sign"]
["deploy" "release"]
["change" "version" "leiningen.release/bump-version"]
["vcs" "commit"]
["vcs" "push"]]

:aliases {"all" ["with-profile" "dev:dev,1.7:dev,1.9:dev,1.10:dev,1.11:dev,1.12"]
"test-ancient" ["midje"]})

0 comments on commit 7eca699

Please sign in to comment.