blob: 157cb24eb7ba69d84b60b15bcb59f416a0f36830 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
(.require
[library
[lux (.except)
[data
[text
["%" \\format (.only format)]]]
[world
[net
["[0]" uri (.only URI)]]]]]
["[0]" //
["[1][0]" artifact (.only Version Artifact)]])
(def / uri.separator)
(def .public repository
URI
(format ".m2" / "repository"))
(def .public (uri version artifact)
(-> Version Artifact URI)
(format ..repository / (//artifact.uri version artifact)))
|