aboutsummaryrefslogtreecommitdiff
path: root/stdlib/project.clj
blob: 97d1e290182b6fec0ff6dc5d63b9e55c78e3f16d (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
(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/stdlib #=(identity version)
  :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]]
  :scm {:name "git"
        :url ~(str repo ".git")}

  :source-paths ["source"]
  :profiles {:bibliotheca {:description "Standard library for the Lux programming language."
                           :dependencies []
                           :lux {:tests {:jvm "test/lux"}}}
             :scriptum {:description "A documentation generator for Lux code."
                        :dependencies []
                        :lux {:program {:jvm "program/scriptum"}}}
             :licentia {:description "A program for producing free/open-source/reciprocal licenses."
                        :dependencies []
                        :lux {:program {:jvm "program/licentia"}
                              :tests {:jvm "test/licentia"}}}}
  )