From b03b2ca420634954a3007c83008bc01afb46d4a7 Mon Sep 17 00:00:00 2001 From: buzas Date: Wed, 13 Sep 2023 09:26:22 +0300 Subject: [PATCH 1/2] changed license and readme to OpenText --- LICENSE | 25 ++++++++----- README.md | 2 +- pom.xml | 6 ++-- src/main/java/com/microfocus/bdd/App.java | 35 +++++++++++++++---- .../java/com/microfocus/bdd/Bdd2Octane.java | 35 +++++++++++++++---- .../com/microfocus/bdd/CucumberJsHandler.java | 35 +++++++++++++++---- .../microfocus/bdd/CucumberJvmHandler.java | 35 +++++++++++++++---- .../microfocus/bdd/CucumberRubyHandler.java | 35 +++++++++++++++---- .../microfocus/bdd/FeatureFileLocator.java | 35 +++++++++++++++---- .../com/microfocus/bdd/FeatureFileMeta.java | 35 +++++++++++++++---- .../java/com/microfocus/bdd/FilesLocator.java | 35 +++++++++++++++---- .../com/microfocus/bdd/JunitReportReader.java | 35 +++++++++++++++---- .../microfocus/bdd/LinesBottomUpIterator.java | 35 +++++++++++++++---- .../com/microfocus/bdd/LinesIterator.java | 35 +++++++++++++++---- .../java/com/microfocus/bdd/MavenPlugin.java | 35 +++++++++++++++---- .../microfocus/bdd/OctaneFeatureLocator.java | 31 ++++++++++++++++ .../com/microfocus/bdd/PhpBehatHandler.java | 35 +++++++++++++++---- .../microfocus/bdd/PythonBehaveHandler.java | 35 +++++++++++++++---- .../microfocus/bdd/PythonRadishHandler.java | 35 +++++++++++++++---- .../bdd/api/BddFrameworkHandler.java | 35 +++++++++++++++---- .../java/com/microfocus/bdd/api/Element.java | 35 +++++++++++++++---- .../com/microfocus/bdd/api/OctaneFeature.java | 35 +++++++++++++++---- .../microfocus/bdd/api/OctaneScenario.java | 35 +++++++++++++++---- .../com/microfocus/bdd/api/OctaneStep.java | 35 +++++++++++++++---- .../java/com/microfocus/bdd/api/Status.java | 35 +++++++++++++++---- .../bdd/gherkin/GherkinFeature.java | 35 +++++++++++++++---- .../gherkin/GherkinMultiLingualService.java | 35 +++++++++++++++---- .../bdd/gherkin/GherkinScenario.java | 35 +++++++++++++++---- .../bdd/gherkin/GherkinScenarioOutline.java | 35 +++++++++++++++---- .../microfocus/bdd/gherkin/GherkinStep.java | 35 +++++++++++++++---- .../com/microfocus/bdd/util/FileUtil.java | 35 +++++++++++++++---- .../bdd/util/GherkinDocumentUtil.java | 35 +++++++++++++++---- .../bdd/it/Bdd2OctaneHandlerITCase.java | 35 +++++++++++++++---- .../microfocus/bdd/it/Bdd2OctaneITCase.java | 35 +++++++++++++++---- .../com/microfocus/bdd/ut/Bdd2OctaneTest.java | 31 ++++++++++++++++ .../bdd/ut/FeatureFileLocatorTest.java | 35 +++++++++++++++---- .../microfocus/bdd/ut/FilesLocatorTest.java | 35 +++++++++++++++---- .../bdd/ut/GherkinDocumentUtilTest.java | 35 +++++++++++++++---- .../bdd/ut/OctaneFeatureLocatorTest.java | 31 ++++++++++++++++ .../bdd/ut/TestCucumberJsHandler.java | 35 +++++++++++++++---- .../bdd/ut/TestCucumberJvmHandler.java | 35 +++++++++++++++---- .../bdd/ut/TestCucumberRubyHandler.java | 35 +++++++++++++++---- .../bdd/ut/TestJunitReportReader.java | 35 +++++++++++++++---- .../bdd/ut/TestPhpBehatHandler.java | 35 +++++++++++++++---- .../bdd/ut/TestPythonBehaveHandler.java | 35 +++++++++++++++---- .../bdd/ut/TestPythonRadishHandlerTest.java | 35 +++++++++++++++---- .../java/com/microfocus/bdd/ut/TestUtil.java | 35 +++++++++++++++---- 47 files changed, 1303 insertions(+), 258 deletions(-) diff --git a/LICENSE b/LICENSE index 8dada3e..e636e09 100644 --- a/LICENSE +++ b/LICENSE @@ -186,16 +186,25 @@ 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 + Copyright 2021-2023 Open Text + + The only warranties for products and services of Open Text and + its affiliates and licensors (“Open Text”) are as may be set forth + in the express warranty statements accompanying such products and services. + Nothing herein should be construed as constituting an additional warranty. + Open Text shall not be liable for technical or editorial errors or + omissions contained herein. The information contained herein is subject + to change without notice. + + Except as specifically indicated otherwise, this document contains + confidential information and a valid license is required for possession, + use or copying. If this work is provided to the U.S. Government, + consistent with FAR 12.211 and 12.212, Commercial Computer Software, + Computer Software Documentation, and Technical Data for Commercial Items are + licensed to the U.S. Government under vendor's standard commercial license. 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. + limitations under the License. \ No newline at end of file diff --git a/README.md b/README.md index 16e06f0..1c6bf08 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ This tool parses the JUnit-style XML report generated by various BDD frameworks, crosschecking the relevant .feature files in Gherkin syntax, and sends the result to ALM Octane via the -[Micro Focus Application Automation Tools](https://plugins.jenkins.io/hp-application-automation-tools-plugin/). +[OpenText Application Automation Tools](https://plugins.jenkins.io/hp-application-automation-tools-plugin/). This tool is configured as a build step before the "ALM Octane Cucumber test reporter". The following frameworks are currently supported out-of-the-box: diff --git a/pom.xml b/pom.xml index a4b218d..64bc928 100644 --- a/pom.xml +++ b/pom.xml @@ -23,9 +23,9 @@ Jack Zhou - jie.zhou5@microfocus.com - microfocus - http://www.microfocus.com + jzhou2@opentext.com + OpenText + http://www.microfocus.com/opentext diff --git a/src/main/java/com/microfocus/bdd/App.java b/src/main/java/com/microfocus/bdd/App.java index d506a22..14f67b7 100644 --- a/src/main/java/com/microfocus/bdd/App.java +++ b/src/main/java/com/microfocus/bdd/App.java @@ -1,10 +1,33 @@ -/* - * © Copyright [2021] Micro Focus or one of its affiliates. - * Licensed under Apache License (the "License"); + /** + * + * Copyright 2021-2023 Open Text + * + * The only warranties for products and services of Open Text and + * its affiliates and licensors (“Open Text”) are as may be set forth + * in the express warranty statements accompanying such products and services. + * Nothing herein should be construed as constituting an additional warranty. + * Open Text shall not be liable for technical or editorial errors or + * omissions contained herein. The information contained herein is subject + * to change without notice. + * + * Except as specifically indicated otherwise, this document contains + * confidential information and a valid license is required for possession, + * use or copying. If this work is provided to the U.S. Government, + * consistent with FAR 12.211 and 12.212, Commercial Computer Software, + * Computer Software Documentation, and Technical Data for Commercial Items are + * licensed to the U.S. Government under vendor's standard commercial license. + * + * 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/ - * 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. + * 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 com.microfocus.bdd; diff --git a/src/main/java/com/microfocus/bdd/Bdd2Octane.java b/src/main/java/com/microfocus/bdd/Bdd2Octane.java index 2868dad..9baaef9 100644 --- a/src/main/java/com/microfocus/bdd/Bdd2Octane.java +++ b/src/main/java/com/microfocus/bdd/Bdd2Octane.java @@ -1,10 +1,33 @@ -/* - * © Copyright [2021] Micro Focus or one of its affiliates. - * Licensed under Apache License (the "License"); + /** + * + * Copyright 2021-2023 Open Text + * + * The only warranties for products and services of Open Text and + * its affiliates and licensors (“Open Text”) are as may be set forth + * in the express warranty statements accompanying such products and services. + * Nothing herein should be construed as constituting an additional warranty. + * Open Text shall not be liable for technical or editorial errors or + * omissions contained herein. The information contained herein is subject + * to change without notice. + * + * Except as specifically indicated otherwise, this document contains + * confidential information and a valid license is required for possession, + * use or copying. If this work is provided to the U.S. Government, + * consistent with FAR 12.211 and 12.212, Commercial Computer Software, + * Computer Software Documentation, and Technical Data for Commercial Items are + * licensed to the U.S. Government under vendor's standard commercial license. + * + * 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/ - * 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. + * 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 com.microfocus.bdd; diff --git a/src/main/java/com/microfocus/bdd/CucumberJsHandler.java b/src/main/java/com/microfocus/bdd/CucumberJsHandler.java index 1cb78e8..659d010 100644 --- a/src/main/java/com/microfocus/bdd/CucumberJsHandler.java +++ b/src/main/java/com/microfocus/bdd/CucumberJsHandler.java @@ -1,10 +1,33 @@ -/* - * © Copyright [2021] Micro Focus or one of its affiliates. - * Licensed under Apache License (the "License"); + /** + * + * Copyright 2021-2023 Open Text + * + * The only warranties for products and services of Open Text and + * its affiliates and licensors (“Open Text”) are as may be set forth + * in the express warranty statements accompanying such products and services. + * Nothing herein should be construed as constituting an additional warranty. + * Open Text shall not be liable for technical or editorial errors or + * omissions contained herein. The information contained herein is subject + * to change without notice. + * + * Except as specifically indicated otherwise, this document contains + * confidential information and a valid license is required for possession, + * use or copying. If this work is provided to the U.S. Government, + * consistent with FAR 12.211 and 12.212, Commercial Computer Software, + * Computer Software Documentation, and Technical Data for Commercial Items are + * licensed to the U.S. Government under vendor's standard commercial license. + * + * 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/ - * 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. + * 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 com.microfocus.bdd; diff --git a/src/main/java/com/microfocus/bdd/CucumberJvmHandler.java b/src/main/java/com/microfocus/bdd/CucumberJvmHandler.java index 0248a11..3ba2f73 100644 --- a/src/main/java/com/microfocus/bdd/CucumberJvmHandler.java +++ b/src/main/java/com/microfocus/bdd/CucumberJvmHandler.java @@ -1,10 +1,33 @@ -/* - * © Copyright [2021] Micro Focus or one of its affiliates. - * Licensed under Apache License (the "License"); + /** + * + * Copyright 2021-2023 Open Text + * + * The only warranties for products and services of Open Text and + * its affiliates and licensors (“Open Text”) are as may be set forth + * in the express warranty statements accompanying such products and services. + * Nothing herein should be construed as constituting an additional warranty. + * Open Text shall not be liable for technical or editorial errors or + * omissions contained herein. The information contained herein is subject + * to change without notice. + * + * Except as specifically indicated otherwise, this document contains + * confidential information and a valid license is required for possession, + * use or copying. If this work is provided to the U.S. Government, + * consistent with FAR 12.211 and 12.212, Commercial Computer Software, + * Computer Software Documentation, and Technical Data for Commercial Items are + * licensed to the U.S. Government under vendor's standard commercial license. + * + * 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/ - * 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. + * 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 com.microfocus.bdd; diff --git a/src/main/java/com/microfocus/bdd/CucumberRubyHandler.java b/src/main/java/com/microfocus/bdd/CucumberRubyHandler.java index e14f9d4..8ab2bc6 100644 --- a/src/main/java/com/microfocus/bdd/CucumberRubyHandler.java +++ b/src/main/java/com/microfocus/bdd/CucumberRubyHandler.java @@ -1,10 +1,33 @@ -/* - * © Copyright [2021] Micro Focus or one of its affiliates. - * Licensed under Apache License (the "License"); + /** + * + * Copyright 2021-2023 Open Text + * + * The only warranties for products and services of Open Text and + * its affiliates and licensors (“Open Text”) are as may be set forth + * in the express warranty statements accompanying such products and services. + * Nothing herein should be construed as constituting an additional warranty. + * Open Text shall not be liable for technical or editorial errors or + * omissions contained herein. The information contained herein is subject + * to change without notice. + * + * Except as specifically indicated otherwise, this document contains + * confidential information and a valid license is required for possession, + * use or copying. If this work is provided to the U.S. Government, + * consistent with FAR 12.211 and 12.212, Commercial Computer Software, + * Computer Software Documentation, and Technical Data for Commercial Items are + * licensed to the U.S. Government under vendor's standard commercial license. + * + * 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/ - * 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. + * 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 com.microfocus.bdd; diff --git a/src/main/java/com/microfocus/bdd/FeatureFileLocator.java b/src/main/java/com/microfocus/bdd/FeatureFileLocator.java index 22aadb2..eae7313 100644 --- a/src/main/java/com/microfocus/bdd/FeatureFileLocator.java +++ b/src/main/java/com/microfocus/bdd/FeatureFileLocator.java @@ -1,10 +1,33 @@ -/* - * © Copyright [2021] Micro Focus or one of its affiliates. - * Licensed under Apache License (the "License"); + /** + * + * Copyright 2021-2023 Open Text + * + * The only warranties for products and services of Open Text and + * its affiliates and licensors (“Open Text”) are as may be set forth + * in the express warranty statements accompanying such products and services. + * Nothing herein should be construed as constituting an additional warranty. + * Open Text shall not be liable for technical or editorial errors or + * omissions contained herein. The information contained herein is subject + * to change without notice. + * + * Except as specifically indicated otherwise, this document contains + * confidential information and a valid license is required for possession, + * use or copying. If this work is provided to the U.S. Government, + * consistent with FAR 12.211 and 12.212, Commercial Computer Software, + * Computer Software Documentation, and Technical Data for Commercial Items are + * licensed to the U.S. Government under vendor's standard commercial license. + * + * 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/ - * 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. + * 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 com.microfocus.bdd; diff --git a/src/main/java/com/microfocus/bdd/FeatureFileMeta.java b/src/main/java/com/microfocus/bdd/FeatureFileMeta.java index 98d2b0b..e242831 100644 --- a/src/main/java/com/microfocus/bdd/FeatureFileMeta.java +++ b/src/main/java/com/microfocus/bdd/FeatureFileMeta.java @@ -1,10 +1,33 @@ -/* - * © Copyright [2021] Micro Focus or one of its affiliates. - * Licensed under Apache License (the "License"); + /** + * + * Copyright 2021-2023 Open Text + * + * The only warranties for products and services of Open Text and + * its affiliates and licensors (“Open Text”) are as may be set forth + * in the express warranty statements accompanying such products and services. + * Nothing herein should be construed as constituting an additional warranty. + * Open Text shall not be liable for technical or editorial errors or + * omissions contained herein. The information contained herein is subject + * to change without notice. + * + * Except as specifically indicated otherwise, this document contains + * confidential information and a valid license is required for possession, + * use or copying. If this work is provided to the U.S. Government, + * consistent with FAR 12.211 and 12.212, Commercial Computer Software, + * Computer Software Documentation, and Technical Data for Commercial Items are + * licensed to the U.S. Government under vendor's standard commercial license. + * + * 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/ - * 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. + * 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 com.microfocus.bdd; diff --git a/src/main/java/com/microfocus/bdd/FilesLocator.java b/src/main/java/com/microfocus/bdd/FilesLocator.java index 0498280..73efe2c 100644 --- a/src/main/java/com/microfocus/bdd/FilesLocator.java +++ b/src/main/java/com/microfocus/bdd/FilesLocator.java @@ -1,10 +1,33 @@ -/* - * © Copyright [2021] Micro Focus or one of its affiliates. - * Licensed under Apache License (the "License"); + /** + * + * Copyright 2021-2023 Open Text + * + * The only warranties for products and services of Open Text and + * its affiliates and licensors (“Open Text”) are as may be set forth + * in the express warranty statements accompanying such products and services. + * Nothing herein should be construed as constituting an additional warranty. + * Open Text shall not be liable for technical or editorial errors or + * omissions contained herein. The information contained herein is subject + * to change without notice. + * + * Except as specifically indicated otherwise, this document contains + * confidential information and a valid license is required for possession, + * use or copying. If this work is provided to the U.S. Government, + * consistent with FAR 12.211 and 12.212, Commercial Computer Software, + * Computer Software Documentation, and Technical Data for Commercial Items are + * licensed to the U.S. Government under vendor's standard commercial license. + * + * 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/ - * 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. + * 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 com.microfocus.bdd; diff --git a/src/main/java/com/microfocus/bdd/JunitReportReader.java b/src/main/java/com/microfocus/bdd/JunitReportReader.java index b7dd27a..128193a 100644 --- a/src/main/java/com/microfocus/bdd/JunitReportReader.java +++ b/src/main/java/com/microfocus/bdd/JunitReportReader.java @@ -1,10 +1,33 @@ -/* - * © Copyright [2021] Micro Focus or one of its affiliates. - * Licensed under Apache License (the "License"); + /** + * + * Copyright 2021-2023 Open Text + * + * The only warranties for products and services of Open Text and + * its affiliates and licensors (“Open Text”) are as may be set forth + * in the express warranty statements accompanying such products and services. + * Nothing herein should be construed as constituting an additional warranty. + * Open Text shall not be liable for technical or editorial errors or + * omissions contained herein. The information contained herein is subject + * to change without notice. + * + * Except as specifically indicated otherwise, this document contains + * confidential information and a valid license is required for possession, + * use or copying. If this work is provided to the U.S. Government, + * consistent with FAR 12.211 and 12.212, Commercial Computer Software, + * Computer Software Documentation, and Technical Data for Commercial Items are + * licensed to the U.S. Government under vendor's standard commercial license. + * + * 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/ - * 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. + * 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 com.microfocus.bdd; diff --git a/src/main/java/com/microfocus/bdd/LinesBottomUpIterator.java b/src/main/java/com/microfocus/bdd/LinesBottomUpIterator.java index 7d07687..8493432 100644 --- a/src/main/java/com/microfocus/bdd/LinesBottomUpIterator.java +++ b/src/main/java/com/microfocus/bdd/LinesBottomUpIterator.java @@ -1,10 +1,33 @@ -/* - * © Copyright [2021] Micro Focus or one of its affiliates. - * Licensed under Apache License (the "License"); + /** + * + * Copyright 2021-2023 Open Text + * + * The only warranties for products and services of Open Text and + * its affiliates and licensors (“Open Text”) are as may be set forth + * in the express warranty statements accompanying such products and services. + * Nothing herein should be construed as constituting an additional warranty. + * Open Text shall not be liable for technical or editorial errors or + * omissions contained herein. The information contained herein is subject + * to change without notice. + * + * Except as specifically indicated otherwise, this document contains + * confidential information and a valid license is required for possession, + * use or copying. If this work is provided to the U.S. Government, + * consistent with FAR 12.211 and 12.212, Commercial Computer Software, + * Computer Software Documentation, and Technical Data for Commercial Items are + * licensed to the U.S. Government under vendor's standard commercial license. + * + * 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/ - * 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. + * 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 com.microfocus.bdd; diff --git a/src/main/java/com/microfocus/bdd/LinesIterator.java b/src/main/java/com/microfocus/bdd/LinesIterator.java index 615717d..248555b 100644 --- a/src/main/java/com/microfocus/bdd/LinesIterator.java +++ b/src/main/java/com/microfocus/bdd/LinesIterator.java @@ -1,10 +1,33 @@ -/* - * © Copyright [2021] Micro Focus or one of its affiliates. - * Licensed under Apache License (the "License"); + /** + * + * Copyright 2021-2023 Open Text + * + * The only warranties for products and services of Open Text and + * its affiliates and licensors (“Open Text”) are as may be set forth + * in the express warranty statements accompanying such products and services. + * Nothing herein should be construed as constituting an additional warranty. + * Open Text shall not be liable for technical or editorial errors or + * omissions contained herein. The information contained herein is subject + * to change without notice. + * + * Except as specifically indicated otherwise, this document contains + * confidential information and a valid license is required for possession, + * use or copying. If this work is provided to the U.S. Government, + * consistent with FAR 12.211 and 12.212, Commercial Computer Software, + * Computer Software Documentation, and Technical Data for Commercial Items are + * licensed to the U.S. Government under vendor's standard commercial license. + * + * 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/ - * 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. + * 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 com.microfocus.bdd; diff --git a/src/main/java/com/microfocus/bdd/MavenPlugin.java b/src/main/java/com/microfocus/bdd/MavenPlugin.java index 07a1fd5..6c3ba93 100644 --- a/src/main/java/com/microfocus/bdd/MavenPlugin.java +++ b/src/main/java/com/microfocus/bdd/MavenPlugin.java @@ -1,10 +1,33 @@ -/* - * © Copyright [2021] Micro Focus or one of its affiliates. - * Licensed under Apache License (the "License"); + /** + * + * Copyright 2021-2023 Open Text + * + * The only warranties for products and services of Open Text and + * its affiliates and licensors (“Open Text”) are as may be set forth + * in the express warranty statements accompanying such products and services. + * Nothing herein should be construed as constituting an additional warranty. + * Open Text shall not be liable for technical or editorial errors or + * omissions contained herein. The information contained herein is subject + * to change without notice. + * + * Except as specifically indicated otherwise, this document contains + * confidential information and a valid license is required for possession, + * use or copying. If this work is provided to the U.S. Government, + * consistent with FAR 12.211 and 12.212, Commercial Computer Software, + * Computer Software Documentation, and Technical Data for Commercial Items are + * licensed to the U.S. Government under vendor's standard commercial license. + * + * 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/ - * 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. + * 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 com.microfocus.bdd; diff --git a/src/main/java/com/microfocus/bdd/OctaneFeatureLocator.java b/src/main/java/com/microfocus/bdd/OctaneFeatureLocator.java index b58a997..b464205 100644 --- a/src/main/java/com/microfocus/bdd/OctaneFeatureLocator.java +++ b/src/main/java/com/microfocus/bdd/OctaneFeatureLocator.java @@ -1,3 +1,34 @@ +/** + * + * Copyright 2021-2023 Open Text + * + * The only warranties for products and services of Open Text and + * its affiliates and licensors (“Open Text”) are as may be set forth + * in the express warranty statements accompanying such products and services. + * Nothing herein should be construed as constituting an additional warranty. + * Open Text shall not be liable for technical or editorial errors or + * omissions contained herein. The information contained herein is subject + * to change without notice. + * + * Except as specifically indicated otherwise, this document contains + * confidential information and a valid license is required for possession, + * use or copying. If this work is provided to the U.S. Government, + * consistent with FAR 12.211 and 12.212, Commercial Computer Software, + * Computer Software Documentation, and Technical Data for Commercial Items are + * licensed to the U.S. Government under vendor's standard commercial license. + * + * 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 com.microfocus.bdd; import com.microfocus.bdd.api.OctaneFeature; diff --git a/src/main/java/com/microfocus/bdd/PhpBehatHandler.java b/src/main/java/com/microfocus/bdd/PhpBehatHandler.java index 82746ac..7194826 100644 --- a/src/main/java/com/microfocus/bdd/PhpBehatHandler.java +++ b/src/main/java/com/microfocus/bdd/PhpBehatHandler.java @@ -1,10 +1,33 @@ -/* - * © Copyright [2021] Micro Focus or one of its affiliates. - * Licensed under Apache License (the "License"); + /** + * + * Copyright 2021-2023 Open Text + * + * The only warranties for products and services of Open Text and + * its affiliates and licensors (“Open Text”) are as may be set forth + * in the express warranty statements accompanying such products and services. + * Nothing herein should be construed as constituting an additional warranty. + * Open Text shall not be liable for technical or editorial errors or + * omissions contained herein. The information contained herein is subject + * to change without notice. + * + * Except as specifically indicated otherwise, this document contains + * confidential information and a valid license is required for possession, + * use or copying. If this work is provided to the U.S. Government, + * consistent with FAR 12.211 and 12.212, Commercial Computer Software, + * Computer Software Documentation, and Technical Data for Commercial Items are + * licensed to the U.S. Government under vendor's standard commercial license. + * + * 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/ - * 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. + * 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 com.microfocus.bdd; diff --git a/src/main/java/com/microfocus/bdd/PythonBehaveHandler.java b/src/main/java/com/microfocus/bdd/PythonBehaveHandler.java index c74f4f0..de445f9 100644 --- a/src/main/java/com/microfocus/bdd/PythonBehaveHandler.java +++ b/src/main/java/com/microfocus/bdd/PythonBehaveHandler.java @@ -1,10 +1,33 @@ -/* - * © Copyright [2021] Micro Focus or one of its affiliates. - * Licensed under Apache License (the "License"); + /** + * + * Copyright 2021-2023 Open Text + * + * The only warranties for products and services of Open Text and + * its affiliates and licensors (“Open Text”) are as may be set forth + * in the express warranty statements accompanying such products and services. + * Nothing herein should be construed as constituting an additional warranty. + * Open Text shall not be liable for technical or editorial errors or + * omissions contained herein. The information contained herein is subject + * to change without notice. + * + * Except as specifically indicated otherwise, this document contains + * confidential information and a valid license is required for possession, + * use or copying. If this work is provided to the U.S. Government, + * consistent with FAR 12.211 and 12.212, Commercial Computer Software, + * Computer Software Documentation, and Technical Data for Commercial Items are + * licensed to the U.S. Government under vendor's standard commercial license. + * + * 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/ - * 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. + * 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 com.microfocus.bdd; diff --git a/src/main/java/com/microfocus/bdd/PythonRadishHandler.java b/src/main/java/com/microfocus/bdd/PythonRadishHandler.java index 9420616..a840e4c 100644 --- a/src/main/java/com/microfocus/bdd/PythonRadishHandler.java +++ b/src/main/java/com/microfocus/bdd/PythonRadishHandler.java @@ -1,10 +1,33 @@ -/* - * © Copyright [2021] Micro Focus or one of its affiliates. - * Licensed under Apache License (the "License"); + /** + * + * Copyright 2021-2023 Open Text + * + * The only warranties for products and services of Open Text and + * its affiliates and licensors (“Open Text”) are as may be set forth + * in the express warranty statements accompanying such products and services. + * Nothing herein should be construed as constituting an additional warranty. + * Open Text shall not be liable for technical or editorial errors or + * omissions contained herein. The information contained herein is subject + * to change without notice. + * + * Except as specifically indicated otherwise, this document contains + * confidential information and a valid license is required for possession, + * use or copying. If this work is provided to the U.S. Government, + * consistent with FAR 12.211 and 12.212, Commercial Computer Software, + * Computer Software Documentation, and Technical Data for Commercial Items are + * licensed to the U.S. Government under vendor's standard commercial license. + * + * 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/ - * 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. + * 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 com.microfocus.bdd; diff --git a/src/main/java/com/microfocus/bdd/api/BddFrameworkHandler.java b/src/main/java/com/microfocus/bdd/api/BddFrameworkHandler.java index 7d4d5bf..f144fca 100644 --- a/src/main/java/com/microfocus/bdd/api/BddFrameworkHandler.java +++ b/src/main/java/com/microfocus/bdd/api/BddFrameworkHandler.java @@ -1,10 +1,33 @@ -/* - * © Copyright [2021] Micro Focus or one of its affiliates. - * Licensed under Apache License (the "License"); + /** + * + * Copyright 2021-2023 Open Text + * + * The only warranties for products and services of Open Text and + * its affiliates and licensors (“Open Text”) are as may be set forth + * in the express warranty statements accompanying such products and services. + * Nothing herein should be construed as constituting an additional warranty. + * Open Text shall not be liable for technical or editorial errors or + * omissions contained herein. The information contained herein is subject + * to change without notice. + * + * Except as specifically indicated otherwise, this document contains + * confidential information and a valid license is required for possession, + * use or copying. If this work is provided to the U.S. Government, + * consistent with FAR 12.211 and 12.212, Commercial Computer Software, + * Computer Software Documentation, and Technical Data for Commercial Items are + * licensed to the U.S. Government under vendor's standard commercial license. + * + * 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/ - * 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. + * 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 com.microfocus.bdd.api; diff --git a/src/main/java/com/microfocus/bdd/api/Element.java b/src/main/java/com/microfocus/bdd/api/Element.java index d867229..83dad97 100644 --- a/src/main/java/com/microfocus/bdd/api/Element.java +++ b/src/main/java/com/microfocus/bdd/api/Element.java @@ -1,10 +1,33 @@ -/* - * © Copyright [2021] Micro Focus or one of its affiliates. - * Licensed under Apache License (the "License"); + /** + * + * Copyright 2021-2023 Open Text + * + * The only warranties for products and services of Open Text and + * its affiliates and licensors (“Open Text”) are as may be set forth + * in the express warranty statements accompanying such products and services. + * Nothing herein should be construed as constituting an additional warranty. + * Open Text shall not be liable for technical or editorial errors or + * omissions contained herein. The information contained herein is subject + * to change without notice. + * + * Except as specifically indicated otherwise, this document contains + * confidential information and a valid license is required for possession, + * use or copying. If this work is provided to the U.S. Government, + * consistent with FAR 12.211 and 12.212, Commercial Computer Software, + * Computer Software Documentation, and Technical Data for Commercial Items are + * licensed to the U.S. Government under vendor's standard commercial license. + * + * 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/ - * 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. + * 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 com.microfocus.bdd.api; diff --git a/src/main/java/com/microfocus/bdd/api/OctaneFeature.java b/src/main/java/com/microfocus/bdd/api/OctaneFeature.java index d4f30de..d14c0d1 100644 --- a/src/main/java/com/microfocus/bdd/api/OctaneFeature.java +++ b/src/main/java/com/microfocus/bdd/api/OctaneFeature.java @@ -1,10 +1,33 @@ -/* - * © Copyright [2021] Micro Focus or one of its affiliates. - * Licensed under Apache License (the "License"); + /** + * + * Copyright 2021-2023 Open Text + * + * The only warranties for products and services of Open Text and + * its affiliates and licensors (“Open Text”) are as may be set forth + * in the express warranty statements accompanying such products and services. + * Nothing herein should be construed as constituting an additional warranty. + * Open Text shall not be liable for technical or editorial errors or + * omissions contained herein. The information contained herein is subject + * to change without notice. + * + * Except as specifically indicated otherwise, this document contains + * confidential information and a valid license is required for possession, + * use or copying. If this work is provided to the U.S. Government, + * consistent with FAR 12.211 and 12.212, Commercial Computer Software, + * Computer Software Documentation, and Technical Data for Commercial Items are + * licensed to the U.S. Government under vendor's standard commercial license. + * + * 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/ - * 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. + * 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 com.microfocus.bdd.api; diff --git a/src/main/java/com/microfocus/bdd/api/OctaneScenario.java b/src/main/java/com/microfocus/bdd/api/OctaneScenario.java index 7160fe6..7ddba2c 100644 --- a/src/main/java/com/microfocus/bdd/api/OctaneScenario.java +++ b/src/main/java/com/microfocus/bdd/api/OctaneScenario.java @@ -1,10 +1,33 @@ -/* - * © Copyright [2021] Micro Focus or one of its affiliates. - * Licensed under Apache License (the "License"); + /** + * + * Copyright 2021-2023 Open Text + * + * The only warranties for products and services of Open Text and + * its affiliates and licensors (“Open Text”) are as may be set forth + * in the express warranty statements accompanying such products and services. + * Nothing herein should be construed as constituting an additional warranty. + * Open Text shall not be liable for technical or editorial errors or + * omissions contained herein. The information contained herein is subject + * to change without notice. + * + * Except as specifically indicated otherwise, this document contains + * confidential information and a valid license is required for possession, + * use or copying. If this work is provided to the U.S. Government, + * consistent with FAR 12.211 and 12.212, Commercial Computer Software, + * Computer Software Documentation, and Technical Data for Commercial Items are + * licensed to the U.S. Government under vendor's standard commercial license. + * + * 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/ - * 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. + * 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 com.microfocus.bdd.api; diff --git a/src/main/java/com/microfocus/bdd/api/OctaneStep.java b/src/main/java/com/microfocus/bdd/api/OctaneStep.java index 831fd7d..201519b 100644 --- a/src/main/java/com/microfocus/bdd/api/OctaneStep.java +++ b/src/main/java/com/microfocus/bdd/api/OctaneStep.java @@ -1,10 +1,33 @@ -/* - * © Copyright [2021] Micro Focus or one of its affiliates. - * Licensed under Apache License (the "License"); + /** + * + * Copyright 2021-2023 Open Text + * + * The only warranties for products and services of Open Text and + * its affiliates and licensors (“Open Text”) are as may be set forth + * in the express warranty statements accompanying such products and services. + * Nothing herein should be construed as constituting an additional warranty. + * Open Text shall not be liable for technical or editorial errors or + * omissions contained herein. The information contained herein is subject + * to change without notice. + * + * Except as specifically indicated otherwise, this document contains + * confidential information and a valid license is required for possession, + * use or copying. If this work is provided to the U.S. Government, + * consistent with FAR 12.211 and 12.212, Commercial Computer Software, + * Computer Software Documentation, and Technical Data for Commercial Items are + * licensed to the U.S. Government under vendor's standard commercial license. + * + * 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/ - * 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. + * 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 com.microfocus.bdd.api; diff --git a/src/main/java/com/microfocus/bdd/api/Status.java b/src/main/java/com/microfocus/bdd/api/Status.java index 97dab4e..e237ff0 100644 --- a/src/main/java/com/microfocus/bdd/api/Status.java +++ b/src/main/java/com/microfocus/bdd/api/Status.java @@ -1,10 +1,33 @@ -/* - * © Copyright [2021] Micro Focus or one of its affiliates. - * Licensed under Apache License (the "License"); + /** + * + * Copyright 2021-2023 Open Text + * + * The only warranties for products and services of Open Text and + * its affiliates and licensors (“Open Text”) are as may be set forth + * in the express warranty statements accompanying such products and services. + * Nothing herein should be construed as constituting an additional warranty. + * Open Text shall not be liable for technical or editorial errors or + * omissions contained herein. The information contained herein is subject + * to change without notice. + * + * Except as specifically indicated otherwise, this document contains + * confidential information and a valid license is required for possession, + * use or copying. If this work is provided to the U.S. Government, + * consistent with FAR 12.211 and 12.212, Commercial Computer Software, + * Computer Software Documentation, and Technical Data for Commercial Items are + * licensed to the U.S. Government under vendor's standard commercial license. + * + * 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/ - * 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. + * 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 com.microfocus.bdd.api; diff --git a/src/main/java/com/microfocus/bdd/gherkin/GherkinFeature.java b/src/main/java/com/microfocus/bdd/gherkin/GherkinFeature.java index fb27a45..5fd7959 100644 --- a/src/main/java/com/microfocus/bdd/gherkin/GherkinFeature.java +++ b/src/main/java/com/microfocus/bdd/gherkin/GherkinFeature.java @@ -1,10 +1,33 @@ -/* - * © Copyright [2021] Micro Focus or one of its affiliates. - * Licensed under Apache License (the "License"); + /** + * + * Copyright 2021-2023 Open Text + * + * The only warranties for products and services of Open Text and + * its affiliates and licensors (“Open Text”) are as may be set forth + * in the express warranty statements accompanying such products and services. + * Nothing herein should be construed as constituting an additional warranty. + * Open Text shall not be liable for technical or editorial errors or + * omissions contained herein. The information contained herein is subject + * to change without notice. + * + * Except as specifically indicated otherwise, this document contains + * confidential information and a valid license is required for possession, + * use or copying. If this work is provided to the U.S. Government, + * consistent with FAR 12.211 and 12.212, Commercial Computer Software, + * Computer Software Documentation, and Technical Data for Commercial Items are + * licensed to the U.S. Government under vendor's standard commercial license. + * + * 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/ - * 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. + * 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 com.microfocus.bdd.gherkin; diff --git a/src/main/java/com/microfocus/bdd/gherkin/GherkinMultiLingualService.java b/src/main/java/com/microfocus/bdd/gherkin/GherkinMultiLingualService.java index b40dfe2..41aa94c 100644 --- a/src/main/java/com/microfocus/bdd/gherkin/GherkinMultiLingualService.java +++ b/src/main/java/com/microfocus/bdd/gherkin/GherkinMultiLingualService.java @@ -1,10 +1,33 @@ -/* - * © Copyright [2021] Micro Focus or one of its affiliates. - * Licensed under Apache License (the "License"); + /** + * + * Copyright 2021-2023 Open Text + * + * The only warranties for products and services of Open Text and + * its affiliates and licensors (“Open Text”) are as may be set forth + * in the express warranty statements accompanying such products and services. + * Nothing herein should be construed as constituting an additional warranty. + * Open Text shall not be liable for technical or editorial errors or + * omissions contained herein. The information contained herein is subject + * to change without notice. + * + * Except as specifically indicated otherwise, this document contains + * confidential information and a valid license is required for possession, + * use or copying. If this work is provided to the U.S. Government, + * consistent with FAR 12.211 and 12.212, Commercial Computer Software, + * Computer Software Documentation, and Technical Data for Commercial Items are + * licensed to the U.S. Government under vendor's standard commercial license. + * + * 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/ - * 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. + * 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 com.microfocus.bdd.gherkin; diff --git a/src/main/java/com/microfocus/bdd/gherkin/GherkinScenario.java b/src/main/java/com/microfocus/bdd/gherkin/GherkinScenario.java index ffc3f77..19303b7 100644 --- a/src/main/java/com/microfocus/bdd/gherkin/GherkinScenario.java +++ b/src/main/java/com/microfocus/bdd/gherkin/GherkinScenario.java @@ -1,10 +1,33 @@ -/* - * © Copyright [2021] Micro Focus or one of its affiliates. - * Licensed under Apache License (the "License"); + /** + * + * Copyright 2021-2023 Open Text + * + * The only warranties for products and services of Open Text and + * its affiliates and licensors (“Open Text”) are as may be set forth + * in the express warranty statements accompanying such products and services. + * Nothing herein should be construed as constituting an additional warranty. + * Open Text shall not be liable for technical or editorial errors or + * omissions contained herein. The information contained herein is subject + * to change without notice. + * + * Except as specifically indicated otherwise, this document contains + * confidential information and a valid license is required for possession, + * use or copying. If this work is provided to the U.S. Government, + * consistent with FAR 12.211 and 12.212, Commercial Computer Software, + * Computer Software Documentation, and Technical Data for Commercial Items are + * licensed to the U.S. Government under vendor's standard commercial license. + * + * 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/ - * 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. + * 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 com.microfocus.bdd.gherkin; diff --git a/src/main/java/com/microfocus/bdd/gherkin/GherkinScenarioOutline.java b/src/main/java/com/microfocus/bdd/gherkin/GherkinScenarioOutline.java index e9b442c..78addc5 100644 --- a/src/main/java/com/microfocus/bdd/gherkin/GherkinScenarioOutline.java +++ b/src/main/java/com/microfocus/bdd/gherkin/GherkinScenarioOutline.java @@ -1,10 +1,33 @@ -/* - * © Copyright [2021] Micro Focus or one of its affiliates. - * Licensed under Apache License (the "License"); + /** + * + * Copyright 2021-2023 Open Text + * + * The only warranties for products and services of Open Text and + * its affiliates and licensors (“Open Text”) are as may be set forth + * in the express warranty statements accompanying such products and services. + * Nothing herein should be construed as constituting an additional warranty. + * Open Text shall not be liable for technical or editorial errors or + * omissions contained herein. The information contained herein is subject + * to change without notice. + * + * Except as specifically indicated otherwise, this document contains + * confidential information and a valid license is required for possession, + * use or copying. If this work is provided to the U.S. Government, + * consistent with FAR 12.211 and 12.212, Commercial Computer Software, + * Computer Software Documentation, and Technical Data for Commercial Items are + * licensed to the U.S. Government under vendor's standard commercial license. + * + * 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/ - * 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. + * 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 com.microfocus.bdd.gherkin; diff --git a/src/main/java/com/microfocus/bdd/gherkin/GherkinStep.java b/src/main/java/com/microfocus/bdd/gherkin/GherkinStep.java index 860e0af..07d34f3 100644 --- a/src/main/java/com/microfocus/bdd/gherkin/GherkinStep.java +++ b/src/main/java/com/microfocus/bdd/gherkin/GherkinStep.java @@ -1,10 +1,33 @@ -/* - * © Copyright [2021] Micro Focus or one of its affiliates. - * Licensed under Apache License (the "License"); + /** + * + * Copyright 2021-2023 Open Text + * + * The only warranties for products and services of Open Text and + * its affiliates and licensors (“Open Text”) are as may be set forth + * in the express warranty statements accompanying such products and services. + * Nothing herein should be construed as constituting an additional warranty. + * Open Text shall not be liable for technical or editorial errors or + * omissions contained herein. The information contained herein is subject + * to change without notice. + * + * Except as specifically indicated otherwise, this document contains + * confidential information and a valid license is required for possession, + * use or copying. If this work is provided to the U.S. Government, + * consistent with FAR 12.211 and 12.212, Commercial Computer Software, + * Computer Software Documentation, and Technical Data for Commercial Items are + * licensed to the U.S. Government under vendor's standard commercial license. + * + * 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/ - * 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. + * 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 com.microfocus.bdd.gherkin; diff --git a/src/main/java/com/microfocus/bdd/util/FileUtil.java b/src/main/java/com/microfocus/bdd/util/FileUtil.java index 1b3e9ba..5d73ed4 100644 --- a/src/main/java/com/microfocus/bdd/util/FileUtil.java +++ b/src/main/java/com/microfocus/bdd/util/FileUtil.java @@ -1,10 +1,33 @@ -/* - * © Copyright [2021] Micro Focus or one of its affiliates. - * Licensed under Apache License (the "License"); + /** + * + * Copyright 2021-2023 Open Text + * + * The only warranties for products and services of Open Text and + * its affiliates and licensors (“Open Text”) are as may be set forth + * in the express warranty statements accompanying such products and services. + * Nothing herein should be construed as constituting an additional warranty. + * Open Text shall not be liable for technical or editorial errors or + * omissions contained herein. The information contained herein is subject + * to change without notice. + * + * Except as specifically indicated otherwise, this document contains + * confidential information and a valid license is required for possession, + * use or copying. If this work is provided to the U.S. Government, + * consistent with FAR 12.211 and 12.212, Commercial Computer Software, + * Computer Software Documentation, and Technical Data for Commercial Items are + * licensed to the U.S. Government under vendor's standard commercial license. + * + * 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/ - * 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. + * 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 com.microfocus.bdd.util; diff --git a/src/main/java/com/microfocus/bdd/util/GherkinDocumentUtil.java b/src/main/java/com/microfocus/bdd/util/GherkinDocumentUtil.java index ade12df..b00af82 100644 --- a/src/main/java/com/microfocus/bdd/util/GherkinDocumentUtil.java +++ b/src/main/java/com/microfocus/bdd/util/GherkinDocumentUtil.java @@ -1,10 +1,33 @@ -/* - * © Copyright [2021] Micro Focus or one of its affiliates. - * Licensed under Apache License (the "License"); + /** + * + * Copyright 2021-2023 Open Text + * + * The only warranties for products and services of Open Text and + * its affiliates and licensors (“Open Text”) are as may be set forth + * in the express warranty statements accompanying such products and services. + * Nothing herein should be construed as constituting an additional warranty. + * Open Text shall not be liable for technical or editorial errors or + * omissions contained herein. The information contained herein is subject + * to change without notice. + * + * Except as specifically indicated otherwise, this document contains + * confidential information and a valid license is required for possession, + * use or copying. If this work is provided to the U.S. Government, + * consistent with FAR 12.211 and 12.212, Commercial Computer Software, + * Computer Software Documentation, and Technical Data for Commercial Items are + * licensed to the U.S. Government under vendor's standard commercial license. + * + * 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/ - * 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. + * 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 com.microfocus.bdd.util; diff --git a/src/test/java/com/microfocus/bdd/it/Bdd2OctaneHandlerITCase.java b/src/test/java/com/microfocus/bdd/it/Bdd2OctaneHandlerITCase.java index bbaaf11..9007f41 100644 --- a/src/test/java/com/microfocus/bdd/it/Bdd2OctaneHandlerITCase.java +++ b/src/test/java/com/microfocus/bdd/it/Bdd2OctaneHandlerITCase.java @@ -1,10 +1,33 @@ -/* - * © Copyright [2021] Micro Focus or one of its affiliates. - * Licensed under Apache License (the "License"); + /** + * + * Copyright 2021-2023 Open Text + * + * The only warranties for products and services of Open Text and + * its affiliates and licensors (“Open Text”) are as may be set forth + * in the express warranty statements accompanying such products and services. + * Nothing herein should be construed as constituting an additional warranty. + * Open Text shall not be liable for technical or editorial errors or + * omissions contained herein. The information contained herein is subject + * to change without notice. + * + * Except as specifically indicated otherwise, this document contains + * confidential information and a valid license is required for possession, + * use or copying. If this work is provided to the U.S. Government, + * consistent with FAR 12.211 and 12.212, Commercial Computer Software, + * Computer Software Documentation, and Technical Data for Commercial Items are + * licensed to the U.S. Government under vendor's standard commercial license. + * + * 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/ - * 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. + * 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 com.microfocus.bdd.it; diff --git a/src/test/java/com/microfocus/bdd/it/Bdd2OctaneITCase.java b/src/test/java/com/microfocus/bdd/it/Bdd2OctaneITCase.java index 468a250..8276c37 100644 --- a/src/test/java/com/microfocus/bdd/it/Bdd2OctaneITCase.java +++ b/src/test/java/com/microfocus/bdd/it/Bdd2OctaneITCase.java @@ -1,10 +1,33 @@ -/* - * © Copyright [2021] Micro Focus or one of its affiliates. - * Licensed under Apache License (the "License"); + /** + * + * Copyright 2021-2023 Open Text + * + * The only warranties for products and services of Open Text and + * its affiliates and licensors (“Open Text”) are as may be set forth + * in the express warranty statements accompanying such products and services. + * Nothing herein should be construed as constituting an additional warranty. + * Open Text shall not be liable for technical or editorial errors or + * omissions contained herein. The information contained herein is subject + * to change without notice. + * + * Except as specifically indicated otherwise, this document contains + * confidential information and a valid license is required for possession, + * use or copying. If this work is provided to the U.S. Government, + * consistent with FAR 12.211 and 12.212, Commercial Computer Software, + * Computer Software Documentation, and Technical Data for Commercial Items are + * licensed to the U.S. Government under vendor's standard commercial license. + * + * 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/ - * 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. + * 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 com.microfocus.bdd.it; diff --git a/src/test/java/com/microfocus/bdd/ut/Bdd2OctaneTest.java b/src/test/java/com/microfocus/bdd/ut/Bdd2OctaneTest.java index bb7d06b..d9e6ac5 100644 --- a/src/test/java/com/microfocus/bdd/ut/Bdd2OctaneTest.java +++ b/src/test/java/com/microfocus/bdd/ut/Bdd2OctaneTest.java @@ -1,3 +1,34 @@ +/** + * + * Copyright 2021-2023 Open Text + * + * The only warranties for products and services of Open Text and + * its affiliates and licensors (“Open Text”) are as may be set forth + * in the express warranty statements accompanying such products and services. + * Nothing herein should be construed as constituting an additional warranty. + * Open Text shall not be liable for technical or editorial errors or + * omissions contained herein. The information contained herein is subject + * to change without notice. + * + * Except as specifically indicated otherwise, this document contains + * confidential information and a valid license is required for possession, + * use or copying. If this work is provided to the U.S. Government, + * consistent with FAR 12.211 and 12.212, Commercial Computer Software, + * Computer Software Documentation, and Technical Data for Commercial Items are + * licensed to the U.S. Government under vendor's standard commercial license. + * + * 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 com.microfocus.bdd.ut; public class Bdd2OctaneTest { diff --git a/src/test/java/com/microfocus/bdd/ut/FeatureFileLocatorTest.java b/src/test/java/com/microfocus/bdd/ut/FeatureFileLocatorTest.java index 0827820..5acb23e 100644 --- a/src/test/java/com/microfocus/bdd/ut/FeatureFileLocatorTest.java +++ b/src/test/java/com/microfocus/bdd/ut/FeatureFileLocatorTest.java @@ -1,10 +1,33 @@ -/* - * © Copyright [2021] Micro Focus or one of its affiliates. - * Licensed under Apache License (the "License"); + /** + * + * Copyright 2021-2023 Open Text + * + * The only warranties for products and services of Open Text and + * its affiliates and licensors (“Open Text”) are as may be set forth + * in the express warranty statements accompanying such products and services. + * Nothing herein should be construed as constituting an additional warranty. + * Open Text shall not be liable for technical or editorial errors or + * omissions contained herein. The information contained herein is subject + * to change without notice. + * + * Except as specifically indicated otherwise, this document contains + * confidential information and a valid license is required for possession, + * use or copying. If this work is provided to the U.S. Government, + * consistent with FAR 12.211 and 12.212, Commercial Computer Software, + * Computer Software Documentation, and Technical Data for Commercial Items are + * licensed to the U.S. Government under vendor's standard commercial license. + * + * 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/ - * 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. + * 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 com.microfocus.bdd.ut; diff --git a/src/test/java/com/microfocus/bdd/ut/FilesLocatorTest.java b/src/test/java/com/microfocus/bdd/ut/FilesLocatorTest.java index fe4840f..26a2c8f 100644 --- a/src/test/java/com/microfocus/bdd/ut/FilesLocatorTest.java +++ b/src/test/java/com/microfocus/bdd/ut/FilesLocatorTest.java @@ -1,10 +1,33 @@ -/* - * © Copyright [2021] Micro Focus or one of its affiliates. - * Licensed under Apache License (the "License"); + /** + * + * Copyright 2021-2023 Open Text + * + * The only warranties for products and services of Open Text and + * its affiliates and licensors (“Open Text”) are as may be set forth + * in the express warranty statements accompanying such products and services. + * Nothing herein should be construed as constituting an additional warranty. + * Open Text shall not be liable for technical or editorial errors or + * omissions contained herein. The information contained herein is subject + * to change without notice. + * + * Except as specifically indicated otherwise, this document contains + * confidential information and a valid license is required for possession, + * use or copying. If this work is provided to the U.S. Government, + * consistent with FAR 12.211 and 12.212, Commercial Computer Software, + * Computer Software Documentation, and Technical Data for Commercial Items are + * licensed to the U.S. Government under vendor's standard commercial license. + * + * 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/ - * 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. + * 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 com.microfocus.bdd.ut; diff --git a/src/test/java/com/microfocus/bdd/ut/GherkinDocumentUtilTest.java b/src/test/java/com/microfocus/bdd/ut/GherkinDocumentUtilTest.java index badc2ab..21dbc85 100644 --- a/src/test/java/com/microfocus/bdd/ut/GherkinDocumentUtilTest.java +++ b/src/test/java/com/microfocus/bdd/ut/GherkinDocumentUtilTest.java @@ -1,10 +1,33 @@ -/* - * © Copyright [2021] Micro Focus or one of its affiliates. - * Licensed under Apache License (the "License"); + /** + * + * Copyright 2021-2023 Open Text + * + * The only warranties for products and services of Open Text and + * its affiliates and licensors (“Open Text”) are as may be set forth + * in the express warranty statements accompanying such products and services. + * Nothing herein should be construed as constituting an additional warranty. + * Open Text shall not be liable for technical or editorial errors or + * omissions contained herein. The information contained herein is subject + * to change without notice. + * + * Except as specifically indicated otherwise, this document contains + * confidential information and a valid license is required for possession, + * use or copying. If this work is provided to the U.S. Government, + * consistent with FAR 12.211 and 12.212, Commercial Computer Software, + * Computer Software Documentation, and Technical Data for Commercial Items are + * licensed to the U.S. Government under vendor's standard commercial license. + * + * 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/ - * 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. + * 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 com.microfocus.bdd.ut; diff --git a/src/test/java/com/microfocus/bdd/ut/OctaneFeatureLocatorTest.java b/src/test/java/com/microfocus/bdd/ut/OctaneFeatureLocatorTest.java index b10ebe8..78ced7b 100644 --- a/src/test/java/com/microfocus/bdd/ut/OctaneFeatureLocatorTest.java +++ b/src/test/java/com/microfocus/bdd/ut/OctaneFeatureLocatorTest.java @@ -1,3 +1,34 @@ +/** + * + * Copyright 2021-2023 Open Text + * + * The only warranties for products and services of Open Text and + * its affiliates and licensors (“Open Text”) are as may be set forth + * in the express warranty statements accompanying such products and services. + * Nothing herein should be construed as constituting an additional warranty. + * Open Text shall not be liable for technical or editorial errors or + * omissions contained herein. The information contained herein is subject + * to change without notice. + * + * Except as specifically indicated otherwise, this document contains + * confidential information and a valid license is required for possession, + * use or copying. If this work is provided to the U.S. Government, + * consistent with FAR 12.211 and 12.212, Commercial Computer Software, + * Computer Software Documentation, and Technical Data for Commercial Items are + * licensed to the U.S. Government under vendor's standard commercial license. + * + * 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 com.microfocus.bdd.ut; import com.microfocus.bdd.OctaneFeatureLocator; diff --git a/src/test/java/com/microfocus/bdd/ut/TestCucumberJsHandler.java b/src/test/java/com/microfocus/bdd/ut/TestCucumberJsHandler.java index 2fe6807..9ed7459 100644 --- a/src/test/java/com/microfocus/bdd/ut/TestCucumberJsHandler.java +++ b/src/test/java/com/microfocus/bdd/ut/TestCucumberJsHandler.java @@ -1,10 +1,33 @@ -/* - * © Copyright [2021] Micro Focus or one of its affiliates. - * Licensed under Apache License (the "License"); + /** + * + * Copyright 2021-2023 Open Text + * + * The only warranties for products and services of Open Text and + * its affiliates and licensors (“Open Text”) are as may be set forth + * in the express warranty statements accompanying such products and services. + * Nothing herein should be construed as constituting an additional warranty. + * Open Text shall not be liable for technical or editorial errors or + * omissions contained herein. The information contained herein is subject + * to change without notice. + * + * Except as specifically indicated otherwise, this document contains + * confidential information and a valid license is required for possession, + * use or copying. If this work is provided to the U.S. Government, + * consistent with FAR 12.211 and 12.212, Commercial Computer Software, + * Computer Software Documentation, and Technical Data for Commercial Items are + * licensed to the U.S. Government under vendor's standard commercial license. + * + * 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/ - * 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. + * 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 com.microfocus.bdd.ut; diff --git a/src/test/java/com/microfocus/bdd/ut/TestCucumberJvmHandler.java b/src/test/java/com/microfocus/bdd/ut/TestCucumberJvmHandler.java index 7f4d56e..9b99faa 100644 --- a/src/test/java/com/microfocus/bdd/ut/TestCucumberJvmHandler.java +++ b/src/test/java/com/microfocus/bdd/ut/TestCucumberJvmHandler.java @@ -1,10 +1,33 @@ -/* - * © Copyright [2021] Micro Focus or one of its affiliates. - * Licensed under Apache License (the "License"); + /** + * + * Copyright 2021-2023 Open Text + * + * The only warranties for products and services of Open Text and + * its affiliates and licensors (“Open Text”) are as may be set forth + * in the express warranty statements accompanying such products and services. + * Nothing herein should be construed as constituting an additional warranty. + * Open Text shall not be liable for technical or editorial errors or + * omissions contained herein. The information contained herein is subject + * to change without notice. + * + * Except as specifically indicated otherwise, this document contains + * confidential information and a valid license is required for possession, + * use or copying. If this work is provided to the U.S. Government, + * consistent with FAR 12.211 and 12.212, Commercial Computer Software, + * Computer Software Documentation, and Technical Data for Commercial Items are + * licensed to the U.S. Government under vendor's standard commercial license. + * + * 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/ - * 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. + * 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 com.microfocus.bdd.ut; diff --git a/src/test/java/com/microfocus/bdd/ut/TestCucumberRubyHandler.java b/src/test/java/com/microfocus/bdd/ut/TestCucumberRubyHandler.java index 58162e2..72fae56 100644 --- a/src/test/java/com/microfocus/bdd/ut/TestCucumberRubyHandler.java +++ b/src/test/java/com/microfocus/bdd/ut/TestCucumberRubyHandler.java @@ -1,10 +1,33 @@ -/* - * © Copyright [2021] Micro Focus or one of its affiliates. - * Licensed under Apache License (the "License"); + /** + * + * Copyright 2021-2023 Open Text + * + * The only warranties for products and services of Open Text and + * its affiliates and licensors (“Open Text”) are as may be set forth + * in the express warranty statements accompanying such products and services. + * Nothing herein should be construed as constituting an additional warranty. + * Open Text shall not be liable for technical or editorial errors or + * omissions contained herein. The information contained herein is subject + * to change without notice. + * + * Except as specifically indicated otherwise, this document contains + * confidential information and a valid license is required for possession, + * use or copying. If this work is provided to the U.S. Government, + * consistent with FAR 12.211 and 12.212, Commercial Computer Software, + * Computer Software Documentation, and Technical Data for Commercial Items are + * licensed to the U.S. Government under vendor's standard commercial license. + * + * 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/ - * 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. + * 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 com.microfocus.bdd.ut; diff --git a/src/test/java/com/microfocus/bdd/ut/TestJunitReportReader.java b/src/test/java/com/microfocus/bdd/ut/TestJunitReportReader.java index 6a328d0..e43c387 100644 --- a/src/test/java/com/microfocus/bdd/ut/TestJunitReportReader.java +++ b/src/test/java/com/microfocus/bdd/ut/TestJunitReportReader.java @@ -1,10 +1,33 @@ -/* - * © Copyright [2021] Micro Focus or one of its affiliates. - * Licensed under Apache License (the "License"); + /** + * + * Copyright 2021-2023 Open Text + * + * The only warranties for products and services of Open Text and + * its affiliates and licensors (“Open Text”) are as may be set forth + * in the express warranty statements accompanying such products and services. + * Nothing herein should be construed as constituting an additional warranty. + * Open Text shall not be liable for technical or editorial errors or + * omissions contained herein. The information contained herein is subject + * to change without notice. + * + * Except as specifically indicated otherwise, this document contains + * confidential information and a valid license is required for possession, + * use or copying. If this work is provided to the U.S. Government, + * consistent with FAR 12.211 and 12.212, Commercial Computer Software, + * Computer Software Documentation, and Technical Data for Commercial Items are + * licensed to the U.S. Government under vendor's standard commercial license. + * + * 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/ - * 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. + * 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 com.microfocus.bdd.ut; diff --git a/src/test/java/com/microfocus/bdd/ut/TestPhpBehatHandler.java b/src/test/java/com/microfocus/bdd/ut/TestPhpBehatHandler.java index 9698c5c..b9bb81c 100644 --- a/src/test/java/com/microfocus/bdd/ut/TestPhpBehatHandler.java +++ b/src/test/java/com/microfocus/bdd/ut/TestPhpBehatHandler.java @@ -1,10 +1,33 @@ -/* - * © Copyright [2021] Micro Focus or one of its affiliates. - * Licensed under Apache License (the "License"); + /** + * + * Copyright 2021-2023 Open Text + * + * The only warranties for products and services of Open Text and + * its affiliates and licensors (“Open Text”) are as may be set forth + * in the express warranty statements accompanying such products and services. + * Nothing herein should be construed as constituting an additional warranty. + * Open Text shall not be liable for technical or editorial errors or + * omissions contained herein. The information contained herein is subject + * to change without notice. + * + * Except as specifically indicated otherwise, this document contains + * confidential information and a valid license is required for possession, + * use or copying. If this work is provided to the U.S. Government, + * consistent with FAR 12.211 and 12.212, Commercial Computer Software, + * Computer Software Documentation, and Technical Data for Commercial Items are + * licensed to the U.S. Government under vendor's standard commercial license. + * + * 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/ - * 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. + * 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 com.microfocus.bdd.ut; diff --git a/src/test/java/com/microfocus/bdd/ut/TestPythonBehaveHandler.java b/src/test/java/com/microfocus/bdd/ut/TestPythonBehaveHandler.java index 81330e3..408e7f2 100644 --- a/src/test/java/com/microfocus/bdd/ut/TestPythonBehaveHandler.java +++ b/src/test/java/com/microfocus/bdd/ut/TestPythonBehaveHandler.java @@ -1,10 +1,33 @@ -/* - * © Copyright [2021] Micro Focus or one of its affiliates. - * Licensed under Apache License (the "License"); + /** + * + * Copyright 2021-2023 Open Text + * + * The only warranties for products and services of Open Text and + * its affiliates and licensors (“Open Text”) are as may be set forth + * in the express warranty statements accompanying such products and services. + * Nothing herein should be construed as constituting an additional warranty. + * Open Text shall not be liable for technical or editorial errors or + * omissions contained herein. The information contained herein is subject + * to change without notice. + * + * Except as specifically indicated otherwise, this document contains + * confidential information and a valid license is required for possession, + * use or copying. If this work is provided to the U.S. Government, + * consistent with FAR 12.211 and 12.212, Commercial Computer Software, + * Computer Software Documentation, and Technical Data for Commercial Items are + * licensed to the U.S. Government under vendor's standard commercial license. + * + * 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/ - * 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. + * 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 com.microfocus.bdd.ut; diff --git a/src/test/java/com/microfocus/bdd/ut/TestPythonRadishHandlerTest.java b/src/test/java/com/microfocus/bdd/ut/TestPythonRadishHandlerTest.java index 233a06c..2088d13 100644 --- a/src/test/java/com/microfocus/bdd/ut/TestPythonRadishHandlerTest.java +++ b/src/test/java/com/microfocus/bdd/ut/TestPythonRadishHandlerTest.java @@ -1,10 +1,33 @@ -/* - * © Copyright [2021] Micro Focus or one of its affiliates. - * Licensed under Apache License (the "License"); + /** + * + * Copyright 2021-2023 Open Text + * + * The only warranties for products and services of Open Text and + * its affiliates and licensors (“Open Text”) are as may be set forth + * in the express warranty statements accompanying such products and services. + * Nothing herein should be construed as constituting an additional warranty. + * Open Text shall not be liable for technical or editorial errors or + * omissions contained herein. The information contained herein is subject + * to change without notice. + * + * Except as specifically indicated otherwise, this document contains + * confidential information and a valid license is required for possession, + * use or copying. If this work is provided to the U.S. Government, + * consistent with FAR 12.211 and 12.212, Commercial Computer Software, + * Computer Software Documentation, and Technical Data for Commercial Items are + * licensed to the U.S. Government under vendor's standard commercial license. + * + * 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/ - * 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. + * 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 com.microfocus.bdd.ut; diff --git a/src/test/java/com/microfocus/bdd/ut/TestUtil.java b/src/test/java/com/microfocus/bdd/ut/TestUtil.java index 034a179..343a1e5 100644 --- a/src/test/java/com/microfocus/bdd/ut/TestUtil.java +++ b/src/test/java/com/microfocus/bdd/ut/TestUtil.java @@ -1,10 +1,33 @@ -/* - * © Copyright [2021] Micro Focus or one of its affiliates. - * Licensed under Apache License (the "License"); + /** + * + * Copyright 2021-2023 Open Text + * + * The only warranties for products and services of Open Text and + * its affiliates and licensors (“Open Text”) are as may be set forth + * in the express warranty statements accompanying such products and services. + * Nothing herein should be construed as constituting an additional warranty. + * Open Text shall not be liable for technical or editorial errors or + * omissions contained herein. The information contained herein is subject + * to change without notice. + * + * Except as specifically indicated otherwise, this document contains + * confidential information and a valid license is required for possession, + * use or copying. If this work is provided to the U.S. Government, + * consistent with FAR 12.211 and 12.212, Commercial Computer Software, + * Computer Software Documentation, and Technical Data for Commercial Items are + * licensed to the U.S. Government under vendor's standard commercial license. + * + * 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/ - * 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. + * 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 com.microfocus.bdd.ut; From 59ae90f905316af6723fee1b067e55a187708041 Mon Sep 17 00:00:00 2001 From: Nissim Shitrit Date: Wed, 13 Sep 2023 16:42:24 +0300 Subject: [PATCH 2/2] Update pom.xml tech: update version number --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 64bc928..565093d 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ com.microfocus.adm.almoctane.bdd bdd2octane - 1.1.3-SNAPSHOT + 1.1.4-SNAPSHOT maven-plugin bdd2octane