aboutsummaryrefslogtreecommitdiff
path: root/lux-lein
diff options
context:
space:
mode:
authorEduardo Julian2023-01-13 16:58:37 -0400
committerEduardo Julian2023-01-13 16:58:37 -0400
commit91bc060bc498a0d2418198cfcb9dc39636d1d867 (patch)
tree9375bf48bab29d4a966eeef229a17bec6bcbc4d5 /lux-lein
parent913171900fd11272ca328ded6553a56423db1e13 (diff)
Re-licensed to MPL 2.0
Diffstat (limited to 'lux-lein')
-rw-r--r--lux-lein/project.clj3
-rw-r--r--lux-lein/src/leiningen/lux.clj3
-rw-r--r--lux-lein/src/leiningen/lux/builder.clj3
-rw-r--r--lux-lein/src/leiningen/lux/packager.clj3
-rw-r--r--lux-lein/src/leiningen/lux/repl.clj3
-rw-r--r--lux-lein/src/leiningen/lux/test.clj3
-rw-r--r--lux-lein/src/leiningen/lux/utils.clj3
-rw-r--r--lux-lein/src/leiningen/lux/watch.clj3
8 files changed, 24 insertions, 0 deletions
diff --git a/lux-lein/project.clj b/lux-lein/project.clj
index a3ffe8469..d67b87742 100644
--- a/lux-lein/project.clj
+++ b/lux-lein/project.clj
@@ -1,3 +1,6 @@
+;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
+;; If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/.
+
(def version "0.8.0-SNAPSHOT")
(defproject com.github.luxlang/lein-luxc #=(identity version)
diff --git a/lux-lein/src/leiningen/lux.clj b/lux-lein/src/leiningen/lux.clj
index 0ae83eb6e..50d4e5545 100644
--- a/lux-lein/src/leiningen/lux.clj
+++ b/lux-lein/src/leiningen/lux.clj
@@ -1,3 +1,6 @@
+;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
+;; If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/.
+
(ns leiningen.lux
(:require [leiningen.pom :as pom]
[leiningen.core.classpath :as classpath]
diff --git a/lux-lein/src/leiningen/lux/builder.clj b/lux-lein/src/leiningen/lux/builder.clj
index e25d1818f..9b8e1759b 100644
--- a/lux-lein/src/leiningen/lux/builder.clj
+++ b/lux-lein/src/leiningen/lux/builder.clj
@@ -1,3 +1,6 @@
+;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
+;; If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/.
+
(ns leiningen.lux.builder
(:require (leiningen.lux
[utils :as &utils]
diff --git a/lux-lein/src/leiningen/lux/packager.clj b/lux-lein/src/leiningen/lux/packager.clj
index 97b7580ec..bca369595 100644
--- a/lux-lein/src/leiningen/lux/packager.clj
+++ b/lux-lein/src/leiningen/lux/packager.clj
@@ -1,3 +1,6 @@
+;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
+;; If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/.
+
(ns leiningen.lux.packager
(:require [clojure.string :as string]
[leiningen.core.classpath :as classpath]
diff --git a/lux-lein/src/leiningen/lux/repl.clj b/lux-lein/src/leiningen/lux/repl.clj
index 6f75c151c..db2b8c2ba 100644
--- a/lux-lein/src/leiningen/lux/repl.clj
+++ b/lux-lein/src/leiningen/lux/repl.clj
@@ -1,3 +1,6 @@
+;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
+;; If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/.
+
(ns leiningen.lux.repl
(:require [leiningen.core.classpath :as classpath]
[leiningen.lux.utils :as &utils])
diff --git a/lux-lein/src/leiningen/lux/test.clj b/lux-lein/src/leiningen/lux/test.clj
index a51a2c3bc..8476484ed 100644
--- a/lux-lein/src/leiningen/lux/test.clj
+++ b/lux-lein/src/leiningen/lux/test.clj
@@ -1,3 +1,6 @@
+;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
+;; If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/.
+
(ns leiningen.lux.test
(:refer-clojure :exclude [test])
(:require [leiningen.core.classpath :as classpath]
diff --git a/lux-lein/src/leiningen/lux/utils.clj b/lux-lein/src/leiningen/lux/utils.clj
index abcd907c6..963b7513d 100644
--- a/lux-lein/src/leiningen/lux/utils.clj
+++ b/lux-lein/src/leiningen/lux/utils.clj
@@ -1,3 +1,6 @@
+;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
+;; If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/.
+
(ns leiningen.lux.utils
(:require (clojure
[template :refer [do-template]]
diff --git a/lux-lein/src/leiningen/lux/watch.clj b/lux-lein/src/leiningen/lux/watch.clj
index 9ac4036c2..e3948ebc7 100644
--- a/lux-lein/src/leiningen/lux/watch.clj
+++ b/lux-lein/src/leiningen/lux/watch.clj
@@ -1,3 +1,6 @@
+;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
+;; If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/.
+
(ns leiningen.lux.watch
(:require [leiningen.core.classpath :as classpath])
(:import (java.io File)