blob: d6ae33e81983e1ee91dd15a271528b4d5522daaa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
(def lux_version "0.6.5")
(def repo "https://github.com/LuxLang/lux")
(def sonatype-releases "https://oss.sonatype.org/service/local/staging/deploy/maven2/")
(def sonatype-snapshots "https://oss.sonatype.org/content/repositories/snapshots/")
(def asm_version "5.0.4")
(def rembulan_version "0.1")
(defproject com.github.luxlang/lux-lua #=(identity lux_version)
:description "A Lua compiler for Lux."
:url ~repo
:license {:name "Lux License v0.1.2"
:url ~(str repo "/blob/master/license.txt")}
:scm {:name "git"
:url ~(str repo ".git")}
:pom-addition [:developers [:developer
[:name "Eduardo Julian"]
[:url "https://github.com/eduardoejp"]]]
:repositories [["snapshots" ~sonatype-snapshots]]
:deploy-repositories [["releases" {:url ~sonatype-releases :creds :gpg}]
["snapshots" {:url ~sonatype-snapshots :creds :gpg}]]
:plugins [[com.github.luxlang/lein-luxc ~lux_version]]
:dependencies [[com.github.luxlang/lux-bootstrapper ~lux_version]
;; [com.github.luxlang/stdlib ~lux_version]
[org.ow2.asm/asm ~asm_version]
[org.ow2.asm/asm-commons ~asm_version]
[org.ow2.asm/asm-analysis ~asm_version]
[org.ow2.asm/asm-tree ~asm_version]
[org.ow2.asm/asm-util ~asm_version]
[com.github.luxlang/rembulan-runtime ~rembulan_version]
[com.github.luxlang/rembulan-stdlib ~rembulan_version]
[com.github.luxlang/rembulan-compiler ~rembulan_version]]
:manifest {"lux" ~lux_version}
:source-paths ["source"]
:lux {:program "program"}
)
|