From 2ac6926be617bf764c4c18a4f6fbba199f6be697 Mon Sep 17 00:00:00 2001 From: Eduardo Julian Date: Mon, 7 Mar 2022 04:16:47 -0400 Subject: Compilers for scripting languages now only depend on new JVM compiler. --- lux-lua/project.clj | 41 ----------------------------------------- 1 file changed, 41 deletions(-) delete mode 100644 lux-lua/project.clj (limited to 'lux-lua') 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"} - ) -- cgit v1.2.3