aboutsummaryrefslogtreecommitdiff
path: root/licentia/project.clj
diff options
context:
space:
mode:
authorEduardo Julian2021-06-14 18:33:54 -0400
committerEduardo Julian2021-06-14 18:33:54 -0400
commit519c0c0c71cdf7ce3dfc64b9781ab826760b3d94 (patch)
tree75fa0672afceff129e5e75afb7a5fed197ce1773 /licentia/project.clj
parentaf3e6e2cb011dc2ad9204440990731a2f272716d (diff)
Extracted Licentia out of the standard library.
Diffstat (limited to 'licentia/project.clj')
-rw-r--r--licentia/project.clj33
1 files changed, 33 insertions, 0 deletions
diff --git a/licentia/project.clj b/licentia/project.clj
new file mode 100644
index 000000000..97756c024
--- /dev/null
+++ b/licentia/project.clj
@@ -0,0 +1,33 @@
+(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/licentia #=(identity version)
+ :description "A program for producing free/open-source/reciprocal licenses."
+
+ :url ~(str repo "/licentia")
+ :license {:name "Lux License v0.1.1"
+ :url ~(str repo "/blob/master/license.txt")}
+
+ :repositories [["releases" ~sonatype-releases]
+ ["snapshots" ~sonatype-snapshots]]
+ :deploy-repositories [["releases" {:url ~sonatype-releases :creds :gpg}]
+ ["snapshots" {:url ~sonatype-snapshots :creds :gpg}]]
+
+ :plugins [[com.github.luxlang/lein-luxc ~version]]
+
+ :dependencies [[com.github.luxlang/luxc-jvm ~version]
+ [com.github.luxlang/stdlib ~version]]
+
+ :pom-addition [:developers [:developer
+ [:name "Eduardo Julian"]
+ [:url "https://github.com/eduardoejp"]]]
+ :scm {:name "git"
+ :url ~(str repo ".git")}
+ :manifest {"lux" ~version}
+
+ :source-paths ["source"]
+ :lux {:program "program/licentia"
+ :test "test/licentia"}
+ )