Skip to content

Commit

Permalink
- Added SCM info to project.clj files.
Browse files Browse the repository at this point in the history
  • Loading branch information
eduardoejp committed Jan 8, 2017
1 parent 65a5e8f commit e44d30c
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
5 changes: 4 additions & 1 deletion lux-lein/project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,15 @@
:url "https://www.mozilla.org/en-US/MPL/2.0/"}
:dependencies [[org.clojure/clojure "1.6.0"]
[com.github.luxlang/luxc-jvm "0.5.0"]
[com.github.luxlang/lux-stdlib "0.5.0"]]
[com.github.luxlang/stdlib "0.5.0"]]
: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"]]]
:scm {:name "git"
:url "https://github.com/LuxLang/lux.git"}

:eval-in :leiningen)
2 changes: 2 additions & 0 deletions luxc/project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@

:classifiers {:sources {:resource-paths ["src"]}
:javadoc {:resource-paths ["src"]}}
:scm {:name "git"
:url "https://github.com/LuxLang/lux.git"}

:aot [lux]

Expand Down
9 changes: 7 additions & 2 deletions stdlib/project.clj
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
(defproject com.github.luxlang/lux-stdlib "0.5.0"
(defproject com.github.luxlang/stdlib "0.5.0"
:description "Standard library for the Lux programming language."
:url "https://github.com/LuxLang/stdlib"
:license {:name "Mozilla Public License (Version 2.0)"
:url "https://www.mozilla.org/en-US/MPL/2.0/"}
:plugins [[com.github.luxlang/lein-luxc "0.5.0"]]
;; :plugins [[com.github.luxlang/lein-luxc "0.5.0"]]
:deploy-repositories [["releases" {:url "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
:creds :gpg}]
["snapshots" {:url "https://oss.sonatype.org/content/repositories/snapshots/"
Expand All @@ -13,6 +13,11 @@
[:url "https://github.com/eduardoejp"]]]
:repositories [["snapshots" "https://oss.sonatype.org/content/repositories/snapshots/"]
["releases" "https://oss.sonatype.org/service/local/staging/deploy/maven2/"]]
:scm {:name "git"
:url "https://github.com/LuxLang/lux.git"}

:dependencies []

:source-paths ["source"]
:test-paths ["test"]
:lux {:tests "tests"}
Expand Down

0 comments on commit e44d30c

Please sign in to comment.