File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 14
14
escape ` % ` in message to prevent errors about bad string formatting, and
15
15
ensure that message ends in a newline.
16
16
- Artifact upload slow because of an expensive evaluation of a debugging arguments for all calls to ` transfer-listener ` [ #565 ] [ 565 ] [ #558 ] [ 558 ]
17
+ - With-cp does not consider source/resource paths
17
18
18
19
##### Tasks
19
20
@@ -31,6 +32,7 @@ ensure that message ends in a newline.
31
32
[ 565 ] : https://github.com/boot-clj/boot/pull/565
32
33
[ 558 ] : https://github.com/boot-clj/boot/pull/558
33
34
[ 567 ] : https://github.com/boot-clj/boot/pull/567
35
+ [ 611 ] : https://github.com/boot-clj/boot/pull/611
34
36
35
37
## 2.7.1
36
38
Original file line number Diff line number Diff line change 349
349
(if-let [conflicts (and safe (not-empty (dep-conflicts env)))]
350
350
(throw (ex-info " Unresolved dependency conflicts." {:conflicts conflicts}))
351
351
(let [resolved (pod/resolve-dependency-jars env)
352
- relative-paths (map (partial relativize local-repo) resolved)]
353
- (spit file-out (apply str (interpose " :" relative-paths))))))))))
352
+ relative-paths (map (partial relativize local-repo) resolved)
353
+ source-paths (:source-paths env)]
354
+ (spit file-out (apply str (->> (concat source-paths relative-paths)
355
+ (interpose " :" )
356
+ (into [])))))))))))
354
357
355
358
(core/deftask wait
356
359
" Wait before calling the next handler.
You can’t perform that action at this time.
0 commit comments