blob: 1826734521c6a966d2f32471ec0935f4e293e0fd (
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
42
43
44
45
46
47
|
(def version "0.6.0-SNAPSHOT")
(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/")
(defproject com.github.luxlang/new-luxc #=(identity version)
:description "A re-written compiler for Lux."
:url ~repo
:license {:name "Lux License v0.1"
:url ~(str repo "/blob/master/license.txt")}
:plugins [[com.github.luxlang/lein-luxc ~version]]
:deploy-repositories [["releases" {:url ~sonatype-releases :creds :gpg}]
["snapshots" {:url ~sonatype-snapshots :creds :gpg}]]
:pom-addition [:developers [:developer
[:name "Eduardo Julian"]
[:url "https://github.com/eduardoejp"]]]
:repositories [["releases" ~sonatype-releases]
["snapshots" ~sonatype-snapshots]
["bedatadriven" "https://nexus.bedatadriven.com/content/groups/public/"]
["jitpack" "https://jitpack.io"]]
:scm {:name "git"
:url ~(str repo ".git")}
:dependencies [;; JVM Bytecode
[org.ow2.asm/asm-all "5.0.3"]
;; ;; Lua
;; [net.sandius.rembulan/rembulan-runtime "0.1-SNAPSHOT"]
;; [net.sandius.rembulan/rembulan-stdlib "0.1-SNAPSHOT"]
;; [net.sandius.rembulan/rembulan-compiler "0.1-SNAPSHOT"]
;; ;; Ruby
;; [org.jruby/jruby-complete "9.1.16.0"]
;; ;; Python
;; [org.python/jython-standalone "2.7.1"]
;; ;; Scheme
;; [kawa-scheme/kawa-core "2.4"]
;; ;; Common Lisp
;; [org.abcl/abcl "1.5.0"]
;; ;; PHP 5
;; [org.develnext.jphp/jphp-core "0.9.2"]
;; [org.develnext.jphp/jphp-scripting "0.9.2"]
]
:source-paths ["source"]
:test-paths ["test"]
:lux {:program "program"
:test "tests"}
)
|