From a71743bf168526f0f21a7955fa757f71233e90a7 Mon Sep 17 00:00:00 2001 From: Stephane Bouchet Date: Thu, 26 Sep 2024 14:29:04 +0200 Subject: [PATCH] test: use zipped projects (#918) * test: use zipped projects Signed-off-by: Stephane Bouchet * test: use zipped projects Signed-off-by: Stephane Bouchet --------- Signed-off-by: Stephane Bouchet --- .../utils/odo/OdoCliComponentTest.java | 27 +- src/it/projects/go.zip | Bin 0 -> 1209 bytes src/it/projects/go/.gitignore | 3 - src/it/projects/go/README.md | 3 - src/it/projects/go/go.mod | 3 - src/it/projects/go/main.go | 15 - src/it/projects/nodejs.zip | Bin 0 -> 15409 bytes src/it/projects/nodejs/.gitignore | 107 - src/it/projects/nodejs/LICENSE | 277 -- src/it/projects/nodejs/README.md | 24 - src/it/projects/nodejs/package-lock.json | 602 --- src/it/projects/nodejs/package.json | 17 - src/it/projects/nodejs/server.js | 66 - src/it/projects/nodejs/test/test.js | 21 - src/it/projects/springboot-rest.zip | Bin 0 -> 130169 bytes src/it/projects/springboot-rest/.gitignore | 17 - src/it/projects/springboot-rest/LICENSE | 202 - src/it/projects/springboot-rest/README.adoc | 62 - src/it/projects/springboot-rest/guide.adoc | 598 --- src/it/projects/springboot-rest/mvnw | 286 -- src/it/projects/springboot-rest/mvnw.cmd | 161 - src/it/projects/springboot-rest/pom.xml | 229 -- .../src/licenses/contents/Apache+License+20 | 202 - .../contents/BSD+2clause+Simplified+License | 367 -- ...on+Development+and+Distribution+License+11 | 849 ---- ...GNU+Public+License+v2+wClasspath+Exception | 819 ---- .../Eclipse+Public+License+Version+10 | 87 - ...nse+Version+2+with+the+Classpath+Exception | 363 -- ...GNU+Lesser+General+Public+License+v21+only | 502 --- .../src/licenses/contents/MIT+License | 381 -- .../contents/Mozilla+Public+License+11 | 381 -- .../src/licenses/contents/Public+Domain | 121 - .../src/licenses/contents/The+Asm+BSD+License | 419 -- .../src/licenses/licenses.html | 3525 ----------------- .../springboot-rest/src/licenses/licenses.xml | 1920 --------- .../openshift/booster/BoosterApplication.java | 34 - .../openshift/booster/service/Greeting.java | 37 - .../booster/service/GreetingEndpoint.java | 35 - .../src/main/resources/application.properties | 2 - .../src/main/resources/static/index.html | 57 - .../AbstractBoosterApplicationTest.java | 51 - .../java/io/openshift/booster/LocalTest.java | 34 - .../io/openshift/booster/OpenShiftIT.java | 36 - .../src/test/resources/arquillian.xml | 8 - .../src/test/resources/logback-test.xml | 5 - 45 files changed, 24 insertions(+), 12931 deletions(-) create mode 100644 src/it/projects/go.zip delete mode 100644 src/it/projects/go/.gitignore delete mode 100644 src/it/projects/go/README.md delete mode 100644 src/it/projects/go/go.mod delete mode 100644 src/it/projects/go/main.go create mode 100644 src/it/projects/nodejs.zip delete mode 100644 src/it/projects/nodejs/.gitignore delete mode 100644 src/it/projects/nodejs/LICENSE delete mode 100644 src/it/projects/nodejs/README.md delete mode 100644 src/it/projects/nodejs/package-lock.json delete mode 100644 src/it/projects/nodejs/package.json delete mode 100644 src/it/projects/nodejs/server.js delete mode 100644 src/it/projects/nodejs/test/test.js create mode 100644 src/it/projects/springboot-rest.zip delete mode 100644 src/it/projects/springboot-rest/.gitignore delete mode 100644 src/it/projects/springboot-rest/LICENSE delete mode 100644 src/it/projects/springboot-rest/README.adoc delete mode 100644 src/it/projects/springboot-rest/guide.adoc delete mode 100644 src/it/projects/springboot-rest/mvnw delete mode 100644 src/it/projects/springboot-rest/mvnw.cmd delete mode 100644 src/it/projects/springboot-rest/pom.xml delete mode 100644 src/it/projects/springboot-rest/src/licenses/contents/Apache+License+20 delete mode 100644 src/it/projects/springboot-rest/src/licenses/contents/BSD+2clause+Simplified+License delete mode 100644 src/it/projects/springboot-rest/src/licenses/contents/Common+Development+and+Distribution+License+11 delete mode 100644 src/it/projects/springboot-rest/src/licenses/contents/Common+Development+and+Distribution+License+CDDL+and+GNU+Public+License+v2+wClasspath+Exception delete mode 100644 src/it/projects/springboot-rest/src/licenses/contents/Eclipse+Public+License+Version+10 delete mode 100644 src/it/projects/springboot-rest/src/licenses/contents/GNU+General+Public+License+Version+2+with+the+Classpath+Exception delete mode 100644 src/it/projects/springboot-rest/src/licenses/contents/GNU+Lesser+General+Public+License+v21+only delete mode 100644 src/it/projects/springboot-rest/src/licenses/contents/MIT+License delete mode 100644 src/it/projects/springboot-rest/src/licenses/contents/Mozilla+Public+License+11 delete mode 100644 src/it/projects/springboot-rest/src/licenses/contents/Public+Domain delete mode 100644 src/it/projects/springboot-rest/src/licenses/contents/The+Asm+BSD+License delete mode 100644 src/it/projects/springboot-rest/src/licenses/licenses.html delete mode 100644 src/it/projects/springboot-rest/src/licenses/licenses.xml delete mode 100644 src/it/projects/springboot-rest/src/main/java/io/openshift/booster/BoosterApplication.java delete mode 100644 src/it/projects/springboot-rest/src/main/java/io/openshift/booster/service/Greeting.java delete mode 100644 src/it/projects/springboot-rest/src/main/java/io/openshift/booster/service/GreetingEndpoint.java delete mode 100644 src/it/projects/springboot-rest/src/main/resources/application.properties delete mode 100644 src/it/projects/springboot-rest/src/main/resources/static/index.html delete mode 100644 src/it/projects/springboot-rest/src/test/java/io/openshift/booster/AbstractBoosterApplicationTest.java delete mode 100644 src/it/projects/springboot-rest/src/test/java/io/openshift/booster/LocalTest.java delete mode 100644 src/it/projects/springboot-rest/src/test/java/io/openshift/booster/OpenShiftIT.java delete mode 100644 src/it/projects/springboot-rest/src/test/resources/arquillian.xml delete mode 100644 src/it/projects/springboot-rest/src/test/resources/logback-test.xml diff --git a/src/it/java/org/jboss/tools/intellij/openshift/utils/odo/OdoCliComponentTest.java b/src/it/java/org/jboss/tools/intellij/openshift/utils/odo/OdoCliComponentTest.java index 691cf87b3..295fe963d 100644 --- a/src/it/java/org/jboss/tools/intellij/openshift/utils/odo/OdoCliComponentTest.java +++ b/src/it/java/org/jboss/tools/intellij/openshift/utils/odo/OdoCliComponentTest.java @@ -10,9 +10,13 @@ ******************************************************************************/ package org.jboss.tools.intellij.openshift.utils.odo; +import com.intellij.util.io.ZipUtil; import com.redhat.devtools.intellij.common.utils.ExecHelper; +import org.apache.commons.io.FileUtils; import org.junit.After; +import org.junit.AfterClass; import org.junit.Before; +import org.junit.BeforeClass; import org.junit.Test; import org.junit.runner.RunWith; import org.junit.runners.Parameterized; @@ -20,6 +24,7 @@ import java.io.File; import java.io.IOException; import java.net.ServerSocket; +import java.nio.file.Path; import java.util.Arrays; import java.util.List; import java.util.concurrent.ExecutionException; @@ -30,12 +35,13 @@ @RunWith(Parameterized.class) public class OdoCliComponentTest extends OdoCliTest { - private static final String COMPONENT_PATH = "src/it/projects/go"; + private static final String PROJECT_NAME = "go"; + private static final String COMPONENT_PATH = "src/it/projects/"; private final ComponentFeature feature; private String project; private String component; private String service; - private final String projectPath = new File(COMPONENT_PATH).getAbsolutePath(); + private final String projectPath = new File(COMPONENT_PATH + PROJECT_NAME).getAbsolutePath(); public OdoCliComponentTest(ComponentFeature feature, String label) { this.feature = feature; @@ -49,6 +55,18 @@ public static Iterable data() { }); } + @BeforeClass + public static void initTestProject() throws IOException { + Path destDir = new File(COMPONENT_PATH).toPath(); + Path srcFile = new File(COMPONENT_PATH + PROJECT_NAME + ".zip").toPath(); + ZipUtil.extract(srcFile, destDir, null); + } + + @AfterClass + public static void deleteTestProject() throws IOException { + FileUtils.deleteDirectory(new File(COMPONENT_PATH)); + } + @Before public void initTestEnv() throws IOException { project = PROJECT_PREFIX + random.nextInt(); @@ -127,13 +145,16 @@ public void checkCreateComponentAndLinkService() throws IOException, ExecutionEx Binding binding = odo.link(projectPath, target); assertNotNull(binding); List bindings = odo.listBindings(projectPath); + assertNotNull(bindings); assertEquals(1, bindings.size()); - //cleanup + // cleanup odo.deleteBinding(projectPath, binding.getName()); bindings = odo.listBindings(projectPath); + assertNotNull(bindings); assertEquals(0, bindings.size()); odo.deleteService(project, deployedService); deployedServices = odo.getServices(project); + assertNotNull(deployedServices); assertEquals(0, deployedServices.size()); } diff --git a/src/it/projects/go.zip b/src/it/projects/go.zip new file mode 100644 index 0000000000000000000000000000000000000000..08d896839403da9623759442b51cf01d12f4c50d GIT binary patch literal 1209 zcmWIWW@Zs#0D-7R^GGlQN-#4hFr??}hlcPnu)it$nD!QkL3C*aHv=P!?ombtFcAPY zfP;a9Vfs`9xBwWr+=T%)j zPoHzwe9u3BR1~72=c%LRsT-uBaq7I6uU??XY5gFN^Us+W0=(HdwqAebpbxYPWF2;g zd;`jGK^&5sn3<=So)34%u_CO_@a?nBK5QV+mVSTz4mpu0N+RXlH#fELNP2ml5U}ES zKBwbGdZ?AT^NV_YLAg`AZTG}q+-_ckz!eSVmIe&4xyn)clVdBVX0Z_nISnkv=3{%5O>TKSFlciOMN zep&nV>z!ZBpb+tmtdiIT^fSoc*h9nyD8mT}k@S4M+l=2_2BkMlYwHGD65 zpF4lm9~Mu3XLL_^>biaK7Mi@d^z!GOJ1%_|<@w5Ub_Y0iHa&2THU-)SvJv4H;*VOd`y<(>qWJ7`$}^QADMFh=H*5kDMSu=^qA` zG=fY78c1|*fH@UrGIGR%5;P1fX*>lnnaJdgZZ2{pfszFbENQ&M2zD`Xi3HhLPz)o7 jIw*!=U`b;J6WCbd<2%5cl?|kw6$rNi-SiG<00RR6h;(RS literal 0 HcmV?d00001 diff --git a/src/it/projects/go/.gitignore b/src/it/projects/go/.gitignore deleted file mode 100644 index 4e8bab5d0..000000000 --- a/src/it/projects/go/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -.odo/ -main -main.exe \ No newline at end of file diff --git a/src/it/projects/go/README.md b/src/it/projects/go/README.md deleted file mode 100644 index 24e8dc1c3..000000000 --- a/src/it/projects/go/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# devfile-stack-go - -A starter project for go diff --git a/src/it/projects/go/go.mod b/src/it/projects/go/go.mod deleted file mode 100644 index 86933fe9e..000000000 --- a/src/it/projects/go/go.mod +++ /dev/null @@ -1,3 +0,0 @@ -module github.com/devfile-samples/devfile-stack-go - -go 1.16 diff --git a/src/it/projects/go/main.go b/src/it/projects/go/main.go deleted file mode 100644 index 41eb67fa9..000000000 --- a/src/it/projects/go/main.go +++ /dev/null @@ -1,15 +0,0 @@ -package main - -import ( - "fmt" - "net/http" -) - -func main() { - http.HandleFunc("/", HelloServer) - http.ListenAndServe("0.0.0.0:8080", nil) -} - -func HelloServer(w http.ResponseWriter, r *http.Request) { - fmt.Fprintf(w, "Hello, %s!", r.URL.Path[1:]) -} diff --git a/src/it/projects/nodejs.zip b/src/it/projects/nodejs.zip new file mode 100644 index 0000000000000000000000000000000000000000..682512326676e6b1043e7c5bfcbad7cbc3db0711 GIT binary patch literal 15409 zcmb7rW0Yn~wr$#|wCzgUwv9^Lwr$(CtxDUr%}U#u?^NGDea`LCZ@hkMk1zJO|I8g@ zMXVhwR?I0U2@HY^@Y~>$>3;m<&p#V*0DJ&z8$%;=2U=w%SO9QMy%XbV`y1omcPCe9 z06-AxK|p|iG;;p{fdGI2NJ;t�DGy;M-py4o3FQM)ox34*x*&(LFJy`vd9s{ol}v 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⩔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 y)%E|9E&lJ=e~*FRXGMQnp&YP literal 0 HcmV?d00001 diff --git a/src/it/projects/nodejs/.gitignore b/src/it/projects/nodejs/.gitignore deleted file mode 100644 index fa257d464..000000000 --- a/src/it/projects/nodejs/.gitignore +++ /dev/null @@ -1,107 +0,0 @@ -# Logs -logs -*.log -npm-debug.log* -yarn-debug.log* -yarn-error.log* -lerna-debug.log* - -# Diagnostic reports (https://nodejs.org/api/report.html) -report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json - -# Runtime data -pids -*.pid -*.seed -*.pid.lock - -# Directory for instrumented libs generated by jscoverage/JSCover -lib-cov - -# Coverage directory used by tools like istanbul -coverage -*.lcov - -# nyc test coverage -.nyc_output - -# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) -.grunt - -# Bower dependency directory (https://bower.io/) -bower_components - -# node-waf configuration -.lock-wscript - -# Compiled binary addons (https://nodejs.org/api/addons.html) -build/Release - -# Dependency directories -node_modules/ -jspm_packages/ - -# TypeScript v1 declaration files -typings/ - -# TypeScript cache -*.tsbuildinfo - -# Optional npm cache directory -.npm - -# Optional eslint cache -.eslintcache - -# Microbundle cache -.rpt2_cache/ -.rts2_cache_cjs/ -.rts2_cache_es/ -.rts2_cache_umd/ - -# Optional REPL history -.node_repl_history - -# Output of 'npm pack' -*.tgz - -# Yarn Integrity file -.yarn-integrity - -# dotenv environment variables file -.env -.env.test - -# parcel-bundler cache (https://parceljs.org/) -.cache - -# Next.js build output -.next - -# Nuxt.js build / generate output -.nuxt -dist - -# Gatsby files -.cache/ -# Comment in the public line in if your project uses Gatsby and *not* Next.js -# https://nextjs.org/blog/next-9-1#public-directory-support -# public - -# vuepress build output -.vuepress/dist - -# Serverless directories -.serverless/ - -# FuseBox cache -.fusebox/ - -# DynamoDB Local files -.dynamodb/ - -# TernJS port file -.tern-port - -.odo/odo-file-index.json -.odo \ No newline at end of file diff --git a/src/it/projects/nodejs/LICENSE b/src/it/projects/nodejs/LICENSE deleted file mode 100644 index e48e09634..000000000 --- a/src/it/projects/nodejs/LICENSE +++ /dev/null @@ -1,277 +0,0 @@ -Eclipse Public License - v 2.0 - - THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE - PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION - OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. - -1. DEFINITIONS - -"Contribution" means: - - a) in the case of the initial Contributor, the initial content - Distributed under this Agreement, and - - b) in the case of each subsequent Contributor: - i) changes to the Program, and - ii) additions to the Program; - where such changes and/or additions to the Program originate from - and are Distributed by that particular Contributor. A Contribution - "originates" from a Contributor if it was added to the Program by - such Contributor itself or anyone acting on such Contributor's behalf. - Contributions do not include changes or additions to the Program that - are not Modified Works. - -"Contributor" means any person or entity that Distributes the Program. - -"Licensed Patents" mean patent claims licensable by a Contributor which -are necessarily infringed by the use or sale of its Contribution alone -or when combined with the Program. - -"Program" means the Contributions Distributed in accordance with this -Agreement. - -"Recipient" means anyone who receives the Program under this Agreement -or any Secondary License (as applicable), including Contributors. - -"Derivative Works" shall mean any work, whether in Source Code or other -form, that is based on (or derived from) the Program and for which the -editorial revisions, annotations, elaborations, or other modifications -represent, as a whole, an original work of authorship. - -"Modified Works" shall mean any work in Source Code or other form that -results from an addition to, deletion from, or modification of the -contents of the Program, including, for purposes of clarity any new file -in Source Code form that contains any contents of the Program. Modified -Works shall not include works that contain only declarations, -interfaces, types, classes, structures, or files of the Program solely -in each case in order to link to, bind by name, or subclass the Program -or Modified Works thereof. - -"Distribute" means the acts of a) distributing or b) making available -in any manner that enables the transfer of a copy. - -"Source Code" means the form of a Program preferred for making -modifications, including but not limited to software source code, -documentation source, and configuration files. - -"Secondary License" means either the GNU General Public License, -Version 2.0, or any later versions of that license, including any -exceptions or additional permissions as identified by the initial -Contributor. - -2. GRANT OF RIGHTS - - a) Subject to the terms of this Agreement, each Contributor hereby - grants Recipient a non-exclusive, worldwide, royalty-free copyright - license to reproduce, prepare Derivative Works of, publicly display, - publicly perform, Distribute and sublicense the Contribution of such - Contributor, if any, and such Derivative Works. - - b) Subject to the terms of this Agreement, each Contributor hereby - grants Recipient a non-exclusive, worldwide, royalty-free patent - license under Licensed Patents to make, use, sell, offer to sell, - import and otherwise transfer the Contribution of such Contributor, - if any, in Source Code or other form. This patent license shall - apply to the combination of the Contribution and the Program if, at - the time the Contribution is added by the Contributor, such addition - of the Contribution causes such combination to be covered by the - Licensed Patents. The patent license shall not apply to any other - combinations which include the Contribution. No hardware per se is - licensed hereunder. - - c) Recipient understands that although each Contributor grants the - licenses to its Contributions set forth herein, no assurances are - provided by any Contributor that the Program does not infringe the - patent or other intellectual property rights of any other entity. - Each Contributor disclaims any liability to Recipient for claims - brought by any other entity based on infringement of intellectual - property rights or otherwise. As a condition to exercising the - rights and licenses granted hereunder, each Recipient hereby - assumes sole responsibility to secure any other intellectual - property rights needed, if any. For example, if a third party - patent license is required to allow Recipient to Distribute the - Program, it is Recipient's responsibility to acquire that license - before distributing the Program. - - d) Each Contributor represents that to its knowledge it has - sufficient copyright rights in its Contribution, if any, to grant - the copyright license set forth in this Agreement. - - e) Notwithstanding the terms of any Secondary License, no - Contributor makes additional grants to any Recipient (other than - those set forth in this Agreement) as a result of such Recipient's - receipt of the Program under the terms of a Secondary License - (if permitted under the terms of Section 3). - -3. REQUIREMENTS - -3.1 If a Contributor Distributes the Program in any form, then: - - a) the Program must also be made available as Source Code, in - accordance with section 3.2, and the Contributor must accompany - the Program with a statement that the Source Code for the Program - is available under this Agreement, and informs Recipients how to - obtain it in a reasonable manner on or through a medium customarily - used for software exchange; and - - b) the Contributor may Distribute the Program under a license - different than this Agreement, provided that such license: - i) effectively disclaims on behalf of all other Contributors all - warranties and conditions, express and implied, including - warranties or conditions of title and non-infringement, and - implied warranties or conditions of merchantability and fitness - for a particular purpose; - - ii) effectively excludes on behalf of all other Contributors all - liability for damages, including direct, indirect, special, - incidental and consequential damages, such as lost profits; - - iii) does not attempt to limit or alter the recipients' rights - in the Source Code under section 3.2; and - - iv) requires any subsequent distribution of the Program by any - party to be under a license that satisfies the requirements - of this section 3. - -3.2 When the Program is Distributed as Source Code: - - a) it must be made available under this Agreement, or if the - Program (i) is combined with other material in a separate file or - files made available under a Secondary License, and (ii) the initial - Contributor attached to the Source Code the notice described in - Exhibit A of this Agreement, then the Program may be made available - under the terms of such Secondary Licenses, and - - b) a copy of this Agreement must be included with each copy of - the Program. - -3.3 Contributors may not remove or alter any copyright, patent, -trademark, attribution notices, disclaimers of warranty, or limitations -of liability ("notices") contained within the Program from any copy of -the Program which they Distribute, provided that Contributors may add -their own appropriate notices. - -4. COMMERCIAL DISTRIBUTION - -Commercial distributors of software may accept certain responsibilities -with respect to end users, business partners and the like. While this -license is intended to facilitate the commercial use of the Program, -the Contributor who includes the Program in a commercial product -offering should do so in a manner which does not create potential -liability for other Contributors. Therefore, if a Contributor includes -the Program in a commercial product offering, such Contributor -("Commercial Contributor") hereby agrees to defend and indemnify every -other Contributor ("Indemnified Contributor") against any losses, -damages and costs (collectively "Losses") arising from claims, lawsuits -and other legal actions brought by a third party against the Indemnified -Contributor to the extent caused by the acts or omissions of such -Commercial Contributor in connection with its distribution of the Program -in a commercial product offering. The obligations in this section do not -apply to any claims or Losses relating to any actual or alleged -intellectual property infringement. In order to qualify, an Indemnified -Contributor must: a) promptly notify the Commercial Contributor in -writing of such claim, and b) allow the Commercial Contributor to control, -and cooperate with the Commercial Contributor in, the defense and any -related settlement negotiations. The Indemnified Contributor may -participate in any such claim at its own expense. - -For example, a Contributor might include the Program in a commercial -product offering, Product X. That Contributor is then a Commercial -Contributor. If that Commercial Contributor then makes performance -claims, or offers warranties related to Product X, those performance -claims and warranties are such Commercial Contributor's responsibility -alone. Under this section, the Commercial Contributor would have to -defend claims against the other Contributors related to those performance -claims and warranties, and if a court requires any other Contributor to -pay any damages as a result, the Commercial Contributor must pay -those damages. - -5. NO WARRANTY - -EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, AND TO THE EXTENT -PERMITTED BY APPLICABLE LAW, THE PROGRAM IS PROVIDED ON AN "AS IS" -BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR -IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF -TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR -PURPOSE. Each Recipient is solely responsible for determining the -appropriateness of using and distributing the Program and assumes all -risks associated with its exercise of rights under this Agreement, -including but not limited to the risks and costs of program errors, -compliance with applicable laws, damage to or loss of data, programs -or equipment, and unavailability or interruption of operations. - -6. DISCLAIMER OF LIABILITY - -EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, AND TO THE EXTENT -PERMITTED BY APPLICABLE LAW, NEITHER RECIPIENT NOR ANY CONTRIBUTORS -SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, -EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST -PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE -EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGES. - -7. GENERAL - -If any provision of this Agreement is invalid or unenforceable under -applicable law, it shall not affect the validity or enforceability of -the remainder of the terms of this Agreement, and without further -action by the parties hereto, such provision shall be reformed to the -minimum extent necessary to make such provision valid and enforceable. - -If Recipient institutes patent litigation against any entity -(including a cross-claim or counterclaim in a lawsuit) alleging that the -Program itself (excluding combinations of the Program with other software -or hardware) infringes such Recipient's patent(s), then such Recipient's -rights granted under Section 2(b) shall terminate as of the date such -litigation is filed. - -All Recipient's rights under this Agreement shall terminate if it -fails to comply with any of the material terms or conditions of this -Agreement and does not cure such failure in a reasonable period of -time after becoming aware of such noncompliance. If all Recipient's -rights under this Agreement terminate, Recipient agrees to cease use -and distribution of the Program as soon as reasonably practicable. -However, Recipient's obligations under this Agreement and any licenses -granted by Recipient relating to the Program shall continue and survive. - -Everyone is permitted to copy and distribute copies of this Agreement, -but in order to avoid inconsistency the Agreement is copyrighted and -may only be modified in the following manner. The Agreement Steward -reserves the right to publish new versions (including revisions) of -this Agreement from time to time. No one other than the Agreement -Steward has the right to modify this Agreement. The Eclipse Foundation -is the initial Agreement Steward. The Eclipse Foundation may assign the -responsibility to serve as the Agreement Steward to a suitable separate -entity. Each new version of the Agreement will be given a distinguishing -version number. The Program (including Contributions) may always be -Distributed subject to the version of the Agreement under which it was -received. In addition, after a new version of the Agreement is published, -Contributor may elect to Distribute the Program (including its -Contributions) under the new version. - -Except as expressly stated in Sections 2(a) and 2(b) above, Recipient -receives no rights or licenses to the intellectual property of any -Contributor under this Agreement, whether expressly, by implication, -estoppel or otherwise. All rights in the Program not expressly granted -under this Agreement are reserved. Nothing in this Agreement is intended -to be enforceable by any entity that is not a Contributor or Recipient. -No third-party beneficiary rights are created under this Agreement. - -Exhibit A - Form of Secondary Licenses Notice - -"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: {name license(s), -version(s), and exceptions or additional permissions here}." - - Simply including a copy of this Agreement, including this Exhibit A - is not sufficient to license the Source Code under Secondary Licenses. - - If it is not possible or desirable to put the notice in a particular - file, then You may include the notice in a location (such as a LICENSE - file in a relevant directory) where a recipient would be likely to - look for such a notice. - - You may add additional accurate notices of copyright ownership. diff --git a/src/it/projects/nodejs/README.md b/src/it/projects/nodejs/README.md deleted file mode 100644 index 6422a09fb..000000000 --- a/src/it/projects/nodejs/README.md +++ /dev/null @@ -1,24 +0,0 @@ -# nodejs-starter - -This is a sample starter project that provides you with a basic Express app and a sample test in a `/test` sub directory. This sample project uses `Express v4.17.x` and enables health checking and application metrics out of the box. You can override or enhance the following endpoints by configuring your own health checks in your application. - -## Health checking - -Health-checking enables the cloud platform to determine the `readiness` and `liveness` of your application. - - These endpoints will be available for you to use: - -- Readiness endpoint: http://localhost:3000/ready -- Liveness endpoint: http://localhost:3000/live - -## Application metrics - -The [prom-client](https://www.npmjs.com/package/prom-client) module will collect a wide range of resource-centric (CPU, memory) and application-centric (HTTP request responsiveness) metrics from your application, and then expose them as multi-dimensional time-series data through an application endpoint for Prometheus to scrape and aggregate. - - This endpoints will be available for you to use: - -- Metrics endpoint: http://localhost:3000/metrics - -## License - -This stack is licensed under the [EPL 2.0](./LICENSE) license. diff --git a/src/it/projects/nodejs/package-lock.json b/src/it/projects/nodejs/package-lock.json deleted file mode 100644 index a36bc32ed..000000000 --- a/src/it/projects/nodejs/package-lock.json +++ /dev/null @@ -1,602 +0,0 @@ -{ - "name": "nodejs-starter", - "version": "1.0.0", - "lockfileVersion": 3, - "requires": true, - "packages": { - "": { - "name": "nodejs-starter", - "version": "1.0.0", - "license": "EPL-2.0", - "dependencies": { - "express": "^4.17.1", - "pino": "^6.2.1", - "pino-http": "^5.1.0", - "prom-client": "^12.0.0" - } - }, - "node_modules/accepts": { - "version": "1.3.7", - "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz", - "integrity": "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==", - "dependencies": { - "mime-types": "~2.1.24", - "negotiator": "0.6.2" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/array-flatten": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", - "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=" - }, - "node_modules/atomic-sleep": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/atomic-sleep/-/atomic-sleep-1.0.0.tgz", - "integrity": "sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==", - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/bintrees": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/bintrees/-/bintrees-1.0.1.tgz", - "integrity": "sha1-DmVcm5wkNeqraL9AJyJtK1WjRSQ=" - }, - "node_modules/body-parser": { - "version": "1.19.0", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz", - "integrity": "sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==", - "dependencies": { - "bytes": "3.1.0", - "content-type": "~1.0.4", - "debug": "2.6.9", - "depd": "~1.1.2", - "http-errors": "1.7.2", - "iconv-lite": "0.4.24", - "on-finished": "~2.3.0", - "qs": "6.7.0", - "raw-body": "2.4.0", - "type-is": "~1.6.17" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/bytes": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz", - "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/content-disposition": { - "version": "0.5.3", - "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz", - "integrity": "sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==", - "dependencies": { - "safe-buffer": "5.1.2" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/content-type": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", - "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/cookie": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz", - "integrity": "sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/cookie-signature": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", - "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=" - }, - "node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/depd": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", - "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/destroy": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", - "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=" - }, - "node_modules/ee-first": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", - "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" - }, - "node_modules/encodeurl": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", - "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/escape-html": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", - "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=" - }, - "node_modules/etag": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", - "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/express": { - "version": "4.17.1", - "resolved": "https://registry.npmjs.org/express/-/express-4.17.1.tgz", - "integrity": "sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g==", - "dependencies": { - "accepts": "~1.3.7", - "array-flatten": "1.1.1", - "body-parser": "1.19.0", - "content-disposition": "0.5.3", - "content-type": "~1.0.4", - "cookie": "0.4.0", - "cookie-signature": "1.0.6", - "debug": "2.6.9", - "depd": "~1.1.2", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "finalhandler": "~1.1.2", - "fresh": "0.5.2", - "merge-descriptors": "1.0.1", - "methods": "~1.1.2", - "on-finished": "~2.3.0", - "parseurl": "~1.3.3", - "path-to-regexp": "0.1.7", - "proxy-addr": "~2.0.5", - "qs": "6.7.0", - "range-parser": "~1.2.1", - "safe-buffer": "5.1.2", - "send": "0.17.1", - "serve-static": "1.14.1", - "setprototypeof": "1.1.1", - "statuses": "~1.5.0", - "type-is": "~1.6.18", - "utils-merge": "1.0.1", - "vary": "~1.1.2" - }, - "engines": { - "node": ">= 0.10.0" - } - }, - "node_modules/fast-redact": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/fast-redact/-/fast-redact-2.0.0.tgz", - "integrity": "sha512-zxpkULI9W9MNTK2sJ3BpPQrTEXFNESd2X6O1tXMFpK/XM0G5c5Rll2EVYZH2TqI3xRGK/VaJ+eEOt7pnENJpeA==", - "engines": { - "node": ">=6" - } - }, - "node_modules/fast-safe-stringify": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/fast-safe-stringify/-/fast-safe-stringify-2.0.7.tgz", - "integrity": "sha512-Utm6CdzT+6xsDk2m8S6uL8VHxNwI6Jub+e9NYTcAms28T84pTa25GJQV9j0CY0N1rM8hK4x6grpF2BQf+2qwVA==" - }, - "node_modules/fast-url-parser": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/fast-url-parser/-/fast-url-parser-1.1.3.tgz", - "integrity": "sha1-9K8+qfNNiicc9YrSs3WfQx8LMY0=", - "dependencies": { - "punycode": "^1.3.2" - } - }, - "node_modules/finalhandler": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", - "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", - "dependencies": { - "debug": "2.6.9", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "on-finished": "~2.3.0", - "parseurl": "~1.3.3", - "statuses": "~1.5.0", - "unpipe": "~1.0.0" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/flatstr": { - "version": "1.0.12", - "resolved": "https://registry.npmjs.org/flatstr/-/flatstr-1.0.12.tgz", - "integrity": "sha512-4zPxDyhCyiN2wIAtSLI6gc82/EjqZc1onI4Mz/l0pWrAlsSfYH/2ZIcU+e3oA2wDwbzIWNKwa23F8rh6+DRWkw==" - }, - "node_modules/forwarded": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz", - "integrity": "sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ=", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/fresh": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", - "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/http-errors": { - "version": "1.7.2", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz", - "integrity": "sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==", - "dependencies": { - "depd": "~1.1.2", - "inherits": "2.0.3", - "setprototypeof": "1.1.1", - "statuses": ">= 1.5.0 < 2", - "toidentifier": "1.0.0" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" - }, - "node_modules/ipaddr.js": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", - "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/media-typer": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", - "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/merge-descriptors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", - "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=" - }, - "node_modules/methods": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", - "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/mime": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", - "bin": { - "mime": "cli.js" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/mime-db": { - "version": "1.44.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.44.0.tgz", - "integrity": "sha512-/NOTfLrsPBVeH7YtFPgsVWveuL+4SjjYxaQ1xtM1KMFj7HdxlBlxeyNLzhyJVx7r4rZGJAZ/6lkKCitSc/Nmpg==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/mime-types": { - "version": "2.1.27", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.27.tgz", - "integrity": "sha512-JIhqnCasI9yD+SsmkquHBxTSEuZdQX5BuQnS2Vc7puQQQ+8yiP5AY5uWhpdv4YL4VM5c6iliiYWPgJ/nJQLp7w==", - "dependencies": { - "mime-db": "1.44.0" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" - }, - "node_modules/negotiator": { - "version": "0.6.2", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz", - "integrity": "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/on-finished": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", - "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", - "dependencies": { - "ee-first": "1.1.1" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/parseurl": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", - "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/path-to-regexp": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", - "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=" - }, - "node_modules/pino": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/pino/-/pino-6.2.1.tgz", - "integrity": "sha512-5F5A+G25Ex2rMOBEe3XYGyLSF4dikQZsFvPojwsqnDBX+rfg7+kw9s5i7pHuVAJImekjwb+MR9jQyHWPLENlvQ==", - "dependencies": { - "fast-redact": "^2.0.0", - "fast-safe-stringify": "^2.0.7", - "flatstr": "^1.0.12", - "pino-std-serializers": "^2.4.2", - "quick-format-unescaped": "^4.0.1", - "sonic-boom": "^1.0.0" - }, - "bin": { - "pino": "bin.js" - } - }, - "node_modules/pino-http": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/pino-http/-/pino-http-5.1.0.tgz", - "integrity": "sha512-75LX9GxvauF6g+XqXo/yEIltEppSdMnk0xT+oz3j28hNDIaxiQHFaZKxvnvunfUZRq/xQJdTcEHFOMhb8IxHjw==", - "dependencies": { - "fast-url-parser": "^1.1.3", - "pino": "^6.0.0", - "pino-std-serializers": "^2.4.0" - } - }, - "node_modules/pino-std-serializers": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/pino-std-serializers/-/pino-std-serializers-2.4.2.tgz", - "integrity": "sha512-WaL504dO8eGs+vrK+j4BuQQq6GLKeCCcHaMB2ItygzVURcL1CycwNEUHTD/lHFHs/NL5qAz2UKrjYWXKSf4aMQ==" - }, - "node_modules/prom-client": { - "version": "12.0.0", - "resolved": "https://registry.npmjs.org/prom-client/-/prom-client-12.0.0.tgz", - "integrity": "sha512-JbzzHnw0VDwCvoqf8y1WDtq4wSBAbthMB1pcVI/0lzdqHGJI3KBJDXle70XK+c7Iv93Gihqo0a5LlOn+g8+DrQ==", - "dependencies": { - "tdigest": "^0.1.1" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/proxy-addr": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.6.tgz", - "integrity": "sha512-dh/frvCBVmSsDYzw6n926jv974gddhkFPfiN8hPOi30Wax25QZyZEGveluCgliBnqmuM+UJmBErbAUFIoDbjOw==", - "dependencies": { - "forwarded": "~0.1.2", - "ipaddr.js": "1.9.1" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/punycode": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", - "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=" - }, - "node_modules/qs": { - "version": "6.7.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz", - "integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==", - "engines": { - "node": ">=0.6" - } - }, - "node_modules/quick-format-unescaped": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/quick-format-unescaped/-/quick-format-unescaped-4.0.1.tgz", - "integrity": "sha512-RyYpQ6Q5/drsJyOhrWHYMWTedvjTIat+FTwv0K4yoUxzvekw2aRHMQJLlnvt8UantkZg2++bEzD9EdxXqkWf4A==" - }, - "node_modules/range-parser": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", - "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/raw-body": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.0.tgz", - "integrity": "sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q==", - "dependencies": { - "bytes": "3.1.0", - "http-errors": "1.7.2", - "iconv-lite": "0.4.24", - "unpipe": "1.0.0" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - }, - "node_modules/safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" - }, - "node_modules/send": { - "version": "0.17.1", - "resolved": "https://registry.npmjs.org/send/-/send-0.17.1.tgz", - "integrity": "sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==", - "dependencies": { - "debug": "2.6.9", - "depd": "~1.1.2", - "destroy": "~1.0.4", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "fresh": "0.5.2", - "http-errors": "~1.7.2", - "mime": "1.6.0", - "ms": "2.1.1", - "on-finished": "~2.3.0", - "range-parser": "~1.2.1", - "statuses": "~1.5.0" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/send/node_modules/ms": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", - "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==" - }, - "node_modules/serve-static": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.14.1.tgz", - "integrity": "sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg==", - "dependencies": { - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "parseurl": "~1.3.3", - "send": "0.17.1" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/setprototypeof": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz", - "integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==" - }, - "node_modules/sonic-boom": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/sonic-boom/-/sonic-boom-1.0.1.tgz", - "integrity": "sha512-o9tx+bonVEXSaPtptyXQXpP8l6UV9Bi3im2geZskvWw2a/o/hrbWI7EBbbv+rOx6Hubnzun9GgH4WfbgEA3MFQ==", - "dependencies": { - "atomic-sleep": "^1.0.0", - "flatstr": "^1.0.12" - } - }, - "node_modules/statuses": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", - "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/tdigest": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/tdigest/-/tdigest-0.1.1.tgz", - "integrity": "sha1-Ljyyw56kSeVdHmzZEReszKRYgCE=", - "dependencies": { - "bintrees": "1.0.1" - } - }, - "node_modules/toidentifier": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz", - "integrity": "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==", - "engines": { - "node": ">=0.6" - } - }, - "node_modules/type-is": { - "version": "1.6.18", - "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", - "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", - "dependencies": { - "media-typer": "0.3.0", - "mime-types": "~2.1.24" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/unpipe": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", - "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/utils-merge": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", - "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=", - "engines": { - "node": ">= 0.4.0" - } - }, - "node_modules/vary": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", - "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=", - "engines": { - "node": ">= 0.8" - } - } - } -} diff --git a/src/it/projects/nodejs/package.json b/src/it/projects/nodejs/package.json deleted file mode 100644 index 730039802..000000000 --- a/src/it/projects/nodejs/package.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "name": "nodejs-starter", - "version": "1.0.0", - "description": "Simple Node.js application", - "license": "EPL-2.0", - "scripts": { - "start": "node server.js", - "debug": "node --inspect=${DEBUG_PORT} server.js", - "test": "node test/test.js" - }, - "dependencies": { - "express": "^4.17.1", - "pino": "^6.2.1", - "pino-http": "^5.1.0", - "prom-client": "^12.0.0" - } -} diff --git a/src/it/projects/nodejs/server.js b/src/it/projects/nodejs/server.js deleted file mode 100644 index babec86f9..000000000 --- a/src/it/projects/nodejs/server.js +++ /dev/null @@ -1,66 +0,0 @@ -const Prometheus = require('prom-client') -const express = require('express'); -const http = require('http'); - -Prometheus.collectDefaultMetrics(); - -const requestHistogram = new Prometheus.Histogram({ - name: 'http_request_duration_seconds', - help: 'Duration of HTTP requests in seconds', - labelNames: ['code', 'handler', 'method'], - buckets: [0.005, 0.01, 0.025, 0.05, 0.1, 0.25, 0.5, 1, 2.5, 5] -}) - -const requestTimer = (req, res, next) => { - const path = new URL(req.url, `http://${req.hostname}`).pathname - const stop = requestHistogram.startTimer({ - method: req.method, - handler: path - }) - res.on('finish', () => { - stop({ - code: res.statusCode - }) - }) - next() -} - -const app = express(); -const server = http.createServer(app) - -// See: http://expressjs.com/en/4x/api.html#app.settings.table -const PRODUCTION = app.get('env') === 'production'; - -// Administrative routes are not timed or logged, but for non-admin routes, pino -// overhead is included in timing. -app.get('/ready', (req, res) => res.status(200).json({status:"ok"})); -app.get('/live', (req, res) => res.status(200).json({status:"ok"})); -app.get('/metrics', (req, res, next) => { - res.set('Content-Type', Prometheus.register.contentType) - res.end(Prometheus.register.metrics()) -}) - -// Time routes after here. -app.use(requestTimer); - -// Log routes after here. -const pino = require('pino')({ - level: PRODUCTION ? 'info' : 'debug', -}); -app.use(require('pino-http')({logger: pino})); - -app.get('/', (req, res) => { - // Use req.log (a `pino` instance) to log JSON: - req.log.info({message: 'Hello from Node.js Starter Application!'}); - res.send('Hello from Node.js Starter Application!'); -}); - -app.get('*', (req, res) => { - res.status(404).send("Not Found"); -}); - -// Listen and serve. -const PORT = process.env.PORT || 3000; -server.listen(PORT, () => { - console.log(`App started on PORT ${PORT}`); -}); diff --git a/src/it/projects/nodejs/test/test.js b/src/it/projects/nodejs/test/test.js deleted file mode 100644 index 14a959f26..000000000 --- a/src/it/projects/nodejs/test/test.js +++ /dev/null @@ -1,21 +0,0 @@ -var assert = require('assert'); - -(function(){ - 'use strict'; - - equal('should pass', function() { - assert(1 === 1); - }); - - function equal(desc, fn) { - try { - fn(); - console.log('\x1b[32m%s\x1b[0m', '\u2714 ' + desc); - console.log("Add your tests in this ./test directory"); - } catch (error) { - console.log('\n'); - console.log('\x1b[31m%s\x1b[0m', '\u2718 ' + desc); - console.error(error); - } - } - })(); \ No newline at end of file diff --git a/src/it/projects/springboot-rest.zip b/src/it/projects/springboot-rest.zip new file mode 100644 index 0000000000000000000000000000000000000000..b182ce29f329a44a527e0324094f7ff586333520 GIT binary patch literal 130169 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 Z$54k1zgqwRqWGUzEcirnlm!3Z{{c*~Z}0#B literal 0 HcmV?d00001 diff --git a/src/it/projects/springboot-rest/.gitignore b/src/it/projects/springboot-rest/.gitignore deleted file mode 100644 index 3bca7635d..000000000 --- a/src/it/projects/springboot-rest/.gitignore +++ /dev/null @@ -1,17 +0,0 @@ -# IntelliJ -.idea -*.iml -target - -# Eclipse -.metadata -.settings -.classpath -.project -bin -tmp - -.odo/ -devfile.yaml - -.odo \ No newline at end of file diff --git a/src/it/projects/springboot-rest/LICENSE b/src/it/projects/springboot-rest/LICENSE deleted file mode 100644 index d64569567..000000000 --- a/src/it/projects/springboot-rest/LICENSE +++ /dev/null @@ -1,202 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed 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. diff --git a/src/it/projects/springboot-rest/README.adoc b/src/it/projects/springboot-rest/README.adoc deleted file mode 100644 index b4b7b34aa..000000000 --- a/src/it/projects/springboot-rest/README.adoc +++ /dev/null @@ -1,62 +0,0 @@ -= REST API Level 0 - Spring Boot Booster - -IMPORTANT: This booster requires Java 8 JDK or greater and Maven 3.3.x or greater. - - - -== Runing the Booster Locally - -To run this booster on your local host: - -[source,bash,options="nowrap",subs="attributes+"] ----- -$ unzip springboot-rest.zip - -$ cd springboot-rest - -$ mvn spring-boot:run ----- - -== Interacting with the Booster Locally - -To interact with your booster while it's running locally, use the form at `http://localhost:8080` or the `curl` command: - -[source,bash,options="nowrap",subs="attributes+"] ----- -$ curl http://localhost:8080/api/greeting -{"content":"Hello, World!"} - -$ curl http://localhost:8080/api/greeting?name=Sarah -{"content":"Hello, Sarah!"} ----- - - -== Updating the Booster -To update your booster: - -. Stop your booster. -+ -NOTE: To stop your running booster in a Linux or macOS terminal, use `CTRL+C`. In a Windows command prompt, you can use `CTRL + Break(pause)`. - -. Make your change (e.g. edit `src/main/resources/static/index.html`). -. Restart your booster. -. Verify the change took effect. - - -== Running the Booster on a Single-node OpenShift Cluster -If you have a single-node OpenShift cluster, such as Minishift or Red Hat Container Development Kit, link:http://launcher.fabric8.io/docs/minishift-installation.html[installed and running], you can also deploy your booster there. A single-node OpenShift cluster provides you with access to a cloud environment that is similar to a production environment. - -To deploy your booster to a running single-node OpenShift cluster: -[source,bash,options="nowrap",subs="attributes+"] ----- -$ oc login -u developer -p developer - -$ oc new-project MY_PROJECT_NAME - -$ mvn clean fabric8:deploy -Popenshift ----- - -== More Information -You can learn more about this booster and rest of the Spring Boot runtime in the link:http://launcher.fabric8.io/docs/spring-boot-runtime.html[Spring Boot Runtime Guide]. - -NOTE: Run the set of integration tests included with this booster using `mvn clean verify -Popenshift,openshift-it`. diff --git a/src/it/projects/springboot-rest/guide.adoc b/src/it/projects/springboot-rest/guide.adoc deleted file mode 100644 index 756b2f004..000000000 --- a/src/it/projects/springboot-rest/guide.adoc +++ /dev/null @@ -1,598 +0,0 @@ -= Understanding how to deploy a simple RESTful service and front-end on OpenShift using Spring Boot and Apache CXF - -This document will guide you through the steps to create a simple "Hello World" https://jcp.org/en/jsr/detail?id=370[JAX-RS] -based, RESTful web service using http://cxf.apache.org/[Apache CXF] and https://spring.io/projects/spring-boot[Spring Boot]. -While learning how to use JAX-RS with Spring Boot is interesting in itself, we will detail the steps and mechanisms involved in -deploying the application on an OpenShift cluster in an effort to develop a truly cloud-native application with a workflow -focused on making things natural to Java developers. - -Conceptually, the application is similar to the one developed in -https://spring.io/guides/gs/rest-service/[Spring Boot's guide on building RESTful services]. However, where the Spring -Boot guide uses Spring-specific annotations to define the endpoint and its method, we will use standard annotations, making it -easier to reuse endpoints implementations across servers, should you want to target a different platform than Spring Boot at some point. - -== What you'll build - -The application you will be building exposes a very simple greeting web service accepting `GET` HTTP requests to -`/api/greeting`, responding with a JSON message in the form `{"content":"Hello, World!"}`. The -message can be customized by passing the `name` query parameter to the request as in -`http://localhost:8080/api/greeting?name=John` which would result in the following response: `{"content":"Hello, -John!"}`. -Additionally, a very simple front-end is provided using HTML and jQuery to interact with the greeting endpoint -from a more user-friendly interface than query the service using https://curl.haxx.se/[`cURL`]. - -NOTE: While we will go over the implementation, we will focus mostly on the specifics needed to get your application running on -OpenShift as opposed to detailing all the Spring Boot-specific implementation. - -== What you'll need - -* Java 8 -* Access to an OpenShift cluster whether locally via https://www.openshift.org/minishift/[minishift] or using the different - flavors of https://www.openshift.com/products[OpenShift products] - - -== Endpoint - -The application is composed of a RESTful service. Its code can be found in the `src/main/java/io/openshift/booster/service` -directory. It is split in two classes: `GreetingEndpoint`, which implements the endpoint itself, and `Greeting` which is a -simple class representing the payload sent back to users of the endpoint. - -Let's look at the `Greeting` class first, which is pretty simple: -```java -public class Greeting { - - public static final String FORMAT = "Hello, %s!"; #<1> - - private final String content; #<2> - - public Greeting() { - this.content = null; - } - - public Greeting(String content) { - this.content = content; - } - - public String getContent() { - return content; - } -} -``` -<1> `FORMAT` constant that can be used by clients of the class to create greeting messages in the expected format -<2> `content` field which will be used to populate our JSON payload -This `Greeting` class will be automatically marshalled by Jackson using the accessor. - -Let's now look at the `GreetingEndpoint` class, short and sweet but packing quite a punch, thanks to annotations: -```java -import javax.ws.rs.DefaultValue; # <1> -import javax.ws.rs.GET; -import javax.ws.rs.Path; -import javax.ws.rs.Produces; -import javax.ws.rs.QueryParam; - -import org.springframework.stereotype.Component; - -@Path("/greeting") # <2> -@Component # <3> -public class GreetingEndpoint { - @GET # <4> - @Produces("application/json") # <5> - public Greeting greeting(@QueryParam("name") @DefaultValue("World") String name) { #<6> - final String message = String.format(Greeting.FORMAT, name); #<7> - return new Greeting(message); #<8> - } -} -``` -<1> Standard JAX-RS annotation imports -<2> Specify that this class is a JAX-RS root resource and that the endpoint will answer requests on `/greeting` -<3> Mark the endpoint as a Spring component to be managed by Spring Boot. In conjunction with the `cxf.jaxrs.component-scan` property set to `true` in `application.properties`, this allows CXF to create a JAX-RS endpoint from the auto-discovered JAX-RS root resources. -<4> Mark the `greeting` method as answering HTTP `GET` requests -<5> Specify that the method returns JSON content (`application/json` content type) -<6> The `name` method parameter is annotated with `@QueryParam("name")` to specify that it is passed as a query parameter in the URL when the service is invoked and that its default value is `World` if none is provided (thanks to the `@DefaultValue("World")` annotation) -<7> We format the message using the `Greeting.FORMAT` constant… -<8> and return a `Greeting` instance with the proper message. This object will be automatically serialized to JSON using https://github.com/FasterXML/jackson[Jackson] as we will see later. - -As you can see, there isn't much to it as far as code goes. - -We still need to configure CXF and Spring Boot properly for everything to work well. - -On the Spring Boot side, we need an entry point to our service in the form a class annotated with `@SpringBootApplication`, also giving us the opportunity to further configure our stack: -```java -import com.fasterxml.jackson.jaxrs.json.JacksonJsonProvider; -import org.springframework.boot.SpringApplication; -import org.springframework.boot.autoconfigure.SpringBootApplication; -import org.springframework.context.annotation.Bean; - -@SpringBootApplication #<1> -public class BoosterApplication { - - public static void main(String[] args) { - SpringApplication.run(BoosterApplication.class, args); - } - - @Bean - public JacksonJsonProvider jsonProvider() { #<2> - return new JacksonJsonProvider(); - } -} -``` -<1> Activates auto-configuration, component scan and marks the class as providing configuration using the https://docs.spring.io/spring-boot/docs/current/reference/html/using-boot-using-springbootapplication-annotation.html[`@SpringBootApplication` annotation]. This also allows to package the application as a jar that can be run as a typical application. Spring Boot will then start the embedded Tomcat server. -<2> Specifies that the JSON provider to be used by CXF (which uses http://cxf.apache.org/docs/configuration.html[Spring as basis of its configuration]) should be Jackson. - -NOTE: You'll notice that, contrary to https://docs.spring.io/spring/docs/4.3.18.RELEASE/spring-framework-reference/htmlsingle/#mvc[Spring MVC] where Jackson only needs to be present on the classpath for it to be used, Apache CXF requires Jackson to be explicitly configured. This could be done via XML but we might as well leverage the `@SpringBootApplication` configuration capability. - -Let's now look at the content of `application.properties` which we need to further configure CXF: -```properties -cxf.path:/api #<1> -cxf.jaxrs.component-scan:true #<2> -``` -<1> Specify that CXF will answer to requests sent to the `/api` context. Our endpoint root resource is annotated with `@Path("/greeting")` which means that the full context for our endpoint will be `/api/greeting`. -<2> As mentioned above when we looked at the `GreetingEndpoint` class, we need to set that property to `true` to activate automatic creation of endpoint based on resource detection. - -== Frontend - -Let's take a quick look at our frontend. It's implemented as a static HTML `src/resources/static/index.html` file served from the root of the embedded Tomcat server. The basic idea is similar to what is explained in the https://spring.io/guides/gs/consuming-rest-jquery/[consuming a RESTful Web Service with jQuery] Spring Boot guide so we will only focus on the salient parts for our purpose. - -In our case, our service is running on the same server so we don't need to worry about https://spring.io/understanding/CORS[CORS]. Moreover, for the same reason, we don't need any extra code for Spring Boot to start Tomcat. - -The simple UI consists in a form to specify which name to pass to the greeting service and then invoke it: -```html -

-
- - #<1> -
- #<2> - -

Result:

-
Invoke the service to see the result.
#<3> -``` -<1> Text input to enter the name to pass to the greeting service -<2> Button to trigger the call to the greeting service -<3> Placeholder text that will be replaced by the result of the service call - -and the embedded jQuery script: -```js - $(document).ready(function () { - $("#invoke").click(function (e) { #<1> - var n = $("#name").val() || "World"; #<2> - $.getJSON("/api/greeting?name=" + n, function (res) { #<3> - $("#greeting-result").text(JSON.stringify(res)); #<4> - }); - e.preventDefault(); - }); - }); -``` -<1> Add a `click` event handler to the button with the `invoke` id -<2> Retrieve the value of the `name` input to pass to the greeting server -<3> Invoke the RESTful endpoint and retrieve the JSON response -<4> Replace the content of the element with the `greeting-result` id with the result of the invocation - -== Building and testing the application locally - -You can run the application using `./mvnw spring-boot:run`, using the `run` goal of the https://docs.spring.io/spring-boot/docs/1.5.x/maven-plugin//index.html[Maven Spring Boot plugin]. -It's also possible to build the JAR file with `./mvnw clean package` and run it like a traditional Java application: - - java -jar target/spring-boot-rest-http-.jar - -where `` corresponds to the current version of the project. -Once the application is started, you can visit http://localhost:8080/index.html to see the frontend of the application and interact with the greeting service. - -Let's look at the important parts of the Maven project to properly build and run the application locally. - -First, we need to tell Maven that we're using Spring Boot and more specifically that we want to use the http://snowdrop.me/[Snowdrop] supported set of Spring Boot starters. This is accomplished by using 2 properties and importing the https://github.com/snowdrop/spring-boot-bom/tree/sb-1.5.x[Snowdrop Bill Of Materials (BOM)] and any dependencies we need for our application: -```xml -... - - 1.5.14.Final #<1> - 1.5.14.RELEASE #<2> - .... - -... - - - - me.snowdrop - spring-boot-bom - ${spring-boot-bom.version} #<3> - pom - import - - ... - - - #<4> - - org.springframework.boot - spring-boot-starter-tomcat #<5> - - - org.springframework.boot - spring-boot-starter-actuator - - - org.apache.cxf - cxf-spring-boot-starter-jaxrs #<6> - - - com.fasterxml.jackson.jaxrs - jackson-jaxrs-json-provider #<7> - - ... - -... -``` -<1> Specify the BOM version we want to use. More details on the -https://github.com/snowdrop/spring-boot-bom/tree/sb-1.5.x[BOM content] and its -https://github.com/snowdrop/spring-boot-bom/tree/sb-1.5.x#versioning-scheme[versioning scheme] are available. -<2> Associated Spring Boot version -<3> The BOM version is imported in the `dependencyManagement` section of the POM file -<4> Since the BOM defines supported versions, we can then import supported dependencies without having to worry about their respective versions -<5> Specify that we want to use Spring Boot with an embedded Tomcat server -<6> Needed to be able to use Apache CXF integration with Spring Boot -<7> Needed so that Apache CXF can use Jackson as JSON marshaller as seen above when we defined a `jsonProvider` bean provider method in our application entry point - -Let's now look at the build configuration: - -```xml -... - - - - src/main/resources - true #<3> - - - - - src/test/resources - true #<4> - - - - - - org.springframework.boot - spring-boot-maven-plugin - ${spring-boot.version} #<1> - - - - - - org.springframework.boot - spring-boot-maven-plugin - - - - - repackage #<2> - - - - - - -... -``` -<1> Add the https://docs.spring.io/spring-boot/docs/1.5.x/maven-plugin/[Spring Boot Maven plugin] to the build using the previously defined `spring-boot.version` property. -<2> Specify that the `repackage` goal of the Spring Boot plugin should be executed during the `package` phase of the Maven build. This leads to the creation of new jar file repackaged to create a self-contained, executable application. The originally generated jar file is kept but renamed with the `.original` suffix appended to its name. -<3> Activate https://maven.apache.org/shared/maven-filtering/index.html[Maven filtering] on files put in `src/main/resources` where Spring Boot configuration files live so that properties in the `${property.name}` can be interpolated and replaced during the build -<4> Also perform Maven filtering on `src/test/resources` test resource files - -== Deploying the application on OpenShift - -Now that we've seen the gist of the application and how to run it locally, let's look at what's needed to deploy it on OpenShift. This is accomplished using the http://maven.fabric8.io/[Fabric8 Maven Plugin] (aka FMP). FMP brings your Java applications to OpenShift. Tightly integrated with Maven, it leverages the existing build configuration to focus on two tasks: building Docker images and creating OpenShift (or plain Kubernetes) resource descriptors. Since our application is built using Maven, it makes sense to continue to leverage that tool to generate whatever is necessary to deploy and run our application on OpenShift. - -NOTE: The following steps assume that you are currently connected to a running OpenShift cluster via `oc login`. By doing so, FMP will be able to determine that you are targeting an OpenShift deployment automatically and take additional steps to generate OpenShift-specific descriptors (as opposed to generic Kubernetes ones). - -First, we need to tell Maven that we want to use this plugin. This is accomplished in the parent POM of our booster, which is declared as: -```xml - - io.openshift - booster-parent - 23 - -``` -NOTE: We're considering removing the need for a parent and including the FMP (Fabric8 Maven Plugin) configuration directly in our boosters. - -Let's look at the parts that deal with configuring the Fabric8 Maven Plugin: -```xml -... - - ... - 3.5.40 #<1> - ... - - registry.access.redhat.com/redhat-openjdk-18/openjdk18-openshift:1.2 #<2> - true #<3> - true #<4> - - - ... - - - - - - - io.fabric8 - fabric8-maven-plugin - ${fabric8-maven-plugin.version} #<5> - - - ... - - - ... - -... -``` -<1> Specify which version of FMP to use in a property, to be used in the plugin definition later on. -<2> Specify which Docker base image to use when generating the images for our application. The base image will serve as the foundation on top of which the FMP plugin adds our application to create a container ready to be deployed on a Kubernetes cluster. In this case, the base image is the -https://access.redhat.com/containers/?tab=overview&platform=openshift#/registry.access.redhat.com/redhat-openjdk-18/openjdk18-openshift[Red Hat supported OpenJDK 8 image] since our application is, at its code, a Java application. The booster's parent specifies that version `1.2` should be used but this property is overridden in the booster itself to use a more recent version. We will look later at how this is done in our booster (essentially, redefining the `fabric8.generator.from` property but with a twist)! -<3> This configuration property is only needed if running on OpenShift `3.7` version earlier than `3.7.2` to work around an issue between an older version of FMP and OpenShift `3.7`. This property might be removed in future versions of the boosters. For more details on this issue, see https://github.com/fabric8io/fabric8-maven-plugin/issues/1130#issuecomment-366216830 (and below). -<4> This configuration property instructs FMP to not build modules with the `pom` type. Without this property, This was required for an older version of FMP and might become needed again. For more details on this issue, see https://github.com/fabric8io/fabric8-maven-plugin/issues/1184#issuecomment-368308674 (and below). -<5> Specify that we want to use the Fabric8 Maven Plugin at the version that we previously specified. - -NOTE: You can see and explore the list of Red Hat supported images that can serve as base images for you applications at: https://access.redhat.com/containers/. - -Now that we've seen the configuration of the plugin in the booster parent, let's look at how it's used in the booster itself: - -```xml -... - - ... - 1.3 #<2> - - registry.access.redhat.com/redhat-openjdk-18/openjdk18-openshift:${openjdk18-openshift.version} #<3> - - - ... - - openshift #<1> - - - - io.fabric8 - fabric8-maven-plugin - - - fmp - - resource #<4> - build - - - - - - - -... -``` -<1> Since we don't want the Docker image / OpenShift resource descriptor generation process executed by FMP when we only want to run the application locally, we "hide" the FMP execution behind an `openshift` profile. -<2> Earlier, we said that we would redefine the version of the base image used to perform our builds. This is how we do it: instead of re-defining the whole `fabric8.generator.from` property, we introduce a new `openjdk18-openshift.version` property, which we set to the desired value and -<3> ... use that property when specifying the `fabric8.generator.from` property, thus allowing us to easily change the image version without touching the base image identifier. -<4> We bind the plugin https://maven.fabric8.io/#fabric8:resource[`resource`] and https://maven.fabric8.io/#fabric8:build[`build`] goals to Maven's lifecycle so that they are automatically run when we execute a Maven build. The `resource` goal creates the OpenShift resource descriptors (by default a https://docs.openshift.org/latest/architecture/core_concepts/pods_and_services.html#services[`Service`] along with an associated https://docs.openshift.org/latest/architecture/networking/routes.html[`Route`] and a https://docs.openshift.org/latest/architecture/core_concepts/deployments.html#deployments-and-deployment-configurations[`DeploymentConfig`]) while `build` creates a Docker image using the https://docs.openshift.org/latest/architecture/core_concepts/builds_and_image_streams.html#source-build[Source-to-Image (S2I) build process] by default using the base image we specified above. - -We then need to execute the https://maven.fabric8.io/#fabric8:deploy[`fabric8:deploy`] goal of the Fabric8 Maven plugin to deploy the application to an OpenShift cluster. Since we have bound the `resource` and `build` goals to Maven's lifecycle, they will be automatically triggered at appropriate times during the build process. Resource descriptors will therefore be appropriately generated using information from the booster's POM, a Docker image containing all that's needed to run a Java application *and* our application will be built using the S2I process and finally, all these artifacts will be pushed to the OpenShift cluster we're connected to. This is accomplished by running: - -```bash -./mvnw clean fabric8:deploy -Popenshift -``` - -By default, FMP will operate in `auto` mode, meaning that it will attempt to detect which kind of cluster you are targeting (plain Kubernetes or OpenShift). Being logged in an OpenShift cluster (via `oc login`) should allow FMP to properly detect that we are focusing on an OpenShift deployment and therefore trigger the creation of OpenShift-specific resource descriptors. `fabric8:deploy` will invoke the `fabric8:build` and `fabric8:resource-apply` goals (this last one being similar to `fabric8:resource` but additionally sending the resources to the target cluster to be applied). - -In order to understand more deeply what `fabric8:deploy` does, let's execute these steps separately and look at the generated resources. - -`fabric8:resource` generates a `fabric8` directory in `target`. This directory is a working directory containing resources that are created from http://maven.fabric8.io/#resource-fragments[resource fragments]. In our case, though, we operate using FMP's http://maven.fabric8.io/#zero-config[zero-config mode], meaning that we let FMP create automatically the needed resources in an opinionated way. We could override some of these generated values if needed but we're content with the defaults. In particular, an OpenShift Route is automatically created for our service and it therefore appears in that `fabric8` directory. - -The more interesting directory when it comes to files generated by `fabric8:resource` is the `target/classes/META-INF/fabric8` directory. This is where FMP puts the final version of the generated files once they have prepared. Looking at it, we notice it has the following structure: - -``` -+ kubernetes -\__ spring-boot-rest-http-deployment.yml - |_ spring-boot-rest-http-svc.yml -- kubernetes.json -- kubernetes.yml -+ openshift - \__ spring-boot-rest-http-deploymentconfig.yml - |_ spring-boot-rest-http-route.yml - |_ spring-boot-rest-http-svc.yml -- openshift.json -- openshift.yml -``` - -The first thing that we notice is that descriptors are generated for both plain Kubernetes and OpenShift. For each "flavor", FMP generates top-level resource lists, in both JSON (`kubernetes.json` or `openshift.json`) and YAML (`kubernetes.yml` and `openshift.yml`) formats, aggregating the individual resources generated in the associated directories (`kubernetes` for plain Kubernetes, `openshift` for OpenShift). - -Looking at the individual generated resources, we notice that they follow the `-.yml` convention. We also notice that, while the service descriptors (`spring-boot-rest-http-svc.yml`) are identical for both plain Kubernetes and OpenShift flavors, FMP generates a `Deployment` descriptor for Kubernetes but a https://docs.openshift.org/latest/dev_guide/deployments/how_deployments_work.html[`DeploymentConfig`] descriptor for OpenShift. OpenShift's `DeploymentConfig` provide additional features on top of Kubernetes' `Deployments`, notably lifecycle hooks and custom triggers based on either configuration or image changes. For more details on the differences between both concepts, please take a look at https://docs.openshift.org/latest/dev_guide/deployments/kubernetes_deployments.html[Deployment vs. DeploymentConfig]. Additionally, a https://docs.openshift.org/latest/architecture/networking/routes.html[`Route`] descriptor is also generated for OpenShift. - -It's worth pausing here a moment and realize that simply thanks to the addition of the FMP plugin to our Maven POM, our application is ready for the cloud. While it is important to understand the concepts at play here, it's also worth mentioning that simply running `./mvnw fabric8:deploy -Popenshift` while connected to a running OpenShift instance will deploy our app to the cloud and make it available without us having to worry (at least for now) about how it got there or what's required to do so! In fact, you can access your application by running - -```bash -oc get route spring-boot-rest-http -o jsonpath='{"http://"}{.spec.host}{"\n"}' -``` - -and pasting that URL in your favorite browser. - -This works because FMP generated the `spring-boot-rest-http` `Route` automatically for you as follows: - -```yaml ---- -apiVersion: v1 -kind: Route #<1> -metadata: - labels: - app: spring-boot-rest-http - provider: fabric8 - version: 1.5.14-1-SNAPSHOT - group: io.openshift.booster - name: spring-boot-rest-http #<2> -spec: - port: - targetPort: 8080 #<3> - to: - kind: Service #<4> - name: spring-boot-rest-http #<5> -``` -<1> Create a `Route`… -<2> named `spring-boot-rest-http`… -<3> targeting the `8080` port of … -<4> the `Service`… -<5> named `spring-boot-rest-http`! - -Let's now look at some the `spring-boot-rest-http-svc.yml` file, the `Service` definition: - -```yaml ---- -apiVersion: v1 -kind: Service #<1> -metadata: - annotations: #<2> - fabric8.io/git-commit: 1fc0c37f21be5db9a77f93e42382583b32a588a7 - fabric8.io/scm-con-url: scm:git:https://github.com/openshiftio/booster-parent.git/spring-boot-rest-http - prometheus.io/port: "9779" - fabric8.io/scm-url: https://github.com/openshiftio/spring-boot-rest-http - fabric8.io/iconUrl: img/icons/spring-boot.svg - fabric8.io/git-branch: guide - prometheus.io/scrape: "true" - fabric8.io/scm-devcon-url: scm:git:git:@github.com:openshiftio/booster-parent.git/spring-boot-rest-http - fabric8.io/scm-tag: booster-parent-23 - labels: - expose: "true" #<4> - app: spring-boot-rest-http #<6> - provider: fabric8 - version: 1.5.14-1-SNAPSHOT - group: io.openshift.booster - name: spring-boot-rest-http #<3> -spec: - ports: - - name: http #<5> - port: 8080 - protocol: TCP - targetPort: 8080 - selector: - app: spring-boot-rest-http - provider: fabric8 - group: io.openshift.booster -``` -<1> Create a `Service`… -<2> with some annotations, which provide metadata that interested third-parties can leverage… -<3> named `spring-boot-rest-http`… -<4> marked as being exposed, meaning a `Route` should be generated to expose the `Service` from outside the cluster… -<5> and exposing the `8080` HTTP port. -<6> Note also, that we add an `app` label with the `spring-boot-rest-http` value, label that is added to all the generated resources to mark them as being part of the same application. - -Finally, let's look at the `DeploymentConfig` descriptor, not going into details here, rather just pointing out some interesting parts: -```yaml ---- -apiVersion: apps.openshift.io/v1 -kind: DeploymentConfig -metadata: - annotations: - fabric8.io/git-commit: 1fc0c37f21be5db9a77f93e42382583b32a588a7 - fabric8.io/metrics-path: dashboard/file/kubernetes-pods.json/?var-project=spring-boot-rest-http&var-version=1.5.14-1-SNAPSHOT - fabric8.io/scm-con-url: scm:git:https://github.com/openshiftio/booster-parent.git/spring-boot-rest-http - fabric8.io/scm-url: https://github.com/openshiftio/spring-boot-rest-http - fabric8.io/iconUrl: img/icons/spring-boot.svg - fabric8.io/git-branch: guide - fabric8.io/scm-devcon-url: scm:git:git:@github.com:openshiftio/booster-parent.git/spring-boot-rest-http - fabric8.io/scm-tag: booster-parent-23 - labels: - app: spring-boot-rest-http - provider: fabric8 - version: 1.5.14-1-SNAPSHOT - group: io.openshift.booster - name: spring-boot-rest-http -spec: - replicas: 1 - revisionHistoryLimit: 2 - selector: - app: spring-boot-rest-http - provider: fabric8 - group: io.openshift.booster - strategy: - rollingParams: - timeoutSeconds: 3600 - type: Rolling - template: - metadata: - annotations: - fabric8.io/git-commit: 1fc0c37f21be5db9a77f93e42382583b32a588a7 - fabric8.io/metrics-path: dashboard/file/kubernetes-pods.json/?var-project=spring-boot-rest-http&var-version=1.5.14-1-SNAPSHOT - fabric8.io/scm-con-url: scm:git:https://github.com/openshiftio/booster-parent.git/spring-boot-rest-http - fabric8.io/scm-url: https://github.com/openshiftio/spring-boot-rest-http - fabric8.io/iconUrl: img/icons/spring-boot.svg - fabric8.io/git-branch: guide - fabric8.io/scm-devcon-url: scm:git:git:@github.com:openshiftio/booster-parent.git/spring-boot-rest-http - fabric8.io/scm-tag: booster-parent-23 - labels: - app: spring-boot-rest-http - provider: fabric8 - version: 1.5.14-1-SNAPSHOT - group: io.openshift.booster - spec: - containers: - - env: - - name: KUBERNETES_NAMESPACE - valueFrom: - fieldRef: - fieldPath: metadata.namespace - image: "" - imagePullPolicy: IfNotPresent - livenessProbe: #<5> - httpGet: - path: /health - port: 8080 - scheme: HTTP - initialDelaySeconds: 180 - name: spring-boot #<1> - ports: - - containerPort: 8080 - name: http #<2> - protocol: TCP - - containerPort: 9779 - name: prometheus #<3> - protocol: TCP - - containerPort: 8778 - name: jolokia #<4> - protocol: TCP - readinessProbe: - httpGet: - path: /health - port: 8080 - scheme: HTTP - initialDelaySeconds: 10 - securityContext: - privileged: false - triggers: - - type: ConfigChange - - imageChangeParams: #<6> - automatic: true - containerNames: - - spring-boot - from: - kind: ImageStreamTag - name: spring-boot-rest-http:latest - type: ImageChange -``` -<1> The container name is `spring-boot`. This is due to FMP detecting that we're deploying a Spring Boot app and therefore triggers the associated http://maven.fabric8.io/#generator-spring-boot[generator] which actually handles the image creation details automatically for us. You might remember though that we set the `fabric8.generator.from` property earlier when configurating FMP. This is where this comes into play: instructing the Spring Boot generator to use the specific base image that will serve as the substrate for our container when the S2I process combines it with our application jar. -<2> Exposing the `8080` HTTP port but also… -<3> a port to access https://prometheus.io/[Prometheus] monitoring information and… -<4> a port to access https://jolokia.org/[Jolokia] -<5> FMP also uses http://maven.fabric8.io/#enrichers[enrichers] to enrich the generated resources depending on some conditions. For example, one such enricher, the http://maven.fabric8.io/#f8-spring-boot-health-check[`f8-spring-boot-health-check`] enricher is activated when the `spring-boot-starter-actuator` is detected as a dependency of a Spring Boot application (which is our case). This enricher then automatically creates `livenessProbe` and `readinessProbe` entries to the application's container. -<6> Contrary to plain Kubernetes `Deployment`, OpenShift's `DeploymentConfig` can re-deploy containers when related images change. Here, we specify that if the image corresponding to the `spring-boot-rest-http:latest` tag in the `ImageStream` generated by `fabric8:build` changes then our `spring-boot` container needs to be redeployed. - - -== See Also - -* https://spring.io/guides/gs/rest-service/[Spring Boot's guide on building RESTful services] -* https://docs.spring.io/spring-boot/docs/1.5.x/reference/html/[Spring Boot 1.5.x reference documentation] -* https://docs.spring.io/spring-boot/docs/1.5.x/maven-plugin/[Spring Boot 1.5.x Maven plugin] -* http://cxf.apache.org/docs/springboot.html[Apache CXF Spring Boot configuration] -* http://cxf.apache.org/docs/configuration.html[Apache CXF configuration] -* http://www.baeldung.com/spring-boot-devtools[Introduction to Spring Boot devtools] -* https://docs.spring.io/spring-boot/docs/current/reference/html/using-boot-devtools.html[Spring Boot devtools documentation] -* http://maven.fabric8.io/[Fabric8 Maven Plugin] -* https://docs.openshift.org/latest/welcome/index.html[OpenShift Origin documentation] diff --git a/src/it/projects/springboot-rest/mvnw b/src/it/projects/springboot-rest/mvnw deleted file mode 100644 index 961a82500..000000000 --- a/src/it/projects/springboot-rest/mvnw +++ /dev/null @@ -1,286 +0,0 @@ -#!/bin/sh -# ---------------------------------------------------------------------------- -# 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. -# ---------------------------------------------------------------------------- - -# ---------------------------------------------------------------------------- -# Maven2 Start Up Batch script -# -# Required ENV vars: -# ------------------ -# JAVA_HOME - location of a JDK home dir -# -# Optional ENV vars -# ----------------- -# M2_HOME - location of maven2's installed home dir -# MAVEN_OPTS - parameters passed to the Java VM when running Maven -# e.g. to debug Maven itself, use -# set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000 -# MAVEN_SKIP_RC - flag to disable loading of mavenrc files -# ---------------------------------------------------------------------------- - -if [ -z "$MAVEN_SKIP_RC" ] ; then - - if [ -f /etc/mavenrc ] ; then - . /etc/mavenrc - fi - - if [ -f "$HOME/.mavenrc" ] ; then - . "$HOME/.mavenrc" - fi - -fi - -# OS specific support. $var _must_ be set to either true or false. -cygwin=false; -darwin=false; -mingw=false -case "`uname`" in - CYGWIN*) cygwin=true ;; - MINGW*) mingw=true;; - Darwin*) darwin=true - # Use /usr/libexec/java_home if available, otherwise fall back to /Library/Java/Home - # See https://developer.apple.com/library/mac/qa/qa1170/_index.html - if [ -z "$JAVA_HOME" ]; then - if [ -x "/usr/libexec/java_home" ]; then - export JAVA_HOME="`/usr/libexec/java_home`" - else - export JAVA_HOME="/Library/Java/Home" - fi - fi - ;; -esac - -if [ -z "$JAVA_HOME" ] ; then - if [ -r /etc/gentoo-release ] ; then - JAVA_HOME=`java-config --jre-home` - fi -fi - -if [ -z "$M2_HOME" ] ; then - ## resolve links - $0 may be a link to maven's home - PRG="$0" - - # need this for relative symlinks - while [ -h "$PRG" ] ; do - ls=`ls -ld "$PRG"` - link=`expr "$ls" : '.*-> \(.*\)$'` - if expr "$link" : '/.*' > /dev/null; then - PRG="$link" - else - PRG="`dirname "$PRG"`/$link" - fi - done - - saveddir=`pwd` - - M2_HOME=`dirname "$PRG"`/.. - - # make it fully qualified - M2_HOME=`cd "$M2_HOME" && pwd` - - cd "$saveddir" - # echo Using m2 at $M2_HOME -fi - -# For Cygwin, ensure paths are in UNIX format before anything is touched -if $cygwin ; then - [ -n "$M2_HOME" ] && - M2_HOME=`cygpath --unix "$M2_HOME"` - [ -n "$JAVA_HOME" ] && - JAVA_HOME=`cygpath --unix "$JAVA_HOME"` - [ -n "$CLASSPATH" ] && - CLASSPATH=`cygpath --path --unix "$CLASSPATH"` -fi - -# For Mingw, ensure paths are in UNIX format before anything is touched -if $mingw ; then - [ -n "$M2_HOME" ] && - M2_HOME="`(cd "$M2_HOME"; pwd)`" - [ -n "$JAVA_HOME" ] && - JAVA_HOME="`(cd "$JAVA_HOME"; pwd)`" - # TODO classpath? -fi - -if [ -z "$JAVA_HOME" ]; then - javaExecutable="`which javac`" - if [ -n "$javaExecutable" ] && ! [ "`expr \"$javaExecutable\" : '\([^ ]*\)'`" = "no" ]; then - # readlink(1) is not available as standard on Solaris 10. - readLink=`which readlink` - if [ ! `expr "$readLink" : '\([^ ]*\)'` = "no" ]; then - if $darwin ; then - javaHome="`dirname \"$javaExecutable\"`" - javaExecutable="`cd \"$javaHome\" && pwd -P`/javac" - else - javaExecutable="`readlink -f \"$javaExecutable\"`" - fi - javaHome="`dirname \"$javaExecutable\"`" - javaHome=`expr "$javaHome" : '\(.*\)/bin'` - JAVA_HOME="$javaHome" - export JAVA_HOME - fi - fi -fi - -if [ -z "$JAVACMD" ] ; then - if [ -n "$JAVA_HOME" ] ; then - if [ -x "$JAVA_HOME/jre/sh/java" ] ; then - # IBM's JDK on AIX uses strange locations for the executables - JAVACMD="$JAVA_HOME/jre/sh/java" - else - JAVACMD="$JAVA_HOME/bin/java" - fi - else - JAVACMD="`which java`" - fi -fi - -if [ ! -x "$JAVACMD" ] ; then - echo "Error: JAVA_HOME is not defined correctly." >&2 - echo " We cannot execute $JAVACMD" >&2 - exit 1 -fi - -if [ -z "$JAVA_HOME" ] ; then - echo "Warning: JAVA_HOME environment variable is not set." -fi - -CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher - -# traverses directory structure from process work directory to filesystem root -# first directory with .mvn subdirectory is considered project base directory -find_maven_basedir() { - - if [ -z "$1" ] - then - echo "Path not specified to find_maven_basedir" - return 1 - fi - - basedir="$1" - wdir="$1" - while [ "$wdir" != '/' ] ; do - if [ -d "$wdir"/.mvn ] ; then - basedir=$wdir - break - fi - # workaround for JBEAP-8937 (on Solaris 10/Sparc) - if [ -d "${wdir}" ]; then - wdir=`cd "$wdir/.."; pwd` - fi - # end of workaround - done - echo "${basedir}" -} - -# concatenates all lines of a file -concat_lines() { - if [ -f "$1" ]; then - echo "$(tr -s '\n' ' ' < "$1")" - fi -} - -BASE_DIR=`find_maven_basedir "$(pwd)"` -if [ -z "$BASE_DIR" ]; then - exit 1; -fi - -########################################################################################## -# Extension to allow automatically downloading the maven-wrapper.jar from Maven-central -# This allows using the maven wrapper in projects that prohibit checking in binary data. -########################################################################################## -if [ -r "$BASE_DIR/.mvn/wrapper/maven-wrapper.jar" ]; then - if [ "$MVNW_VERBOSE" = true ]; then - echo "Found .mvn/wrapper/maven-wrapper.jar" - fi -else - if [ "$MVNW_VERBOSE" = true ]; then - echo "Couldn't find .mvn/wrapper/maven-wrapper.jar, downloading it ..." - fi - jarUrl="https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.4.0/maven-wrapper-0.4.0.jar" - while IFS="=" read key value; do - case "$key" in (wrapperUrl) jarUrl="$value"; break ;; - esac - done < "$BASE_DIR/.mvn/wrapper/maven-wrapper.properties" - if [ "$MVNW_VERBOSE" = true ]; then - echo "Downloading from: $jarUrl" - fi - wrapperJarPath="$BASE_DIR/.mvn/wrapper/maven-wrapper.jar" - - if command -v wget > /dev/null; then - if [ "$MVNW_VERBOSE" = true ]; then - echo "Found wget ... using wget" - fi - wget "$jarUrl" -O "$wrapperJarPath" - elif command -v curl > /dev/null; then - if [ "$MVNW_VERBOSE" = true ]; then - echo "Found curl ... using curl" - fi - curl -o "$wrapperJarPath" "$jarUrl" - else - if [ "$MVNW_VERBOSE" = true ]; then - echo "Falling back to using Java to download" - fi - javaClass="$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.java" - if [ -e "$javaClass" ]; then - if [ ! -e "$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.class" ]; then - if [ "$MVNW_VERBOSE" = true ]; then - echo " - Compiling MavenWrapperDownloader.java ..." - fi - # Compiling the Java class - ("$JAVA_HOME/bin/javac" "$javaClass") - fi - if [ -e "$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.class" ]; then - # Running the downloader - if [ "$MVNW_VERBOSE" = true ]; then - echo " - Running MavenWrapperDownloader.java ..." - fi - ("$JAVA_HOME/bin/java" -cp .mvn/wrapper MavenWrapperDownloader "$MAVEN_PROJECTBASEDIR") - fi - fi - fi -fi -########################################################################################## -# End of extension -########################################################################################## - -export MAVEN_PROJECTBASEDIR=${MAVEN_BASEDIR:-"$BASE_DIR"} -if [ "$MVNW_VERBOSE" = true ]; then - echo $MAVEN_PROJECTBASEDIR -fi -MAVEN_OPTS="$(concat_lines "$MAVEN_PROJECTBASEDIR/.mvn/jvm.config") $MAVEN_OPTS" - -# For Cygwin, switch paths to Windows format before running java -if $cygwin; then - [ -n "$M2_HOME" ] && - M2_HOME=`cygpath --path --windows "$M2_HOME"` - [ -n "$JAVA_HOME" ] && - JAVA_HOME=`cygpath --path --windows "$JAVA_HOME"` - [ -n "$CLASSPATH" ] && - CLASSPATH=`cygpath --path --windows "$CLASSPATH"` - [ -n "$MAVEN_PROJECTBASEDIR" ] && - MAVEN_PROJECTBASEDIR=`cygpath --path --windows "$MAVEN_PROJECTBASEDIR"` -fi - -WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain - -exec "$JAVACMD" \ - $MAVEN_OPTS \ - -classpath "$MAVEN_PROJECTBASEDIR/.mvn/wrapper/maven-wrapper.jar" \ - "-Dmaven.home=${M2_HOME}" "-Dmaven.multiModuleProjectDirectory=${MAVEN_PROJECTBASEDIR}" \ - ${WRAPPER_LAUNCHER} $MAVEN_CONFIG "$@" diff --git a/src/it/projects/springboot-rest/mvnw.cmd b/src/it/projects/springboot-rest/mvnw.cmd deleted file mode 100644 index 830073a17..000000000 --- a/src/it/projects/springboot-rest/mvnw.cmd +++ /dev/null @@ -1,161 +0,0 @@ -@REM ---------------------------------------------------------------------------- -@REM Licensed to the Apache Software Foundation (ASF) under one -@REM or more contributor license agreements. See the NOTICE file -@REM distributed with this work for additional information -@REM regarding copyright ownership. The ASF licenses this file -@REM to you under the Apache License, Version 2.0 (the -@REM "License"); you may not use this file except in compliance -@REM with the License. You may obtain a copy of the License at -@REM -@REM http://www.apache.org/licenses/LICENSE-2.0 -@REM -@REM Unless required by applicable law or agreed to in writing, -@REM software distributed under the License is distributed on an -@REM "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -@REM KIND, either express or implied. See the License for the -@REM specific language governing permissions and limitations -@REM under the License. -@REM ---------------------------------------------------------------------------- - -@REM ---------------------------------------------------------------------------- -@REM Maven2 Start Up Batch script -@REM -@REM Required ENV vars: -@REM JAVA_HOME - location of a JDK home dir -@REM -@REM Optional ENV vars -@REM M2_HOME - location of maven2's installed home dir -@REM MAVEN_BATCH_ECHO - set to 'on' to enable the echoing of the batch commands -@REM MAVEN_BATCH_PAUSE - set to 'on' to wait for a key stroke before ending -@REM MAVEN_OPTS - parameters passed to the Java VM when running Maven -@REM e.g. to debug Maven itself, use -@REM set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000 -@REM MAVEN_SKIP_RC - flag to disable loading of mavenrc files -@REM ---------------------------------------------------------------------------- - -@REM Begin all REM lines with '@' in case MAVEN_BATCH_ECHO is 'on' -@echo off -@REM set title of command window -title %0 -@REM enable echoing my setting MAVEN_BATCH_ECHO to 'on' -@if "%MAVEN_BATCH_ECHO%" == "on" echo %MAVEN_BATCH_ECHO% - -@REM set %HOME% to equivalent of $HOME -if "%HOME%" == "" (set "HOME=%HOMEDRIVE%%HOMEPATH%") - -@REM Execute a user defined script before this one -if not "%MAVEN_SKIP_RC%" == "" goto skipRcPre -@REM check for pre script, once with legacy .bat ending and once with .cmd ending -if exist "%HOME%\mavenrc_pre.bat" call "%HOME%\mavenrc_pre.bat" -if exist "%HOME%\mavenrc_pre.cmd" call "%HOME%\mavenrc_pre.cmd" -:skipRcPre - -@setlocal - -set ERROR_CODE=0 - -@REM To isolate internal variables from possible post scripts, we use another setlocal -@setlocal - -@REM ==== START VALIDATION ==== -if not "%JAVA_HOME%" == "" goto OkJHome - -echo. -echo Error: JAVA_HOME not found in your environment. >&2 -echo Please set the JAVA_HOME variable in your environment to match the >&2 -echo location of your Java installation. >&2 -echo. -goto error - -:OkJHome -if exist "%JAVA_HOME%\bin\java.exe" goto init - -echo. -echo Error: JAVA_HOME is set to an invalid directory. >&2 -echo JAVA_HOME = "%JAVA_HOME%" >&2 -echo Please set the JAVA_HOME variable in your environment to match the >&2 -echo location of your Java installation. >&2 -echo. -goto error - -@REM ==== END VALIDATION ==== - -:init - -@REM Find the project base dir, i.e. the directory that contains the folder ".mvn". -@REM Fallback to current working directory if not found. - -set MAVEN_PROJECTBASEDIR=%MAVEN_BASEDIR% -IF NOT "%MAVEN_PROJECTBASEDIR%"=="" goto endDetectBaseDir - -set EXEC_DIR=%CD% -set WDIR=%EXEC_DIR% -:findBaseDir -IF EXIST "%WDIR%"\.mvn goto baseDirFound -cd .. -IF "%WDIR%"=="%CD%" goto baseDirNotFound -set WDIR=%CD% -goto findBaseDir - -:baseDirFound -set MAVEN_PROJECTBASEDIR=%WDIR% -cd "%EXEC_DIR%" -goto endDetectBaseDir - -:baseDirNotFound -set MAVEN_PROJECTBASEDIR=%EXEC_DIR% -cd "%EXEC_DIR%" - -:endDetectBaseDir - -IF NOT EXIST "%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config" goto endReadAdditionalConfig - -@setlocal EnableExtensions EnableDelayedExpansion -for /F "usebackq delims=" %%a in ("%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config") do set JVM_CONFIG_MAVEN_PROPS=!JVM_CONFIG_MAVEN_PROPS! %%a -@endlocal & set JVM_CONFIG_MAVEN_PROPS=%JVM_CONFIG_MAVEN_PROPS% - -:endReadAdditionalConfig - -SET MAVEN_JAVA_EXE="%JAVA_HOME%\bin\java.exe" -set WRAPPER_JAR="%MAVEN_PROJECTBASEDIR%\.mvn\wrapper\maven-wrapper.jar" -set WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain - -set DOWNLOAD_URL="https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.4.0/maven-wrapper-0.4.0.jar" -FOR /F "tokens=1,2 delims==" %%A IN (%MAVEN_PROJECTBASEDIR%\.mvn\wrapper\maven-wrapper.properties) DO ( - IF "%%A"=="wrapperUrl" SET DOWNLOAD_URL=%%B -) - -@REM Extension to allow automatically downloading the maven-wrapper.jar from Maven-central -@REM This allows using the maven wrapper in projects that prohibit checking in binary data. -if exist %WRAPPER_JAR% ( - echo Found %WRAPPER_JAR% -) else ( - echo Couldn't find %WRAPPER_JAR%, downloading it ... - echo Downloading from: %DOWNLOAD_URL% - powershell -Command "(New-Object Net.WebClient).DownloadFile('%DOWNLOAD_URL%', '%WRAPPER_JAR%')" - echo Finished downloading %WRAPPER_JAR% -) -@REM End of extension - -%MAVEN_JAVA_EXE% %JVM_CONFIG_MAVEN_PROPS% %MAVEN_OPTS% %MAVEN_DEBUG_OPTS% -classpath %WRAPPER_JAR% "-Dmaven.multiModuleProjectDirectory=%MAVEN_PROJECTBASEDIR%" %WRAPPER_LAUNCHER% %MAVEN_CONFIG% %* -if ERRORLEVEL 1 goto error -goto end - -:error -set ERROR_CODE=1 - -:end -@endlocal & set ERROR_CODE=%ERROR_CODE% - -if not "%MAVEN_SKIP_RC%" == "" goto skipRcPost -@REM check for post script, once with legacy .bat ending and once with .cmd ending -if exist "%HOME%\mavenrc_post.bat" call "%HOME%\mavenrc_post.bat" -if exist "%HOME%\mavenrc_post.cmd" call "%HOME%\mavenrc_post.cmd" -:skipRcPost - -@REM pause the script if MAVEN_BATCH_PAUSE is set to 'on' -if "%MAVEN_BATCH_PAUSE%" == "on" pause - -if "%MAVEN_TERMINATE_CMD%" == "on" exit %ERROR_CODE% - -exit /B %ERROR_CODE% diff --git a/src/it/projects/springboot-rest/pom.xml b/src/it/projects/springboot-rest/pom.xml deleted file mode 100644 index d2f8a8450..000000000 --- a/src/it/projects/springboot-rest/pom.xml +++ /dev/null @@ -1,229 +0,0 @@ - - - - 4.0.0 - - io.openshift - booster-parent - 23 - - com.redhat.devtools - springboot-rest - 1.0.0-SNAPSHOT - Spring Boot - HTTP Booster - Spring Boot - HTTP Booster - - 1.5.17.SP1-redhat-00002 - 1.5.17.RELEASE - 1.4.0.Final - 3.1.0 - 3.1.0 - 1.3 - registry.access.redhat.com/redhat-openjdk-18/openjdk18-openshift:${openjdk18-openshift.version} - - - - Apache License, Version 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt - repo - A business-friendly OSS license - - - - - - me.snowdrop - spring-boot-bom - ${spring-boot-bom.version} - pom - import - - - org.jboss.arquillian - arquillian-bom - ${arquillian.version} - pom - import - - - io.rest-assured - rest-assured - ${rest-assured.version} - - - org.awaitility - awaitility - ${awaitility.version} - - - - - - org.springframework.boot - spring-boot-starter-tomcat - - - org.springframework.boot - spring-boot-starter-actuator - - - org.apache.cxf - cxf-spring-boot-starter-jaxrs - - - com.fasterxml.jackson.jaxrs - jackson-jaxrs-json-provider - - - org.springframework.boot - spring-boot-devtools - true - - - org.jboss.arquillian.junit - arquillian-junit-standalone - test - - - org.arquillian.cube - arquillian-cube-openshift - test - - - io.undertow - undertow-core - - - - - org.springframework.boot - spring-boot-starter-test - test - - - ch.qos.logback - logback-core - test - - - ch.qos.logback - logback-classic - test - - - io.rest-assured - rest-assured - test - - - org.awaitility - awaitility - test - - - org.assertj - assertj-core - test - - - - - - src/main/resources - true - - - - - src/test/resources - true - - - - - - org.springframework.boot - spring-boot-maven-plugin - ${spring-boot.version} - - - - - - org.springframework.boot - spring-boot-maven-plugin - - - - repackage - - - - - - - - - openshift-it - - - - org.apache.maven.plugins - maven-failsafe-plugin - - - ${project.artifactId} - - ${project.build.directory}/${project.build.finalName}.${project.packaging}.original - - - - - integration-test - verify - - - - - - - - - - openshift - - - - io.fabric8 - fabric8-maven-plugin - - - fmp - - resource - build - - - - - - - - - - - diff --git a/src/it/projects/springboot-rest/src/licenses/contents/Apache+License+20 b/src/it/projects/springboot-rest/src/licenses/contents/Apache+License+20 deleted file mode 100644 index d64569567..000000000 --- a/src/it/projects/springboot-rest/src/licenses/contents/Apache+License+20 +++ /dev/null @@ -1,202 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed 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. diff --git a/src/it/projects/springboot-rest/src/licenses/contents/BSD+2clause+Simplified+License b/src/it/projects/springboot-rest/src/licenses/contents/BSD+2clause+Simplified+License deleted file mode 100644 index 585cf8a6f..000000000 --- a/src/it/projects/springboot-rest/src/licenses/contents/BSD+2clause+Simplified+License +++ /dev/null @@ -1,367 +0,0 @@ - - - - - - - - - - - - The 2-Clause BSD License | Open Source Initiative - - - - - - - - - - - - - - - - - - - - - - - -
- - - - -
-
- - -
-
- -
- -
-
- -
-
- -
- -
- -
-
- -
-
- -
- -
-
- - -
-
- - - - - - - - - - - - -
- - - -
-
- - - - -
- - - -
- - -
- - - - -
- -

The 2-Clause BSD License

- - - -
-
- - - - - -
-
- - -
-
- - -
-

SPDX short identifier: BSD-2-Clause

- -
- -

 

-
- -

Note: This license has also been called the "Simplified BSD License" and the "FreeBSD License". See also the 3-clause BSD License.

- -

Copyright <YEAR> <COPYRIGHT HOLDER>

- -

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

- -

1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.

- -

2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.

- -

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

-
- - - - -
-
-
- -
- - -
- - -
- - -
- -
-
- - - -
- - - -
-
- - -
-
-
- -
- - - - -
- -
-
-
- - -
-
- - - \ No newline at end of file diff --git a/src/it/projects/springboot-rest/src/licenses/contents/Common+Development+and+Distribution+License+11 b/src/it/projects/springboot-rest/src/licenses/contents/Common+Development+and+Distribution+License+11 deleted file mode 100644 index ff7d05164..000000000 --- a/src/it/projects/springboot-rest/src/licenses/contents/Common+Development+and+Distribution+License+11 +++ /dev/null @@ -1,849 +0,0 @@ - - - - - - - - - - - - - - GlassFish - - - -
-
- -

GlassFish

-
-

The Open Source Java EE Reference Implementation

- - - -
-
- -
-
-
-

COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.1

- -
1. Definitions.
- 
-  1.1. "Contributor" means each individual or entity that creates or
-  contributes to the creation of Modifications.
-
-  1.2. "Contributor Version" means the combination of the Original
-  Software, prior Modifications used by a Contributor (if any), and
-  the Modifications made by that particular Contributor.
-
-  1.3. "Covered Software" means (a) the Original Software, or (b)
-  Modifications, or (c) the combination of files containing Original
-  Software with files containing Modifications, in each case including
-  portions thereof.
-
-  1.4. "Executable" means the Covered Software in any form other than
-  Source Code.
-
-  1.5. "Initial Developer" means the individual or entity that first
-  makes Original Software available under this License.
-
-  1.6. "Larger Work" means a work which combines Covered Software or
-  portions thereof with code not governed by the terms of this License.
-
-  1.7. "License" means this document.
-
-  1.8. "Licensable" means having the right to grant, to the maximum
-  extent possible, whether at the time of the initial grant or
-  subsequently acquired, any and all of the rights conveyed herein.
-
-  1.9. "Modifications" means the Source Code and Executable form of
-  any of the following:
-
-  A. Any file that results from an addition to, deletion from or
-  modification of the contents of a file containing Original Software
-  or previous Modifications;
-
-  B. Any new file that contains any part of the Original Software or
-  previous Modification; or
-
-  C. Any new file that is contributed or otherwise made available
-  under the terms of this License.
-
-  1.10. "Original Software" means the Source Code and Executable form
-  of computer software code that is originally released under this
-  License.
-
-  1.11. "Patent Claims" means any patent claim(s), now owned or
-  hereafter acquired, including without limitation, method, process,
-  and apparatus claims, in any patent Licensable by grantor.
-
-  1.12. "Source Code" means (a) the common form of computer software
-  code in which modifications are made and (b) associated
-  documentation included in or with such code.
-
-  1.13. "You" (or "Your") means an individual or a legal entity
-  exercising rights under, and complying with all of the terms of,
-  this License. For legal entities, "You" includes any entity which
-  controls, is controlled by, or is under common control with You. For
-  purposes of this definition, "control" means (a) the power, direct
-  or indirect, to cause the direction or management of such entity,
-  whether by contract or otherwise, or (b) ownership of more than
-  fifty percent (50%) of the outstanding shares or beneficial
-  ownership of such entity.
-
-2. License Grants.
-
-  2.1. The Initial Developer Grant.
-
-  Conditioned upon Your compliance with Section 3.1 below and subject
-  to third party intellectual property claims, the Initial Developer
-  hereby grants You a world-wide, royalty-free, non-exclusive license:
-
-  (a) under intellectual property rights (other than patent or
-  trademark) Licensable by Initial Developer, to use, reproduce,
-  modify, display, perform, sublicense and distribute the Original
-  Software (or portions thereof), with or without Modifications,
-  and/or as part of a Larger Work; and
-
-  (b) under Patent Claims infringed by the making, using or selling of
-  Original Software, to make, have made, use, practice, sell, and
-  offer for sale, and/or otherwise dispose of the Original Software
-  (or portions thereof).
-
-  (c) The licenses granted in Sections 2.1(a) and (b) are effective on
-  the date Initial Developer first distributes or otherwise makes the
-  Original Software available to a third party under the terms of this
-  License.
-
-  (d) Notwithstanding Section 2.1(b) above, no patent license is
-  granted: (1) for code that You delete from the Original Software, or
-  (2) for infringements caused by: (i) the modification of the
-  Original Software, or (ii) the combination of the Original Software
-  with other software or devices.
-
-  2.2. Contributor Grant.
-
-  Conditioned upon Your compliance with Section 3.1 below and subject
-  to third party intellectual property claims, each Contributor hereby
-  grants You a world-wide, royalty-free, non-exclusive license:
-
-  (a) under intellectual property rights (other than patent or
-  trademark) Licensable by Contributor to use, reproduce, modify,
-  display, perform, sublicense and distribute the Modifications
-  created by such Contributor (or portions thereof), either on an
-  unmodified basis, with other Modifications, as Covered Software
-  and/or as part of a Larger Work; and
-
-  (b) under Patent Claims infringed by the making, using, or selling
-  of Modifications made by that Contributor either alone and/or in
-  combination with its Contributor Version (or portions of such
-  combination), to make, use, sell, offer for sale, have made, and/or
-  otherwise dispose of: (1) Modifications made by that Contributor (or
-  portions thereof); and (2) the combination of Modifications made by
-  that Contributor with its Contributor Version (or portions of such
-  combination).
-
-  (c) The licenses granted in Sections 2.2(a) and 2.2(b) are effective
-  on the date Contributor first distributes or otherwise makes the
-  Modifications available to a third party.
-
-  (d) Notwithstanding Section 2.2(b) above, no patent license is
-  granted: (1) for any code that Contributor has deleted from the
-  Contributor Version; (2) for infringements caused by: (i) third
-  party modifications of Contributor Version, or (ii) the combination
-  of Modifications made by that Contributor with other software
-  (except as part of the Contributor Version) or other devices; or (3)
-  under Patent Claims infringed by Covered Software in the absence of
-  Modifications made by that Contributor.
-
-3. Distribution Obligations.
-
-  3.1. Availability of Source Code.
-
-  Any Covered Software that You distribute or otherwise make available
-  in Executable form must also be made available in Source Code form
-  and that Source Code form must be distributed only under the terms
-  of this License. You must include a copy of this License with every
-  copy of the Source Code form of the Covered Software You distribute
-  or otherwise make available. You must inform recipients of any such
-  Covered Software in Executable form as to how they can obtain such
-  Covered Software in Source Code form in a reasonable manner on or
-  through a medium customarily used for software exchange.
-
-  3.2. Modifications.
-
-  The Modifications that You create or to which You contribute are
-  governed by the terms of this License. You represent that You
-  believe Your Modifications are Your original creation(s) and/or You
-  have sufficient rights to grant the rights conveyed by this License.
-
-  3.3. Required Notices.
-
-  You must include a notice in each of Your Modifications that
-  identifies You as the Contributor of the Modification. You may not
-  remove or alter any copyright, patent or trademark notices contained
-  within the Covered Software, or any notices of licensing or any
-  descriptive text giving attribution to any Contributor or the
-  Initial Developer.
-
-  3.4. Application of Additional Terms.
-
-  You may not offer or impose any terms on any Covered Software in
-  Source Code form that alters or restricts the applicable version of
-  this License or the recipients' rights hereunder. You may choose to
-  offer, and to charge a fee for, warranty, support, indemnity or
-  liability obligations to one or more recipients of Covered Software.
-  However, you may do so only on Your own behalf, and not on behalf of
-  the Initial Developer or any Contributor. You must make it
-  absolutely clear that any such warranty, support, indemnity or
-  liability obligation is offered by You alone, and You hereby agree
-  to indemnify the Initial Developer and every Contributor for any
-  liability incurred by the Initial Developer or such Contributor as a
-  result of warranty, support, indemnity or liability terms You offer.
-
-  3.5. Distribution of Executable Versions.
-
-  You may distribute the Executable form of the Covered Software under
-  the terms of this License or under the terms of a license of Your
-  choice, which may contain terms different from this License,
-  provided that You are in compliance with the terms of this License
-  and that the license for the Executable form does not attempt to
-  limit or alter the recipient's rights in the Source Code form from
-  the rights set forth in this License. If You distribute the Covered
-  Software in Executable form under a different license, You must make
-  it absolutely clear that any terms which differ from this License
-  are offered by You alone, not by the Initial Developer or
-  Contributor. You hereby agree to indemnify the Initial Developer and
-  every Contributor for any liability incurred by the Initial
-  Developer or such Contributor as a result of any such terms You offer.
-
-  3.6. Larger Works.
-
-  You may create a Larger Work by combining Covered Software with
-  other code not governed by the terms of this License and distribute
-  the Larger Work as a single product. In such a case, You must make
-  sure the requirements of this License are fulfilled for the Covered
-  Software.
-
-4. Versions of the License.
-
-  4.1. New Versions.
-
-  Oracle is the initial license steward and may publish revised and/or
-  new versions of this License from time to time. Each version will be
-  given a distinguishing version number. Except as provided in Section
-  4.3, no one other than the license steward has the right to modify
-  this License.
-
-  4.2. Effect of New Versions.
-
-  You may always continue to use, distribute or otherwise make the
-  Covered Software available under the terms of the version of the
-  License under which You originally received the Covered Software. If
-  the Initial Developer includes a notice in the Original Software
-  prohibiting it from being distributed or otherwise made available
-  under any subsequent version of the License, You must distribute and
-  make the Covered Software available under the terms of the version
-  of the License under which You originally received the Covered
-  Software. Otherwise, You may also choose to use, distribute or
-  otherwise make the Covered Software available under the terms of any
-  subsequent version of the License published by the license steward.
-
-  4.3. Modified Versions.
-
-  When You are an Initial Developer and You want to create a new
-  license for Your Original Software, You may create and use a
-  modified version of this License if You: (a) rename the license and
-  remove any references to the name of the license steward (except to
-  note that the license differs from this License); and (b) otherwise
-  make it clear that the license contains terms which differ from this
-  License.
-
-5. DISCLAIMER OF WARRANTY.
-
-  COVERED SOFTWARE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS,
-  WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED,
-  INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED SOFTWARE
-  IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR
-  NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF
-  THE COVERED SOFTWARE IS WITH YOU. SHOULD ANY COVERED SOFTWARE PROVE
-  DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY
-  OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING,
-  REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN
-  ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED SOFTWARE IS
-  AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.
-
-6. TERMINATION.
-
-  6.1. This License and the rights granted hereunder will terminate
-  automatically if You fail to comply with terms herein and fail to
-  cure such breach within 30 days of becoming aware of the breach.
-  Provisions which, by their nature, must remain in effect beyond the
-  termination of this License shall survive.
-
-  6.2. If You assert a patent infringement claim (excluding
-  declaratory judgment actions) against Initial Developer or a
-  Contributor (the Initial Developer or Contributor against whom You
-  assert such claim is referred to as "Participant") alleging that the
-  Participant Software (meaning the Contributor Version where the
-  Participant is a Contributor or the Original Software where the
-  Participant is the Initial Developer) directly or indirectly
-  infringes any patent, then any and all rights granted directly or
-  indirectly to You by such Participant, the Initial Developer (if the
-  Initial Developer is not the Participant) and all Contributors under
-  Sections 2.1 and/or 2.2 of this License shall, upon 60 days notice
-  from Participant terminate prospectively and automatically at the
-  expiration of such 60 day notice period, unless if within such 60
-  day period You withdraw Your claim with respect to the Participant
-  Software against such Participant either unilaterally or pursuant to
-  a written agreement with Participant.
-
-  6.3. If You assert a patent infringement claim against Participant
-  alleging that the Participant Software directly or indirectly
-  infringes any patent where such claim is resolved (such as by
-  license or settlement) prior to the initiation of patent
-  infringement litigation, then the reasonable value of the licenses
-  granted by such Participant under Sections 2.1 or 2.2 shall be taken
-  into account in determining the amount or value of any payment or
-  license.
-
-  6.4. In the event of termination under Sections 6.1 or 6.2 above,
-  all end user licenses that have been validly granted by You or any
-  distributor hereunder prior to termination (excluding licenses
-  granted to You by any distributor) shall survive termination.
-
-7. LIMITATION OF LIABILITY.
-
-  UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT
-  (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE
-  INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF
-  COVERED SOFTWARE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE
-  TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR
-  CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT
-  LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER
-  FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR
-  LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE
-  POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT
-  APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH
-  PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH
-  LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR
-  LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION
-  AND LIMITATION MAY NOT APPLY TO YOU.
-
-8. U.S. GOVERNMENT END USERS.
-
-  The Covered Software is a "commercial item," as that term is defined
-  in 48 C.F.R. 2.101 (Oct. 1995), consisting of "commercial computer
-  software" (as that term is defined at 48 C.F.R. §
-  252.227-7014(a)(1)) and "commercial computer software documentation"
-  as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent
-  with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4
-  (June 1995), all U.S. Government End Users acquire Covered Software
-  with only those rights set forth herein. This U.S. Government Rights
-  clause is in lieu of, and supersedes, any other FAR, DFAR, or other
-  clause or provision that addresses Government rights in computer
-  software under this License.
-
-9. MISCELLANEOUS.
-
-  This License represents the complete agreement concerning subject
-  matter hereof. If any provision of this License is held to be
-  unenforceable, such provision shall be reformed only to the extent
-  necessary to make it enforceable. This License shall be governed by
-  the law of the jurisdiction specified in a notice contained within
-  the Original Software (except to the extent applicable law, if any,
-  provides otherwise), excluding such jurisdiction's conflict-of-law
-  provisions. Any litigation relating to this License shall be subject
-  to the jurisdiction of the courts located in the jurisdiction and
-  venue specified in a notice contained within the Original Software,
-  with the losing party responsible for costs, including, without
-  limitation, court costs and reasonable attorneys' fees and expenses.
-  The application of the United Nations Convention on Contracts for
-  the International Sale of Goods is expressly excluded. Any law or
-  regulation which provides that the language of a contract shall be
-  construed against the drafter shall not apply to this License. You
-  agree that You alone are responsible for compliance with the United
-  States export administration regulations (and the export control
-  laws and regulation of any other countries) when You use, distribute
-  or otherwise make available any Covered Software.
-
-10. RESPONSIBILITY FOR CLAIMS.
-
-  As between Initial Developer and the Contributors, each party is
-  responsible for claims and damages arising, directly or indirectly,
-  out of its utilization of rights under this License and You agree to
-  work with Initial Developer and Contributors to distribute such
-  responsibility on an equitable basis. Nothing herein is intended or
-  shall be deemed to constitute any admission of liability.
-
- -
- -

NOTICE PURSUANT TO SECTION 9 OF THE COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL)

- -
The code released under the CDDL shall be governed by the laws of the
-State of California (excluding conflict-of-law provisions). Any
-litigation relating to this License shall be subject to the jurisdiction
-of the Federal Courts of the Northern District of California and the
-state courts of the State of California, with venue lying in Santa Clara
-County, California.
-
- -
- -

The GNU General Public License (GPL) Version 2, June 1991

- -
Copyright (C) 1989, 1991 Free Software Foundation, Inc.
-51 Franklin Street, Fifth Floor
-Boston, MA 02110-1335
-USA
-
-Everyone is permitted to copy and distribute verbatim copies
-of this license document, but changing it is not allowed.
-
-Preamble
-
-The licenses for most software are designed to take away your freedom to
-share and change it. By contrast, the GNU General Public License is
-intended to guarantee your freedom to share and change free software--to
-make sure the software is free for all its users. This General Public
-License applies to most of the Free Software Foundation's software and
-to any other program whose authors commit to using it. (Some other Free
-Software Foundation software is covered by the GNU Library General
-Public License instead.) You can apply it to your programs, too.
-
-When we speak of free software, we are referring to freedom, not price.
-Our General Public Licenses are designed to make sure that you have the
-freedom to distribute copies of free software (and charge for this
-service if you wish), that you receive source code or can get it if you
-want it, that you can change the software or use pieces of it in new
-free programs; and that you know you can do these things.
-
-To protect your rights, we need to make restrictions that forbid anyone
-to deny you these rights or to ask you to surrender the rights. These
-restrictions translate to certain responsibilities for you if you
-distribute copies of the software, or if you modify it.
-
-For example, if you distribute copies of such a program, whether gratis
-or for a fee, you must give the recipients all the rights that you have.
-You must make sure that they, too, receive or can get the source code.
-And you must show them these terms so they know their rights.
-
-We protect your rights with two steps: (1) copyright the software, and
-(2) offer you this license which gives you legal permission to copy,
-distribute and/or modify the software.
-
-Also, for each author's protection and ours, we want to make certain
-that everyone understands that there is no warranty for this free
-software. If the software is modified by someone else and passed on, we
-want its recipients to know that what they have is not the original, so
-that any problems introduced by others will not reflect on the original
-authors' reputations.
-
-Finally, any free program is threatened constantly by software patents.
-We wish to avoid the danger that redistributors of a free program will
-individually obtain patent licenses, in effect making the program
-proprietary. To prevent this, we have made it clear that any patent must
-be licensed for everyone's free use or not licensed at all.
-
-The precise terms and conditions for copying, distribution and
-modification follow.
-
-TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
-
-0. This License applies to any program or other work which contains a
-notice placed by the copyright holder saying it may be distributed under
-the terms of this General Public License. The "Program", below, refers
-to any such program or work, and a "work based on the Program" means
-either the Program or any derivative work under copyright law: that is
-to say, a work containing the Program or a portion of it, either
-verbatim or with modifications and/or translated into another language.
-(Hereinafter, translation is included without limitation in the term
-"modification".) Each licensee is addressed as "you".
-
-Activities other than copying, distribution and modification are not
-covered by this License; they are outside its scope. The act of running
-the Program is not restricted, and the output from the Program is
-covered only if its contents constitute a work based on the Program
-(independent of having been made by running the Program). Whether that
-is true depends on what the Program does.
-
-1. You may copy and distribute verbatim copies of the Program's source
-code as you receive it, in any medium, provided that you conspicuously
-and appropriately publish on each copy an appropriate copyright notice
-and disclaimer of warranty; keep intact all the notices that refer to
-this License and to the absence of any warranty; and give any other
-recipients of the Program a copy of this License along with the Program.
-
-You may charge a fee for the physical act of transferring a copy, and
-you may at your option offer warranty protection in exchange for a fee.
-
-2. You may modify your copy or copies of the Program or any portion of
-it, thus forming a work based on the Program, and copy and distribute
-such modifications or work under the terms of Section 1 above, provided
-that you also meet all of these conditions:
-
-    a) You must cause the modified files to carry prominent notices
-    stating that you changed the files and the date of any change.
-
-    b) You must cause any work that you distribute or publish, that in
-    whole or in part contains or is derived from the Program or any part
-    thereof, to be licensed as a whole at no charge to all third parties
-    under the terms of this License.
-
-    c) If the modified program normally reads commands interactively
-    when run, you must cause it, when started running for such
-    interactive use in the most ordinary way, to print or display an
-    announcement including an appropriate copyright notice and a notice
-    that there is no warranty (or else, saying that you provide a
-    warranty) and that users may redistribute the program under these
-    conditions, and telling the user how to view a copy of this License.
-    (Exception: if the Program itself is interactive but does not
-    normally print such an announcement, your work based on the Program
-    is not required to print an announcement.)
-
-These requirements apply to the modified work as a whole. If
-identifiable sections of that work are not derived from the Program, and
-can be reasonably considered independent and separate works in
-themselves, then this License, and its terms, do not apply to those
-sections when you distribute them as separate works. But when you
-distribute the same sections as part of a whole which is a work based on
-the Program, the distribution of the whole must be on the terms of this
-License, whose permissions for other licensees extend to the entire
-whole, and thus to each and every part regardless of who wrote it.
-
-Thus, it is not the intent of this section to claim rights or contest
-your rights to work written entirely by you; rather, the intent is to
-exercise the right to control the distribution of derivative or
-collective works based on the Program.
-
-In addition, mere aggregation of another work not based on the Program
-with the Program (or with a work based on the Program) on a volume of a
-storage or distribution medium does not bring the other work under the
-scope of this License.
-
-3. You may copy and distribute the Program (or a work based on it,
-under Section 2) in object code or executable form under the terms of
-Sections 1 and 2 above provided that you also do one of the following:
-
-    a) Accompany it with the complete corresponding machine-readable
-    source code, which must be distributed under the terms of Sections 1
-    and 2 above on a medium customarily used for software interchange; or,
-
-    b) Accompany it with a written offer, valid for at least three
-    years, to give any third party, for a charge no more than your cost
-    of physically performing source distribution, a complete
-    machine-readable copy of the corresponding source code, to be
-    distributed under the terms of Sections 1 and 2 above on a medium
-    customarily used for software interchange; or,
-
-    c) Accompany it with the information you received as to the offer to
-    distribute corresponding source code. (This alternative is allowed
-    only for noncommercial distribution and only if you received the
-    program in object code or executable form with such an offer, in
-    accord with Subsection b above.)
-
-The source code for a work means the preferred form of the work for
-making modifications to it. For an executable work, complete source code
-means all the source code for all modules it contains, plus any
-associated interface definition files, plus the scripts used to control
-compilation and installation of the executable. However, as a special
-exception, the source code distributed need not include anything that is
-normally distributed (in either source or binary form) with the major
-components (compiler, kernel, and so on) of the operating system on
-which the executable runs, unless that component itself accompanies the
-executable.
-
-If distribution of executable or object code is made by offering access
-to copy from a designated place, then offering equivalent access to copy
-the source code from the same place counts as distribution of the source
-code, even though third parties are not compelled to copy the source
-along with the object code.
-
-4. You may not copy, modify, sublicense, or distribute the Program
-except as expressly provided under this License. Any attempt otherwise
-to copy, modify, sublicense or distribute the Program is void, and will
-automatically terminate your rights under this License. However, parties
-who have received copies, or rights, from you under this License will
-not have their licenses terminated so long as such parties remain in
-full compliance.
-
-5. You are not required to accept this License, since you have not
-signed it. However, nothing else grants you permission to modify or
-distribute the Program or its derivative works. These actions are
-prohibited by law if you do not accept this License. Therefore, by
-modifying or distributing the Program (or any work based on the
-Program), you indicate your acceptance of this License to do so, and all
-its terms and conditions for copying, distributing or modifying the
-Program or works based on it.
-
-6. Each time you redistribute the Program (or any work based on the
-Program), the recipient automatically receives a license from the
-original licensor to copy, distribute or modify the Program subject to
-these terms and conditions. You may not impose any further restrictions
-on the recipients' exercise of the rights granted herein. You are not
-responsible for enforcing compliance by third parties to this License.
-
-7. If, as a consequence of a court judgment or allegation of patent
-infringement or for any other reason (not limited to patent issues),
-conditions are imposed on you (whether by court order, agreement or
-otherwise) that contradict the conditions of this License, they do not
-excuse you from the conditions of this License. If you cannot distribute
-so as to satisfy simultaneously your obligations under this License and
-any other pertinent obligations, then as a consequence you may not
-distribute the Program at all. For example, if a patent license would
-not permit royalty-free redistribution of the Program by all those who
-receive copies directly or indirectly through you, then the only way you
-could satisfy both it and this License would be to refrain entirely from
-distribution of the Program.
-
-If any portion of this section is held invalid or unenforceable under
-any particular circumstance, the balance of the section is intended to
-apply and the section as a whole is intended to apply in other
-circumstances.
-
-It is not the purpose of this section to induce you to infringe any
-patents or other property right claims or to contest validity of any
-such claims; this section has the sole purpose of protecting the
-integrity of the free software distribution system, which is implemented
-by public license practices. Many people have made generous
-contributions to the wide range of software distributed through that
-system in reliance on consistent application of that system; it is up to
-the author/donor to decide if he or she is willing to distribute
-software through any other system and a licensee cannot impose that choice.
-
-This section is intended to make thoroughly clear what is believed to be
-a consequence of the rest of this License.
-
-8. If the distribution and/or use of the Program is restricted in
-certain countries either by patents or by copyrighted interfaces, the
-original copyright holder who places the Program under this License may
-add an explicit geographical distribution limitation excluding those
-countries, so that distribution is permitted only in or among countries
-not thus excluded. In such case, this License incorporates the
-limitation as if written in the body of this License.
-
-9. The Free Software Foundation may publish revised and/or new
-versions of the General Public License from time to time. Such new
-versions will be similar in spirit to the present version, but may
-differ in detail to address new problems or concerns.
-
-Each version is given a distinguishing version number. If the Program
-specifies a version number of this License which applies to it and "any
-later version", you have the option of following the terms and
-conditions either of that version or of any later version published by
-the Free Software Foundation. If the Program does not specify a version
-number of this License, you may choose any version ever published by the
-Free Software Foundation.
-
-10. If you wish to incorporate parts of the Program into other free
-programs whose distribution conditions are different, write to the
-author to ask for permission. For software which is copyrighted by the
-Free Software Foundation, write to the Free Software Foundation; we
-sometimes make exceptions for this. Our decision will be guided by the
-two goals of preserving the free status of all derivatives of our free
-software and of promoting the sharing and reuse of software generally.
-
-NO WARRANTY
-
-11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO
-WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
-EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
-OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND,
-EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE
-ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH
-YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL
-NECESSARY SERVICING, REPAIR OR CORRECTION.
-
-12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
-WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
-AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR
-DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL
-DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM
-(INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED
-INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF
-THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR
-OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
-
-END OF TERMS AND CONDITIONS
-
-How to Apply These Terms to Your New Programs
-
-If you develop a new program, and you want it to be of the greatest
-possible use to the public, the best way to achieve this is to make it
-free software which everyone can redistribute and change under these terms.
-
-To do so, attach the following notices to the program. It is safest to
-attach them to the start of each source file to most effectively convey
-the exclusion of warranty; and each file should have at least the
-"copyright" line and a pointer to where the full notice is found.
-
-    One line to give the program's name and a brief idea of what it does.
-    Copyright (C) <year> <name of author>
-
-    This program is free software; you can redistribute it and/or modify
-    it under the terms of the GNU General Public License as published by
-    the Free Software Foundation; either version 2 of the License, or
-    (at your option) any later version.
-
-    This program is distributed in the hope that it will be useful, but
-    WITHOUT ANY WARRANTY; without even the implied warranty of
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-    General Public License for more details.
-
-    You should have received a copy of the GNU General Public License
-    along with this program; if not, write to the Free Software
-    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335 USA
-
-Also add information on how to contact you by electronic and paper mail.
-
-If the program is interactive, make it output a short notice like this
-when it starts in an interactive mode:
-
-    Gnomovision version 69, Copyright (C) year name of author
-    Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type
-    `show w'. This is free software, and you are welcome to redistribute
-    it under certain conditions; type `show c' for details.
-
-The hypothetical commands `show w' and `show c' should show the
-appropriate parts of the General Public License. Of course, the commands
-you use may be called something other than `show w' and `show c'; they
-could even be mouse-clicks or menu items--whatever suits your program.
-
-You should also get your employer (if you work as a programmer) or your
-school, if any, to sign a "copyright disclaimer" for the program, if
-necessary. Here is a sample; alter the names:
-
-    Yoyodyne, Inc., hereby disclaims all copyright interest in the
-    program `Gnomovision' (which makes passes at compilers) written by
-    James Hacker.
-
-    signature of Ty Coon, 1 April 1989
-    Ty Coon, President of Vice
-
-This General Public License does not permit incorporating your program
-into proprietary programs. If your program is a subroutine library, you
-may consider it more useful to permit linking proprietary applications
-with the library. If this is what you want to do, use the GNU Library
-General Public License instead of this License.
-
- -
- -
Certain source files distributed by Oracle America, Inc. and/or its
-affiliates are subject to the following clarification and special
-exception to the GPLv2, based on the GNU Project exception for its
-Classpath libraries, known as the GNU Classpath Exception, but only
-where Oracle has expressly included in the particular source file's
-header the words "Oracle designates this particular file as subject to
-the "Classpath" exception as provided by Oracle in the LICENSE file
-that accompanied this code."
-
-You should also note that Oracle includes multiple, independent
-programs in this software package. Some of those programs are provided
-under licenses deemed incompatible with the GPLv2 by the Free Software
-Foundation and others.  For example, the package includes programs
-licensed under the Apache License, Version 2.0.  Such programs are
-licensed to you under their original licenses.
-
-Oracle facilitates your further distribution of this package by adding
-the Classpath Exception to the necessary parts of its GPLv2 code, which
-permits you to use that code in combination with other independent
-modules not licensed under the GPLv2.  However, note that this would
-not permit you to commingle code under an incompatible license with
-Oracle's GPLv2 licensed code by, for example, cutting and pasting such
-code into a file also containing Oracle's GPLv2 licensed code and then
-distributing the result.  Additionally, if you were to remove the
-Classpath Exception from any of the files to which it applies and
-distribute the result, you would likely be required to license some or
-all of the other code in that distribution under the GPLv2 as well, and
-since the GPLv2 is incompatible with the license terms of some items
-included in the distribution by Oracle, removing the Classpath
-Exception could therefore effectively compromise your ability to
-further distribute the package.
-
-Proceed with caution and we recommend that you obtain the advice of a
-lawyer skilled in open source matters before removing the Classpath
-Exception or making modifications to this package which may
-subsequently be redistributed and/or involve the use of third party
-software.
-
-CLASSPATH EXCEPTION
-Linking this library statically or dynamically with other modules is
-making a combined work based on this library.  Thus, the terms and
-conditions of the GNU General Public License version 2 cover the whole
-combination.
-
-As a special exception, the copyright holders of this library give you
-permission to link this library with independent modules to produce an
-executable, regardless of the license terms of these independent
-modules, and to copy and distribute the resulting executable under
-terms of your choice, provided that you also meet, for each linked
-independent module, the terms and conditions of the license of that
-module.  An independent module is a module which is not derived from or
-based on this library.  If you modify this library, you may extend this
-exception to your version of the library, but you are not obligated to
-do so.  If you do not wish to do so, delete this exception statement
-from your version.
-
- - -
- - -
-
- - - - - - diff --git a/src/it/projects/springboot-rest/src/licenses/contents/Common+Development+and+Distribution+License+CDDL+and+GNU+Public+License+v2+wClasspath+Exception b/src/it/projects/springboot-rest/src/licenses/contents/Common+Development+and+Distribution+License+CDDL+and+GNU+Public+License+v2+wClasspath+Exception deleted file mode 100644 index a7a47ca11..000000000 --- a/src/it/projects/springboot-rest/src/licenses/contents/Common+Development+and+Distribution+License+CDDL+and+GNU+Public+License+v2+wClasspath+Exception +++ /dev/null @@ -1,819 +0,0 @@ - - - - - -NetBeans IDE Dual License Header and License Notice - - - - - - - - - - - - - -
- -
- - - - -
- -

-NetBeans IDE Dual License Header and License Notice

-

Oracle elects to use only the GNU Lesser General Public License version 2.1 -(LGPL) for any software where a choice of LGPL/GPL license versions are made -available with the language indicating that LGPLv2.1/GPLv2 or any later version -may be used, or where a choice of which version of the LGPL/GPL is applied is -unspecified.

-

For more -information on the license please see: the NetBeans -License -FAQs. -
-
-

-

COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0 -

-
-

1. Definitions.

-
-

1.1. "Contributor" means -each individual or entity that creates or -contributes to the creation of Modifications.

-

1.2. "Contributor Version" -means the combination of the Original -Software, prior Modifications used by a Contributor (if any), and the -Modifications made by that particular Contributor.

-

1.3. "Covered Software" -means (a) the Original Software, or (b) -Modifications, or (c) the combination of files containing Original -Software with files containing Modifications, in each case including -portions thereof.

-

1.4. "Executable" means -the Covered Software in any form other -than Source Code.

-

1.5. "Initial Developer" -means the individual or entity that first -makes Original Software available under this License.

-

1.6. "Larger Work" means a -work which combines Covered Software or -portions thereof with code not governed by the terms of this License.

-

1.7. "License" means this -document.

-

1.8. "Licensable" means -having the right to grant, to the maximum -extent possible, whether at the time of the initial grant or -subsequently acquired, any and all of the rights conveyed herein.

-

1.9 "Modifications" means -the Source Code and Executable form of any -of the following:

-
-

A. Any file that results -from an addition to, deletion from or -modification of the contents of a file containing Original Software or -previous Modifications;

-

B. Any new file that -contains any part of the Original Software -or previous Modification; or

-

C. Any new file that is -contributed or otherwise made available -under the terms of this License.

-
-

1.10. "Original Software" -means the Source Code and Executable -form of computer software code that is originally released under this -License.

-

1.11. "Patent Claims" -means any patent claim(s), now owned or -hereafter acquired, including without limitation, method, process, and -apparatus claims, in any patent Licensable by grantor.

-

1.12. "Source Code" means -(a) the common form of computer software -code in which modifications are made and (b) associated documentation -included in or with such code.

-

1.13. "You" (or "Your") -means an individual or a legal entity -exercising rights under, and complying with all of the terms of, this -License. For legal entities, "You" includes any entity which controls, -is controlled by, or is under common control with You. For purposes of -this definition, "control" means (a) the power, direct or indirect, to -cause the direction or management of such entity, whether by contract -or otherwise, or (b) ownership of more than fifty percent (50%) of the -outstanding shares or beneficial ownership of such entity.

-
-

2. License Grants.

-
-

2.1. The Initial Developer Grant.

-

Conditioned upon Your compliance with Section 3.1 below and -subject to third party intellectual property claims, the Initial -Developer hereby grants You a world-wide, royalty-free, non-exclusive -license:

-
-

(a) under intellectual -property rights (other than patent or -trademark) Licensable by Initial Developer, to use, reproduce, modify, -display, perform, sublicense and distribute the Original Software (or -portions thereof), with or without Modifications, and/or as part of a -Larger Work; and

-

(b) under Patent Claims -infringed by the making, using or -selling of Original Software, to make, have made, use, practice, sell, -and offer for sale, and/or otherwise dispose of the Original Software -(or portions thereof).

-

(c) The licenses granted -in Sections 2.1(a) and (b) are -effective on the date Initial Developer first distributes or otherwise -makes the Original Software available to a third party under the terms -of this License.

- (d) Notwithstanding Section -2.1(b) above, no patent license is granted: -(1) for code that You delete from the Original Software, or (2) for -infringements caused by: (i) the modification of the Original Software, -or (ii) the combination of the Original Software with other software or -devices.
-

2.2. Contributor Grant.

-

Conditioned upon Your compliance with Section 3.1 below and -subject to third party intellectual property claims, each Contributor -hereby grants You a world-wide, royalty-free, non-exclusive license:

-
-

(a) under intellectual -property rights (other than patent or -trademark) Licensable by Contributor to use, reproduce, modify, -display, perform, sublicense and distribute the Modifications created -by such Contributor (or portions thereof), either on an unmodified -basis, with other Modifications, as Covered Software and/or as part of -a Larger Work; and

-

(b) under Patent Claims -infringed by the making, using, or -selling of Modifications made by that Contributor either alone and/or -in combination with its Contributor Version (or portions of such -combination), to make, use, sell, offer for sale, have made, and/or -otherwise dispose of: (1) Modifications made by that Contributor (or -portions thereof); and (2) the combination of Modifications made by -that Contributor with its Contributor Version (or portions of such -combination).

-

(c) The licenses granted -in Sections 2.2(a) and 2.2(b) are -effective on the date Contributor first distributes or otherwise makes -the Modifications available to a third party.

-

(d) Notwithstanding -Section 2.2(b) above, no patent license is -granted: (1) for any code that Contributor has deleted from the -Contributor Version; (2) for infringements caused by: (i) third party -modifications of Contributor Version, or (ii) the combination of -Modifications made by that Contributor with other software (except as -part of the Contributor Version) or other devices; or (3) under Patent -Claims infringed by Covered Software in the absence of Modifications -made by that Contributor.

-
-
-

3. Distribution Obligations.

-
-

3.1. Availability of Source Code.

-

Any Covered Software that You distribute or otherwise make -available in Executable form must also be made available in Source Code -form and that Source Code form must be distributed only under the terms -of this License. You must include a copy of this License with every -copy of the Source Code form of the Covered Software You distribute or -otherwise make available. You must inform recipients of any such -Covered Software in Executable form as to how they can obtain such -Covered Software in Source Code form in a reasonable manner on or -through a medium customarily used for software exchange.

-

3.2. Modifications.

-

The Modifications that You create or to which You contribute are -governed by the terms of this License. You represent that You believe -Your Modifications are Your original creation(s) and/or You have -sufficient rights to grant the rights conveyed by this License.

-

3.3. Required Notices.

-

You must include a notice in each of Your Modifications that -identifies You as the Contributor of the Modification. You may not -remove or alter any copyright, patent or trademark notices contained -within the Covered Software, or any notices of licensing or any -descriptive text giving attribution to any Contributor or the Initial -Developer.

-

3.4. Application of Additional Terms.

-

You may not offer or impose any terms on any Covered Software in -Source Code form that alters or restricts the applicable version of -this License or the recipients’ rights hereunder. You may choose to -offer, and to charge a fee for, warranty, support, indemnity or -liability obligations to one or more recipients of Covered Software. -However, you may do so only on Your own behalf, and not on behalf of -the Initial Developer or any Contributor. You must make it absolutely -clear that any such warranty, support, indemnity or liability -obligation is offered by You alone, and You hereby agree to indemnify -the Initial Developer and every Contributor for any liability incurred -by the Initial Developer or such Contributor as a result of warranty, -support, indemnity or liability terms You offer.

-

3.5. Distribution of Executable -Versions.

-

You may distribute the Executable form of the Covered Software -under the terms of this License or under the terms of a license of Your -choice, which may contain terms different from this License, provided -that You are in compliance with the terms of this License and that the -license for the Executable form does not attempt to limit or alter the -recipient’s rights in the Source Code form from the rights set forth in -this License. If You distribute the Covered Software in Executable form -under a different license, You must make it absolutely clear that any -terms which differ from this License are offered by You alone, not by -the Initial Developer or Contributor. You hereby agree to indemnify the -Initial Developer and every Contributor for any liability incurred by -the Initial Developer or such Contributor as a result of any such terms -You offer.

-

3.6. Larger Works.

-

You may create a Larger Work by combining Covered Software with -other code not governed by the terms of this License and distribute the -Larger Work as a single product. In such a case, You must make sure the -requirements of this License are fulfilled for the Covered Software.

-
-

4. Versions of the License.

-
-

4.1. New Versions.

-

Oracle Corp. is the initial license steward and may -publish revised and/or new versions of this License from time to time. -Each version will be given a distinguishing version number. Except as -provided in Section 4.3, no one other than the license steward has the -right to modify this License.

-

4.2. Effect of New Versions.

-

You may always continue to use, distribute or otherwise make the -Covered Software available under the terms of the version of the -License under which You originally received the Covered Software. If -the Initial Developer includes a notice in the Original Software -prohibiting it from being distributed or otherwise made available under -any subsequent version of the License, You must distribute and make the -Covered Software available under the terms of the version of the -License under which You originally received the Covered Software. -Otherwise, You may also choose to use, distribute or otherwise make the -Covered Software available under the terms of any subsequent version of -the License published by the license steward.

-

4.3. Modified Versions.

-

When You are an Initial Developer and You want to create a new -license for Your Original Software, You may create and use a modified -version of this License if You: (a) rename the license and remove any -references to the name of the license steward (except to note that the -license differs from this License); and (b) otherwise make it clear -that the license contains terms which differ from this License.

-
-

5. DISCLAIMER OF WARRANTY.

-

COVERED SOFTWARE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, -WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, -WITHOUT LIMITATION, WARRANTIES THAT THE COVERED SOFTWARE IS FREE OF -DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. -THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED -SOFTWARE IS WITH YOU. SHOULD ANY COVERED SOFTWARE PROVE DEFECTIVE IN -ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) -ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS -DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. -NO USE OF ANY COVERED SOFTWARE IS AUTHORIZED HEREUNDER EXCEPT UNDER -THIS DISCLAIMER.

-

6. TERMINATION.

-
-

6.1. This License and the -rights granted hereunder will terminate -automatically if You fail to comply with terms herein and fail to cure -such breach within 30 days of becoming aware of the breach. Provisions -which, by their nature, must remain in effect beyond the termination of -this License shall survive.

-

6.2. If You assert a -patent infringement claim (excluding -declaratory judgment actions) against Initial Developer or a -Contributor (the Initial Developer or Contributor against whom You -assert such claim is referred to as "Participant") alleging that the -Participant Software (meaning the Contributor Version where the -Participant is a Contributor or the Original Software where the -Participant is the Initial Developer) directly or indirectly infringes -any patent, then any and all rights granted directly or indirectly to -You by such Participant, the Initial Developer (if the Initial -Developer is not the Participant) and all Contributors under Sections -2.1 and/or 2.2 of this License shall, upon 60 days notice from -Participant terminate prospectively and automatically at the expiration -of such 60 day notice period, unless if within such 60 day period You -withdraw Your claim with respect to the Participant Software against -such Participant either unilaterally or pursuant to a written agreement -with Participant.

-

6.3. In the event of -termination under Sections 6.1 or 6.2 above, -all end user licenses that have been validly granted by You or any -distributor hereunder prior to termination (excluding licenses granted -to You by any distributor) shall survive termination.

-
-

7. LIMITATION OF LIABILITY.

-

UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT -(INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL -DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED -SOFTWARE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY -PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOST -PROFITS, LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR -MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF -SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. -THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR -PERSONAL INJURY RESULTING FROM SUCH PARTY’S NEGLIGENCE TO THE EXTENT -APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT -ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL -DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU.

-

8. U.S. GOVERNMENT END USERS.

-

The Covered Software is a "commercial item," as that term is defined -in 48 C.F.R. 2.101 (Oct. 1995), consisting of "commercial computer -software" (as that term is defined at 48 C.F.R. -§252.227-7014(a)(1)) and "commercial computer software -documentation" as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). -Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through -227.7202-4 (June 1995), all U.S. Government End Users acquire Covered -Software with only those rights set forth herein. This U.S. Government -Rights clause is in lieu of, and supersedes, any other FAR, DFAR, or -other clause or provision that addresses Government rights in computer -software under this License.

-

9. MISCELLANEOUS.

-

This License represents the complete agreement concerning subject -matter hereof. If any provision of this License is held to be -unenforceable, such provision shall be reformed only to the extent -necessary to make it enforceable. This License shall be governed by the -law of the jurisdiction specified in a notice contained within the -Original Software (except to the extent applicable law, if any, -provides otherwise), excluding such jurisdiction’s conflict-of-law -provisions. Any litigation relating to this License shall be subject to -the jurisdiction of the courts located in the jurisdiction and venue -specified in a notice contained within the Original Software, with the -losing party responsible for costs, including, without limitation, -court costs and reasonable attorneys’ fees and expenses. The -application of the United Nations Convention on Contracts for the -International Sale of Goods is expressly excluded. Any law or -regulation which provides that the language of a contract shall be -construed against the drafter shall not apply to this License. You -agree that You alone are responsible for compliance with the United -States export administration regulations (and the export control laws -and regulation of any other countries) when You use, distribute or -otherwise make available any Covered Software.

-

10. RESPONSIBILITY FOR CLAIMS.

-

As between Initial Developer and the Contributors, each party is -responsible for claims and damages arising, directly or indirectly, out -of its utilization of rights under this License and You agree to work -with Initial Developer and Contributors to distribute such -responsibility on an equitable basis. Nothing herein is intended or -shall be deemed to constitute any admission of liability.

-

NOTICE PURSUANT TO SECTION 9 OF THE -COMMON DEVELOPMENT AND -DISTRIBUTION LICENSE (CDDL)

-

The code released under the CDDL shall be governed by the laws of -the State of California (excluding conflict-of-law provisions). Any -litigation relating to this License shall be subject to the -jurisdiction of the Federal Courts of the Northern District of -California and the state courts of the State of California, with venue -lying in Santa Clara County, California. -

-
-

The GNU General Public License (GPL) Version 2, June 1991 -

-
-

Copyright (C) 1989, 1991 Free Software Foundation, Inc. 59 Temple -Place, Suite 330, Boston, MA 02111-1307 USA

-

Everyone is permitted to copy and distribute verbatim copies of this -license document, but changing it is not allowed.

-

Preamble

-

The licenses for most software are designed to take away your -freedom to share and change it. By contrast, the GNU General Public -License is intended to guarantee your freedom to share and change free -software--to make sure the software is free for all its users. This -General Public License applies to most of the Free Software -Foundation's software and to any other program whose authors commit to -using it. (Some other Free Software Foundation software is covered by -the GNU Library General Public License instead.) You can apply it to -your programs, too.

-

When we speak of free software, we are referring to freedom, not -price. Our General Public Licenses are designed to make sure that you -have the freedom to distribute copies of free software (and charge for -this service if you wish), that you receive source code or can get it -if you want it, that you can change the software or use pieces of it in -new free programs; and that you know you can do these things.

-

To protect your rights, we need to make restrictions that forbid -anyone to deny you these rights or to ask you to surrender the rights. -These restrictions translate to certain responsibilities for you if you -distribute copies of the software, or if you modify it.

-

For example, if you distribute copies of such a program, whether -gratis or for a fee, you must give the recipients all the rights that -you have. You must make sure that they, too, receive or can get the -source code. And you must show them these terms so they know their -rights.

-

We protect your rights with two steps: (1) copyright the software, -and (2) offer you this license which gives you legal permission to -copy, distribute and/or modify the software.

-

Also, for each author's protection and ours, we want to make certain -that everyone understands that there is no warranty for this free -software. If the software is modified by someone else and passed on, we -want its recipients to know that what they have is not the original, so -that any problems introduced by others will not reflect on the original -authors' reputations.

-

Finally, any free program is threatened constantly by software -patents. We wish to avoid the danger that redistributors of a free -program will individually obtain patent licenses, in effect making the -program proprietary. To prevent this, we have made it clear that any -patent must be licensed for everyone's free use or not licensed at all.

-

The precise terms and conditions for copying, distribution and -modification follow.

-

TERMS AND CONDITIONS FOR COPYING, -DISTRIBUTION AND MODIFICATION

-

0. This License applies to -any program or other work which contains a notice placed by the -copyright holder saying it may be distributed under the terms of this -General Public License. The "Program", below, refers to any such -program or work, and a "work based on the Program" means either the -Program or any derivative work under copyright law: that is to say, a -work containing the Program or a portion of it, either verbatim or with -modifications and/or translated into another language. (Hereinafter, -translation is included without limitation in the term "modification".) -Each licensee is addressed as "you".

-

Activities other than copying, distribution and modification are not -covered by this License; they are outside its scope. The act of running -the Program is not restricted, and the output from the Program is -covered only if its contents constitute a work based on the Program -(independent of having been made by running the Program). Whether that -is true depends on what the Program does.

-

1. You may copy and -distribute verbatim copies of the Program's source code as you receive -it, in any medium, provided that you conspicuously and appropriately -publish on each copy an appropriate copyright notice and disclaimer of -warranty; keep intact all the notices that refer to this License and to -the absence of any warranty; and give any other recipients of the -Program a copy of this License along with the Program.

-

You may charge a fee for the physical act of transferring a copy, -and you may at your option offer warranty protection in exchange for a -fee.

-

2. You may modify your copy -or copies of the Program or any portion of it, thus forming a work -based on the Program, and copy and distribute such modifications or -work under the terms of Section 1 above, provided that you also meet -all of these conditions:

-
-

a) You must cause the modified files to carry prominent notices -stating that you changed the files and the date of any change.

-

b) You must cause any work that you distribute or publish, that in -whole or in part contains or is derived from the Program or any part -thereof, to be licensed as a whole at no charge to all third parties -under the terms of this License.

-

c) If the modified program normally reads commands interactively -when run, you must cause it, when started running for such interactive -use in the most ordinary way, to print or display an announcement -including an appropriate copyright notice and a notice that there is no -warranty (or else, saying that you provide a warranty) and that users -may redistribute the program under these conditions, and telling the -user how to view a copy of this License. (Exception: if the Program -itself is interactive but does not normally print such an announcement, -your work based on the Program is not required to print an -announcement.)

-
-

These requirements apply to the modified work as a whole. If -identifiable sections of that work are not derived from the Program, -and can be reasonably considered independent and separate works in -themselves, then this License, and its terms, do not apply to those -sections when you distribute them as separate works. But when you -distribute the same sections as part of a whole which is a work based -on the Program, the distribution of the whole must be on the terms of -this License, whose permissions for other licensees extend to the -entire whole, and thus to each and every part regardless of who wrote -it.

-

Thus, it is not the intent of this section to claim rights or -contest your rights to work written entirely by you; rather, the intent -is to exercise the right to control the distribution of derivative or -collective works based on the Program.

-

In addition, mere aggregation of another work not based on the -Program with the Program (or with a work based on the Program) on a -volume of a storage or distribution medium does not bring the other -work under the scope of this License.

-

3. You may copy and -distribute the Program (or a work based on it, under Section 2) in -object code or executable form under the terms of Sections 1 and 2 -above provided that you also do one of the following:

-
-

a) Accompany it with the complete corresponding machine-readable -source code, which must be distributed under the terms of Sections 1 -and 2 above on a medium customarily used for software interchange; or,

-

b) Accompany it with a written offer, valid for at least three -years, to give any third party, for a charge no more than your cost of -physically performing source distribution, a complete machine-readable -copy of the corresponding source code, to be distributed under the -terms of Sections 1 and 2 above on a medium customarily used for -software interchange; or,

-

c) Accompany it with the information you received as to the offer -to distribute corresponding source code. (This alternative is allowed -only for noncommercial distribution and only if you received the -program in object code or executable form with such an offer, in accord -with Subsection b above.)

-
-

The source code for a work means the preferred form of the work for -making modifications to it. For an executable work, complete source -code means all the source code for all modules it contains, plus any -associated interface definition files, plus the scripts used to control -compilation and installation of the executable. However, as a special -exception, the source code distributed need not include anything that -is normally distributed (in either source or binary form) with the -major components (compiler, kernel, and so on) of the operating system -on which the executable runs, unless that component itself accompanies -the executable.

-

If distribution of executable or object code is made by offering -access to copy from a designated place, then offering equivalent access -to copy the source code from the same place counts as distribution of -the source code, even though third parties are not compelled to copy -the source along with the object code.

-

4. You may not copy, modify, -sublicense, or distribute the Program except as expressly provided -under this License. Any attempt otherwise to copy, modify, sublicense -or distribute the Program is void, and will automatically terminate -your rights under this License. However, parties who have received -copies, or rights, from you under this License will not have their -licenses terminated so long as such parties remain in full compliance.

-

5. You are not required to -accept this License, since you have not signed it. However, nothing -else grants you permission to modify or distribute the Program or its -derivative works. These actions are prohibited by law if you do not -accept this License. Therefore, by modifying or distributing the -Program (or any work based on the Program), you indicate your -acceptance of this License to do so, and all its terms and conditions -for copying, distributing or modifying the Program or works based on it.

-

6. Each time you -redistribute the Program (or any work based on the Program), the -recipient automatically receives a license from the original licensor -to copy, distribute or modify the Program subject to these terms and -conditions. You may not impose any further restrictions on the -recipients' exercise of the rights granted herein. You are not -responsible for enforcing compliance by third parties to this License.

-

7. If, as a consequence of a -court judgment or allegation of patent infringement or for any other -reason (not limited to patent issues), conditions are imposed on you -(whether by court order, agreement or otherwise) that contradict the -conditions of this License, they do not excuse you from the conditions -of this License. If you cannot distribute so as to satisfy -simultaneously your obligations under this License and any other -pertinent obligations, then as a consequence you may not distribute the -Program at all. For example, if a patent license would not permit -royalty-free redistribution of the Program by all those who receive -copies directly or indirectly through you, then the only way you could -satisfy both it and this License would be to refrain entirely from -distribution of the Program.

-

If any portion of this section is held invalid or unenforceable -under any particular circumstance, the balance of the section is -intended to apply and the section as a whole is intended to apply in -other circumstances.

-

It is not the purpose of this section to induce you to infringe any -patents or other property right claims or to contest validity of any -such claims; this section has the sole purpose of protecting the -integrity of the free software distribution system, which is -implemented by public license practices. Many people have made generous -contributions to the wide range of software distributed through that -system in reliance on consistent application of that system; it is up -to the author/donor to decide if he or she is willing to distribute -software through any other system and a licensee cannot impose that -choice.

-

This section is intended to make thoroughly clear what is believed -to be a consequence of the rest of this License.

-

8. If the distribution -and/or use of the Program is restricted in certain countries either by -patents or by copyrighted interfaces, the original copyright holder who -places the Program under this License may add an explicit geographical -distribution limitation excluding those countries, so that distribution -is permitted only in or among countries not thus excluded. In such -case, this License incorporates the limitation as if written in the -body of this License.

-

9. The Free Software -Foundation may publish revised and/or new versions of the General -Public License from time to time. Such new versions will be similar in -spirit to the present version, but may differ in detail to address new -problems or concerns.

-

Each version is given a distinguishing version number. If the -Program specifies a version number of this License which applies to it -and "any later version", you have the option of following the terms and -conditions either of that version or of any later version published by -the Free Software Foundation. If the Program does not specify a version -number of this License, you may choose any version ever published by -the Free Software Foundation.

-

10. If you wish to -incorporate parts of the Program into other free programs whose -distribution conditions are different, write to the author to ask for -permission. For software which is copyrighted by the Free Software -Foundation, write to the Free Software Foundation; we sometimes make -exceptions for this. Our decision will be guided by the two goals of -preserving the free status of all derivatives of our free software and -of promoting the sharing and reuse of software generally.

-

NO WARRANTY

-

11. BECAUSE THE PROGRAM IS -LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE -EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN -WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM -"AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, -INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK -AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD -THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY -SERVICING, REPAIR OR CORRECTION.

-

12. IN NO EVENT UNLESS -REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT -HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE -PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY -GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF -THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO -LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY -YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY -OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF -THE POSSIBILITY OF SUCH DAMAGES.

-

END OF TERMS AND CONDITIONS

-

How to Apply These Terms to Your New -Programs

-

If you develop a new program, and you want it to be of the greatest -possible use to the public, the best way to achieve this is to make it -free software which everyone can redistribute and change under these -terms.

-

To do so, attach the following notices to the program. It is safest -to attach them to the start of each source file to most effectively -convey the exclusion of warranty; and each file should have at least -the "copyright" line and a pointer to where the full notice is found.

-
-

One line to give the program's name and a brief idea of what it -does.

-

Copyright (C)

-

This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License as -published by the Free Software Foundation; either version 2 of the -License, or (at your option) any later version.

-

This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License for more details.

-

You should have received a copy of the GNU General Public License -along with this program; if not, write to the Free Software Foundation, -Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA

-
-

Also add information on how to contact you by electronic and paper -mail.

-

If the program is interactive, make it output a short notice like -this when it starts in an interactive mode:

-
-

Gnomovision version 69, Copyright (C) year name of author
-Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type -`show w'. This is free software, and you are welcome to redistribute it -under certain conditions; type `show c' for details.

-
-

The hypothetical commands `show w' and `show c' should show the -appropriate parts of the General Public License. Of course, the -commands you use may be called something other than `show w' and `show -c'; they could even be mouse-clicks or menu items--whatever suits your -program.

-

You should also get your employer (if you work as a programmer) or -your school, if any, to sign a "copyright disclaimer" for the program, -if necessary. Here is a sample; alter the names:

-
-

Yoyodyne, Inc., hereby disclaims all copyright interest in the -program `Gnomovision' (which makes passes at compilers) written by -James Hacker.

-

signature of Ty Coon, 1 April 1989
-Ty Coon, President of Vice

-
-

This General Public License does not permit incorporating your -program into proprietary programs. If your program is a subroutine -library, you may consider it more useful to permit linking proprietary -applications with the library. If this is what you want to do, use the -GNU Library General Public License instead of this License.

-
-

"CLASSPATH" EXCEPTION TO THE GPL VERSION 2

-

-Certain source files distributed by Oracle America, Inc. -and/or its affiliates are subject to the following -clarification and special exception to the GPLv2, based on -the GNU Project exception for its Classpath libraries, known -as the GNU Classpath Exception, but only where Oracle has -expressly included in the particular source file's header -the words "Oracle designates this particular file as subject -to the "Classpath" exception as provided by Oracle in the -LICENSE file that accompanied this code." -

-

-You should also note that Oracle includes multiple, -independent programs in this software package. Some of those -programs are provided under licenses deemed incompatible -with the GPLv2 by the Free Software Foundation and others. -For example, the package includes programs licensed under -the Apache License, Version 2.0. Such programs are licensed -to you under their original licenses. -

-

-Oracle facilitates your further distribution of this package -by adding the Classpath Exception to the necessary parts of -its GPLv2 code, which permits you to use that code in -combination with other independent modules not licensed -under the GPLv2. However, note that this would not permit -you to commingle code under an incompatible license with -Oracle's GPLv2 licensed code by, for example, cutting and -pasting such code into a file also containing Oracle's GPLv2 -licensed code and then distributing the result. -

-

-Additionally, if you were to remove the Classpath Exception -from any of the files to which it applies and distribute the -result, you would likely be required to license some or all -of the other code in that distribution under the GPLv2 as -well, and since the GPLv2 is incompatible with the license -terms of some items included in the distribution by Oracle, -removing the Classpath Exception could therefore effectively -compromise your ability to further distribute the package. -

-

-Proceed with caution and we recommend that you obtain the -advice of a lawyer skilled in open source matters before -removing the Classpath Exception or making modifications to -this package which may subsequently be redistributed and/or -involve the use of third party software. -

-

-CLASSPATH EXCEPTION -

-

-Linking this library statically or dynamically with other -modules is making a combined work based on this library. -Thus, the terms and conditions of the GNU General Public -License version 2 cover the whole combination. -

-

-As a special exception, the copyright holders of this -library give you permission to link this library with -independent modules to produce an executable, regardless of -the license terms of these independent modules, and to copy -and distribute the resulting executable under terms of your -choice, provided that you also meet, for each linked -independent module, the terms and conditions of the license -of that module. An independent module is a module which is -not derived from or based on this library. If you modify -this library, you may extend this exception to your version -of the library, but you are not obligated to do so. If you -do not wish to do so, delete this exception statement from -your version.

- -
- -
- -
-
-
-
    -
  • facebook
  • -
  • youtube
  • -
  • google+
  • -
  • twitter
  • -
- - -
-
- By use of this website, you agree to the NetBeans Policies and Terms of Use. - © 2018, Oracle Corporation and/or its affiliates. Sponsored by Oracle logo -
-
- -
- - - - - -
- - \ No newline at end of file diff --git a/src/it/projects/springboot-rest/src/licenses/contents/Eclipse+Public+License+Version+10 b/src/it/projects/springboot-rest/src/licenses/contents/Eclipse+Public+License+Version+10 deleted file mode 100644 index 24937b64c..000000000 --- a/src/it/projects/springboot-rest/src/licenses/contents/Eclipse+Public+License+Version+10 +++ /dev/null @@ -1,87 +0,0 @@ -Eclipse Public License - v 1.0 - -THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. - -1. DEFINITIONS - -"Contribution" means: - -a) in the case of the initial Contributor, the initial code and documentation distributed under this Agreement, and -b) in the case of each subsequent Contributor: - -i) changes to the Program, and - -ii) additions to the Program; - -where such changes and/or additions to the Program originate from and are distributed by that particular Contributor. A Contribution 'originates' from a Contributor if it was added to the Program by such Contributor itself or anyone acting on such Contributor's behalf. Contributions do not include additions to the Program which: (i) are separate modules of software distributed in conjunction with the Program under their own license agreement, and (ii) are not derivative works of the Program. - -"Contributor" means any person or entity that distributes the Program. - -"Licensed Patents " mean patent claims licensable by a Contributor which are necessarily infringed by the use or sale of its Contribution alone or when combined with the Program. - -"Program" means the Contributions distributed in accordance with this Agreement. - -"Recipient" means anyone who receives the Program under this Agreement, including all Contributors. - -2. GRANT OF RIGHTS - -a) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free copyright license to reproduce, prepare derivative works of, publicly display, publicly perform, distribute and sublicense the Contribution of such Contributor, if any, and such derivative works, in source code and object code form. - -b) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free patent license under Licensed Patents to make, use, sell, offer to sell, import and otherwise transfer the Contribution of such Contributor, if any, in source code and object code form. This patent license shall apply to the combination of the Contribution and the Program if, at the time the Contribution is added by the Contributor, such addition of the Contribution causes such combination to be covered by the Licensed Patents. The patent license shall not apply to any other combinations which include the Contribution. No hardware per se is licensed hereunder. - -c) Recipient understands that although each Contributor grants the licenses to its Contributions set forth herein, no assurances are provided by any Contributor that the Program does not infringe the patent or other intellectual property rights of any other entity. Each Contributor disclaims any liability to Recipient for claims brought by any other entity based on infringement of intellectual property rights or otherwise. As a condition to exercising the rights and licenses granted hereunder, each Recipient hereby assumes sole responsibility to secure any other intellectual property rights needed, if any. For example, if a third party patent license is required to allow Recipient to distribute the Program, it is Recipient's responsibility to acquire that license before distributing the Program. - -d) Each Contributor represents that to its knowledge it has sufficient copyright rights in its Contribution, if any, to grant the copyright license set forth in this Agreement. - -3. REQUIREMENTS - -A Contributor may choose to distribute the Program in object code form under its own license agreement, provided that: - -a) it complies with the terms and conditions of this Agreement; and - -b) its license agreement: - -i) effectively disclaims on behalf of all Contributors all warranties and conditions, express and implied, including warranties or conditions of title and non-infringement, and implied warranties or conditions of merchantability and fitness for a particular purpose; - -ii) effectively excludes on behalf of all Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost profits; - -iii) states that any provisions which differ from this Agreement are offered by that Contributor alone and not by any other party; and - -iv) states that source code for the Program is available from such Contributor, and informs licensees how to obtain it in a reasonable manner on or through a medium customarily used for software exchange. - -When the Program is made available in source code form: - -a) it must be made available under this Agreement; and - -b) a copy of this Agreement must be included with each copy of the Program. - -Contributors may not remove or alter any copyright notices contained within the Program. - -Each Contributor must identify itself as the originator of its Contribution, if any, in a manner that reasonably allows subsequent Recipients to identify the originator of the Contribution. - -4. COMMERCIAL DISTRIBUTION - -Commercial distributors of software may accept certain responsibilities with respect to end users, business partners and the like. While this license is intended to facilitate the commercial use of the Program, the Contributor who includes the Program in a commercial product offering should do so in a manner which does not create potential liability for other Contributors. Therefore, if a Contributor includes the Program in a commercial product offering, such Contributor ("Commercial Contributor") hereby agrees to defend and indemnify every other Contributor ("Indemnified Contributor") against any losses, damages and costs (collectively "Losses") arising from claims, lawsuits and other legal actions brought by a third party against the Indemnified Contributor to the extent caused by the acts or omissions of such Commercial Contributor in connection with its distribution of the Program in a commercial product offering. The obligations in this section do not apply to any claims or Losses relating to any actual or alleged intellectual property infringement. In order to qualify, an Indemnified Contributor must: a) promptly notify the Commercial Contributor in writing of such claim, and b) allow the Commercial Contributor to control, and cooperate with the Commercial Contributor in, the defense and any related settlement negotiations. The Indemnified Contributor may participate in any such claim at its own expense. - -For example, a Contributor might include the Program in a commercial product offering, Product X. That Contributor is then a Commercial Contributor. If that Commercial Contributor then makes performance claims, or offers warranties related to Product X, those performance claims and warranties are such Commercial Contributor's responsibility alone. Under this section, the Commercial Contributor would have to defend claims against the other Contributors related to those performance claims and warranties, and if a court requires any other Contributor to pay any damages as a result, the Commercial Contributor must pay those damages. - -5. NO WARRANTY - -EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely responsible for determining the appropriateness of using and distributing the Program and assumes all risks associated with its exercise of rights under this Agreement , including but not limited to the risks and costs of program errors, compliance with applicable laws, damage to or loss of data, programs or equipment, and unavailability or interruption of operations. - -6. DISCLAIMER OF LIABILITY - -EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - -7. GENERAL - -If any provision of this Agreement is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this Agreement, and without further action by the parties hereto, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. - -If Recipient institutes patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Program itself (excluding combinations of the Program with other software or hardware) infringes such Recipient's patent(s), then such Recipient's rights granted under Section 2(b) shall terminate as of the date such litigation is filed. - -All Recipient's rights under this Agreement shall terminate if it fails to comply with any of the material terms or conditions of this Agreement and does not cure such failure in a reasonable period of time after becoming aware of such noncompliance. If all Recipient's rights under this Agreement terminate, Recipient agrees to cease use and distribution of the Program as soon as reasonably practicable. However, Recipient's obligations under this Agreement and any licenses granted by Recipient relating to the Program shall continue and survive. - -Everyone is permitted to copy and distribute copies of this Agreement, but in order to avoid inconsistency the Agreement is copyrighted and may only be modified in the following manner. The Agreement Steward reserves the right to publish new versions (including revisions) of this Agreement from time to time. No one other than the Agreement Steward has the right to modify this Agreement. The Eclipse Foundation is the initial Agreement Steward. The Eclipse Foundation may assign the responsibility to serve as the Agreement Steward to a suitable separate entity. Each new version of the Agreement will be given a distinguishing version number. The Program (including Contributions) may always be distributed subject to the version of the Agreement under which it was received. In addition, after a new version of the Agreement is published, Contributor may elect to distribute the Program (including its Contributions) under the new version. Except as expressly stated in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to the intellectual property of any Contributor under this Agreement, whether expressly, by implication, estoppel or otherwise. All rights in the Program not expressly granted under this Agreement are reserved. - -This Agreement is governed by the laws of the State of New York and the intellectual property laws of the United States of America. No party to this Agreement will bring a legal action under this Agreement more than one year after the cause of action arose. Each party waives its rights to a jury trial in any resulting litigation. - diff --git a/src/it/projects/springboot-rest/src/licenses/contents/GNU+General+Public+License+Version+2+with+the+Classpath+Exception b/src/it/projects/springboot-rest/src/licenses/contents/GNU+General+Public+License+Version+2+with+the+Classpath+Exception deleted file mode 100644 index fd91b6f18..000000000 --- a/src/it/projects/springboot-rest/src/licenses/contents/GNU+General+Public+License+Version+2+with+the+Classpath+Exception +++ /dev/null @@ -1,363 +0,0 @@ - GNU GENERAL PUBLIC LICENSE - Version 2, June 1991 - - Copyright (C) 1989, 1991 Free Software Foundation, Inc., - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - Preamble - - The licenses for most software are designed to take away your -freedom to share and change it. By contrast, the GNU General Public -License is intended to guarantee your freedom to share and change free -software--to make sure the software is free for all its users. This -General Public License applies to most of the Free Software -Foundation's software and to any other program whose authors commit to -using it. (Some other Free Software Foundation software is covered by -the GNU Lesser General Public License instead.) You can apply it to -your programs, too. - - When we speak of free software, we are referring to freedom, not -price. Our General Public Licenses are designed to make sure that you -have the freedom to distribute copies of free software (and charge for -this service if you wish), that you receive source code or can get it -if you want it, that you can change the software or use pieces of it -in new free programs; and that you know you can do these things. - - To protect your rights, we need to make restrictions that forbid -anyone to deny you these rights or to ask you to surrender the rights. -These restrictions translate to certain responsibilities for you if you -distribute copies of the software, or if you modify it. - - For example, if you distribute copies of such a program, whether -gratis or for a fee, you must give the recipients all the rights that -you have. You must make sure that they, too, receive or can get the -source code. And you must show them these terms so they know their -rights. - - We protect your rights with two steps: (1) copyright the software, and -(2) offer you this license which gives you legal permission to copy, -distribute and/or modify the software. - - Also, for each author's protection and ours, we want to make certain -that everyone understands that there is no warranty for this free -software. If the software is modified by someone else and passed on, we -want its recipients to know that what they have is not the original, so -that any problems introduced by others will not reflect on the original -authors' reputations. - - Finally, any free program is threatened constantly by software -patents. We wish to avoid the danger that redistributors of a free -program will individually obtain patent licenses, in effect making the -program proprietary. To prevent this, we have made it clear that any -patent must be licensed for everyone's free use or not licensed at all. - - The precise terms and conditions for copying, distribution and -modification follow. - - GNU GENERAL PUBLIC LICENSE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - - 0. This License applies to any program or other work which contains -a notice placed by the copyright holder saying it may be distributed -under the terms of this General Public License. The "Program", below, -refers to any such program or work, and a "work based on the Program" -means either the Program or any derivative work under copyright law: -that is to say, a work containing the Program or a portion of it, -either verbatim or with modifications and/or translated into another -language. (Hereinafter, translation is included without limitation in -the term "modification".) Each licensee is addressed as "you". - -Activities other than copying, distribution and modification are not -covered by this License; they are outside its scope. The act of -running the Program is not restricted, and the output from the Program -is covered only if its contents constitute a work based on the -Program (independent of having been made by running the Program). -Whether that is true depends on what the Program does. - - 1. You may copy and distribute verbatim copies of the Program's -source code as you receive it, in any medium, provided that you -conspicuously and appropriately publish on each copy an appropriate -copyright notice and disclaimer of warranty; keep intact all the -notices that refer to this License and to the absence of any warranty; -and give any other recipients of the Program a copy of this License -along with the Program. - -You may charge a fee for the physical act of transferring a copy, and -you may at your option offer warranty protection in exchange for a fee. - - 2. You may modify your copy or copies of the Program or any portion -of it, thus forming a work based on the Program, and copy and -distribute such modifications or work under the terms of Section 1 -above, provided that you also meet all of these conditions: - - a) You must cause the modified files to carry prominent notices - stating that you changed the files and the date of any change. - - b) You must cause any work that you distribute or publish, that in - whole or in part contains or is derived from the Program or any - part thereof, to be licensed as a whole at no charge to all third - parties under the terms of this License. - - c) If the modified program normally reads commands interactively - when run, you must cause it, when started running for such - interactive use in the most ordinary way, to print or display an - announcement including an appropriate copyright notice and a - notice that there is no warranty (or else, saying that you provide - a warranty) and that users may redistribute the program under - these conditions, and telling the user how to view a copy of this - License. (Exception: if the Program itself is interactive but - does not normally print such an announcement, your work based on - the Program is not required to print an announcement.) - -These requirements apply to the modified work as a whole. If -identifiable sections of that work are not derived from the Program, -and can be reasonably considered independent and separate works in -themselves, then this License, and its terms, do not apply to those -sections when you distribute them as separate works. But when you -distribute the same sections as part of a whole which is a work based -on the Program, the distribution of the whole must be on the terms of -this License, whose permissions for other licensees extend to the -entire whole, and thus to each and every part regardless of who wrote it. - -Thus, it is not the intent of this section to claim rights or contest -your rights to work written entirely by you; rather, the intent is to -exercise the right to control the distribution of derivative or -collective works based on the Program. - -In addition, mere aggregation of another work not based on the Program -with the Program (or with a work based on the Program) on a volume of -a storage or distribution medium does not bring the other work under -the scope of this License. - - 3. You may copy and distribute the Program (or a work based on it, -under Section 2) in object code or executable form under the terms of -Sections 1 and 2 above provided that you also do one of the following: - - a) Accompany it with the complete corresponding machine-readable - source code, which must be distributed under the terms of Sections - 1 and 2 above on a medium customarily used for software interchange; or, - - b) Accompany it with a written offer, valid for at least three - years, to give any third party, for a charge no more than your - cost of physically performing source distribution, a complete - machine-readable copy of the corresponding source code, to be - distributed under the terms of Sections 1 and 2 above on a medium - customarily used for software interchange; or, - - c) Accompany it with the information you received as to the offer - to distribute corresponding source code. (This alternative is - allowed only for noncommercial distribution and only if you - received the program in object code or executable form with such - an offer, in accord with Subsection b above.) - -The source code for a work means the preferred form of the work for -making modifications to it. For an executable work, complete source -code means all the source code for all modules it contains, plus any -associated interface definition files, plus the scripts used to -control compilation and installation of the executable. However, as a -special exception, the source code distributed need not include -anything that is normally distributed (in either source or binary -form) with the major components (compiler, kernel, and so on) of the -operating system on which the executable runs, unless that component -itself accompanies the executable. - -If distribution of executable or object code is made by offering -access to copy from a designated place, then offering equivalent -access to copy the source code from the same place counts as -distribution of the source code, even though third parties are not -compelled to copy the source along with the object code. - - 4. You may not copy, modify, sublicense, or distribute the Program -except as expressly provided under this License. Any attempt -otherwise to copy, modify, sublicense or distribute the Program is -void, and will automatically terminate your rights under this License. -However, parties who have received copies, or rights, from you under -this License will not have their licenses terminated so long as such -parties remain in full compliance. - - 5. You are not required to accept this License, since you have not -signed it. However, nothing else grants you permission to modify or -distribute the Program or its derivative works. These actions are -prohibited by law if you do not accept this License. Therefore, by -modifying or distributing the Program (or any work based on the -Program), you indicate your acceptance of this License to do so, and -all its terms and conditions for copying, distributing or modifying -the Program or works based on it. - - 6. Each time you redistribute the Program (or any work based on the -Program), the recipient automatically receives a license from the -original licensor to copy, distribute or modify the Program subject to -these terms and conditions. You may not impose any further -restrictions on the recipients' exercise of the rights granted herein. -You are not responsible for enforcing compliance by third parties to -this License. - - 7. If, as a consequence of a court judgment or allegation of patent -infringement or for any other reason (not limited to patent issues), -conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot -distribute so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you -may not distribute the Program at all. For example, if a patent -license would not permit royalty-free redistribution of the Program by -all those who receive copies directly or indirectly through you, then -the only way you could satisfy both it and this License would be to -refrain entirely from distribution of the Program. - -If any portion of this section is held invalid or unenforceable under -any particular circumstance, the balance of the section is intended to -apply and the section as a whole is intended to apply in other -circumstances. - -It is not the purpose of this section to induce you to infringe any -patents or other property right claims or to contest validity of any -such claims; this section has the sole purpose of protecting the -integrity of the free software distribution system, which is -implemented by public license practices. Many people have made -generous contributions to the wide range of software distributed -through that system in reliance on consistent application of that -system; it is up to the author/donor to decide if he or she is willing -to distribute software through any other system and a licensee cannot -impose that choice. - -This section is intended to make thoroughly clear what is believed to -be a consequence of the rest of this License. - - 8. If the distribution and/or use of the Program is restricted in -certain countries either by patents or by copyrighted interfaces, the -original copyright holder who places the Program under this License -may add an explicit geographical distribution limitation excluding -those countries, so that distribution is permitted only in or among -countries not thus excluded. In such case, this License incorporates -the limitation as if written in the body of this License. - - 9. The Free Software Foundation may publish revised and/or new versions -of the General Public License from time to time. Such new versions will -be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. - -Each version is given a distinguishing version number. If the Program -specifies a version number of this License which applies to it and "any -later version", you have the option of following the terms and conditions -either of that version or of any later version published by the Free -Software Foundation. If the Program does not specify a version number of -this License, you may choose any version ever published by the Free Software -Foundation. - - 10. If you wish to incorporate parts of the Program into other free -programs whose distribution conditions are different, write to the author -to ask for permission. For software which is copyrighted by the Free -Software Foundation, write to the Free Software Foundation; we sometimes -make exceptions for this. Our decision will be guided by the two goals -of preserving the free status of all derivatives of our free software and -of promoting the sharing and reuse of software generally. - - NO WARRANTY - - 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY -FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN -OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES -PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED -OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS -TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE -PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, -REPAIR OR CORRECTION. - - 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR -REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, -INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING -OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED -TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY -YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER -PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE -POSSIBILITY OF SUCH DAMAGES. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Programs - - If you develop a new program, and you want it to be of the greatest -possible use to the public, the best way to achieve this is to make it -free software which everyone can redistribute and change under these terms. - - To do so, attach the following notices to the program. It is safest -to attach them to the start of each source file to most effectively -convey the exclusion of warranty; and each file should have at least -the "copyright" line and a pointer to where the full notice is found. - - - Copyright (C) - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License along - with this program; if not, write to the Free Software Foundation, Inc., - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. - -Also add information on how to contact you by electronic and paper mail. - -If the program is interactive, make it output a short notice like this -when it starts in an interactive mode: - - Gnomovision version 69, Copyright (C) year name of author - Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. - This is free software, and you are welcome to redistribute it - under certain conditions; type `show c' for details. - -The hypothetical commands `show w' and `show c' should show the appropriate -parts of the General Public License. Of course, the commands you use may -be called something other than `show w' and `show c'; they could even be -mouse-clicks or menu items--whatever suits your program. - -You should also get your employer (if you work as a programmer) or your -school, if any, to sign a "copyright disclaimer" for the program, if -necessary. Here is a sample; alter the names: - - Yoyodyne, Inc., hereby disclaims all copyright interest in the program - `Gnomovision' (which makes passes at compilers) written by James Hacker. - - , 1 April 1989 - Ty Coon, President of Vice - -This General Public License does not permit incorporating your program into -proprietary programs. If your program is a subroutine library, you may -consider it more useful to permit linking proprietary applications with the -library. If this is what you want to do, use the GNU Lesser General -Public License instead of this License. - - -"CLASSPATH" EXCEPTION TO THE GPL - -Certain source files distributed by Oracle America and/or its affiliates are -subject to the following clarification and special exception to the GPL, but -only where Oracle has expressly included in the particular source file's header -the words "Oracle designates this particular file as subject to the "Classpath" -exception as provided by Oracle in the LICENSE file that accompanied this code." - - Linking this library statically or dynamically with other modules is making - a combined work based on this library. Thus, the terms and conditions of - the GNU General Public License cover the whole combination. - - As a special exception, the copyright holders of this library give you - permission to link this library with independent modules to produce an - executable, regardless of the license terms of these independent modules, - and to copy and distribute the resulting executable under terms of your - choice, provided that you also meet, for each linked independent module, - the terms and conditions of the license of that module. An independent - module is a module which is not derived from or based on this library. If - you modify this library, you may extend this exception to your version of - the library, but you are not obligated to do so. If you do not wish to do - so, delete this exception statement from your version. diff --git a/src/it/projects/springboot-rest/src/licenses/contents/GNU+Lesser+General+Public+License+v21+only b/src/it/projects/springboot-rest/src/licenses/contents/GNU+Lesser+General+Public+License+v21+only deleted file mode 100644 index 4362b4915..000000000 --- a/src/it/projects/springboot-rest/src/licenses/contents/GNU+Lesser+General+Public+License+v21+only +++ /dev/null @@ -1,502 +0,0 @@ - GNU LESSER GENERAL PUBLIC LICENSE - Version 2.1, February 1999 - - Copyright (C) 1991, 1999 Free Software Foundation, Inc. - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - -[This is the first released version of the Lesser GPL. It also counts - as the successor of the GNU Library Public License, version 2, hence - the version number 2.1.] - - Preamble - - The licenses for most software are designed to take away your -freedom to share and change it. By contrast, the GNU General Public -Licenses are intended to guarantee your freedom to share and change -free software--to make sure the software is free for all its users. - - This license, the Lesser General Public License, applies to some -specially designated software packages--typically libraries--of the -Free Software Foundation and other authors who decide to use it. You -can use it too, but we suggest you first think carefully about whether -this license or the ordinary General Public License is the better -strategy to use in any particular case, based on the explanations below. - - When we speak of free software, we are referring to freedom of use, -not price. Our General Public Licenses are designed to make sure that -you have the freedom to distribute copies of free software (and charge -for this service if you wish); that you receive source code or can get -it if you want it; that you can change the software and use pieces of -it in new free programs; and that you are informed that you can do -these things. - - To protect your rights, we need to make restrictions that forbid -distributors to deny you these rights or to ask you to surrender these -rights. These restrictions translate to certain responsibilities for -you if you distribute copies of the library or if you modify it. - - For example, if you distribute copies of the library, whether gratis -or for a fee, you must give the recipients all the rights that we gave -you. You must make sure that they, too, receive or can get the source -code. If you link other code with the library, you must provide -complete object files to the recipients, so that they can relink them -with the library after making changes to the library and recompiling -it. And you must show them these terms so they know their rights. - - We protect your rights with a two-step method: (1) we copyright the -library, and (2) we offer you this license, which gives you legal -permission to copy, distribute and/or modify the library. - - To protect each distributor, we want to make it very clear that -there is no warranty for the free library. Also, if the library is -modified by someone else and passed on, the recipients should know -that what they have is not the original version, so that the original -author's reputation will not be affected by problems that might be -introduced by others. - - Finally, software patents pose a constant threat to the existence of -any free program. We wish to make sure that a company cannot -effectively restrict the users of a free program by obtaining a -restrictive license from a patent holder. Therefore, we insist that -any patent license obtained for a version of the library must be -consistent with the full freedom of use specified in this license. - - Most GNU software, including some libraries, is covered by the -ordinary GNU General Public License. This license, the GNU Lesser -General Public License, applies to certain designated libraries, and -is quite different from the ordinary General Public License. We use -this license for certain libraries in order to permit linking those -libraries into non-free programs. - - When a program is linked with a library, whether statically or using -a shared library, the combination of the two is legally speaking a -combined work, a derivative of the original library. The ordinary -General Public License therefore permits such linking only if the -entire combination fits its criteria of freedom. The Lesser General -Public License permits more lax criteria for linking other code with -the library. - - We call this license the "Lesser" General Public License because it -does Less to protect the user's freedom than the ordinary General -Public License. It also provides other free software developers Less -of an advantage over competing non-free programs. These disadvantages -are the reason we use the ordinary General Public License for many -libraries. However, the Lesser license provides advantages in certain -special circumstances. - - For example, on rare occasions, there may be a special need to -encourage the widest possible use of a certain library, so that it becomes -a de-facto standard. To achieve this, non-free programs must be -allowed to use the library. A more frequent case is that a free -library does the same job as widely used non-free libraries. In this -case, there is little to gain by limiting the free library to free -software only, so we use the Lesser General Public License. - - In other cases, permission to use a particular library in non-free -programs enables a greater number of people to use a large body of -free software. For example, permission to use the GNU C Library in -non-free programs enables many more people to use the whole GNU -operating system, as well as its variant, the GNU/Linux operating -system. - - Although the Lesser General Public License is Less protective of the -users' freedom, it does ensure that the user of a program that is -linked with the Library has the freedom and the wherewithal to run -that program using a modified version of the Library. - - The precise terms and conditions for copying, distribution and -modification follow. Pay close attention to the difference between a -"work based on the library" and a "work that uses the library". The -former contains code derived from the library, whereas the latter must -be combined with the library in order to run. - - GNU LESSER GENERAL PUBLIC LICENSE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - - 0. This License Agreement applies to any software library or other -program which contains a notice placed by the copyright holder or -other authorized party saying it may be distributed under the terms of -this Lesser General Public License (also called "this License"). -Each licensee is addressed as "you". - - A "library" means a collection of software functions and/or data -prepared so as to be conveniently linked with application programs -(which use some of those functions and data) to form executables. - - The "Library", below, refers to any such software library or work -which has been distributed under these terms. A "work based on the -Library" means either the Library or any derivative work under -copyright law: that is to say, a work containing the Library or a -portion of it, either verbatim or with modifications and/or translated -straightforwardly into another language. (Hereinafter, translation is -included without limitation in the term "modification".) - - "Source code" for a work means the preferred form of the work for -making modifications to it. For a library, complete source code means -all the source code for all modules it contains, plus any associated -interface definition files, plus the scripts used to control compilation -and installation of the library. - - Activities other than copying, distribution and modification are not -covered by this License; they are outside its scope. The act of -running a program using the Library is not restricted, and output from -such a program is covered only if its contents constitute a work based -on the Library (independent of the use of the Library in a tool for -writing it). Whether that is true depends on what the Library does -and what the program that uses the Library does. - - 1. You may copy and distribute verbatim copies of the Library's -complete source code as you receive it, in any medium, provided that -you conspicuously and appropriately publish on each copy an -appropriate copyright notice and disclaimer of warranty; keep intact -all the notices that refer to this License and to the absence of any -warranty; and distribute a copy of this License along with the -Library. - - You may charge a fee for the physical act of transferring a copy, -and you may at your option offer warranty protection in exchange for a -fee. - - 2. You may modify your copy or copies of the Library or any portion -of it, thus forming a work based on the Library, and copy and -distribute such modifications or work under the terms of Section 1 -above, provided that you also meet all of these conditions: - - a) The modified work must itself be a software library. - - b) You must cause the files modified to carry prominent notices - stating that you changed the files and the date of any change. - - c) You must cause the whole of the work to be licensed at no - charge to all third parties under the terms of this License. - - d) If a facility in the modified Library refers to a function or a - table of data to be supplied by an application program that uses - the facility, other than as an argument passed when the facility - is invoked, then you must make a good faith effort to ensure that, - in the event an application does not supply such function or - table, the facility still operates, and performs whatever part of - its purpose remains meaningful. - - (For example, a function in a library to compute square roots has - a purpose that is entirely well-defined independent of the - application. Therefore, Subsection 2d requires that any - application-supplied function or table used by this function must - be optional: if the application does not supply it, the square - root function must still compute square roots.) - -These requirements apply to the modified work as a whole. If -identifiable sections of that work are not derived from the Library, -and can be reasonably considered independent and separate works in -themselves, then this License, and its terms, do not apply to those -sections when you distribute them as separate works. But when you -distribute the same sections as part of a whole which is a work based -on the Library, the distribution of the whole must be on the terms of -this License, whose permissions for other licensees extend to the -entire whole, and thus to each and every part regardless of who wrote -it. - -Thus, it is not the intent of this section to claim rights or contest -your rights to work written entirely by you; rather, the intent is to -exercise the right to control the distribution of derivative or -collective works based on the Library. - -In addition, mere aggregation of another work not based on the Library -with the Library (or with a work based on the Library) on a volume of -a storage or distribution medium does not bring the other work under -the scope of this License. - - 3. You may opt to apply the terms of the ordinary GNU General Public -License instead of this License to a given copy of the Library. To do -this, you must alter all the notices that refer to this License, so -that they refer to the ordinary GNU General Public License, version 2, -instead of to this License. (If a newer version than version 2 of the -ordinary GNU General Public License has appeared, then you can specify -that version instead if you wish.) Do not make any other change in -these notices. - - Once this change is made in a given copy, it is irreversible for -that copy, so the ordinary GNU General Public License applies to all -subsequent copies and derivative works made from that copy. - - This option is useful when you wish to copy part of the code of -the Library into a program that is not a library. - - 4. You may copy and distribute the Library (or a portion or -derivative of it, under Section 2) in object code or executable form -under the terms of Sections 1 and 2 above provided that you accompany -it with the complete corresponding machine-readable source code, which -must be distributed under the terms of Sections 1 and 2 above on a -medium customarily used for software interchange. - - If distribution of object code is made by offering access to copy -from a designated place, then offering equivalent access to copy the -source code from the same place satisfies the requirement to -distribute the source code, even though third parties are not -compelled to copy the source along with the object code. - - 5. A program that contains no derivative of any portion of the -Library, but is designed to work with the Library by being compiled or -linked with it, is called a "work that uses the Library". Such a -work, in isolation, is not a derivative work of the Library, and -therefore falls outside the scope of this License. - - However, linking a "work that uses the Library" with the Library -creates an executable that is a derivative of the Library (because it -contains portions of the Library), rather than a "work that uses the -library". The executable is therefore covered by this License. -Section 6 states terms for distribution of such executables. - - When a "work that uses the Library" uses material from a header file -that is part of the Library, the object code for the work may be a -derivative work of the Library even though the source code is not. -Whether this is true is especially significant if the work can be -linked without the Library, or if the work is itself a library. The -threshold for this to be true is not precisely defined by law. - - If such an object file uses only numerical parameters, data -structure layouts and accessors, and small macros and small inline -functions (ten lines or less in length), then the use of the object -file is unrestricted, regardless of whether it is legally a derivative -work. (Executables containing this object code plus portions of the -Library will still fall under Section 6.) - - Otherwise, if the work is a derivative of the Library, you may -distribute the object code for the work under the terms of Section 6. -Any executables containing that work also fall under Section 6, -whether or not they are linked directly with the Library itself. - - 6. As an exception to the Sections above, you may also combine or -link a "work that uses the Library" with the Library to produce a -work containing portions of the Library, and distribute that work -under terms of your choice, provided that the terms permit -modification of the work for the customer's own use and reverse -engineering for debugging such modifications. - - You must give prominent notice with each copy of the work that the -Library is used in it and that the Library and its use are covered by -this License. You must supply a copy of this License. If the work -during execution displays copyright notices, you must include the -copyright notice for the Library among them, as well as a reference -directing the user to the copy of this License. Also, you must do one -of these things: - - a) Accompany the work with the complete corresponding - machine-readable source code for the Library including whatever - changes were used in the work (which must be distributed under - Sections 1 and 2 above); and, if the work is an executable linked - with the Library, with the complete machine-readable "work that - uses the Library", as object code and/or source code, so that the - user can modify the Library and then relink to produce a modified - executable containing the modified Library. (It is understood - that the user who changes the contents of definitions files in the - Library will not necessarily be able to recompile the application - to use the modified definitions.) - - b) Use a suitable shared library mechanism for linking with the - Library. A suitable mechanism is one that (1) uses at run time a - copy of the library already present on the user's computer system, - rather than copying library functions into the executable, and (2) - will operate properly with a modified version of the library, if - the user installs one, as long as the modified version is - interface-compatible with the version that the work was made with. - - c) Accompany the work with a written offer, valid for at - least three years, to give the same user the materials - specified in Subsection 6a, above, for a charge no more - than the cost of performing this distribution. - - d) If distribution of the work is made by offering access to copy - from a designated place, offer equivalent access to copy the above - specified materials from the same place. - - e) Verify that the user has already received a copy of these - materials or that you have already sent this user a copy. - - For an executable, the required form of the "work that uses the -Library" must include any data and utility programs needed for -reproducing the executable from it. However, as a special exception, -the materials to be distributed need not include anything that is -normally distributed (in either source or binary form) with the major -components (compiler, kernel, and so on) of the operating system on -which the executable runs, unless that component itself accompanies -the executable. - - It may happen that this requirement contradicts the license -restrictions of other proprietary libraries that do not normally -accompany the operating system. Such a contradiction means you cannot -use both them and the Library together in an executable that you -distribute. - - 7. You may place library facilities that are a work based on the -Library side-by-side in a single library together with other library -facilities not covered by this License, and distribute such a combined -library, provided that the separate distribution of the work based on -the Library and of the other library facilities is otherwise -permitted, and provided that you do these two things: - - a) Accompany the combined library with a copy of the same work - based on the Library, uncombined with any other library - facilities. This must be distributed under the terms of the - Sections above. - - b) Give prominent notice with the combined library of the fact - that part of it is a work based on the Library, and explaining - where to find the accompanying uncombined form of the same work. - - 8. You may not copy, modify, sublicense, link with, or distribute -the Library except as expressly provided under this License. Any -attempt otherwise to copy, modify, sublicense, link with, or -distribute the Library is void, and will automatically terminate your -rights under this License. However, parties who have received copies, -or rights, from you under this License will not have their licenses -terminated so long as such parties remain in full compliance. - - 9. You are not required to accept this License, since you have not -signed it. However, nothing else grants you permission to modify or -distribute the Library or its derivative works. These actions are -prohibited by law if you do not accept this License. Therefore, by -modifying or distributing the Library (or any work based on the -Library), you indicate your acceptance of this License to do so, and -all its terms and conditions for copying, distributing or modifying -the Library or works based on it. - - 10. Each time you redistribute the Library (or any work based on the -Library), the recipient automatically receives a license from the -original licensor to copy, distribute, link with or modify the Library -subject to these terms and conditions. You may not impose any further -restrictions on the recipients' exercise of the rights granted herein. -You are not responsible for enforcing compliance by third parties with -this License. - - 11. If, as a consequence of a court judgment or allegation of patent -infringement or for any other reason (not limited to patent issues), -conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot -distribute so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you -may not distribute the Library at all. For example, if a patent -license would not permit royalty-free redistribution of the Library by -all those who receive copies directly or indirectly through you, then -the only way you could satisfy both it and this License would be to -refrain entirely from distribution of the Library. - -If any portion of this section is held invalid or unenforceable under any -particular circumstance, the balance of the section is intended to apply, -and the section as a whole is intended to apply in other circumstances. - -It is not the purpose of this section to induce you to infringe any -patents or other property right claims or to contest validity of any -such claims; this section has the sole purpose of protecting the -integrity of the free software distribution system which is -implemented by public license practices. Many people have made -generous contributions to the wide range of software distributed -through that system in reliance on consistent application of that -system; it is up to the author/donor to decide if he or she is willing -to distribute software through any other system and a licensee cannot -impose that choice. - -This section is intended to make thoroughly clear what is believed to -be a consequence of the rest of this License. - - 12. If the distribution and/or use of the Library is restricted in -certain countries either by patents or by copyrighted interfaces, the -original copyright holder who places the Library under this License may add -an explicit geographical distribution limitation excluding those countries, -so that distribution is permitted only in or among countries not thus -excluded. In such case, this License incorporates the limitation as if -written in the body of this License. - - 13. The Free Software Foundation may publish revised and/or new -versions of the Lesser General Public License from time to time. -Such new versions will be similar in spirit to the present version, -but may differ in detail to address new problems or concerns. - -Each version is given a distinguishing version number. If the Library -specifies a version number of this License which applies to it and -"any later version", you have the option of following the terms and -conditions either of that version or of any later version published by -the Free Software Foundation. If the Library does not specify a -license version number, you may choose any version ever published by -the Free Software Foundation. - - 14. If you wish to incorporate parts of the Library into other free -programs whose distribution conditions are incompatible with these, -write to the author to ask for permission. For software which is -copyrighted by the Free Software Foundation, write to the Free -Software Foundation; we sometimes make exceptions for this. Our -decision will be guided by the two goals of preserving the free status -of all derivatives of our free software and of promoting the sharing -and reuse of software generally. - - NO WARRANTY - - 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO -WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. -EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR -OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY -KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE -LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME -THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - - 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN -WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY -AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU -FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR -CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE -LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING -RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A -FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF -SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGES. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Libraries - - If you develop a new library, and you want it to be of the greatest -possible use to the public, we recommend making it free software that -everyone can redistribute and change. You can do so by permitting -redistribution under these terms (or, alternatively, under the terms of the -ordinary General Public License). - - To apply these terms, attach the following notices to the library. It is -safest to attach them to the start of each source file to most effectively -convey the exclusion of warranty; and each file should have at least the -"copyright" line and a pointer to where the full notice is found. - - - Copyright (C) - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - -Also add information on how to contact you by electronic and paper mail. - -You should also get your employer (if you work as a programmer) or your -school, if any, to sign a "copyright disclaimer" for the library, if -necessary. Here is a sample; alter the names: - - Yoyodyne, Inc., hereby disclaims all copyright interest in the - library `Frob' (a library for tweaking knobs) written by James Random Hacker. - - , 1 April 1990 - Ty Coon, President of Vice - -That's all there is to it! diff --git a/src/it/projects/springboot-rest/src/licenses/contents/MIT+License b/src/it/projects/springboot-rest/src/licenses/contents/MIT+License deleted file mode 100644 index 36899d93d..000000000 --- a/src/it/projects/springboot-rest/src/licenses/contents/MIT+License +++ /dev/null @@ -1,381 +0,0 @@ - - - - - - - - - - - - The MIT License | Open Source Initiative - - - - - - - - - - - - - - - - - - - - - - - -
- - - - -
-
- - -
-
- -
- -
-
- -
-
- -
- -
- -
-
- -
-
- -
- -
-
- - -
-
- - - - - - - - - - - - -
- - - -
-
- - - - -
- - - -
- - -
- - - - -
- -

The MIT License

- - - -
-
- - - - - -
-
- - -
-
- - -
-

-SPDX short identifier: MIT -

- -
- - -

- -
- - - -

Copyright <YEAR> <COPYRIGHT HOLDER>

- -

Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions:

- -

The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software.

- -

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE.

-
- - - - -
-
-
- -
- - -
- - -
- - -
- -
-
- - - -
- - - -
-
- - -
-
-
- -
- - - - -
- -
-
-
- - -
-
- - - \ No newline at end of file diff --git a/src/it/projects/springboot-rest/src/licenses/contents/Mozilla+Public+License+11 b/src/it/projects/springboot-rest/src/licenses/contents/Mozilla+Public+License+11 deleted file mode 100644 index 5306bd871..000000000 --- a/src/it/projects/springboot-rest/src/licenses/contents/Mozilla+Public+License+11 +++ /dev/null @@ -1,381 +0,0 @@ - - - - Mozilla Public License version 1.1 - - - - - -

(Plain text version)

-

Mozilla Public License Version 1.1

-

1. Definitions.

-
-
1.0.1. "Commercial Use" -
means distribution or otherwise making the Covered Code available to a third party. -
1.1. "Contributor" -
means each entity that creates or contributes to the creation of Modifications. -
1.2. "Contributor Version" -
means the combination of the Original Code, prior Modifications used by a Contributor, - and the Modifications made by that particular Contributor. -
1.3. "Covered Code" -
means the Original Code or Modifications or the combination of the Original Code and - Modifications, in each case including portions thereof. -
1.4. "Electronic Distribution Mechanism" -
means a mechanism generally accepted in the software development community for the - electronic transfer of data. -
1.5. "Executable" -
means Covered Code in any form other than Source Code. -
1.6. "Initial Developer" -
means the individual or entity identified as the Initial Developer in the Source Code - notice required by Exhibit A. -
1.7. "Larger Work" -
means a work which combines Covered Code or portions thereof with code not governed - by the terms of this License. -
1.8. "License" -
means this document. -
1.8.1. "Licensable" -
means having the right to grant, to the maximum extent possible, whether at the - time of the initial grant or subsequently acquired, any and all of the rights - conveyed herein. -
1.9. "Modifications" -
-

means any addition to or deletion from the substance or structure of either the - Original Code or any previous Modifications. When Covered Code is released as a - series of files, a Modification is: -

    -
  1. Any addition to or deletion from the contents of a file - containing Original Code or previous Modifications. -
  2. Any new file that contains any part of the Original Code or - previous Modifications. -
-
1.10. "Original Code" -
means Source Code of computer software code which is described in the Source Code - notice required by Exhibit A as Original Code, and which, - at the time of its release under this License is not already Covered Code governed - by this License. -
1.10.1. "Patent Claims" -
means any patent claim(s), now owned or hereafter acquired, including without - limitation, method, process, and apparatus claims, in any patent Licensable by - grantor. -
1.11. "Source Code" -
means the preferred form of the Covered Code for making modifications to it, - including all modules it contains, plus any associated interface definition files, - scripts used to control compilation and installation of an Executable, or source - code differential comparisons against either the Original Code or another well known, - available Covered Code of the Contributor's choice. The Source Code can be in a - compressed or archival form, provided the appropriate decompression or de-archiving - software is widely available for no charge. -
1.12. "You" (or "Your") -
means an individual or a legal entity exercising rights under, and complying with - all of the terms of, this License or a future version of this License issued under - Section 6.1. For legal entities, "You" includes any entity - which controls, is controlled by, or is under common control with You. For purposes of - this definition, "control" means (a) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or otherwise, or (b) - ownership of more than fifty percent (50%) of the outstanding shares or beneficial - ownership of such entity. -
-

2. Source Code License.

-

2.1. The Initial Developer Grant.

-

The Initial Developer hereby grants You a world-wide, royalty-free, non-exclusive - license, subject to third party intellectual property claims: -

    -
  1. under intellectual property rights (other than patent or - trademark) Licensable by Initial Developer to use, reproduce, modify, display, perform, - sublicense and distribute the Original Code (or portions thereof) with or without - Modifications, and/or as part of a Larger Work; and -
  2. under Patents Claims infringed by the making, using or selling - of Original Code, to make, have made, use, practice, sell, and offer for sale, and/or - otherwise dispose of the Original Code (or portions thereof). -
  3. the licenses granted in this Section 2.1 - (a) and (b) are effective on - the date Initial Developer first distributes Original Code under the terms of this - License. -
  4. Notwithstanding Section 2.1 (b) - above, no patent license is granted: 1) for code that You delete from the Original Code; - 2) separate from the Original Code; or 3) for infringements caused by: i) the - modification of the Original Code or ii) the combination of the Original Code with other - software or devices. -
-

2.2. Contributor Grant.

-

Subject to third party intellectual property claims, each Contributor hereby grants You - a world-wide, royalty-free, non-exclusive license -

    -
  1. under intellectual property rights (other than patent or trademark) - Licensable by Contributor, to use, reproduce, modify, display, perform, sublicense and - distribute the Modifications created by such Contributor (or portions thereof) either on - an unmodified basis, with other Modifications, as Covered Code and/or as part of a Larger - Work; and -
  2. under Patent Claims infringed by the making, using, or selling of - Modifications made by that Contributor either alone and/or in combination with its - Contributor Version (or portions of such combination), to make, use, sell, offer for - sale, have made, and/or otherwise dispose of: 1) Modifications made by that Contributor - (or portions thereof); and 2) the combination of Modifications made by that Contributor - with its Contributor Version (or portions of such combination). -
  3. the licenses granted in Sections 2.2 - (a) and 2.2 (b) are effective - on the date Contributor first makes Commercial Use of the Covered Code. -
  4. Notwithstanding Section 2.2 (b) - above, no patent license is granted: 1) for any code that Contributor has deleted from - the Contributor Version; 2) separate from the Contributor Version; 3) for infringements - caused by: i) third party modifications of Contributor Version or ii) the combination of - Modifications made by that Contributor with other software (except as part of the - Contributor Version) or other devices; or 4) under Patent Claims infringed by Covered Code - in the absence of Modifications made by that Contributor. -
-

3. Distribution Obligations.

-

3.1. Application of License.

-

The Modifications which You create or to which You contribute are governed by the terms - of this License, including without limitation Section 2.2. The - Source Code version of Covered Code may be distributed only under the terms of this License - or a future version of this License released under Section 6.1, - and You must include a copy of this License with every copy of the Source Code You - distribute. You may not offer or impose any terms on any Source Code version that alters or - restricts the applicable version of this License or the recipients' rights hereunder. - However, You may include an additional document offering the additional rights described in - Section 3.5. -

3.2. Availability of Source Code.

-

Any Modification which You create or to which You contribute must be made available in - Source Code form under the terms of this License either on the same media as an Executable - version or via an accepted Electronic Distribution Mechanism to anyone to whom you made an - Executable version available; and if made available via Electronic Distribution Mechanism, - must remain available for at least twelve (12) months after the date it initially became - available, or at least six (6) months after a subsequent version of that particular - Modification has been made available to such recipients. You are responsible for ensuring - that the Source Code version remains available even if the Electronic Distribution - Mechanism is maintained by a third party. -

3.3. Description of Modifications.

-

You must cause all Covered Code to which You contribute to contain a file documenting the - changes You made to create that Covered Code and the date of any change. You must include a - prominent statement that the Modification is derived, directly or indirectly, from Original - Code provided by the Initial Developer and including the name of the Initial Developer in - (a) the Source Code, and (b) in any notice in an Executable version or related documentation - in which You describe the origin or ownership of the Covered Code. -

3.4. Intellectual Property Matters

-

(a) Third Party Claims

-

If Contributor has knowledge that a license under a third party's intellectual property - rights is required to exercise the rights granted by such Contributor under Sections - 2.1 or 2.2, Contributor must include a - text file with the Source Code distribution titled "LEGAL" which describes the claim and the - party making the claim in sufficient detail that a recipient will know whom to contact. If - Contributor obtains such knowledge after the Modification is made available as described in - Section 3.2, Contributor shall promptly modify the LEGAL file in - all copies Contributor makes available thereafter and shall take other steps (such as - notifying appropriate mailing lists or newsgroups) reasonably calculated to inform those who - received the Covered Code that new knowledge has been obtained. -

(b) Contributor APIs

-

If Contributor's Modifications include an application programming interface and Contributor - has knowledge of patent licenses which are reasonably necessary to implement that - API, Contributor must also include this information in the - legal file. -

(c) Representations.

-

Contributor represents that, except as disclosed pursuant to Section 3.4 - (a) above, Contributor believes that Contributor's Modifications - are Contributor's original creation(s) and/or Contributor has sufficient rights to grant the - rights conveyed by this License. -

3.5. Required Notices.

-

You must duplicate the notice in Exhibit A in each file of the - Source Code. If it is not possible to put such notice in a particular Source Code file due to - its structure, then You must include such notice in a location (such as a relevant directory) - where a user would be likely to look for such a notice. If You created one or more - Modification(s) You may add your name as a Contributor to the notice described in - Exhibit A. You must also duplicate this License in any documentation - for the Source Code where You describe recipients' rights or ownership rights relating to - Covered Code. You may choose to offer, and to charge a fee for, warranty, support, indemnity - or liability obligations to one or more recipients of Covered Code. However, You may do so - only on Your own behalf, and not on behalf of the Initial Developer or any Contributor. You - must make it absolutely clear than any such warranty, support, indemnity or liability - obligation is offered by You alone, and You hereby agree to indemnify the Initial Developer - and every Contributor for any liability incurred by the Initial Developer or such Contributor - as a result of warranty, support, indemnity or liability terms You offer. -

3.6. Distribution of Executable Versions.

-

You may distribute Covered Code in Executable form only if the requirements of Sections - 3.1, 3.2, - 3.3, 3.4 and - 3.5 have been met for that Covered Code, and if You include a - notice stating that the Source Code version of the Covered Code is available under the terms - of this License, including a description of how and where You have fulfilled the obligations - of Section 3.2. The notice must be conspicuously included in any - notice in an Executable version, related documentation or collateral in which You describe - recipients' rights relating to the Covered Code. You may distribute the Executable version of - Covered Code or ownership rights under a license of Your choice, which may contain terms - different from this License, provided that You are in compliance with the terms of this - License and that the license for the Executable version does not attempt to limit or alter the - recipient's rights in the Source Code version from the rights set forth in this License. If - You distribute the Executable version under a different license You must make it absolutely - clear that any terms which differ from this License are offered by You alone, not by the - Initial Developer or any Contributor. You hereby agree to indemnify the Initial Developer and - every Contributor for any liability incurred by the Initial Developer or such Contributor as - a result of any such terms You offer. -

3.7. Larger Works.

-

You may create a Larger Work by combining Covered Code with other code not governed by the - terms of this License and distribute the Larger Work as a single product. In such a case, - You must make sure the requirements of this License are fulfilled for the Covered Code. -

4. Inability to Comply Due to Statute or Regulation.

-

If it is impossible for You to comply with any of the terms of this License with respect to - some or all of the Covered Code due to statute, judicial order, or regulation then You must: - (a) comply with the terms of this License to the maximum extent possible; and (b) describe - the limitations and the code they affect. Such description must be included in the - legal file described in Section - 3.4 and must be included with all distributions of the Source Code. - Except to the extent prohibited by statute or regulation, such description must be - sufficiently detailed for a recipient of ordinary skill to be able to understand it. -

5. Application of this License.

-

This License applies to code to which the Initial Developer has attached the notice in - Exhibit A and to related Covered Code. -

6. Versions of the License.

-

6.1. New Versions

-

Netscape Communications Corporation ("Netscape") may publish revised and/or new versions - of the License from time to time. Each version will be given a distinguishing version number. -

6.2. Effect of New Versions

-

Once Covered Code has been published under a particular version of the License, You may - always continue to use it under the terms of that version. You may also choose to use such - Covered Code under the terms of any subsequent version of the License published by Netscape. - No one other than Netscape has the right to modify the terms applicable to Covered Code - created under this License. -

6.3. Derivative Works

-

If You create or use a modified version of this License (which you may only do in order to - apply it to code which is not already Covered Code governed by this License), You must (a) - rename Your license so that the phrases "Mozilla", "MOZILLAPL", "MOZPL", "Netscape", "MPL", - "NPL" or any confusingly similar phrase do not appear in your license (except to note that - your license differs from this License) and (b) otherwise make it clear that Your version of - the license contains terms which differ from the Mozilla Public License and Netscape Public - License. (Filling in the name of the Initial Developer, Original Code or Contributor in the - notice described in Exhibit A shall not of themselves be deemed to - be modifications of this License.) -

7. Disclaimer of warranty

-

Covered code is provided under this license on an "as is" - basis, without warranty of any kind, either expressed or implied, including, without - limitation, warranties that the covered code is free of defects, merchantable, fit for a - particular purpose or non-infringing. The entire risk as to the quality and performance of - the covered code is with you. Should any covered code prove defective in any respect, you - (not the initial developer or any other contributor) assume the cost of any necessary - servicing, repair or correction. This disclaimer of warranty constitutes an essential part - of this license. No use of any covered code is authorized hereunder except under this - disclaimer. -

8. Termination

-

8.1. This License and the rights granted hereunder will terminate - automatically if You fail to comply with terms herein and fail to cure such breach - within 30 days of becoming aware of the breach. All sublicenses to the Covered Code which - are properly granted shall survive any termination of this License. Provisions which, by - their nature, must remain in effect beyond the termination of this License shall survive. -

8.2. If You initiate litigation by asserting a patent infringement - claim (excluding declatory judgment actions) against Initial Developer or a Contributor - (the Initial Developer or Contributor against whom You file such action is referred to - as "Participant") alleging that: -

    -
  1. such Participant's Contributor Version directly or indirectly - infringes any patent, then any and all rights granted by such Participant to You under - Sections 2.1 and/or 2.2 of this - License shall, upon 60 days notice from Participant terminate prospectively, unless if - within 60 days after receipt of notice You either: (i) agree in writing to pay - Participant a mutually agreeable reasonable royalty for Your past and future use of - Modifications made by such Participant, or (ii) withdraw Your litigation claim with - respect to the Contributor Version against such Participant. If within 60 days of - notice, a reasonable royalty and payment arrangement are not mutually agreed upon in - writing by the parties or the litigation claim is not withdrawn, the rights granted by - Participant to You under Sections 2.1 and/or - 2.2 automatically terminate at the expiration of the 60 day - notice period specified above. -
  2. any software, hardware, or device, other than such Participant's - Contributor Version, directly or indirectly infringes any patent, then any rights - granted to You by such Participant under Sections 2.1(b) - and 2.2(b) are revoked effective as of the date You first - made, used, sold, distributed, or had made, Modifications made by that Participant. -
-

8.3. If You assert a patent infringement claim against Participant - alleging that such Participant's Contributor Version directly or indirectly infringes - any patent where such claim is resolved (such as by license or settlement) prior to the - initiation of patent infringement litigation, then the reasonable value of the licenses - granted by such Participant under Sections 2.1 or - 2.2 shall be taken into account in determining the amount or - value of any payment or license. -

8.4. In the event of termination under Sections - 8.1 or 8.2 above, all end user - license agreements (excluding distributors and resellers) which have been validly - granted by You or any distributor hereunder prior to termination shall survive - termination. -

9. Limitation of liability

-

Under no circumstances and under no legal theory, whether - tort (including negligence), contract, or otherwise, shall you, the initial developer, - any other contributor, or any distributor of covered code, or any supplier of any of - such parties, be liable to any person for any indirect, special, incidental, or - consequential damages of any character including, without limitation, damages for loss - of goodwill, work stoppage, computer failure or malfunction, or any and all other - commercial damages or losses, even if such party shall have been informed of the - possibility of such damages. This limitation of liability shall not apply to liability - for death or personal injury resulting from such party's negligence to the extent - applicable law prohibits such limitation. Some jurisdictions do not allow the exclusion - or limitation of incidental or consequential damages, so this exclusion and limitation - may not apply to you. -

10. U.S. government end users

-

The Covered Code is a "commercial item," as that term is defined in 48 - C.F.R. 2.101 (Oct. 1995), consisting of - "commercial computer software" and "commercial computer software documentation," as such - terms are used in 48 C.F.R. 12.212 (Sept. - 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. - 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users - acquire Covered Code with only those rights set forth herein. -

11. Miscellaneous

-

This License represents the complete agreement concerning subject matter hereof. If - any provision of this License is held to be unenforceable, such provision shall be - reformed only to the extent necessary to make it enforceable. This License shall be - governed by California law provisions (except to the extent applicable law, if any, - provides otherwise), excluding its conflict-of-law provisions. With respect to - disputes in which at least one party is a citizen of, or an entity chartered or - registered to do business in the United States of America, any litigation relating to - this License shall be subject to the jurisdiction of the Federal Courts of the - Northern District of California, with venue lying in Santa Clara County, California, - with the losing party responsible for costs, including without limitation, court - costs and reasonable attorneys' fees and expenses. The application of the United - Nations Convention on Contracts for the International Sale of Goods is expressly - excluded. Any law or regulation which provides that the language of a contract - shall be construed against the drafter shall not apply to this License. -

12. Responsibility for claims

-

As between Initial Developer and the Contributors, each party is responsible for - claims and damages arising, directly or indirectly, out of its utilization of rights - under this License and You agree to work with Initial Developer and Contributors to - distribute such responsibility on an equitable basis. Nothing herein is intended or - shall be deemed to constitute any admission of liability. -

13. Multiple-licensed code

-

Initial Developer may designate portions of the Covered Code as - "Multiple-Licensed". "Multiple-Licensed" means that the Initial Developer permits - you to utilize portions of the Covered Code under Your choice of the MPL - or the alternative licenses, if any, specified by the Initial Developer in the file - described in Exhibit A. -

Exhibit A - Mozilla Public License.

-
"The contents of this file are subject to the Mozilla Public License
-Version 1.1 (the "License"); you may not use this file except in
-compliance with the License. You may obtain a copy of the License at
-https://www.mozilla.org/MPL/
-
-Software distributed under the License is distributed on an "AS IS"
-basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
-License for the specific language governing rights and limitations
-under the License.
-
-The Original Code is ______________________________________.
-
-The Initial Developer of the Original Code is ________________________.
-Portions created by ______________________ are Copyright (C) ______
-_______________________. All Rights Reserved.
-
-Contributor(s): ______________________________________.
-
-Alternatively, the contents of this file may be used under the terms
-of the _____ license (the  "[___] License"), in which case the
-provisions of [______] License are applicable instead of those
-above. If you wish to allow use of your version of this file only
-under the terms of the [____] License and not to allow others to use
-your version of this file under the MPL, indicate your decision by
-deleting the provisions above and replace them with the notice and
-other provisions required by the [___] License. If you do not delete
-the provisions above, a recipient may use your version of this file
-under either the MPL or the [___] License."
-

NOTE: The text of this Exhibit A may differ slightly from the text of - the notices in the Source Code files of the Original Code. You should - use the text of this Exhibit A rather than the text found in the - Original Code Source Code for Your Modifications. - - \ No newline at end of file diff --git a/src/it/projects/springboot-rest/src/licenses/contents/Public+Domain b/src/it/projects/springboot-rest/src/licenses/contents/Public+Domain deleted file mode 100644 index 0e259d42c..000000000 --- a/src/it/projects/springboot-rest/src/licenses/contents/Public+Domain +++ /dev/null @@ -1,121 +0,0 @@ -Creative Commons Legal Code - -CC0 1.0 Universal - - CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE - LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN - ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS - INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES - REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS - PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM - THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED - HEREUNDER. - -Statement of Purpose - -The laws of most jurisdictions throughout the world automatically confer -exclusive Copyright and Related Rights (defined below) upon the creator -and subsequent owner(s) (each and all, an "owner") of an original work of -authorship and/or a database (each, a "Work"). - -Certain owners wish to permanently relinquish those rights to a Work for -the purpose of contributing to a commons of creative, cultural and -scientific works ("Commons") that the public can reliably and without fear -of later claims of infringement build upon, modify, incorporate in other -works, reuse and redistribute as freely as possible in any form whatsoever -and for any purposes, including without limitation commercial purposes. -These owners may contribute to the Commons to promote the ideal of a free -culture and the further production of creative, cultural and scientific -works, or to gain reputation or greater distribution for their Work in -part through the use and efforts of others. - -For these and/or other purposes and motivations, and without any -expectation of additional consideration or compensation, the person -associating CC0 with a Work (the "Affirmer"), to the extent that he or she -is an owner of Copyright and Related Rights in the Work, voluntarily -elects to apply CC0 to the Work and publicly distribute the Work under its -terms, with knowledge of his or her Copyright and Related Rights in the -Work and the meaning and intended legal effect of CC0 on those rights. - -1. Copyright and Related Rights. A Work made available under CC0 may be -protected by copyright and related or neighboring rights ("Copyright and -Related Rights"). Copyright and Related Rights include, but are not -limited to, the following: - - i. the right to reproduce, adapt, distribute, perform, display, - communicate, and translate a Work; - ii. moral rights retained by the original author(s) and/or performer(s); -iii. publicity and privacy rights pertaining to a person's image or - likeness depicted in a Work; - iv. rights protecting against unfair competition in regards to a Work, - subject to the limitations in paragraph 4(a), below; - v. rights protecting the extraction, dissemination, use and reuse of data - in a Work; - vi. database rights (such as those arising under Directive 96/9/EC of the - European Parliament and of the Council of 11 March 1996 on the legal - protection of databases, and under any national implementation - thereof, including any amended or successor version of such - directive); and -vii. other similar, equivalent or corresponding rights throughout the - world based on applicable law or treaty, and any national - implementations thereof. - -2. Waiver. To the greatest extent permitted by, but not in contravention -of, applicable law, Affirmer hereby overtly, fully, permanently, -irrevocably and unconditionally waives, abandons, and surrenders all of -Affirmer's Copyright and Related Rights and associated claims and causes -of action, whether now known or unknown (including existing as well as -future claims and causes of action), in the Work (i) in all territories -worldwide, (ii) for the maximum duration provided by applicable law or -treaty (including future time extensions), (iii) in any current or future -medium and for any number of copies, and (iv) for any purpose whatsoever, -including without limitation commercial, advertising or promotional -purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each -member of the public at large and to the detriment of Affirmer's heirs and -successors, fully intending that such Waiver shall not be subject to -revocation, rescission, cancellation, termination, or any other legal or -equitable action to disrupt the quiet enjoyment of the Work by the public -as contemplated by Affirmer's express Statement of Purpose. - -3. Public License Fallback. Should any part of the Waiver for any reason -be judged legally invalid or ineffective under applicable law, then the -Waiver shall be preserved to the maximum extent permitted taking into -account Affirmer's express Statement of Purpose. In addition, to the -extent the Waiver is so judged Affirmer hereby grants to each affected -person a royalty-free, non transferable, non sublicensable, non exclusive, -irrevocable and unconditional license to exercise Affirmer's Copyright and -Related Rights in the Work (i) in all territories worldwide, (ii) for the -maximum duration provided by applicable law or treaty (including future -time extensions), (iii) in any current or future medium and for any number -of copies, and (iv) for any purpose whatsoever, including without -limitation commercial, advertising or promotional purposes (the -"License"). The License shall be deemed effective as of the date CC0 was -applied by Affirmer to the Work. Should any part of the License for any -reason be judged legally invalid or ineffective under applicable law, such -partial invalidity or ineffectiveness shall not invalidate the remainder -of the License, and in such case Affirmer hereby affirms that he or she -will not (i) exercise any of his or her remaining Copyright and Related -Rights in the Work or (ii) assert any associated claims and causes of -action with respect to the Work, in either case contrary to Affirmer's -express Statement of Purpose. - -4. Limitations and Disclaimers. - - a. No trademark or patent rights held by Affirmer are waived, abandoned, - surrendered, licensed or otherwise affected by this document. - b. Affirmer offers the Work as-is and makes no representations or - warranties of any kind concerning the Work, express, implied, - statutory or otherwise, including without limitation warranties of - title, merchantability, fitness for a particular purpose, non - infringement, or the absence of latent or other defects, accuracy, or - the present or absence of errors, whether or not discoverable, all to - the greatest extent permissible under applicable law. - c. Affirmer disclaims responsibility for clearing rights of other persons - that may apply to the Work or any use thereof, including without - limitation any person's Copyright and Related Rights in the Work. - Further, Affirmer disclaims responsibility for obtaining any necessary - consents, permissions or other rights required for any use of the - Work. - d. Affirmer understands and acknowledges that Creative Commons is not a - party to this document and has no duty or obligation with respect to - this CC0 or use of the Work. diff --git a/src/it/projects/springboot-rest/src/licenses/contents/The+Asm+BSD+License b/src/it/projects/springboot-rest/src/licenses/contents/The+Asm+BSD+License deleted file mode 100644 index d55fb0067..000000000 --- a/src/it/projects/springboot-rest/src/licenses/contents/The+Asm+BSD+License +++ /dev/null @@ -1,419 +0,0 @@ - - - - - - ASM - - - - - -

- - - - - ASM - - - -
- - - -
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-

ASM is an all purpose Java bytecode manipulation and analysis - framework. It can be used to modify existing classes or to dynamically - generate classes, directly in binary form. ASM provides some common - bytecode transformations and analysis algorithms from which custom complex - transformations and code analysis tools can be built. ASM offers similar - functionality as other Java bytecode frameworks, but is focused on - performance. Because it was designed and - implemented to be as small and as fast as possible, it is well suited for - use in dynamic systems (but can of course be used in a static way too, e.g. - in compilers).

-

ASM is used in many projects, including:

- -

Download

-

ASM can be downloaded from the OW2 - Maven repository (which provides - releases and - snapshots), or from the - Maven Central repository (releases only). The source code is hosted on - Gitlab.

-

Recent news

-

27 October 2018: release of ASM 7.0

-
- - diff --git a/src/it/projects/springboot-rest/src/licenses/licenses.html b/src/it/projects/springboot-rest/src/licenses/licenses.html deleted file mode 100644 index 60351761d..000000000 --- a/src/it/projects/springboot-rest/src/licenses/licenses.html +++ /dev/null @@ -1,3525 +0,0 @@ - - - - - -

The following material has been provided for informational purposes only, and should not be relied upon or - construed as a legal opinion or legal advice.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Package GroupPackage ArtifactPackage VersionRemote LicensesLocal Licenses
ch.qos.logbacklogback-classic1.1.11 - - GNU Lesser General Public License v2.1 only -
- - Eclipse Public License, Version 1.0 -
- -
- - - GNU Lesser General Public License v2.1 only -
- - - - Eclipse Public License, Version 1.0 -
- - -
ch.qos.logbacklogback-core1.1.11 - - GNU Lesser General Public License v2.1 only -
- - Eclipse Public License, Version 1.0 -
- -
- - - GNU Lesser General Public License v2.1 only -
- - - - Eclipse Public License, Version 1.0 -
- - -
com.fasterxmlclassmate1.3.4 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
com.fasterxml.jackson.corejackson-annotations2.8.0 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
com.fasterxml.jackson.corejackson-core2.8.11 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
com.fasterxml.jackson.corejackson-databind2.8.11.2 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
com.fasterxml.jackson.dataformatjackson-dataformat-yaml2.8.11 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
com.fasterxml.jackson.jaxrsjackson-jaxrs-base2.8.11 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
com.fasterxml.jackson.jaxrsjackson-jaxrs-json-provider2.8.11 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
com.fasterxml.jackson.modulejackson-module-jaxb-annotations2.8.11 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
com.github.mifmifgenerex1.0.1 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
com.google.guavaguava18.0 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
com.googlecode.json-simplejson-simple1.1.1 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
com.jayway.jsonpathjson-path2.2.0 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
com.squareup.okhttp3logging-interceptor3.9.1 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
com.squareup.okhttp3okhttp3.8.0 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
com.squareup.okiookio1.13.0 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
com.vaadin.external.googleandroid-json0.0.20131108.vaadin1 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
commons-codeccommons-codec1.4 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
commons-iocommons-io2.5 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
commons-langcommons-lang2.6 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
dk.brics.automatonautomaton1.11-8 - - BSD 2-clause "Simplified" License -
- -
- - - BSD 2-clause "Simplified" License -
- - -
io.fabric8kubernetes-openshift-uberjar3.1.8 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
io.fabric8zjsonpatch0.3.0 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
io.github.lukehutchfast-classpath-scanner2.9.3 - - MIT License -
- -
- - - MIT License -
- - -
io.rest-assuredjson-path3.1.0 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
io.rest-assuredrest-assured3.1.0 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
io.rest-assuredrest-assured-common3.1.0 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
io.rest-assuredxml-path3.1.0 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
javax.annotationjavax.annotation-api1.2 - - Common Development and Distribution License (CDDL) and GNU Public License v.2 w/Classpath Exception -
- -
- - - Common Development and Distribution License (CDDL) and GNU Public License v.2 w/Classpath Exception -
- - -
javax.eljavax.el-api3.0.0 - - Common Development and Distribution License (CDDL) and GNU Public License v.2 w/Classpath Exception -
- -
- - - Common Development and Distribution License (CDDL) and GNU Public License v.2 w/Classpath Exception -
- - -
javax.enterprisecdi-api1.2 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
javax.injectjavax.inject1 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
javax.interceptorjavax.interceptor-api1.2 - - Common Development and Distribution License (CDDL) and GNU Public License v.2 w/Classpath Exception -
- -
- - - Common Development and Distribution License (CDDL) and GNU Public License v.2 w/Classpath Exception -
- - -
javax.validationvalidation-api1.1.0.Final - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
javax.ws.rsjavax.ws.rs-api2.0.1 - - Common Development and Distribution License 1.1 -
- - GNU General Public License, Version 2 with the Classpath Exception -
- -
- - - Common Development and Distribution License 1.1 -
- - - - GNU General Public License, Version 2 with the Classpath Exception -
- - -
javax.xml.bindjaxb-api2.2.12 - - GNU General Public License, Version 2 with the Classpath Exception -
- - Common Development and Distribution License 1.1 -
- -
- - - GNU General Public License, Version 2 with the Classpath Exception -
- - - - Common Development and Distribution License 1.1 -
- - -
junitjunit4.12 - - Eclipse Public License, Version 1.0 -
- -
- - - Eclipse Public License, Version 1.0 -
- - -
net.minidevaccessors-smart1.1 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
net.minidevjson-smart2.2.1 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.apache.commonscommons-compress1.4 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.apache.commonscommons-lang33.4 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.apache.cxfcxf-core3.1.12.redhat-1 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.apache.cxfcxf-rt-frontend-jaxrs3.1.12.redhat-1 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.apache.cxfcxf-rt-rs-client3.1.12.redhat-1 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.apache.cxfcxf-rt-transports-http3.1.12.redhat-1 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.apache.cxfcxf-spring-boot-autoconfigure3.1.12.redhat-1 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.apache.cxfcxf-spring-boot-starter-jaxrs3.1.12.redhat-1 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.apache.httpcomponentshttpclient4.5.6 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.apache.httpcomponentshttpclient-osgi4.5.6 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.apache.httpcomponentshttpcore4.4.10 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.apache.httpcomponentshttpmime4.5.6 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.apache.mavenmaven-aether-provider3.2.5 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.apache.mavenmaven-model3.2.5 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.apache.mavenmaven-model-builder3.2.5 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.apache.mavenmaven-repository-metadata3.2.5 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.apache.mavenmaven-settings3.2.5 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.apache.mavenmaven-settings-builder3.2.5 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.apache.maven.sharedmaven-invoker3.0.0 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.apache.maven.wagonwagon-file2.6 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.apache.maven.wagonwagon-http-lightweight2.6 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.apache.maven.wagonwagon-http-shared2.6 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.apache.maven.wagonwagon-provider-api2.6 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.apache.tomcat.embedtomcat-embed-core8.0.36.redhat-33 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.apache.tomcat.embedtomcat-embed-el8.0.36.redhat-33 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.apache.tomcat.embedtomcat-embed-websocket8.0.36.redhat-33 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.apache.ws.xmlschemaxmlschema-core2.2.2 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.arquillian.cubearquillian-cube-api1.15.3 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.arquillian.cubearquillian-cube-core1.15.3 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.arquillian.cubearquillian-cube-kubernetes1.15.3 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.arquillian.cubearquillian-cube-openshift1.15.3 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.arquillian.cubearquillian-cube-openshift-api1.15.3 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.arquillian.cubearquillian-cube-requirement-spi1.15.3 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.arquillian.cubearquillian-cube-spi1.15.3 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.arquillian.cubefabric8-maven-plugin-build1.15.3 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.arquillian.reporterarquillian-core-reporter-api0.0.3 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.arquillian.reporterarquillian-reporter-api0.0.3 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.arquillian.spaceliftarquillian-spacelift1.0.2 - - Public Domain -
- -
- - - Public Domain -
- - -
org.arquillian.spaceliftarquillian-spacelift-api1.0.2 - - Public Domain -
- -
- - - Public Domain -
- - -
org.assertjassertj-core2.6.0 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.awaitilityawaitility3.1.0 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.ccil.cowan.tagsouptagsoup1.2.1 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.codehaus.groovygroovy2.4.15 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.codehaus.groovygroovy-json2.4.15 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.codehaus.groovygroovy-xml2.4.15 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.codehaus.plexusplexus-compiler-api2.3 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.codehaus.plexusplexus-compiler-javac2.3 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.codehaus.plexusplexus-component-annotations1.7 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.codehaus.plexusplexus-interpolation1.21 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.codehaus.plexusplexus-utils3.0.20 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.codehaus.woodstoxstax2-api3.1.4 - - BSD 2-clause "Simplified" License -
- -
- - - BSD 2-clause "Simplified" License -
- - -
org.codehaus.woodstoxwoodstox-core-asl4.4.1 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.eclipse.aetheraether-api1.0.0.v20140518 - - Eclipse Public License, Version 1.0 -
- -
- - - Eclipse Public License, Version 1.0 -
- - -
org.eclipse.aetheraether-connector-basic1.0.0.v20140518 - - Eclipse Public License, Version 1.0 -
- -
- - - Eclipse Public License, Version 1.0 -
- - -
org.eclipse.aetheraether-impl1.0.0.v20140518 - - Eclipse Public License, Version 1.0 -
- -
- - - Eclipse Public License, Version 1.0 -
- - -
org.eclipse.aetheraether-spi1.0.0.v20140518 - - Eclipse Public License, Version 1.0 -
- -
- - - Eclipse Public License, Version 1.0 -
- - -
org.eclipse.aetheraether-transport-wagon1.0.0.v20140518 - - Eclipse Public License, Version 1.0 -
- -
- - - Eclipse Public License, Version 1.0 -
- - -
org.eclipse.aetheraether-util1.0.0.v20140518 - - Eclipse Public License, Version 1.0 -
- -
- - - Eclipse Public License, Version 1.0 -
- - -
org.eclipse.sisuorg.eclipse.sisu.inject0.3.0.M1 - - Eclipse Public License, Version 1.0 -
- -
- - - Eclipse Public License, Version 1.0 -
- - -
org.eclipse.sisuorg.eclipse.sisu.plexus0.3.0.M1 - - Eclipse Public License, Version 1.0 -
- -
- - - Eclipse Public License, Version 1.0 -
- - -
org.fusesource.jansijansi1.11 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.hamcresthamcrest-core1.3 - - BSD 2-clause "Simplified" License -
- -
- - - BSD 2-clause "Simplified" License -
- - -
org.hamcresthamcrest-library1.3 - - BSD 2-clause "Simplified" License -
- -
- - - BSD 2-clause "Simplified" License -
- - -
org.hibernatehibernate-validator5.3.5.Final-redhat-2 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.javassistjavassist3.21.0-GA - - Apache License 2.0 -
- - GNU Lesser General Public License v2.1 only -
- - Mozilla Public License 1.1 -
- -
- - - Apache License 2.0 -
- - - - GNU Lesser General Public License v2.1 only -
- - - - Mozilla Public License 1.1 -
- - -
org.jbossjboss-dmr1.2.0.Final - - Public Domain -
- -
- - - Public Domain -
- - -
org.jboss.arquillian.configarquillian-config-api1.4.0.Final - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.jboss.arquillian.configarquillian-config-impl-base1.4.0.Final - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.jboss.arquillian.configarquillian-config-spi1.4.0.Final - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.jboss.arquillian.corearquillian-core-api1.4.0.Final - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.jboss.arquillian.corearquillian-core-impl-base1.4.0.Final - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.jboss.arquillian.corearquillian-core-spi1.4.0.Final - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.jboss.arquillian.junitarquillian-junit-core1.4.0.Final - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.jboss.arquillian.junitarquillian-junit-standalone1.4.0.Final - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.jboss.arquillian.testarquillian-test-api1.4.0.Final - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.jboss.arquillian.testarquillian-test-impl-base1.4.0.Final - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.jboss.arquillian.testarquillian-test-spi1.4.0.Final - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.jboss.loggingjboss-logging3.3.1.Final - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.jboss.shrinkwrapshrinkwrap-api1.2.6 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.jboss.shrinkwrapshrinkwrap-impl-base1.2.6 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.jboss.shrinkwrapshrinkwrap-spi1.2.6 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.jboss.shrinkwrap.descriptorsshrinkwrap-descriptors-api-base2.0.0 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.jboss.shrinkwrap.descriptorsshrinkwrap-descriptors-api-javaee2.0.0 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.jboss.shrinkwrap.descriptorsshrinkwrap-descriptors-impl-base2.0.0 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.jboss.shrinkwrap.descriptorsshrinkwrap-descriptors-impl-javaee2.0.0 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.jboss.shrinkwrap.descriptorsshrinkwrap-descriptors-spi2.0.0 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.jboss.shrinkwrap.resolvershrinkwrap-resolver-api2.2.6 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.jboss.shrinkwrap.resolvershrinkwrap-resolver-api-maven2.2.6 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.jboss.shrinkwrap.resolvershrinkwrap-resolver-api-maven-archive2.2.6 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.jboss.shrinkwrap.resolvershrinkwrap-resolver-api-maven-embedded3.0.1 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.jboss.shrinkwrap.resolvershrinkwrap-resolver-depchain2.2.6 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.jboss.shrinkwrap.resolvershrinkwrap-resolver-impl-maven2.2.6 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.jboss.shrinkwrap.resolvershrinkwrap-resolver-impl-maven-archive2.2.6 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.jboss.shrinkwrap.resolvershrinkwrap-resolver-impl-maven-embedded3.0.1 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.jboss.shrinkwrap.resolvershrinkwrap-resolver-spi2.2.6 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.jboss.shrinkwrap.resolvershrinkwrap-resolver-spi-maven2.2.6 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.jboss.shrinkwrap.resolvershrinkwrap-resolver-spi-maven-archive2.2.6 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.jolokiajolokia-client-java1.3.4 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.jsoupjsoup1.7.2 - - MIT License -
- -
- - - MIT License -
- - -
org.kohsuke.metainf-servicesmetainf-services1.6 - - MIT License -
- -
- - - MIT License -
- - -
org.mockitomockito-core1.10.19 - - MIT License -
- -
- - - MIT License -
- - -
org.objenesisobjenesis2.6 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.ow2.asmasm5.0.3 - - The Asm BSD License -
- -
- - - The Asm BSD License -
- - -
org.skyscreamerjsonassert1.4.0 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.slf4jjcl-over-slf4j1.7.25 - - MIT License -
- -
- - - MIT License -
- - -
org.slf4jjul-to-slf4j1.7.25 - - MIT License -
- -
- - - MIT License -
- - -
org.slf4jlog4j-over-slf4j1.7.25 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.slf4jslf4j-api1.7.25 - - MIT License -
- -
- - - MIT License -
- - -
org.sonatype.plexusplexus-cipher1.4 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.sonatype.plexusplexus-sec-dispatcher1.3 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.springframeworkspring-aop4.3.20.RELEASE - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.springframeworkspring-beans4.3.20.RELEASE - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.springframeworkspring-context4.3.20.RELEASE - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.springframeworkspring-core4.3.20.RELEASE - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.springframeworkspring-expression4.3.20.RELEASE - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.springframeworkspring-test4.3.20.RELEASE - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.springframeworkspring-web4.3.20.RELEASE - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.springframeworkspring-webmvc4.3.20.RELEASE - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.springframework.bootspring-boot1.5.17.RELEASE - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.springframework.bootspring-boot-actuator1.5.17.RELEASE - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.springframework.bootspring-boot-autoconfigure1.5.17.RELEASE - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.springframework.bootspring-boot-devtools1.5.17.RELEASE - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.springframework.bootspring-boot-starter1.5.17.RELEASE - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.springframework.bootspring-boot-starter-actuator1.5.17.RELEASE - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.springframework.bootspring-boot-starter-logging1.5.17.RELEASE - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.springframework.bootspring-boot-starter-test1.5.17.RELEASE - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.springframework.bootspring-boot-starter-tomcat1.5.17.RELEASE - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.springframework.bootspring-boot-starter-web1.5.17.RELEASE - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.springframework.bootspring-boot-test1.5.17.RELEASE - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.springframework.bootspring-boot-test-autoconfigure1.5.17.RELEASE - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
org.tukaanixz1.0 - - Public Domain -
- -
- - - Public Domain -
- - -
org.yamlsnakeyaml1.17 - - Apache License 2.0 -
- -
- - - Apache License 2.0 -
- - -
- - \ No newline at end of file diff --git a/src/it/projects/springboot-rest/src/licenses/licenses.xml b/src/it/projects/springboot-rest/src/licenses/licenses.xml deleted file mode 100644 index 49760caef..000000000 --- a/src/it/projects/springboot-rest/src/licenses/licenses.xml +++ /dev/null @@ -1,1920 +0,0 @@ - - - - - ch.qos.logback - logback-classic - 1.1.11 - - - GNU Lesser General Public License v2.1 only - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html - - - Eclipse Public License, Version 1.0 - http://repository.jboss.org/licenses/epl-1.0.txt - - - - - ch.qos.logback - logback-core - 1.1.11 - - - GNU Lesser General Public License v2.1 only - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html - - - Eclipse Public License, Version 1.0 - http://repository.jboss.org/licenses/epl-1.0.txt - - - - - com.fasterxml - classmate - 1.3.4 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - com.fasterxml.jackson.core - jackson-annotations - 2.8.0 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - com.fasterxml.jackson.core - jackson-core - 2.8.11 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - com.fasterxml.jackson.core - jackson-databind - 2.8.11.2 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - com.fasterxml.jackson.dataformat - jackson-dataformat-yaml - 2.8.11 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - com.fasterxml.jackson.jaxrs - jackson-jaxrs-base - 2.8.11 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - com.fasterxml.jackson.jaxrs - jackson-jaxrs-json-provider - 2.8.11 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - com.fasterxml.jackson.module - jackson-module-jaxb-annotations - 2.8.11 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - com.github.mifmif - generex - 1.0.1 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - com.google.guava - guava - 18.0 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - com.googlecode.json-simple - json-simple - 1.1.1 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - com.jayway.jsonpath - json-path - 2.2.0 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - com.squareup.okhttp3 - logging-interceptor - 3.9.1 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - com.squareup.okhttp3 - okhttp - 3.8.0 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - com.squareup.okio - okio - 1.13.0 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - com.vaadin.external.google - android-json - 0.0.20131108.vaadin1 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - commons-codec - commons-codec - 1.4 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - commons-io - commons-io - 2.5 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - commons-lang - commons-lang - 2.6 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - dk.brics.automaton - automaton - 1.11-8 - - - BSD 2-clause "Simplified" License - https://opensource.org/licenses/BSD-2-Clause/ - - - - - io.fabric8 - kubernetes-openshift-uberjar - 3.1.8 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - io.fabric8 - zjsonpatch - 0.3.0 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - io.github.lukehutch - fast-classpath-scanner - 2.9.3 - - - MIT License - https://opensource.org/licenses/MIT/ - - - - - io.rest-assured - json-path - 3.1.0 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - io.rest-assured - rest-assured - 3.1.0 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - io.rest-assured - rest-assured-common - 3.1.0 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - io.rest-assured - xml-path - 3.1.0 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - javax.annotation - javax.annotation-api - 1.2 - - - Common Development and Distribution License (CDDL) and GNU Public License v.2 w/Classpath Exception - https://netbeans.org/cddl-gplv2.html - - - - - javax.el - javax.el-api - 3.0.0 - - - Common Development and Distribution License (CDDL) and GNU Public License v.2 w/Classpath Exception - https://netbeans.org/cddl-gplv2.html - - - - - javax.enterprise - cdi-api - 1.2 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - javax.inject - javax.inject - 1 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - javax.interceptor - javax.interceptor-api - 1.2 - - - Common Development and Distribution License (CDDL) and GNU Public License v.2 w/Classpath Exception - https://netbeans.org/cddl-gplv2.html - - - - - javax.validation - validation-api - 1.1.0.Final - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - javax.ws.rs - javax.ws.rs-api - 2.0.1 - - - Common Development and Distribution License 1.1 - https://javaee.github.io/glassfish/LICENSE - - - GNU General Public License, Version 2 with the Classpath Exception - http://repository.jboss.org/licenses/gpl-2.0-ce.txt - - - - - javax.xml.bind - jaxb-api - 2.2.12 - - - GNU General Public License, Version 2 with the Classpath Exception - http://repository.jboss.org/licenses/gpl-2.0-ce.txt - - - Common Development and Distribution License 1.1 - https://javaee.github.io/glassfish/LICENSE - - - - - junit - junit - 4.12 - - - Eclipse Public License, Version 1.0 - http://repository.jboss.org/licenses/epl-1.0.txt - - - - - net.minidev - accessors-smart - 1.1 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - net.minidev - json-smart - 2.2.1 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.apache.commons - commons-compress - 1.4 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.apache.commons - commons-lang3 - 3.4 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.apache.cxf - cxf-core - 3.1.12.redhat-1 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.apache.cxf - cxf-rt-frontend-jaxrs - 3.1.12.redhat-1 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.apache.cxf - cxf-rt-rs-client - 3.1.12.redhat-1 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.apache.cxf - cxf-rt-transports-http - 3.1.12.redhat-1 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.apache.cxf - cxf-spring-boot-autoconfigure - 3.1.12.redhat-1 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.apache.cxf - cxf-spring-boot-starter-jaxrs - 3.1.12.redhat-1 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.apache.httpcomponents - httpclient - 4.5.6 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.apache.httpcomponents - httpclient-osgi - 4.5.6 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.apache.httpcomponents - httpcore - 4.4.10 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.apache.httpcomponents - httpmime - 4.5.6 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.apache.maven - maven-aether-provider - 3.2.5 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.apache.maven - maven-model - 3.2.5 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.apache.maven - maven-model-builder - 3.2.5 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.apache.maven - maven-repository-metadata - 3.2.5 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.apache.maven - maven-settings - 3.2.5 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.apache.maven - maven-settings-builder - 3.2.5 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.apache.maven.shared - maven-invoker - 3.0.0 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.apache.maven.wagon - wagon-file - 2.6 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.apache.maven.wagon - wagon-http-lightweight - 2.6 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.apache.maven.wagon - wagon-http-shared - 2.6 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.apache.maven.wagon - wagon-provider-api - 2.6 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.apache.tomcat.embed - tomcat-embed-core - 8.0.36.redhat-33 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.apache.tomcat.embed - tomcat-embed-el - 8.0.36.redhat-33 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.apache.tomcat.embed - tomcat-embed-websocket - 8.0.36.redhat-33 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.apache.ws.xmlschema - xmlschema-core - 2.2.2 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.arquillian.cube - arquillian-cube-api - 1.15.3 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.arquillian.cube - arquillian-cube-core - 1.15.3 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.arquillian.cube - arquillian-cube-kubernetes - 1.15.3 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.arquillian.cube - arquillian-cube-openshift - 1.15.3 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.arquillian.cube - arquillian-cube-openshift-api - 1.15.3 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.arquillian.cube - arquillian-cube-requirement-spi - 1.15.3 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.arquillian.cube - arquillian-cube-spi - 1.15.3 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.arquillian.cube - fabric8-maven-plugin-build - 1.15.3 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.arquillian.reporter - arquillian-core-reporter-api - 0.0.3 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.arquillian.reporter - arquillian-reporter-api - 0.0.3 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.arquillian.spacelift - arquillian-spacelift - 1.0.2 - - - Public Domain - http://repository.jboss.org/licenses/cc0-1.0.txt - - - - - org.arquillian.spacelift - arquillian-spacelift-api - 1.0.2 - - - Public Domain - http://repository.jboss.org/licenses/cc0-1.0.txt - - - - - org.assertj - assertj-core - 2.6.0 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.awaitility - awaitility - 3.1.0 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.ccil.cowan.tagsoup - tagsoup - 1.2.1 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.codehaus.groovy - groovy - 2.4.15 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.codehaus.groovy - groovy-json - 2.4.15 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.codehaus.groovy - groovy-xml - 2.4.15 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.codehaus.plexus - plexus-compiler-api - 2.3 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.codehaus.plexus - plexus-compiler-javac - 2.3 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.codehaus.plexus - plexus-component-annotations - 1.7 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.codehaus.plexus - plexus-interpolation - 1.21 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.codehaus.plexus - plexus-utils - 3.0.20 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.codehaus.woodstox - stax2-api - 3.1.4 - - - BSD 2-clause "Simplified" License - https://opensource.org/licenses/BSD-2-Clause/ - - - - - org.codehaus.woodstox - woodstox-core-asl - 4.4.1 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.eclipse.aether - aether-api - 1.0.0.v20140518 - - - Eclipse Public License, Version 1.0 - http://repository.jboss.org/licenses/epl-1.0.txt - - - - - org.eclipse.aether - aether-connector-basic - 1.0.0.v20140518 - - - Eclipse Public License, Version 1.0 - http://repository.jboss.org/licenses/epl-1.0.txt - - - - - org.eclipse.aether - aether-impl - 1.0.0.v20140518 - - - Eclipse Public License, Version 1.0 - http://repository.jboss.org/licenses/epl-1.0.txt - - - - - org.eclipse.aether - aether-spi - 1.0.0.v20140518 - - - Eclipse Public License, Version 1.0 - http://repository.jboss.org/licenses/epl-1.0.txt - - - - - org.eclipse.aether - aether-transport-wagon - 1.0.0.v20140518 - - - Eclipse Public License, Version 1.0 - http://repository.jboss.org/licenses/epl-1.0.txt - - - - - org.eclipse.aether - aether-util - 1.0.0.v20140518 - - - Eclipse Public License, Version 1.0 - http://repository.jboss.org/licenses/epl-1.0.txt - - - - - org.eclipse.sisu - org.eclipse.sisu.inject - 0.3.0.M1 - - - Eclipse Public License, Version 1.0 - http://repository.jboss.org/licenses/epl-1.0.txt - - - - - org.eclipse.sisu - org.eclipse.sisu.plexus - 0.3.0.M1 - - - Eclipse Public License, Version 1.0 - http://repository.jboss.org/licenses/epl-1.0.txt - - - - - org.fusesource.jansi - jansi - 1.11 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.hamcrest - hamcrest-core - 1.3 - - - BSD 2-clause "Simplified" License - https://opensource.org/licenses/BSD-2-Clause/ - - - - - org.hamcrest - hamcrest-library - 1.3 - - - BSD 2-clause "Simplified" License - https://opensource.org/licenses/BSD-2-Clause/ - - - - - org.hibernate - hibernate-validator - 5.3.5.Final-redhat-2 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.javassist - javassist - 3.21.0-GA - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - GNU Lesser General Public License v2.1 only - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html - - - Mozilla Public License 1.1 - https://www.mozilla.org/en-US/MPL/1.1/ - - - - - org.jboss - jboss-dmr - 1.2.0.Final - - - Public Domain - http://repository.jboss.org/licenses/cc0-1.0.txt - - - - - org.jboss.arquillian.config - arquillian-config-api - 1.4.0.Final - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.jboss.arquillian.config - arquillian-config-impl-base - 1.4.0.Final - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.jboss.arquillian.config - arquillian-config-spi - 1.4.0.Final - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.jboss.arquillian.core - arquillian-core-api - 1.4.0.Final - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.jboss.arquillian.core - arquillian-core-impl-base - 1.4.0.Final - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.jboss.arquillian.core - arquillian-core-spi - 1.4.0.Final - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.jboss.arquillian.junit - arquillian-junit-core - 1.4.0.Final - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.jboss.arquillian.junit - arquillian-junit-standalone - 1.4.0.Final - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.jboss.arquillian.test - arquillian-test-api - 1.4.0.Final - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.jboss.arquillian.test - arquillian-test-impl-base - 1.4.0.Final - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.jboss.arquillian.test - arquillian-test-spi - 1.4.0.Final - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.jboss.logging - jboss-logging - 3.3.1.Final - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.jboss.shrinkwrap - shrinkwrap-api - 1.2.6 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.jboss.shrinkwrap - shrinkwrap-impl-base - 1.2.6 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.jboss.shrinkwrap - shrinkwrap-spi - 1.2.6 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.jboss.shrinkwrap.descriptors - shrinkwrap-descriptors-api-base - 2.0.0 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.jboss.shrinkwrap.descriptors - shrinkwrap-descriptors-api-javaee - 2.0.0 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.jboss.shrinkwrap.descriptors - shrinkwrap-descriptors-impl-base - 2.0.0 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.jboss.shrinkwrap.descriptors - shrinkwrap-descriptors-impl-javaee - 2.0.0 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.jboss.shrinkwrap.descriptors - shrinkwrap-descriptors-spi - 2.0.0 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.jboss.shrinkwrap.resolver - shrinkwrap-resolver-api - 2.2.6 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.jboss.shrinkwrap.resolver - shrinkwrap-resolver-api-maven - 2.2.6 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.jboss.shrinkwrap.resolver - shrinkwrap-resolver-api-maven-archive - 2.2.6 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.jboss.shrinkwrap.resolver - shrinkwrap-resolver-api-maven-embedded - 3.0.1 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.jboss.shrinkwrap.resolver - shrinkwrap-resolver-depchain - 2.2.6 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.jboss.shrinkwrap.resolver - shrinkwrap-resolver-impl-maven - 2.2.6 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.jboss.shrinkwrap.resolver - shrinkwrap-resolver-impl-maven-archive - 2.2.6 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.jboss.shrinkwrap.resolver - shrinkwrap-resolver-impl-maven-embedded - 3.0.1 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.jboss.shrinkwrap.resolver - shrinkwrap-resolver-spi - 2.2.6 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.jboss.shrinkwrap.resolver - shrinkwrap-resolver-spi-maven - 2.2.6 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.jboss.shrinkwrap.resolver - shrinkwrap-resolver-spi-maven-archive - 2.2.6 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.jolokia - jolokia-client-java - 1.3.4 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.jsoup - jsoup - 1.7.2 - - - MIT License - https://opensource.org/licenses/MIT/ - - - - - org.kohsuke.metainf-services - metainf-services - 1.6 - - - MIT License - https://opensource.org/licenses/MIT/ - - - - - org.mockito - mockito-core - 1.10.19 - - - MIT License - https://opensource.org/licenses/MIT/ - - - - - org.objenesis - objenesis - 2.6 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.ow2.asm - asm - 5.0.3 - - - The Asm BSD License - http://asm.ow2.org/license.html - - - - - org.skyscreamer - jsonassert - 1.4.0 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.slf4j - jcl-over-slf4j - 1.7.25 - - - MIT License - https://opensource.org/licenses/MIT/ - - - - - org.slf4j - jul-to-slf4j - 1.7.25 - - - MIT License - https://opensource.org/licenses/MIT/ - - - - - org.slf4j - log4j-over-slf4j - 1.7.25 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.slf4j - slf4j-api - 1.7.25 - - - MIT License - https://opensource.org/licenses/MIT/ - - - - - org.sonatype.plexus - plexus-cipher - 1.4 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.sonatype.plexus - plexus-sec-dispatcher - 1.3 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.springframework - spring-aop - 4.3.20.RELEASE - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.springframework - spring-beans - 4.3.20.RELEASE - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.springframework - spring-context - 4.3.20.RELEASE - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.springframework - spring-core - 4.3.20.RELEASE - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.springframework - spring-expression - 4.3.20.RELEASE - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.springframework - spring-test - 4.3.20.RELEASE - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.springframework - spring-web - 4.3.20.RELEASE - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.springframework - spring-webmvc - 4.3.20.RELEASE - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.springframework.boot - spring-boot - 1.5.17.RELEASE - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.springframework.boot - spring-boot-actuator - 1.5.17.RELEASE - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.springframework.boot - spring-boot-autoconfigure - 1.5.17.RELEASE - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.springframework.boot - spring-boot-devtools - 1.5.17.RELEASE - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.springframework.boot - spring-boot-starter - 1.5.17.RELEASE - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.springframework.boot - spring-boot-starter-actuator - 1.5.17.RELEASE - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.springframework.boot - spring-boot-starter-logging - 1.5.17.RELEASE - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.springframework.boot - spring-boot-starter-test - 1.5.17.RELEASE - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.springframework.boot - spring-boot-starter-tomcat - 1.5.17.RELEASE - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.springframework.boot - spring-boot-starter-web - 1.5.17.RELEASE - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.springframework.boot - spring-boot-test - 1.5.17.RELEASE - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.springframework.boot - spring-boot-test-autoconfigure - 1.5.17.RELEASE - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - org.tukaani - xz - 1.0 - - - Public Domain - - - - - org.yaml - snakeyaml - 1.17 - - - Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0 - - - - - diff --git a/src/it/projects/springboot-rest/src/main/java/io/openshift/booster/BoosterApplication.java b/src/it/projects/springboot-rest/src/main/java/io/openshift/booster/BoosterApplication.java deleted file mode 100644 index b52422adb..000000000 --- a/src/it/projects/springboot-rest/src/main/java/io/openshift/booster/BoosterApplication.java +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright 2016-2017 Red Hat, Inc, and individual contributors. - *

- * Licensed 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. - */ -package io.openshift.booster; - -import com.fasterxml.jackson.jaxrs.json.JacksonJsonProvider; -import org.springframework.boot.SpringApplication; -import org.springframework.boot.autoconfigure.SpringBootApplication; -import org.springframework.context.annotation.Bean; - -@SpringBootApplication -public class BoosterApplication { - - public static void main(String[] args) { - SpringApplication.run(BoosterApplication.class, args); - } - - @Bean - public JacksonJsonProvider jsonProvider() { - return new JacksonJsonProvider(); - } -} diff --git a/src/it/projects/springboot-rest/src/main/java/io/openshift/booster/service/Greeting.java b/src/it/projects/springboot-rest/src/main/java/io/openshift/booster/service/Greeting.java deleted file mode 100644 index 7c0bd3119..000000000 --- a/src/it/projects/springboot-rest/src/main/java/io/openshift/booster/service/Greeting.java +++ /dev/null @@ -1,37 +0,0 @@ -/* - * Copyright 2016-2017 Red Hat, Inc, and individual contributors. - * - * Licensed 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. - */ -package io.openshift.booster.service; - -// tag::snippet-greeting[] -public class Greeting { - - public static final String FORMAT = "Hello, %s!"; - - private final String content; - - public Greeting() { - this.content = null; - } - - public Greeting(String content) { - this.content = content; - } - - public String getContent() { - return content; - } -} -// end::snippet-greeting[] diff --git a/src/it/projects/springboot-rest/src/main/java/io/openshift/booster/service/GreetingEndpoint.java b/src/it/projects/springboot-rest/src/main/java/io/openshift/booster/service/GreetingEndpoint.java deleted file mode 100644 index 23813bbfe..000000000 --- a/src/it/projects/springboot-rest/src/main/java/io/openshift/booster/service/GreetingEndpoint.java +++ /dev/null @@ -1,35 +0,0 @@ -/* - * Copyright 2016-2017 Red Hat, Inc, and individual contributors. - * - * Licensed 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. - */ -package io.openshift.booster.service; - -import javax.ws.rs.DefaultValue; -import javax.ws.rs.GET; -import javax.ws.rs.Path; -import javax.ws.rs.Produces; -import javax.ws.rs.QueryParam; - -import org.springframework.stereotype.Component; - -@Path("/greeting") -@Component -public class GreetingEndpoint { - @GET - @Produces("application/json") - public Greeting greeting(@QueryParam("name") @DefaultValue("World") String name) { - final String message = String.format(Greeting.FORMAT, name); - return new Greeting(message); - } -} diff --git a/src/it/projects/springboot-rest/src/main/resources/application.properties b/src/it/projects/springboot-rest/src/main/resources/application.properties deleted file mode 100644 index 43ebf8251..000000000 --- a/src/it/projects/springboot-rest/src/main/resources/application.properties +++ /dev/null @@ -1,2 +0,0 @@ -cxf.path:/api -cxf.jaxrs.component-scan:true diff --git a/src/it/projects/springboot-rest/src/main/resources/static/index.html b/src/it/projects/springboot-rest/src/main/resources/static/index.html deleted file mode 100644 index 45cb0ec97..000000000 --- a/src/it/projects/springboot-rest/src/main/resources/static/index.html +++ /dev/null @@ -1,57 +0,0 @@ - - - - API Level 0 Mission - Spring Boot - - - - -

-
-
-

HTTP Booster

-
-
-

An example of simple mapping of a business operation to a remote endpoint. By taking this approach, clients use the HTTP protocol as a transport mechanism to call services. Application engineers define the APIs using a broad interpretation of the REST fundamentals, encouraging freedom in design and quick prototyping.

-
-
-

Using the greeting service

- -
-
-
- -
-
- - -
- -
- -

Result:

-
Invoke the service to see the result.
-
-
- - - - - - - - - diff --git a/src/it/projects/springboot-rest/src/test/java/io/openshift/booster/AbstractBoosterApplicationTest.java b/src/it/projects/springboot-rest/src/test/java/io/openshift/booster/AbstractBoosterApplicationTest.java deleted file mode 100644 index 649d9279f..000000000 --- a/src/it/projects/springboot-rest/src/test/java/io/openshift/booster/AbstractBoosterApplicationTest.java +++ /dev/null @@ -1,51 +0,0 @@ -/* - * Copyright 2016-2017 Red Hat, Inc, and individual contributors. - * - * Licensed 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. - */ -package io.openshift.booster; - -import static io.restassured.RestAssured.given; -import static org.hamcrest.core.Is.is; - -import io.openshift.booster.service.Greeting; -import org.junit.Test; - -public abstract class AbstractBoosterApplicationTest { - - private static final String GREETING_PATH = "api/greeting"; - - @Test - public void testGreetingEndpoint() { - given() - .baseUri(baseURI()) - .get(GREETING_PATH) - .then() - .statusCode(200) - .body("content", is(String.format(Greeting.FORMAT, "World"))); - } - - @Test - public void testGreetingEndpointWithNameParameter() { - given() - .baseUri(baseURI()) - .param("name", "John") - .when() - .get(GREETING_PATH) - .then() - .statusCode(200) - .body("content", is(String.format(Greeting.FORMAT, "John"))); - } - - protected abstract String baseURI(); -} diff --git a/src/it/projects/springboot-rest/src/test/java/io/openshift/booster/LocalTest.java b/src/it/projects/springboot-rest/src/test/java/io/openshift/booster/LocalTest.java deleted file mode 100644 index 94e77740a..000000000 --- a/src/it/projects/springboot-rest/src/test/java/io/openshift/booster/LocalTest.java +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright 2016-2017 Red Hat, Inc, and individual contributors. - * - * Licensed 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. - */ -package io.openshift.booster; - -import org.junit.runner.RunWith; -import org.springframework.beans.factory.annotation.Value; -import org.springframework.boot.test.context.SpringBootTest; -import org.springframework.test.context.junit4.SpringRunner; - -@RunWith(SpringRunner.class) -@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT) -public class LocalTest extends AbstractBoosterApplicationTest { - - @Value("${local.server.port}") - private int port; - - @Override - public String baseURI() { - return String.format("http://localhost:%d", port); - } -} diff --git a/src/it/projects/springboot-rest/src/test/java/io/openshift/booster/OpenShiftIT.java b/src/it/projects/springboot-rest/src/test/java/io/openshift/booster/OpenShiftIT.java deleted file mode 100644 index 0d0ceceb0..000000000 --- a/src/it/projects/springboot-rest/src/test/java/io/openshift/booster/OpenShiftIT.java +++ /dev/null @@ -1,36 +0,0 @@ -/* - * Copyright 2016-2017 Red Hat, Inc, and individual contributors. - * - * Licensed 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. - */ - -package io.openshift.booster; - -import java.net.URL; -import org.arquillian.cube.openshift.impl.enricher.AwaitRoute; -import org.arquillian.cube.openshift.impl.enricher.RouteURL; -import org.jboss.arquillian.junit.Arquillian; -import org.junit.runner.RunWith; - -@RunWith(Arquillian.class) -public class OpenShiftIT extends AbstractBoosterApplicationTest { - - @AwaitRoute(path = "/health") - @RouteURL("${app.name}") - private URL baseURL; - - @Override - public String baseURI() { - return baseURL.toString(); - } -} diff --git a/src/it/projects/springboot-rest/src/test/resources/arquillian.xml b/src/it/projects/springboot-rest/src/test/resources/arquillian.xml deleted file mode 100644 index aac5dc203..000000000 --- a/src/it/projects/springboot-rest/src/test/resources/arquillian.xml +++ /dev/null @@ -1,8 +0,0 @@ - - -true -true -false -springboot-rest - - diff --git a/src/it/projects/springboot-rest/src/test/resources/logback-test.xml b/src/it/projects/springboot-rest/src/test/resources/logback-test.xml deleted file mode 100644 index 9f754ed5a..000000000 --- a/src/it/projects/springboot-rest/src/test/resources/logback-test.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file