Update project templates to specify secondary license and fix readmes.

This commit is contained in:
Phil Hagelberg 2018-02-19 12:27:57 -08:00
parent 48d5f21506
commit 694691f782
6 changed files with 30 additions and 9 deletions

View file

@ -32,5 +32,12 @@ FIXME: listing of options this app accepts.
Copyright © {{year}} FIXME
Distributed under the Eclipse Public License either version 1.0 or (at
your option) any later version.
This program and the accompanying materials are made available under the
terms of the Eclipse Public License 2.0 which is available at
http://www.eclipse.org/legal/epl-2.0.
This Source Code may also be made available under the following Secondary
Licenses when the conditions for such availability set forth in the Eclipse
Public License, v. 2.0 are satisfied: GNU General Public License, version 2
with the GNU Classpath Exception which is
available at https://www.gnu.org/software/classpath/license.html.

View file

@ -1,7 +1,7 @@
(defproject {{raw-name}} "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:license {:name "EPL-2.0"
:license {:name "EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0"
:url "https://www.eclipse.org/legal/epl-2.0/"}
:dependencies [[org.clojure/clojure "1.9.0"]]
:main ^:skip-aot {{namespace}}

View file

@ -10,5 +10,12 @@ FIXME
Copyright © {{year}} FIXME
Distributed under the Eclipse Public License either version 1.0 or (at
your option) any later version.
This program and the accompanying materials are made available under the
terms of the Eclipse Public License 2.0 which is available at
http://www.eclipse.org/legal/epl-2.0.
This Source Code may also be made available under the following Secondary
Licenses when the conditions for such availability set forth in the Eclipse
Public License, v. 2.0 are satisfied: GNU General Public License, version 2
with the GNU Classpath Exception which is
available at https://www.gnu.org/software/classpath/license.html.

View file

@ -1,7 +1,7 @@
(defproject {{raw-name}} "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:license {:name "EPL-2.0"
:license {:name "EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0"
:url "https://www.eclipse.org/legal/epl-2.0/"}
:dependencies [[org.clojure/clojure "1.9.0"]]
:repl-options {:init-ns {{namespace}}})

View file

@ -21,5 +21,12 @@ FIXME: and add an example usage that actually makes sense:
Copyright © {{year}} FIXME
Distributed under the Eclipse Public License either version 1.0 or (at
your option) any later version.
This program and the accompanying materials are made available under the
terms of the Eclipse Public License 2.0 which is available at
http://www.eclipse.org/legal/epl-2.0.
This Source Code may also be made available under the following Secondary
Licenses when the conditions for such availability set forth in the Eclipse
Public License, v. 2.0 are satisfied: GNU General Public License, version 2
with the GNU Classpath Exception which is
available at https://www.gnu.org/software/classpath/license.html.

View file

@ -1,6 +1,6 @@
(defproject {{name}} "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:license {:name "EPL-2.0"
:license {:name "EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0"
:url "https://www.eclipse.org/legal/epl-2.0/"}
:eval-in-leiningen true)