aboutsummaryrefslogtreecommitdiff
path: root/new-luxc/project.clj
blob: 770612a73111fa46d38fad284669d28ce29e2fab (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
(defproject com.github.luxlang/new-luxc "0.6.0-SNAPSHOT"
  :description "A re-written compiler for Lux."
  :url "https://github.com/LuxLang/lux"
  :license {:name "MIT License"
            :url "https://opensource.org/licenses/MIT"}
  :plugins [[com.github.luxlang/lein-luxc "0.6.0-SNAPSHOT"]]
  :deploy-repositories [["releases" {:url "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
                                     :creds :gpg}]
                        ["snapshots" {:url "https://oss.sonatype.org/content/repositories/snapshots/"
                                      :creds :gpg}]]
  :pom-addition [:developers [:developer
                              [:name "Eduardo Julian"]
                              [:url "https://github.com/eduardoejp"]]]
  :repositories [["snapshots" "https://oss.sonatype.org/content/repositories/snapshots/"]
                 ["releases" "https://oss.sonatype.org/service/local/staging/deploy/maven2/"]
                 ["bedatadriven" "https://nexus.bedatadriven.com/content/groups/public/"]]
  :scm {:name "git"
        :url "https://github.com/LuxLang/lux.git"}

  :dependencies [[org.ow2.asm/asm-all "5.0.3"]
                 [net.sandius.rembulan/rembulan-runtime "0.1-SNAPSHOT"]
                 [net.sandius.rembulan/rembulan-stdlib "0.1-SNAPSHOT"]
                 [net.sandius.rembulan/rembulan-compiler "0.1-SNAPSHOT"]
                 [org.jruby/jruby-complete "9.1.16.0"]
                 [org.python/jython-standalone "2.7.1"]
                 [org.renjin/renjin-script-engine "0.8.2527"]
                 ]
  
  :source-paths ["source"]
  :test-paths ["test"]
  :lux {:program {:jvm "program"}
        :tests {:jvm "tests"}}
  )