aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/program/aedifex/artifact/type.lux
blob: a10175f3d834c6e51e630fba3ad5265b1c35aa2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
... This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
... If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/.

(.require
 [library
  [lux (.except Type)]])

... https://maven.apache.org/ref/3.6.3/maven-core/artifact-handlers.html
(type .public Type
  Text)

(with_template [<type> <name>]
  [(def .public <name>
     Type
     <type>)]

  ["tar" lux_library]
  ["jar" jvm_library]
  ["js" js_library]
  ["pom" pom]
  ["sha1" sha1]
  ["md5" md5]
  )