This is an automated email from the ASF dual-hosted git repository.

marcoabreu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-mxnet.git


The following commit(s) were added to refs/heads/master by this push:
     new 37c8165  Add licenses to clojure package (#11512)
37c8165 is described below

commit 37c8165748457e1b648ec49f68e70027da2af6f2
Author: Marco de Abreu <marcoab...@users.noreply.github.com>
AuthorDate: Sun Jul 1 14:46:45 2018 +0200

    Add licenses to clojure package (#11512)
---
 contrib/clojure-package/examples/visualization/testviz  | 17 +++++++++++++++++
 contrib/clojure-package/resources/log4j.properties      | 17 +++++++++++++++++
 contrib/clojure-package/test/dev/generator_test.clj     | 17 +++++++++++++++++
 .../test/org/apache/clojure_mxnet/callback_test.clj     | 17 +++++++++++++++++
 .../test/org/apache/clojure_mxnet/conv_test.clj         | 17 +++++++++++++++++
 .../test/org/apache/clojure_mxnet/eval_metric_test.clj  | 17 +++++++++++++++++
 .../test/org/apache/clojure_mxnet/executor_test.clj     | 17 +++++++++++++++++
 .../test/org/apache/clojure_mxnet/io_test.clj           | 17 +++++++++++++++++
 .../test/org/apache/clojure_mxnet/kvstore_test.clj      | 17 +++++++++++++++++
 .../test/org/apache/clojure_mxnet/module_test.clj       | 17 +++++++++++++++++
 .../test/org/apache/clojure_mxnet/ndarray_test.clj      | 17 +++++++++++++++++
 .../test/org/apache/clojure_mxnet/operator_test.clj     | 17 +++++++++++++++++
 .../test/org/apache/clojure_mxnet/optimizer_test.clj    | 17 +++++++++++++++++
 .../test/org/apache/clojure_mxnet/random_test.clj       | 17 +++++++++++++++++
 .../test/org/apache/clojure_mxnet/shape_test.clj        | 17 +++++++++++++++++
 .../test/org/apache/clojure_mxnet/symbol_test.clj       | 17 +++++++++++++++++
 .../test/org/apache/clojure_mxnet/test_util.clj         | 17 +++++++++++++++++
 .../test/org/apache/clojure_mxnet/util_test.clj         | 17 +++++++++++++++++
 18 files changed, 306 insertions(+)

diff --git a/contrib/clojure-package/examples/visualization/testviz 
b/contrib/clojure-package/examples/visualization/testviz
index c0161e9..dc32b5f 100644
--- a/contrib/clojure-package/examples/visualization/testviz
+++ b/contrib/clojure-package/examples/visualization/testviz
@@ -1,3 +1,20 @@
+;;
+;; Licensed to the Apache Software Foundation (ASF) under one or more
+;; contributor license agreements.  See the NOTICE file distributed with
+;; this work for additional information regarding copyright ownership.
+;; The ASF licenses this file to You under the Apache License, Version 2.0
+;; (the "License"); you may not use this file except in compliance with
+;; the License.  You may obtain a copy of the License at
+;;
+;;    http://www.apache.org/licenses/LICENSE-2.0
+;;
+;; Unless required by applicable law or agreed to in writing, software
+;; distributed under the License is distributed on an "AS IS" BASIS,
+;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+;; See the License for the specific language governing permissions and
+;; limitations under the License.
+;;
+
 digraph foo{
        data [label=data  fixedsize=false style=filled height=0.8034 
fillcolor="#8dd3c7" shape=oval width=1.3]
        conv1 [label="Convolution\n3x3/2x2, 32"  fixedsize=false style=filled 
height=0.8034 fillcolor="#fb8072" shape=oval width=1.3]
diff --git a/contrib/clojure-package/resources/log4j.properties 
b/contrib/clojure-package/resources/log4j.properties
index e012700..427f8da 100644
--- a/contrib/clojure-package/resources/log4j.properties
+++ b/contrib/clojure-package/resources/log4j.properties
@@ -1,3 +1,20 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#    http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
 log4j.rootLogger=INFO, console
 log4j.logger.example=DEBUG
 log4j.appender.console=org.apache.log4j.ConsoleAppender
diff --git a/contrib/clojure-package/test/dev/generator_test.clj 
b/contrib/clojure-package/test/dev/generator_test.clj
index b6f5f43..ed16863 100644
--- a/contrib/clojure-package/test/dev/generator_test.clj
+++ b/contrib/clojure-package/test/dev/generator_test.clj
@@ -1,3 +1,20 @@
+;;
+;; Licensed to the Apache Software Foundation (ASF) under one or more
+;; contributor license agreements.  See the NOTICE file distributed with
+;; this work for additional information regarding copyright ownership.
+;; The ASF licenses this file to You under the Apache License, Version 2.0
+;; (the "License"); you may not use this file except in compliance with
+;; the License.  You may obtain a copy of the License at
+;;
+;;    http://www.apache.org/licenses/LICENSE-2.0
+;;
+;; Unless required by applicable law or agreed to in writing, software
+;; distributed under the License is distributed on an "AS IS" BASIS,
+;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+;; See the License for the specific language governing permissions and
+;; limitations under the License.
+;;
+
 (ns dev.generator-test
   (:require [clojure.test :refer :all]
             [dev.generator :as gen]))
diff --git 
a/contrib/clojure-package/test/org/apache/clojure_mxnet/callback_test.clj 
b/contrib/clojure-package/test/org/apache/clojure_mxnet/callback_test.clj
index 5957d20..13932ae 100644
--- a/contrib/clojure-package/test/org/apache/clojure_mxnet/callback_test.clj
+++ b/contrib/clojure-package/test/org/apache/clojure_mxnet/callback_test.clj
@@ -1,3 +1,20 @@
+;;
+;; Licensed to the Apache Software Foundation (ASF) under one or more
+;; contributor license agreements.  See the NOTICE file distributed with
+;; this work for additional information regarding copyright ownership.
+;; The ASF licenses this file to You under the Apache License, Version 2.0
+;; (the "License"); you may not use this file except in compliance with
+;; the License.  You may obtain a copy of the License at
+;;
+;;    http://www.apache.org/licenses/LICENSE-2.0
+;;
+;; Unless required by applicable law or agreed to in writing, software
+;; distributed under the License is distributed on an "AS IS" BASIS,
+;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+;; See the License for the specific language governing permissions and
+;; limitations under the License.
+;;
+
 (ns org.apache.clojure-mxnet.callback-test
   (:require [org.apache.clojure-mxnet.callback :as callback]
             [clojure.test :refer :all]
diff --git 
a/contrib/clojure-package/test/org/apache/clojure_mxnet/conv_test.clj 
b/contrib/clojure-package/test/org/apache/clojure_mxnet/conv_test.clj
index 372672b..856a9f5 100644
--- a/contrib/clojure-package/test/org/apache/clojure_mxnet/conv_test.clj
+++ b/contrib/clojure-package/test/org/apache/clojure_mxnet/conv_test.clj
@@ -1,3 +1,20 @@
+;;
+;; Licensed to the Apache Software Foundation (ASF) under one or more
+;; contributor license agreements.  See the NOTICE file distributed with
+;; this work for additional information regarding copyright ownership.
+;; The ASF licenses this file to You under the Apache License, Version 2.0
+;; (the "License"); you may not use this file except in compliance with
+;; the License.  You may obtain a copy of the License at
+;;
+;;    http://www.apache.org/licenses/LICENSE-2.0
+;;
+;; Unless required by applicable law or agreed to in writing, software
+;; distributed under the License is distributed on an "AS IS" BASIS,
+;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+;; See the License for the specific language governing permissions and
+;; limitations under the License.
+;;
+
 (ns org.apache.clojure-mxnet.conv-test
   (:require [clojure.java.io :as io]
             [clojure.java.shell :refer [sh]]
diff --git 
a/contrib/clojure-package/test/org/apache/clojure_mxnet/eval_metric_test.clj 
b/contrib/clojure-package/test/org/apache/clojure_mxnet/eval_metric_test.clj
index a040d95..d6da2ec 100644
--- a/contrib/clojure-package/test/org/apache/clojure_mxnet/eval_metric_test.clj
+++ b/contrib/clojure-package/test/org/apache/clojure_mxnet/eval_metric_test.clj
@@ -1,3 +1,20 @@
+;;
+;; Licensed to the Apache Software Foundation (ASF) under one or more
+;; contributor license agreements.  See the NOTICE file distributed with
+;; this work for additional information regarding copyright ownership.
+;; The ASF licenses this file to You under the Apache License, Version 2.0
+;; (the "License"); you may not use this file except in compliance with
+;; the License.  You may obtain a copy of the License at
+;;
+;;    http://www.apache.org/licenses/LICENSE-2.0
+;;
+;; Unless required by applicable law or agreed to in writing, software
+;; distributed under the License is distributed on an "AS IS" BASIS,
+;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+;; See the License for the specific language governing permissions and
+;; limitations under the License.
+;;
+
 (ns org.apache.clojure-mxnet.eval-metric-test
   (:require [org.apache.clojure-mxnet.eval-metric :as eval-metric]
             [clojure.test :refer :all]
diff --git 
a/contrib/clojure-package/test/org/apache/clojure_mxnet/executor_test.clj 
b/contrib/clojure-package/test/org/apache/clojure_mxnet/executor_test.clj
index 837f2f5..6c885ce 100644
--- a/contrib/clojure-package/test/org/apache/clojure_mxnet/executor_test.clj
+++ b/contrib/clojure-package/test/org/apache/clojure_mxnet/executor_test.clj
@@ -1,3 +1,20 @@
+;;
+;; Licensed to the Apache Software Foundation (ASF) under one or more
+;; contributor license agreements.  See the NOTICE file distributed with
+;; this work for additional information regarding copyright ownership.
+;; The ASF licenses this file to You under the Apache License, Version 2.0
+;; (the "License"); you may not use this file except in compliance with
+;; the License.  You may obtain a copy of the License at
+;;
+;;    http://www.apache.org/licenses/LICENSE-2.0
+;;
+;; Unless required by applicable law or agreed to in writing, software
+;; distributed under the License is distributed on an "AS IS" BASIS,
+;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+;; See the License for the specific language governing permissions and
+;; limitations under the License.
+;;
+
 (ns org.apache.clojure-mxnet.executor-test
   (:require [org.apache.clojure-mxnet.context :as context]
             [org.apache.clojure-mxnet.executor :as executor]
diff --git a/contrib/clojure-package/test/org/apache/clojure_mxnet/io_test.clj 
b/contrib/clojure-package/test/org/apache/clojure_mxnet/io_test.clj
index 22a45da..2ccfc1c 100644
--- a/contrib/clojure-package/test/org/apache/clojure_mxnet/io_test.clj
+++ b/contrib/clojure-package/test/org/apache/clojure_mxnet/io_test.clj
@@ -1,3 +1,20 @@
+;;
+;; Licensed to the Apache Software Foundation (ASF) under one or more
+;; contributor license agreements.  See the NOTICE file distributed with
+;; this work for additional information regarding copyright ownership.
+;; The ASF licenses this file to You under the Apache License, Version 2.0
+;; (the "License"); you may not use this file except in compliance with
+;; the License.  You may obtain a copy of the License at
+;;
+;;    http://www.apache.org/licenses/LICENSE-2.0
+;;
+;; Unless required by applicable law or agreed to in writing, software
+;; distributed under the License is distributed on an "AS IS" BASIS,
+;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+;; See the License for the specific language governing permissions and
+;; limitations under the License.
+;;
+
 (ns org.apache.clojure-mxnet.io-test
   (:require [clojure.java.io :as io]
             [clojure.java.shell :refer [sh]]
diff --git 
a/contrib/clojure-package/test/org/apache/clojure_mxnet/kvstore_test.clj 
b/contrib/clojure-package/test/org/apache/clojure_mxnet/kvstore_test.clj
index 7be8751..a01f949 100644
--- a/contrib/clojure-package/test/org/apache/clojure_mxnet/kvstore_test.clj
+++ b/contrib/clojure-package/test/org/apache/clojure_mxnet/kvstore_test.clj
@@ -1,3 +1,20 @@
+;;
+;; Licensed to the Apache Software Foundation (ASF) under one or more
+;; contributor license agreements.  See the NOTICE file distributed with
+;; this work for additional information regarding copyright ownership.
+;; The ASF licenses this file to You under the Apache License, Version 2.0
+;; (the "License"); you may not use this file except in compliance with
+;; the License.  You may obtain a copy of the License at
+;;
+;;    http://www.apache.org/licenses/LICENSE-2.0
+;;
+;; Unless required by applicable law or agreed to in writing, software
+;; distributed under the License is distributed on an "AS IS" BASIS,
+;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+;; See the License for the specific language governing permissions and
+;; limitations under the License.
+;;
+
 (ns org.apache.clojure-mxnet.kvstore-test
   (:require [org.apache.clojure-mxnet.kvstore :as kvstore]
             [clojure.test :refer :all]
diff --git 
a/contrib/clojure-package/test/org/apache/clojure_mxnet/module_test.clj 
b/contrib/clojure-package/test/org/apache/clojure_mxnet/module_test.clj
index 89ab27d..5ec918f 100644
--- a/contrib/clojure-package/test/org/apache/clojure_mxnet/module_test.clj
+++ b/contrib/clojure-package/test/org/apache/clojure_mxnet/module_test.clj
@@ -1,3 +1,20 @@
+;;
+;; Licensed to the Apache Software Foundation (ASF) under one or more
+;; contributor license agreements.  See the NOTICE file distributed with
+;; this work for additional information regarding copyright ownership.
+;; The ASF licenses this file to You under the Apache License, Version 2.0
+;; (the "License"); you may not use this file except in compliance with
+;; the License.  You may obtain a copy of the License at
+;;
+;;    http://www.apache.org/licenses/LICENSE-2.0
+;;
+;; Unless required by applicable law or agreed to in writing, software
+;; distributed under the License is distributed on an "AS IS" BASIS,
+;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+;; See the License for the specific language governing permissions and
+;; limitations under the License.
+;;
+
 (ns org.apache.clojure-mxnet.module-test
   (:require [clojure.java.io :as io]
             [org.apache.clojure-mxnet.context :as context]
diff --git 
a/contrib/clojure-package/test/org/apache/clojure_mxnet/ndarray_test.clj 
b/contrib/clojure-package/test/org/apache/clojure_mxnet/ndarray_test.clj
index 99dfb63..25d01ec 100644
--- a/contrib/clojure-package/test/org/apache/clojure_mxnet/ndarray_test.clj
+++ b/contrib/clojure-package/test/org/apache/clojure_mxnet/ndarray_test.clj
@@ -1,3 +1,20 @@
+;;
+;; Licensed to the Apache Software Foundation (ASF) under one or more
+;; contributor license agreements.  See the NOTICE file distributed with
+;; this work for additional information regarding copyright ownership.
+;; The ASF licenses this file to You under the Apache License, Version 2.0
+;; (the "License"); you may not use this file except in compliance with
+;; the License.  You may obtain a copy of the License at
+;;
+;;    http://www.apache.org/licenses/LICENSE-2.0
+;;
+;; Unless required by applicable law or agreed to in writing, software
+;; distributed under the License is distributed on an "AS IS" BASIS,
+;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+;; See the License for the specific language governing permissions and
+;; limitations under the License.
+;;
+
 (ns org.apache.clojure-mxnet.ndarray-test
   (:require [org.apache.clojure-mxnet.base :as base]
             [org.apache.clojure-mxnet.context :as ctx]
diff --git 
a/contrib/clojure-package/test/org/apache/clojure_mxnet/operator_test.clj 
b/contrib/clojure-package/test/org/apache/clojure_mxnet/operator_test.clj
index da60d1a..1a822d5 100644
--- a/contrib/clojure-package/test/org/apache/clojure_mxnet/operator_test.clj
+++ b/contrib/clojure-package/test/org/apache/clojure_mxnet/operator_test.clj
@@ -1,3 +1,20 @@
+;;
+;; Licensed to the Apache Software Foundation (ASF) under one or more
+;; contributor license agreements.  See the NOTICE file distributed with
+;; this work for additional information regarding copyright ownership.
+;; The ASF licenses this file to You under the Apache License, Version 2.0
+;; (the "License"); you may not use this file except in compliance with
+;; the License.  You may obtain a copy of the License at
+;;
+;;    http://www.apache.org/licenses/LICENSE-2.0
+;;
+;; Unless required by applicable law or agreed to in writing, software
+;; distributed under the License is distributed on an "AS IS" BASIS,
+;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+;; See the License for the specific language governing permissions and
+;; limitations under the License.
+;;
+
 (ns org.apache.clojure-mxnet.operator-test
   (:require [org.apache.clojure-mxnet.context :as context]
             [org.apache.clojure-mxnet.executor :as executor]
diff --git 
a/contrib/clojure-package/test/org/apache/clojure_mxnet/optimizer_test.clj 
b/contrib/clojure-package/test/org/apache/clojure_mxnet/optimizer_test.clj
index 1bf7db4..e90516f 100644
--- a/contrib/clojure-package/test/org/apache/clojure_mxnet/optimizer_test.clj
+++ b/contrib/clojure-package/test/org/apache/clojure_mxnet/optimizer_test.clj
@@ -1,3 +1,20 @@
+;;
+;; Licensed to the Apache Software Foundation (ASF) under one or more
+;; contributor license agreements.  See the NOTICE file distributed with
+;; this work for additional information regarding copyright ownership.
+;; The ASF licenses this file to You under the Apache License, Version 2.0
+;; (the "License"); you may not use this file except in compliance with
+;; the License.  You may obtain a copy of the License at
+;;
+;;    http://www.apache.org/licenses/LICENSE-2.0
+;;
+;; Unless required by applicable law or agreed to in writing, software
+;; distributed under the License is distributed on an "AS IS" BASIS,
+;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+;; See the License for the specific language governing permissions and
+;; limitations under the License.
+;;
+
 (ns org.apache.clojure-mxnet.optimizer-test
   (:require [org.apache.clojure-mxnet.module :as m]
             [org.apache.clojure-mxnet.optimizer :as optimizer]
diff --git 
a/contrib/clojure-package/test/org/apache/clojure_mxnet/random_test.clj 
b/contrib/clojure-package/test/org/apache/clojure_mxnet/random_test.clj
index cc1cc3b..c4e9198 100644
--- a/contrib/clojure-package/test/org/apache/clojure_mxnet/random_test.clj
+++ b/contrib/clojure-package/test/org/apache/clojure_mxnet/random_test.clj
@@ -1,3 +1,20 @@
+;;
+;; Licensed to the Apache Software Foundation (ASF) under one or more
+;; contributor license agreements.  See the NOTICE file distributed with
+;; this work for additional information regarding copyright ownership.
+;; The ASF licenses this file to You under the Apache License, Version 2.0
+;; (the "License"); you may not use this file except in compliance with
+;; the License.  You may obtain a copy of the License at
+;;
+;;    http://www.apache.org/licenses/LICENSE-2.0
+;;
+;; Unless required by applicable law or agreed to in writing, software
+;; distributed under the License is distributed on an "AS IS" BASIS,
+;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+;; See the License for the specific language governing permissions and
+;; limitations under the License.
+;;
+
 (ns org.apache.clojure-mxnet.random-test
   (:require [org.apache.clojure-mxnet.context :as context]
             [org.apache.clojure-mxnet.ndarray :as ndarray]
diff --git 
a/contrib/clojure-package/test/org/apache/clojure_mxnet/shape_test.clj 
b/contrib/clojure-package/test/org/apache/clojure_mxnet/shape_test.clj
index 2306ae9..5828da9 100644
--- a/contrib/clojure-package/test/org/apache/clojure_mxnet/shape_test.clj
+++ b/contrib/clojure-package/test/org/apache/clojure_mxnet/shape_test.clj
@@ -1,3 +1,20 @@
+;;
+;; Licensed to the Apache Software Foundation (ASF) under one or more
+;; contributor license agreements.  See the NOTICE file distributed with
+;; this work for additional information regarding copyright ownership.
+;; The ASF licenses this file to You under the Apache License, Version 2.0
+;; (the "License"); you may not use this file except in compliance with
+;; the License.  You may obtain a copy of the License at
+;;
+;;    http://www.apache.org/licenses/LICENSE-2.0
+;;
+;; Unless required by applicable law or agreed to in writing, software
+;; distributed under the License is distributed on an "AS IS" BASIS,
+;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+;; See the License for the specific language governing permissions and
+;; limitations under the License.
+;;
+
 (ns org.apache.clojure-mxnet.shape-test
   (:require [org.apache.clojure-mxnet.shape :as mx-shape]
             [clojure.test :refer :all]))
diff --git 
a/contrib/clojure-package/test/org/apache/clojure_mxnet/symbol_test.clj 
b/contrib/clojure-package/test/org/apache/clojure_mxnet/symbol_test.clj
index c4a407e..9d37f07 100644
--- a/contrib/clojure-package/test/org/apache/clojure_mxnet/symbol_test.clj
+++ b/contrib/clojure-package/test/org/apache/clojure_mxnet/symbol_test.clj
@@ -1,3 +1,20 @@
+;;
+;; Licensed to the Apache Software Foundation (ASF) under one or more
+;; contributor license agreements.  See the NOTICE file distributed with
+;; this work for additional information regarding copyright ownership.
+;; The ASF licenses this file to You under the Apache License, Version 2.0
+;; (the "License"); you may not use this file except in compliance with
+;; the License.  You may obtain a copy of the License at
+;;
+;;    http://www.apache.org/licenses/LICENSE-2.0
+;;
+;; Unless required by applicable law or agreed to in writing, software
+;; distributed under the License is distributed on an "AS IS" BASIS,
+;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+;; See the License for the specific language governing permissions and
+;; limitations under the License.
+;;
+
 (ns org.apache.clojure-mxnet.symbol-test
   (:require [org.apache.clojure-mxnet.dtype :as dtype]
             [org.apache.clojure-mxnet.symbol :as sym]
diff --git 
a/contrib/clojure-package/test/org/apache/clojure_mxnet/test_util.clj 
b/contrib/clojure-package/test/org/apache/clojure_mxnet/test_util.clj
index 77f07ad..dcdbea6 100644
--- a/contrib/clojure-package/test/org/apache/clojure_mxnet/test_util.clj
+++ b/contrib/clojure-package/test/org/apache/clojure_mxnet/test_util.clj
@@ -1,3 +1,20 @@
+;;
+;; Licensed to the Apache Software Foundation (ASF) under one or more
+;; contributor license agreements.  See the NOTICE file distributed with
+;; this work for additional information regarding copyright ownership.
+;; The ASF licenses this file to You under the Apache License, Version 2.0
+;; (the "License"); you may not use this file except in compliance with
+;; the License.  You may obtain a copy of the License at
+;;
+;;    http://www.apache.org/licenses/LICENSE-2.0
+;;
+;; Unless required by applicable law or agreed to in writing, software
+;; distributed under the License is distributed on an "AS IS" BASIS,
+;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+;; See the License for the specific language governing permissions and
+;; limitations under the License.
+;;
+
 (ns org.apache.clojure-mxnet.test-util
   (:require [clojure.test :as t]))
 
diff --git 
a/contrib/clojure-package/test/org/apache/clojure_mxnet/util_test.clj 
b/contrib/clojure-package/test/org/apache/clojure_mxnet/util_test.clj
index d1ba40e..5551fab 100644
--- a/contrib/clojure-package/test/org/apache/clojure_mxnet/util_test.clj
+++ b/contrib/clojure-package/test/org/apache/clojure_mxnet/util_test.clj
@@ -1,3 +1,20 @@
+;;
+;; Licensed to the Apache Software Foundation (ASF) under one or more
+;; contributor license agreements.  See the NOTICE file distributed with
+;; this work for additional information regarding copyright ownership.
+;; The ASF licenses this file to You under the Apache License, Version 2.0
+;; (the "License"); you may not use this file except in compliance with
+;; the License.  You may obtain a copy of the License at
+;;
+;;    http://www.apache.org/licenses/LICENSE-2.0
+;;
+;; Unless required by applicable law or agreed to in writing, software
+;; distributed under the License is distributed on an "AS IS" BASIS,
+;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+;; See the License for the specific language governing permissions and
+;; limitations under the License.
+;;
+
 (ns org.apache.clojure-mxnet.util-test
   (:require [clojure.test :refer :all]
             [org.apache.clojure-mxnet.shape :as mx-shape]

Reply via email to