Skip to content

Commit

Permalink
Merge pull request Orcpub#583 from johntyree/539-fix-deps
Browse files Browse the repository at this point in the history
Support loading jars from local `./lib` dir
"Merging this to create a chain for reverting if necessary, as mentioned on discord."
  • Loading branch information
codeGlaze authored Jan 17, 2023
2 parents 6bc4e82 + a68d0ce commit 3fe5490
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ pom.xml
.lein-repl-history
.lein-plugins/
.lein-*
.lsp
.idea
orcpub.iml
profiles.clj
Expand Down
8 changes: 7 additions & 1 deletion project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,12 @@
:repositories [["apache" "http://repository.apache.org/snapshots/"]
["my.datomic.com" {:url "https://my.datomic.com/repo"
:username [:gpg :env]
:password [:gpg :env]}]]
:password [:gpg :env]}]
; This allows us to seamlessly load jars from local disk.
["local" {:url "file:lib"
:checksum :ignore
:releases {:checksum :ignore}}]
]
:mirrors {"apache" {:url "https://repository.apache.org/snapshots/"}}

:dependencies [[org.clojure/clojure "1.10.0"]
Expand Down Expand Up @@ -66,6 +71,7 @@

:plugins [[lein-figwheel "0.5.19"]
[lein-cljsbuild "1.1.7" :exclusions [[org.clojure/clojure]]]
[lein-localrepo "0.5.4"]
[lein-garden "0.3.0"]
[lein-environ "1.1.0"]
[lein-cljfmt "0.6.8"]
Expand Down

0 comments on commit 3fe5490

Please sign in to comment.