File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
- (defproject tailrecursion /boot " 1.0.3 "
1
+ (defproject tailrecursion /boot " 1.0.4 "
2
2
:description " A dependency setup/build tool for Clojure."
3
3
:url " https://github.com/tailrecursion/boot"
4
4
:license {:name " Eclipse Public License"
Original file line number Diff line number Diff line change 15
15
[tailrecursion.boot.strap :as strap]
16
16
[tailrecursion.boot.classlojure.core :as cl])
17
17
(:import
18
- [java.net URLClassLoader URL]
18
+ [java.net URLClassLoader URL URI ]
19
19
java.lang.management.ManagementFactory)
20
20
(:gen-class ))
21
21
115
115
(mapv (partial exclude (vec loaded)))
116
116
(#(resolve-dependencies! % (or repos dfl-repos))))]
117
117
(swap! dependencies into (mapv :dep specs))
118
- (add-urls! (map #(URL. (str " file://" ( :jar %)) ) specs))))
118
+ (add-urls! (map #(->> % :jar (str " file:/// " ) URI. .toURL ) specs))))
119
119
120
120
(defrecord CoreVersion [depspec])
121
121
You can’t perform that action at this time.
0 commit comments