From db7f9756d25364b0a5aa3856135e79fb66a78b37 Mon Sep 17 00:00:00 2001 From: Jorge Arias Date: Wed, 19 Jun 2024 06:45:49 -0400 Subject: [PATCH] Update LICENSE to SPDX format and add Zetta-Commercial license (#11) Add Zetta-Commercial license Update code header comments with copyright and SPDX license reference The SPDX specification is a freely available international open standard (ISO/IEC 5692:2021) References: * https://spdx.dev/ * https://spdx.org/licenses/ * https://www.kernel.org/doc/html/latest/process/license-rules.html#license-identifier-syntax * https://spdx.dev/learn/handling-license-info/ * https://web.archive.org/web/20230417121907/https://01.org/blogs/jc415/2018/open-source-hacks-one-question-interviews-open-source-experts-how-use-spdx-headers --- LICENSE => LICENSES/LGPL-3.0-only | 0 LICENSES/Zetta-Commercial | 24 ++++++++++++++++++++++++ README.md | 10 ++++++++++ src/test/java/DTETest.java | 5 +++++ src/test/java/EnvioDTETest.java | 5 +++++ 5 files changed, 44 insertions(+) rename LICENSE => LICENSES/LGPL-3.0-only (100%) create mode 100644 LICENSES/Zetta-Commercial diff --git a/LICENSE b/LICENSES/LGPL-3.0-only similarity index 100% rename from LICENSE rename to LICENSES/LGPL-3.0-only diff --git a/LICENSES/Zetta-Commercial b/LICENSES/Zetta-Commercial new file mode 100644 index 0000000..7a1a101 --- /dev/null +++ b/LICENSES/Zetta-Commercial @@ -0,0 +1,24 @@ + ZETTA E.I.R.L. COMMERCIAL LICENSE + 19 June 2024 + +Licensees holding valid and current commercial of this work licenses may use +this software in accordance with the the terms contained in a written agreement +between you and Zetta E.I.R.L. Alternatively, the terms and conditions that were +accepted by the licensee when buying and/or downloading the software do apply. + +The Spanish version of this License is the official version. In case of any +discrepancies between the Spanish version and any translation, the Spanish +version shall prevail. + + LICENCIA COMERCIAL DE ZETTA E.I.R.L. + 19 de Junio 2024 + +Los licenciatarios titulares de licencias comerciales válidas y vigentes de esta +obra pueden utilizar este software de acuerdo con los términos contenidos en un +acuerdo escrito entre usted y Zetta E.I.R.L. Alternativamente, se aplican los +términos y condiciones que fueron aceptados por el licenciatario al comprar y/o +descargar el software. + +La versión en español de esta Licencia es la versión oficial. En caso de +cualquier discrepancia entre la versión en español y cualquier traducción, +prevalecerá la versión en español. diff --git a/README.md b/README.md index 6a3eb33..736baf0 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,13 @@ # sii-schemas-lib-java Repositorio público de librería con modelos Java generados desde shemas de Formato XML de Documentos Electrónicos distribuidos por el SII Chile + +## LICENSE + +The work is provided under: + + SPDX-License-Identifier: LGPL-3.0-only OR Zetta-Commercial + +See [LICENSES](LICENSES) for more details. + +All contributions to the work are subject to this LICENSE file. diff --git a/src/test/java/DTETest.java b/src/test/java/DTETest.java index 6c7a5ad..a992b1c 100644 --- a/src/test/java/DTETest.java +++ b/src/test/java/DTETest.java @@ -1,3 +1,8 @@ +/** + * Copyright (C) 2024 Jorge Arias Leal + * SPDX-License-Identifier: LGPL-3.0-only OR Zetta-Commercial + */ + import cl.sii.siidte.DTEDefType; import cl.sii.siidte.ObjectFactory; import org.junit.jupiter.api.Test; diff --git a/src/test/java/EnvioDTETest.java b/src/test/java/EnvioDTETest.java index e55395b..db73cd0 100644 --- a/src/test/java/EnvioDTETest.java +++ b/src/test/java/EnvioDTETest.java @@ -1,3 +1,8 @@ +/** + * Copyright (C) 2024 Jorge Arias Leal + * SPDX-License-Identifier: LGPL-3.0-only OR Zetta-Commercial + */ + import cl.sii.siidte.DTEDefType; import cl.sii.siidte.EnvioDTE; import cl.sii.siidte.MedioPagoType;