aboutsummaryrefslogtreecommitdiff
path: root/lux-lua
diff options
context:
space:
mode:
authorEduardo Julian2022-03-07 04:16:47 -0400
committerEduardo Julian2022-03-07 04:16:47 -0400
commit2ac6926be617bf764c4c18a4f6fbba199f6be697 (patch)
treebf333813ecf54844e039815fc46fd97b125234f8 /lux-lua
parenta7fc50b1906fa97fb56d5ebe3d3fff7baee276da (diff)
Compilers for scripting languages now only depend on new JVM compiler.
Diffstat (limited to 'lux-lua')
-rw-r--r--lux-lua/project.clj41
1 files changed, 0 insertions, 41 deletions
diff --git a/lux-lua/project.clj b/lux-lua/project.clj
deleted file mode 100644
index d6ae33e81..000000000
--- a/lux-lua/project.clj
+++ /dev/null
@@ -1,41 +0,0 @@
-(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"}
- )