aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/program/aedifex/artifact/type.lux
blob: 5c9ba8bb2fac08ca920b30acb6287ac71b890c79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
(.module:
  [lux (#- Type)])

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

(template [<type> <name>]
  [(def: #export <name>
     Type
     <type>)]

  ["tar" lux_library]
  ["jar" jvm_library]
  ["pom" pom]
  ["sha1" sha-1]
  ["md5" md5]
  )