Skip to content

Commit

Permalink
updated project.clj for clojars deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
baskeboler committed Dec 13, 2020
1 parent 0700604 commit 38edae4
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions project.clj
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
(defproject clj-karaoke-lyrics "0.1.0-SNAPSHOT"
:description "FIXME: write description"
(defproject baskeboler/clj-karaoke-lyrics "1.0.0-SNAPSHOT"
:description "Rip karaoke lyrics from karaoke midi files"
:url "http://github.com/baskeboler/clj-karaoke-lyrics.git"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
Expand All @@ -10,4 +10,12 @@
[clj-cli-progress "0.1.0"]]
:main ^:skip-aot clj-karaoke.core
:target-path "target/%s"
:profiles {:uberjar {:aot :all #_[clj-karaoke.core clj-karaoke.karaoke clj-karaoke.lyrics]}})
:profiles {:uberjar {:aot :all #_[clj-karaoke.core clj-karaoke.karaoke clj-karaoke.lyrics]}}
:repositories
{"clojars" {:url "https://clojars.org/repo"
:sign-releases false
:username "baskeboler"
:password :env/CLOJARS_TOKEN}
"github" {:url "https://maven.pkg.github.com/baskeboler/cljs-karaoke-lyrics"
:sign-releases false}}
:deploy-repositories [["releases" :clojars] ["snapshots" :clojars]])

0 comments on commit 38edae4

Please sign in to comment.