diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..e53f466f0b7dc8fb4b393e2793d8338f7a8f4dc3 --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +bin/ +*._trace +*.xtendbin +.DS_Store +target/ \ No newline at end of file diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000000000000000000000000000000000000..3fa7b0e3925802d5820344458ae35ae9b4747350 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,296 @@ +# This file is a template, and might need editing before it works on your project. +# This is a sample GitLab CI/CD configuration file that should run without any modifications. +# It demonstrates a basic 3 stage CI/CD pipeline. Instead of real tests or scripts, +# it uses echo commands to simulate the pipeline execution. +# +# A pipeline is composed of independent jobs that run scripts, grouped into stages. +# Stages run in sequential order, but jobs within stages run in parallel. +# +# For more information, see: https://docs.gitlab.com/ee/ci/yaml/index.html#stages +# +# You can copy and paste this template into a new `.gitlab-ci.yml` file. +# You should not add this template to an existing `.gitlab-ci.yml` file by using the `include:` keyword. +# +# To contribute improvements to CI/CD templates, please follow the Development guide at: +# https://docs.gitlab.com/ee/development/cicd/templates.html +# This specific template is located at: +# https://gitlab.com/gitlab-org/gitlab/-/blob/master/lib/gitlab/ci/templates/Getting-Started.gitlab-ci.yml + +# Build JAVA applications using Apache Maven (http://maven.apache.org) +# For docker image tags see https://hub.docker.com/_/maven/ +# +# For general lifecycle information see https://maven.apache.org/guides/introduction/introduction-to-the-lifecycle.html + +# This template will build and test your projects +# * Caches downloaded dependencies and plugins between invocation. +# * Verify but don't deploy merge requests. +# * Deploy built artifacts from master branch only. + +variables: + # CI_TARGET_BRANCH: $CI_DEFAULT_BRANCH + # CI_TARGET_BRANCH: "ttf-022" + TTF_CI_TARGET_BRANCH: "ttf-034" + DEV_CI_TARGET_BRANCH: "dev" + MAIN_CI_TARGET_BRANCH: "master" + CI_TARGET_BRANCH: "${TTF_CI_TARGET_BRANCH}" + SITE_LOCATION: "updatesite/org.etsi.mts.tdl.extras.updatesite/target" + ARCHIVE_NAME: "org.etsi.mts.tdl.extras.updatesite-1.0.0-SNAPSHOT.zip" + SITE_ARCHIVE: "${SITE_LOCATION}/${ARCHIVE_NAME}" + SITE_PATH: "${SITE_LOCATION}/repository/" + REPO_PREFIX: "https://labs.etsi.org/rep/top/extras/-/jobs" + REPO_PATH: "artifacts/raw/updatesite/org.etsi.mts.tdl.extras.updatesite/target/repository/" + PACKAGE_NAME: "TOP Extras Interim Build" + PACKAGE_NAME_MAIN: "TOP Extras Build" + BETA_KEY: "beta" + MAIN_KEY: "stable" + RELEASE_KEY: "beta" + RELEASE_PATH: "public/updatesite/${RELEASE_KEY}" + RELEASE_PAGE: "https://top.etsi.org/extras/updatesite/${RELEASE_KEY}" + STANDALONE_LOCATION: "plugins/org.etsi.mts.tdl.standalone/target" + STANDALONE_NAME: "org.etsi.mts.tdl.standalone-1.0.0-SNAPSHOT-shadow.jar" + STANDALONE_PATH: "${STANDALONE_LOCATION}/${STANDALONE_NAME}" + + # `showDateTime` will show the passed time in milliseconds. You need to specify `--batch-mode` to make this work. + MAVEN_OPTS: >- + -Xmx2048m + -Dhttps.protocols=TLSv1.2 + -Dmaven.repo.local=$CI_PROJECT_DIR/.m2/repository + -Dorg.slf4j.simpleLogger.showDateTime=true + -Djava.awt.headless=true + + # As of Maven 3.3.0 instead of this you MAY define these options in `.mvn/maven.config` so the same config is used + # when running from the command line. + # As of Maven 3.6.1, the use of `--no-tranfer-progress` (or `-ntp`) suppresses download and upload messages. The use + # of the `Slf4jMavenTransferListener` is no longer necessary. + # `installAtEnd` and `deployAtEnd` are only effective with recent version of the corresponding plugins. + MAVEN_CLI_OPTS: >- + --batch-mode + --errors + --fail-at-end + --show-version + --no-transfer-progress + -DinstallAtEnd=true + -DdeployAtEnd=true + +.default_rules: + rules: + - if: $CI_PIPELINE_SOURCE == "schedule" + when: never + - if: $CI_COMMIT_BRANCH == $CI_TARGET_BRANCH + - if: $CI_COMMIT_BRANCH == $DEV_CI_TARGET_BRANCH + - if: $CI_PIPELINE_SOURCE == "web" + when: always + - if: $CI_COMMIT_TAG + when: never + # - when: never + + + +# This template uses the latest Maven 3 release, e.g., 3.8.6, and OpenJDK 8 (LTS) +# for verifying and deploying images +# Maven 3.8.x REQUIRES HTTPS repositories. +# See https://maven.apache.org/docs/3.8.1/release-notes.html#how-to-fix-when-i-get-a-http-repository-blocked for more. +image: maven:3-openjdk-11 + +# Cache downloaded dependencies and plugins between builds. +# To keep cache across branches add 'key: "$CI_JOB_NAME"' +# Be aware that `mvn deploy` will install the built jar into this repository. If you notice your cache size +# increasing, consider adding `-Dmaven.install.skip=true` to `MAVEN_OPTS` or in `.mvn/maven.config` +cache: + paths: + - .m2/repository + +# For merge requests do not `deploy` but only run `verify`. +# See https://maven.apache.org/guides/introduction/introduction-to-the-lifecycle.html +# .verify: + # stage: test + # script: + # - cd org.etsi.mts.tdl.parent + # - 'mvn $MAVEN_CLI_OPTS verify' + # except: + # variables: + # - $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH + +# Verify merge requests using JDK8 +# verify:jdk11: + # extends: + # - .verify + +# To deploy packages from CI, create a `ci_settings.xml` file +# For deploying packages to GitLab's Maven Repository: See https://docs.gitlab.com/ee/user/packages/maven_repository/index.html#create-maven-packages-with-gitlab-cicd for more details. +# Please note: The GitLab Maven Repository is currently only available in GitLab Premium / Ultimate. +# For `master` or `main` branch run `mvn deploy` automatically. +#deploy:jdk11: +# stage: deploy +# script: +# - if [ ! -f ci_settings.xml ]; then +# echo "CI settings missing\! If deploying to GitLab Maven Repository, please see https://docs.gitlab.com/ee/user/packages/maven_repository/index.html#create-maven-packages-with-gitlab-cicd for instructions."; +# fi +# - 'mvn $MAVEN_CLI_OPTS deploy --settings ci_settings.xml' +# only: +# variables: +# - $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH + + +stages: # List of stages for jobs, and their order of execution + - build + - test + - deploy + - prepare + - upload + - release + +build-job: # This job runs in the build stage, which runs first. + stage: build + rules: + - !reference [.default_rules, rules] + script: + # Test zip installation + # - rm -rf /var/lib/apt/lists/* + # - apt update + # - apt-cache gencaches + # - apt install -y zip unzip + # - zip --help + - echo "Compiling the code..." + - echo "BUILD_JOB_ID=$CI_JOB_ID" >> build.env + - cat build.env + - cd org.etsi.mts.tdl.extras.parent + - mvn clean install + - echo "Compile complete." + artifacts: + expire_in: 7 days + reports: + dotenv: build.env + paths: + - $SITE_ARCHIVE + - $SITE_PATH + # - $STANDALONE_PATH + + +# Adapted from OpenAPI2TDL converter +prepare-job: + stage: prepare + rules: + - !reference [.default_rules, rules] + script: + - VERSION=`date +%Y%m%d.%H.%M` + - | # Prepare a stable build (only web build?) + if [ $CI_COMMIT_BRANCH == $MAIN_CI_TARGET_BRANCH ] + then + export RELEASE_KEY=$MAIN_KEY + echo "RELEASE_KEY=$RELEASE_KEY" >> variables.env + echo "PACKAGE_NAME=$PACKAGE_NAME_MAIN" >> variables.env + echo "RELEASE_PATH=public/updatesite/${RELEASE_KEY}" >> variables.env + echo "RELEASE_PAGE=https://top.etsi.org/extras/updatesite/${RELEASE_KEY}" >> variables.env + fi + - echo "EXTRA_DESCRIPTION=automatic-release" >> variables.env + - echo "VERSION=$VERSION" >> variables.env + - echo "PACKAGE_REGISTRY_URL=${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/generic/extras/${VERSION}" >> variables.env + - echo "PACKAGE_LATEST_URL=${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/generic/extras/latest" >> variables.env + - cat variables.env + artifacts: + reports: + dotenv: variables.env # Use artifacts:reports:dotenv to expose the variables to other jobs + +# https://gitlab.com/gitlab-org/release-cli/-/tree/master/docs/examples/release-assets-as-generic-package/ +upload-job: + stage: upload + image: curlimages/curl:latest + needs: + - job: prepare-job + artifacts: true + - job: build-job + artifacts: true + rules: + - !reference [.default_rules, rules] + script: + - echo $BUILD_JOB_ID + - echo "${PACKAGE_REGISTRY_URL}/${ARCHIVE_NAME}" + - | + curl --header "JOB-TOKEN: ${CI_JOB_TOKEN}" --upload-file ${SITE_ARCHIVE} ${PACKAGE_REGISTRY_URL}/${ARCHIVE_NAME} + # - | + # curl --header "JOB-TOKEN: ${CI_JOB_TOKEN}" --upload-file ${STANDALONE_LOCATION} ${PACKAGE_REGISTRY_URL}/${STANDALONE_NAME} + # - | + # curl --header "JOB-TOKEN: ${CI_JOB_TOKEN}" --upload-file ${SITE_ARCHIVE} ${PACKAGE_LATEST_URL}/${ARCHIVE_NAME} + # - | + # cd ${SITE_LOCATION} && find repository/ -type f -exec echo curl --header "JOB-TOKEN: ${CI_JOB_TOKEN}" --upload-file {} ${PACKAGE_LATEST_URL}/{} \; && cd ~ + # - | + # cd ${SITE_LOCATION} && find repository/ -type f -exec curl --header "JOB-TOKEN: ${CI_JOB_TOKEN}" --upload-file {} ${PACKAGE_LATEST_URL}/{} \; + # - | + # curl --header "JOB-TOKEN: ${CI_JOB_TOKEN}" --upload-file bin/${MACOS_GUI_JAR} ${PACKAGE_REGISTRY_URL}/${MACOS_GUI_JAR} + # - | + # curl --header "JOB-TOKEN: ${CI_JOB_TOKEN}" --upload-file bin/${WINDOWS_GUI_JAR} ${PACKAGE_REGISTRY_URL}/${WINDOWS_GUI_JAR} + # - | + # curl --header "JOB-TOKEN: ${CI_JOB_TOKEN}" --upload-file bin/${CLI_JAR} ${PACKAGE_REGISTRY_URL}/${CLI_JAR} + # - | + # curl --header "JOB-TOKEN: ${CI_JOB_TOKEN}" --upload-file bin/${LIB_JAR} ${PACKAGE_REGISTRY_URL}/${LIB_JAR} + +pages: + stage: upload + # image: curlimages/curl:latest + # image: alpine + needs: + - job: prepare-job + artifacts: true + - job: build-job + artifacts: true + script: + # Get the previous GitLab Pages content (otherwise other beta/stable branch gets removed..) + # - rm -rf /var/lib/apt/lists/* + # - apt update + # - apt-cache gencaches + # - apt install -y zip unzip + # - zip --help + # - set +e + # - curl --fail "$CI_PAGES_URL/content.zip" -o "content.zip" + # - if [ -e "content.zip" ]; then unzip "content.zip"; rm "content.zip"; fi + # - set -e + # - ls -la $RELEASE_PATH + # Cleanup content? -> remove content in release path? + # Add/update content + - echo $CI_PAGES_URL + - echo $RELEASE_PATH + - mkdir -p $RELEASE_PATH + # - rm -rf $RELEASE_PATH/* + - cp -r -f $SITE_PATH/* $RELEASE_PATH + - ls -la $RELEASE_PATH + # Zip the content and publish the zip again + # - zip -r "content.zip" "public" + # - mv "content.zip" "public/" + # - mv $SITE_ARCHIVE $RELEASE_PATH/content.zip + artifacts: + paths: + - public + rules: + - !reference [.default_rules, rules] + # only: + # - tags + +release-job: + stage: release + image: registry.gitlab.com/gitlab-org/release-cli:latest + needs: + - job: prepare-job + artifacts: true + - job: build-job + artifacts: true + - job: pages + artifacts: true + rules: + - !reference [.default_rules, rules] + script: + # --description "Published automatically, permalink for installation (valid for 7 days) at https://labs.etsi.org/rep/top/ide/-/releases/permalink/latest/downloads/repository." + - echo $BUILD_JOB_ID + - | + release-cli create --name "Release $VERSION" \ + --tag-name $VERSION \ + --ref $CI_COMMIT_SHA \ + --assets-link "{\"name\":\"${PACKAGE_NAME} (downloadable archive)\",\"url\":\"${PACKAGE_REGISTRY_URL}/${ARCHIVE_NAME}\",\"filepath\":\"/repository-archive\"}" \ + --assets-link "{\"name\":\"${PACKAGE_NAME} (snapshot ${RELEASE_KEY} repository for ${VERSION} (exipres in 7 days))\",\"url\":\"${REPO_PREFIX}/${BUILD_JOB_ID}/${REPO_PATH}\"}" \ + --assets-link "{\"name\":\"${PACKAGE_NAME} (latest ${RELEASE_KEY} release repository (permalink))\",\"url\":\"${RELEASE_PAGE}\"}" \ + # --assets-link "{\"name\":\"${PACKAGE_NAME} (latest standalone (exipres in 7 days))\",\"url\":\"${PACKAGE_REGISTRY_URL}/${STANDALONE_NAME}\"}" \ + # --assets-link "{\"name\":\"${PACKAGE_NAME} (latest)\",\"url\":\"${PACKAGE_LATEST_URL}/${ARCHIVE_NAME}\"}" \ + # --assets-link "{\"name\":\"${MACOS_GUI_JAR}\",\"url\":\"${PACKAGE_REGISTRY_URL}/${MACOS_GUI_JAR}\"}" \ + # --assets-link "{\"name\":\"${WINDOWS_GUI_JAR}\",\"url\":\"${PACKAGE_REGISTRY_URL}/${WINDOWS_GUI_JAR}\"}" \ + # --assets-link "{\"name\":\"${CLI_JAR}\",\"url\":\"${PACKAGE_REGISTRY_URL}/${CLI_JAR}\"}" \ + # --assets-link "{\"name\":\"${LIB_JAR}\",\"url\":\"${PACKAGE_REGISTRY_URL}/${LIB_JAR}\"}" diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 0000000000000000000000000000000000000000..50328437753245c6bebf0a183ce0f96ec127f875 --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,203 @@ +Eclipse Public License - v 1.0 + +THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC +LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM +CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. + +1. DEFINITIONS + +"Contribution" means: + +a) in the case of the initial Contributor, the initial code and documentation + distributed under this Agreement, and +b) in the case of each subsequent Contributor: + i) changes to the Program, and + ii) additions to the Program; + + where such changes and/or additions to the Program originate from and are + distributed by that particular Contributor. A Contribution 'originates' + from a Contributor if it was added to the Program by such Contributor + itself or anyone acting on such Contributor's behalf. Contributions do not + include additions to the Program which: (i) are separate modules of + software distributed in conjunction with the Program under their own + license agreement, and (ii) are not derivative works of the Program. + +"Contributor" means any person or entity that distributes the Program. + +"Licensed Patents" mean patent claims licensable by a Contributor which are +necessarily infringed by the use or sale of its Contribution alone or when +combined with the Program. + +"Program" means the Contributions distributed in accordance with this +Agreement. + +"Recipient" means anyone who receives the Program under this Agreement, +including all Contributors. + +2. GRANT OF RIGHTS + a) Subject to the terms of this Agreement, each Contributor hereby grants + Recipient a non-exclusive, worldwide, royalty-free copyright license to + reproduce, prepare derivative works of, publicly display, publicly + perform, distribute and sublicense the Contribution of such Contributor, + if any, and such derivative works, in source code and object code form. + b) Subject to the terms of this Agreement, each Contributor hereby grants + Recipient a non-exclusive, worldwide, royalty-free patent license under + Licensed Patents to make, use, sell, offer to sell, import and otherwise + transfer the Contribution of such Contributor, if any, in source code and + object code form. This patent license shall apply to the combination of + the Contribution and the Program if, at the time the Contribution is + added by the Contributor, such addition of the Contribution causes such + combination to be covered by the Licensed Patents. The patent license + shall not apply to any other combinations which include the Contribution. + No hardware per se is licensed hereunder. + c) Recipient understands that although each Contributor grants the licenses + to its Contributions set forth herein, no assurances are provided by any + Contributor that the Program does not infringe the patent or other + intellectual property rights of any other entity. Each Contributor + disclaims any liability to Recipient for claims brought by any other + entity based on infringement of intellectual property rights or + otherwise. As a condition to exercising the rights and licenses granted + hereunder, each Recipient hereby assumes sole responsibility to secure + any other intellectual property rights needed, if any. For example, if a + third party patent license is required to allow Recipient to distribute + the Program, it is Recipient's responsibility to acquire that license + before distributing the Program. + d) Each Contributor represents that to its knowledge it has sufficient + copyright rights in its Contribution, if any, to grant the copyright + license set forth in this Agreement. + +3. REQUIREMENTS + +A Contributor may choose to distribute the Program in object code form under +its own license agreement, provided that: + + a) it complies with the terms and conditions of this Agreement; and + b) its license agreement: + i) effectively disclaims on behalf of all Contributors all warranties + and conditions, express and implied, including warranties or + conditions of title and non-infringement, and implied warranties or + conditions of merchantability and fitness for a particular purpose; + ii) effectively excludes on behalf of all Contributors all liability for + damages, including direct, indirect, special, incidental and + consequential damages, such as lost profits; + iii) states that any provisions which differ from this Agreement are + offered by that Contributor alone and not by any other party; and + iv) states that source code for the Program is available from such + Contributor, and informs licensees how to obtain it in a reasonable + manner on or through a medium customarily used for software exchange. + +When the Program is made available in source code form: + + a) it must be made available under this Agreement; and + b) a copy of this Agreement must be included with each copy of the Program. + Contributors may not remove or alter any copyright notices contained + within the Program. + +Each Contributor must identify itself as the originator of its Contribution, +if +any, in a manner that reasonably allows subsequent Recipients to identify the +originator of the Contribution. + +4. COMMERCIAL DISTRIBUTION + +Commercial distributors of software may accept certain responsibilities with +respect to end users, business partners and the like. While this license is +intended to facilitate the commercial use of the Program, the Contributor who +includes the Program in a commercial product offering should do so in a manner +which does not create potential liability for other Contributors. Therefore, +if a Contributor includes the Program in a commercial product offering, such +Contributor ("Commercial Contributor") hereby agrees to defend and indemnify +every other Contributor ("Indemnified Contributor") against any losses, +damages and costs (collectively "Losses") arising from claims, lawsuits and +other legal actions brought by a third party against the Indemnified +Contributor to the extent caused by the acts or omissions of such Commercial +Contributor in connection with its distribution of the Program in a commercial +product offering. The obligations in this section do not apply to any claims +or Losses relating to any actual or alleged intellectual property +infringement. In order to qualify, an Indemnified Contributor must: +a) promptly notify the Commercial Contributor in writing of such claim, and +b) allow the Commercial Contributor to control, and cooperate with the +Commercial Contributor in, the defense and any related settlement +negotiations. The Indemnified Contributor may participate in any such claim at +its own expense. + +For example, a Contributor might include the Program in a commercial product +offering, Product X. That Contributor is then a Commercial Contributor. If +that Commercial Contributor then makes performance claims, or offers +warranties related to Product X, those performance claims and warranties are +such Commercial Contributor's responsibility alone. Under this section, the +Commercial Contributor would have to defend claims against the other +Contributors related to those performance claims and warranties, and if a +court requires any other Contributor to pay any damages as a result, the +Commercial Contributor must pay those damages. + +5. NO WARRANTY + +EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN +"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR +IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, +NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each +Recipient is solely responsible for determining the appropriateness of using +and distributing the Program and assumes all risks associated with its +exercise of rights under this Agreement , including but not limited to the +risks and costs of program errors, compliance with applicable laws, damage to +or loss of data, programs or equipment, and unavailability or interruption of +operations. + +6. DISCLAIMER OF LIABILITY + +EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY +CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION +LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE +EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY +OF SUCH DAMAGES. + +7. GENERAL + +If any provision of this Agreement is invalid or unenforceable under +applicable law, it shall not affect the validity or enforceability of the +remainder of the terms of this Agreement, and without further action by the +parties hereto, such provision shall be reformed to the minimum extent +necessary to make such provision valid and enforceable. + +If Recipient institutes patent litigation against any entity (including a +cross-claim or counterclaim in a lawsuit) alleging that the Program itself +(excluding combinations of the Program with other software or hardware) +infringes such Recipient's patent(s), then such Recipient's rights granted +under Section 2(b) shall terminate as of the date such litigation is filed. + +All Recipient's rights under this Agreement shall terminate if it fails to +comply with any of the material terms or conditions of this Agreement and does +not cure such failure in a reasonable period of time after becoming aware of +such noncompliance. If all Recipient's rights under this Agreement terminate, +Recipient agrees to cease use and distribution of the Program as soon as +reasonably practicable. However, Recipient's obligations under this Agreement +and any licenses granted by Recipient relating to the Program shall continue +and survive. + +Everyone is permitted to copy and distribute copies of this Agreement, but in +order to avoid inconsistency the Agreement is copyrighted and may only be +modified in the following manner. The Agreement Steward reserves the right to +publish new versions (including revisions) of this Agreement from time to +time. No one other than the Agreement Steward has the right to modify this +Agreement. The Eclipse Foundation is the initial Agreement Steward. The +Eclipse Foundation may assign the responsibility to serve as the Agreement +Steward to a suitable separate entity. Each new version of the Agreement will +be given a distinguishing version number. The Program (including +Contributions) may always be distributed subject to the version of the +Agreement under which it was received. In addition, after a new version of the +Agreement is published, Contributor may elect to distribute the Program +(including its Contributions) under the new version. Except as expressly +stated in Sections 2(a) and 2(b) above, Recipient receives no rights or +licenses to the intellectual property of any Contributor under this Agreement, +whether expressly, by implication, estoppel or otherwise. All rights in the +Program not expressly granted under this Agreement are reserved. + +This Agreement is governed by the laws of the State of New York and the +intellectual property laws of the United States of America. No party to this +Agreement will bring a legal action under this Agreement more than one year +after the cause of action arose. Each party waives its rights to a jury trial in +any resulting litigation. \ No newline at end of file diff --git a/README.md b/README.md index 813db58b259452d4e7a7cfec67dc95da5f71f1c0..2ef300f123c2a7886c4785290929a0eb110b9308 100644 --- a/README.md +++ b/README.md @@ -1,92 +1,6 @@ -# TOP Extras +# TOP: TDL Open source Project: Extras +This repository contains additional components for the TDL Open source Project (TOP). Currently it only includes a wrapper for the OpenAPI Generator. +More info at [TDL website](https://tdl.etsi.org) -## Getting started - -To make it easy for you to get started with GitLab, here's a list of recommended next steps. - -Already a pro? Just edit this README.md and make it your own. Want to make it easy? [Use the template at the bottom](#editing-this-readme)! - -## Add your files - -- [ ] [Create](https://docs.gitlab.com/ee/user/project/repository/web_editor.html#create-a-file) or [upload](https://docs.gitlab.com/ee/user/project/repository/web_editor.html#upload-a-file) files -- [ ] [Add files using the command line](https://docs.gitlab.com/ee/gitlab-basics/add-file.html#add-a-file-using-the-command-line) or push an existing Git repository with the following command: - -``` -cd existing_repo -git remote add origin https://labs.etsi.org/rep/top/top-extras.git -git branch -M main -git push -uf origin main -``` - -## Integrate with your tools - -- [ ] [Set up project integrations](https://labs.etsi.org/rep/top/top-extras/-/settings/integrations) - -## Collaborate with your team - -- [ ] [Invite team members and collaborators](https://docs.gitlab.com/ee/user/project/members/) -- [ ] [Create a new merge request](https://docs.gitlab.com/ee/user/project/merge_requests/creating_merge_requests.html) -- [ ] [Automatically close issues from merge requests](https://docs.gitlab.com/ee/user/project/issues/managing_issues.html#closing-issues-automatically) -- [ ] [Enable merge request approvals](https://docs.gitlab.com/ee/user/project/merge_requests/approvals/) -- [ ] [Automatically merge when pipeline succeeds](https://docs.gitlab.com/ee/user/project/merge_requests/merge_when_pipeline_succeeds.html) - -## Test and Deploy - -Use the built-in continuous integration in GitLab. - -- [ ] [Get started with GitLab CI/CD](https://docs.gitlab.com/ee/ci/quick_start/index.html) -- [ ] [Analyze your code for known vulnerabilities with Static Application Security Testing(SAST)](https://docs.gitlab.com/ee/user/application_security/sast/) -- [ ] [Deploy to Kubernetes, Amazon EC2, or Amazon ECS using Auto Deploy](https://docs.gitlab.com/ee/topics/autodevops/requirements.html) -- [ ] [Use pull-based deployments for improved Kubernetes management](https://docs.gitlab.com/ee/user/clusters/agent/) -- [ ] [Set up protected environments](https://docs.gitlab.com/ee/ci/environments/protected_environments.html) - -*** - -# Editing this README - -When you're ready to make this README your own, just edit this file and use the handy template below (or feel free to structure it however you want - this is just a starting point!). Thank you to [makeareadme.com](https://www.makeareadme.com/) for this template. - -## Suggestions for a good README -Every project is different, so consider which of these sections apply to yours. The sections used in the template are suggestions for most open source projects. Also keep in mind that while a README can be too long and detailed, too long is better than too short. If you think your README is too long, consider utilizing another form of documentation rather than cutting out information. - -## Name -Choose a self-explaining name for your project. - -## Description -Let people know what your project can do specifically. Provide context and add a link to any reference visitors might be unfamiliar with. A list of Features or a Background subsection can also be added here. If there are alternatives to your project, this is a good place to list differentiating factors. - -## Badges -On some READMEs, you may see small images that convey metadata, such as whether or not all the tests are passing for the project. You can use Shields to add some to your README. Many services also have instructions for adding a badge. - -## Visuals -Depending on what you are making, it can be a good idea to include screenshots or even a video (you'll frequently see GIFs rather than actual videos). Tools like ttygif can help, but check out Asciinema for a more sophisticated method. - -## Installation -Within a particular ecosystem, there may be a common way of installing things, such as using Yarn, NuGet, or Homebrew. However, consider the possibility that whoever is reading your README is a novice and would like more guidance. Listing specific steps helps remove ambiguity and gets people to using your project as quickly as possible. If it only runs in a specific context like a particular programming language version or operating system or has dependencies that have to be installed manually, also add a Requirements subsection. - -## Usage -Use examples liberally, and show the expected output if you can. It's helpful to have inline the smallest example of usage that you can demonstrate, while providing links to more sophisticated examples if they are too long to reasonably include in the README. - -## Support -Tell people where they can go to for help. It can be any combination of an issue tracker, a chat room, an email address, etc. - -## Roadmap -If you have ideas for releases in the future, it is a good idea to list them in the README. - -## Contributing -State if you are open to contributions and what your requirements are for accepting them. - -For people who want to make changes to your project, it's helpful to have some documentation on how to get started. Perhaps there is a script that they should run or some environment variables that they need to set. Make these steps explicit. These instructions could also be useful to your future self. - -You can also document commands to lint the code or run tests. These steps help to ensure high code quality and reduce the likelihood that the changes inadvertently break something. Having instructions for running tests is especially helpful if it requires external setup, such as starting a Selenium server for testing in a browser. - -## Authors and acknowledgment -Show your appreciation to those who have contributed to the project. - -## License -For open source projects, say how it is licensed. - -## Project status -If you have run out of energy or time for your project, put a note at the top of the README saying that development has slowed down or stopped completely. Someone may choose to fork your project or volunteer to step in as a maintainer or owner, allowing your project to keep going. You can also make an explicit request for maintainers. diff --git a/features/org.etsi.mts.tdl.extras.feature/.project b/features/org.etsi.mts.tdl.extras.feature/.project new file mode 100644 index 0000000000000000000000000000000000000000..48930562a51a72b58e8035eeb5f6ff73c3fb20c6 --- /dev/null +++ b/features/org.etsi.mts.tdl.extras.feature/.project @@ -0,0 +1,23 @@ + + + org.etsi.mts.tdl.extras.feature + + + + + + org.eclipse.pde.FeatureBuilder + + + + + org.eclipse.m2e.core.maven2Builder + + + + + + org.eclipse.m2e.core.maven2Nature + org.eclipse.pde.FeatureNature + + diff --git a/features/org.etsi.mts.tdl.extras.feature/.settings/org.eclipse.core.resources.prefs b/features/org.etsi.mts.tdl.extras.feature/.settings/org.eclipse.core.resources.prefs new file mode 100644 index 0000000000000000000000000000000000000000..99f26c0203a7844de00dbfc56e6a35d8ed3c022c --- /dev/null +++ b/features/org.etsi.mts.tdl.extras.feature/.settings/org.eclipse.core.resources.prefs @@ -0,0 +1,2 @@ +eclipse.preferences.version=1 +encoding/=UTF-8 diff --git a/features/org.etsi.mts.tdl.extras.feature/.settings/org.eclipse.m2e.core.prefs b/features/org.etsi.mts.tdl.extras.feature/.settings/org.eclipse.m2e.core.prefs new file mode 100644 index 0000000000000000000000000000000000000000..f897a7f1cb2389f85fe6381425d29f0a9866fb65 --- /dev/null +++ b/features/org.etsi.mts.tdl.extras.feature/.settings/org.eclipse.m2e.core.prefs @@ -0,0 +1,4 @@ +activeProfiles= +eclipse.preferences.version=1 +resolveWorkspaceProjects=true +version=1 diff --git a/features/org.etsi.mts.tdl.extras.feature/build.properties b/features/org.etsi.mts.tdl.extras.feature/build.properties new file mode 100644 index 0000000000000000000000000000000000000000..64f93a9f0b7328eb563aa5ad6cec7f828020e124 --- /dev/null +++ b/features/org.etsi.mts.tdl.extras.feature/build.properties @@ -0,0 +1 @@ +bin.includes = feature.xml diff --git a/features/org.etsi.mts.tdl.extras.feature/feature.xml b/features/org.etsi.mts.tdl.extras.feature/feature.xml new file mode 100644 index 0000000000000000000000000000000000000000..fc35bce8d2363cf06f50bbf7e3634f9cceb38c38 --- /dev/null +++ b/features/org.etsi.mts.tdl.extras.feature/feature.xml @@ -0,0 +1,318 @@ + + + + + Provides Word export from TDL TO + + + + [Enter Copyright Description here.] + + + + Eclipse Public License - v 1.0 +THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS +ECLIPSE PUBLIC +LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION +OF THE PROGRAM +CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. +1. DEFINITIONS +"Contribution" means: +a) in the case of the initial Contributor, the initial code and +documentation +distributed under this Agreement, and +b) in the case of each subsequent Contributor: +i) changes to the Program, and +ii) additions to the Program; +where such changes and/or additions to the Program originate +from and are +distributed by that particular Contributor. A Contribution 'originates' +from a Contributor if it was added to the Program by such Contributor +itself or anyone acting on such Contributor's behalf. Contributions +do not +include additions to the Program which: (i) are separate modules +of +software distributed in conjunction with the Program under their +own +license agreement, and (ii) are not derivative works of the Program. +"Contributor" means any person or entity that distributes the +Program. +"Licensed Patents" mean patent claims licensable by a Contributor +which are +necessarily infringed by the use or sale of its Contribution +alone or when +combined with the Program. +"Program" means the Contributions distributed in accordance with +this +Agreement. +"Recipient" means anyone who receives the Program under this +Agreement, +including all Contributors. +2. GRANT OF RIGHTS +a) Subject to the terms of this Agreement, each Contributor hereby +grants +Recipient a non-exclusive, worldwide, royalty-free copyright +license to +reproduce, prepare derivative works of, publicly display, publicly +perform, distribute and sublicense the Contribution of such Contributor, +if any, and such derivative works, in source code and object +code form. +b) Subject to the terms of this Agreement, each Contributor hereby +grants +Recipient a non-exclusive, worldwide, royalty-free patent license +under +Licensed Patents to make, use, sell, offer to sell, import and +otherwise +transfer the Contribution of such Contributor, if any, in source +code and +object code form. This patent license shall apply to the combination +of +the Contribution and the Program if, at the time the Contribution +is +added by the Contributor, such addition of the Contribution causes +such +combination to be covered by the Licensed Patents. The patent +license +shall not apply to any other combinations which include the Contribution. +No hardware per se is licensed hereunder. +c) Recipient understands that although each Contributor grants +the licenses +to its Contributions set forth herein, no assurances are provided +by any +Contributor that the Program does not infringe the patent or +other +intellectual property rights of any other entity. Each Contributor +disclaims any liability to Recipient for claims brought by any +other +entity based on infringement of intellectual property rights +or +otherwise. As a condition to exercising the rights and licenses +granted +hereunder, each Recipient hereby assumes sole responsibility +to secure +any other intellectual property rights needed, if any. For example, +if a +third party patent license is required to allow Recipient to +distribute +the Program, it is Recipient's responsibility to acquire that +license +before distributing the Program. +d) Each Contributor represents that to its knowledge it has sufficient +copyright rights in its Contribution, if any, to grant the copyright +license set forth in this Agreement. +3. REQUIREMENTS +A Contributor may choose to distribute the Program in object +code form under +its own license agreement, provided that: +a) it complies with the terms and conditions of this Agreement; +and +b) its license agreement: +i) effectively disclaims on behalf of all Contributors all warranties +and conditions, express and implied, including warranties or +conditions of title and non-infringement, and implied warranties +or +conditions of merchantability and fitness for a particular purpose; +ii) effectively excludes on behalf of all Contributors all liability +for +damages, including direct, indirect, special, incidental and +consequential damages, such as lost profits; +iii) states that any provisions which differ from this Agreement +are +offered by that Contributor alone and not by any other party; +and +iv) states that source code for the Program is available from +such +Contributor, and informs licensees how to obtain it in a reasonable +manner on or through a medium customarily used for software exchange. +When the Program is made available in source code form: +a) it must be made available under this Agreement; and +b) a copy of this Agreement must be included with each copy of +the Program. +Contributors may not remove or alter any copyright notices contained +within the Program. +Each Contributor must identify itself as the originator of its +Contribution, +if +any, in a manner that reasonably allows subsequent Recipients +to identify the +originator of the Contribution. +4. COMMERCIAL DISTRIBUTION +Commercial distributors of software may accept certain responsibilities +with +respect to end users, business partners and the like. While this +license is +intended to facilitate the commercial use of the Program, the +Contributor who +includes the Program in a commercial product offering should +do so in a manner +which does not create potential liability for other Contributors. +Therefore, +if a Contributor includes the Program in a commercial product +offering, such +Contributor ("Commercial Contributor") hereby agrees to defend +and indemnify +every other Contributor ("Indemnified Contributor") against any +losses, +damages and costs (collectively "Losses") arising from claims, +lawsuits and +other legal actions brought by a third party against the Indemnified +Contributor to the extent caused by the acts or omissions of +such Commercial +Contributor in connection with its distribution of the Program +in a commercial +product offering. The obligations in this section do not apply +to any claims +or Losses relating to any actual or alleged intellectual property +infringement. In order to qualify, an Indemnified Contributor +must: +a) promptly notify the Commercial Contributor in writing of such +claim, and +b) allow the Commercial Contributor to control, and cooperate +with the +Commercial Contributor in, the defense and any related settlement +negotiations. The Indemnified Contributor may participate in +any such claim at +its own expense. +For example, a Contributor might include the Program in a commercial +product +offering, Product X. That Contributor is then a Commercial Contributor. +If +that Commercial Contributor then makes performance claims, or +offers +warranties related to Product X, those performance claims and +warranties are +such Commercial Contributor's responsibility alone. Under this +section, the +Commercial Contributor would have to defend claims against the +other +Contributors related to those performance claims and warranties, +and if a +court requires any other Contributor to pay any damages as a +result, the +Commercial Contributor must pay those damages. +5. NO WARRANTY +EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM +IS PROVIDED ON AN +"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, +EITHER EXPRESS OR +IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS +OF TITLE, +NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR +PURPOSE. Each +Recipient is solely responsible for determining the appropriateness +of using +and distributing the Program and assumes all risks associated +with its +exercise of rights under this Agreement , including but not limited +to the +risks and costs of program errors, compliance with applicable +laws, damage to +or loss of data, programs or equipment, and unavailability or +interruption of +operations. +6. DISCLAIMER OF LIABILITY +EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT +NOR ANY +CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, +INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT +LIMITATION +LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM +OR THE +EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF +THE POSSIBILITY +OF SUCH DAMAGES. +7. GENERAL +If any provision of this Agreement is invalid or unenforceable +under +applicable law, it shall not affect the validity or enforceability +of the +remainder of the terms of this Agreement, and without further +action by the +parties hereto, such provision shall be reformed to the minimum +extent +necessary to make such provision valid and enforceable. +If Recipient institutes patent litigation against any entity +(including a +cross-claim or counterclaim in a lawsuit) alleging that the Program +itself +(excluding combinations of the Program with other software or +hardware) +infringes such Recipient's patent(s), then such Recipient's rights +granted +under Section 2(b) shall terminate as of the date such litigation +is filed. +All Recipient's rights under this Agreement shall terminate if +it fails to +comply with any of the material terms or conditions of this Agreement +and does +not cure such failure in a reasonable period of time after becoming +aware of +such noncompliance. If all Recipient's rights under this Agreement +terminate, +Recipient agrees to cease use and distribution of the Program +as soon as +reasonably practicable. However, Recipient's obligations under +this Agreement +and any licenses granted by Recipient relating to the Program +shall continue +and survive. +Everyone is permitted to copy and distribute copies of this Agreement, +but in +order to avoid inconsistency the Agreement is copyrighted and +may only be +modified in the following manner. The Agreement Steward reserves +the right to +publish new versions (including revisions) of this Agreement +from time to +time. No one other than the Agreement Steward has the right to +modify this +Agreement. The Eclipse Foundation is the initial Agreement Steward. +The +Eclipse Foundation may assign the responsibility to serve as +the Agreement +Steward to a suitable separate entity. Each new version of the +Agreement will +be given a distinguishing version number. The Program (including +Contributions) may always be distributed subject to the version +of the +Agreement under which it was received. In addition, after a new +version of the +Agreement is published, Contributor may elect to distribute the +Program +(including its Contributions) under the new version. Except as +expressly +stated in Sections 2(a) and 2(b) above, Recipient receives no +rights or +licenses to the intellectual property of any Contributor under +this Agreement, +whether expressly, by implication, estoppel or otherwise. All +rights in the +Program not expressly granted under this Agreement are reserved. +This Agreement is governed by the laws of the State of New York +and the +intellectual property laws of the United States of America. No +party to this +Agreement will bring a legal action under this Agreement more +than one year +after the cause of action arose. Each party waives its rights +to a jury trial in +any resulting litigation. + + + + + diff --git a/features/org.etsi.mts.tdl.extras.feature/pom.xml b/features/org.etsi.mts.tdl.extras.feature/pom.xml new file mode 100644 index 0000000000000000000000000000000000000000..73f74917d0f2fbd0b6ab1c1973a0ea188caf9245 --- /dev/null +++ b/features/org.etsi.mts.tdl.extras.feature/pom.xml @@ -0,0 +1,18 @@ + + + 4.0.0 + + + org.etsi.mts.tdl.extras + org.etsi.mts.tdl.extras.parent + 1.0.0-SNAPSHOT + ../../org.etsi.mts.tdl.extras.parent + + + + org.etsi.mts.tdl.extras.feature + eclipse-feature + + TDL Extras Feature + \ No newline at end of file diff --git a/org.etsi.mts.tdl.extras.parent/.project b/org.etsi.mts.tdl.extras.parent/.project new file mode 100644 index 0000000000000000000000000000000000000000..e7f8fef747066b477be0914076f6191d63ccda47 --- /dev/null +++ b/org.etsi.mts.tdl.extras.parent/.project @@ -0,0 +1,17 @@ + + + org.etsi.mts.tdl.extras.parent + + + + + + org.eclipse.m2e.core.maven2Builder + + + + + + org.eclipse.m2e.core.maven2Nature + + diff --git a/org.etsi.mts.tdl.extras.parent/.settings/org.eclipse.core.resources.prefs b/org.etsi.mts.tdl.extras.parent/.settings/org.eclipse.core.resources.prefs new file mode 100644 index 0000000000000000000000000000000000000000..99f26c0203a7844de00dbfc56e6a35d8ed3c022c --- /dev/null +++ b/org.etsi.mts.tdl.extras.parent/.settings/org.eclipse.core.resources.prefs @@ -0,0 +1,2 @@ +eclipse.preferences.version=1 +encoding/=UTF-8 diff --git a/org.etsi.mts.tdl.extras.parent/.settings/org.eclipse.m2e.core.prefs b/org.etsi.mts.tdl.extras.parent/.settings/org.eclipse.m2e.core.prefs new file mode 100644 index 0000000000000000000000000000000000000000..f897a7f1cb2389f85fe6381425d29f0a9866fb65 --- /dev/null +++ b/org.etsi.mts.tdl.extras.parent/.settings/org.eclipse.m2e.core.prefs @@ -0,0 +1,4 @@ +activeProfiles= +eclipse.preferences.version=1 +resolveWorkspaceProjects=true +version=1 diff --git a/org.etsi.mts.tdl.extras.parent/pom.xml b/org.etsi.mts.tdl.extras.parent/pom.xml new file mode 100644 index 0000000000000000000000000000000000000000..526f034a497a98d2d305c039f48376a4c678dbe1 --- /dev/null +++ b/org.etsi.mts.tdl.extras.parent/pom.xml @@ -0,0 +1,305 @@ + + + 4.0.0 + + org.etsi.mts.tdl.extras + org.etsi.mts.tdl.extras.parent + 1.0.0-SNAPSHOT + pom + + + + ../plugins/org.etsi.mts.tdl.extras.openapi.generator.wrapper + + ../features/org.etsi.mts.tdl.extras.feature + + ../updatesite/org.etsi.mts.tdl.extras.updatesite + + + + 11 + 11 + 3.0.5 + 2.15.0 + UTF-8 + 2.32.0 + true + 3.9.0 + 3.3.0 + VERBOSE + + + + + + + + + + + + + + org.eclipse.xtend + xtend-maven-plugin + ${xtext.version} + + + + compile + xtend-install-debug-info + testCompile + xtend-test-install-debug-info + + + + + xtend-gen + + + + + + org.eclipse.tycho + tycho-packaging-plugin + ${tycho-version} + + false + true + + + + + org.eclipse.tycho + tycho-compiler-plugin + ${tycho-version} + + -err:-forbidden + false + + + + + org.apache.maven.plugins + maven-clean-plugin + 2.5 + + + gen-clean + + clean + + + + + ${basedir}/xtend-gen + + + + + + + + maven-compiler-plugin + ${maven.compiler.plugin.version} + + + maven-jar-plugin + ${maven.jar.plugin.version} + + + + + + + + + + org.eclipse.tycho + tycho-maven-plugin + ${tycho-version} + true + + + + org.eclipse.tycho + tycho-p2-plugin + ${tycho-version} + + + attach-p2-metadata + package + + p2-metadata + + + + + + + org.eclipse.tycho + target-platform-configuration + ${tycho-version} + + + + + ../../org.etsi.mts.tdl.extras.parent/top.extrasx.target + + + + + macosx + cocoa + x86_64 + + + macosx + cocoa + aarch64 + + + win32 + win32 + x86_64 + + + linux + gtk + x86_64 + + + + + + eclipse-plugin + org.eclipse.xtext.logging + 1.2.24 + + + + eclipse-feature + org.eclipse.rcp + 0.0.0 + + + + + + + + + + + + codehaus-snapshots + disable dead 'Codehaus Snapshots' repository, see https://bugs.eclipse.org/bugs/show_bug.cgi?id=481478 + http://nexus.codehaus.org/snapshots/ + + false + + + false + + + + + ossrh-snapshots + ossrh-snapshots + + false + + + false + + http://oss.sonatype.org/content/repositories/snapshots + + + + sonatype-nexus-snapshots + Sonatype Nexus Snapshots + https://oss.sonatype.org/content/repositories/snapshots + + false + + + false + + + + + + codehaus-snapshots + disable dead 'Codehaus Snapshots' repository, see https://bugs.eclipse.org/bugs/show_bug.cgi?id=481478 + http://nexus.codehaus.org/snapshots/ + + false + + + false + + + + ossrh-snapshots + ossrh-snapshots + + false + + + false + + http://oss.sonatype.org/content/repositories/snapshots + + + sonatype-nexus-snapshots + Sonatype Nexus Snapshots + https://oss.sonatype.org/content/repositories/snapshots + + false + + + false + + + + + + macos + + + mac + + + + + -XstartOnFirstThread + + + + jdk9-or-newer + + [9,) + + + --add-modules=ALL-SYSTEM + + + + + diff --git a/org.etsi.mts.tdl.extras.parent/top.extras.target b/org.etsi.mts.tdl.extras.parent/top.extras.target new file mode 100644 index 0000000000000000000000000000000000000000..86cd96da2d0816e6a9b02aaa0c47363412674884 --- /dev/null +++ b/org.etsi.mts.tdl.extras.parent/top.extras.target @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/org.etsi.mts.tdl.extras.parent/top.extrasx.target b/org.etsi.mts.tdl.extras.parent/top.extrasx.target new file mode 100644 index 0000000000000000000000000000000000000000..6e590bfcc5b42bbf56522bb14b07dd3dd96a996d --- /dev/null +++ b/org.etsi.mts.tdl.extras.parent/top.extrasx.target @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/plugins/org.etsi.mts.tdl.extras.openapi.generator.wrapper/.classpath b/plugins/org.etsi.mts.tdl.extras.openapi.generator.wrapper/.classpath new file mode 100644 index 0000000000000000000000000000000000000000..be14b11750f5baf5ffb0d42aa89f55458fe79754 --- /dev/null +++ b/plugins/org.etsi.mts.tdl.extras.openapi.generator.wrapper/.classpath @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/plugins/org.etsi.mts.tdl.extras.openapi.generator.wrapper/.project b/plugins/org.etsi.mts.tdl.extras.openapi.generator.wrapper/.project new file mode 100644 index 0000000000000000000000000000000000000000..f5e8b8cb299f1049469dc150133c819231676b0f --- /dev/null +++ b/plugins/org.etsi.mts.tdl.extras.openapi.generator.wrapper/.project @@ -0,0 +1,45 @@ + + + org.etsi.mts.tdl.extras.openapi.generator.wrapper + + + + + + org.eclipse.jdt.core.javabuilder + + + + + org.eclipse.pde.ManifestBuilder + + + + + org.eclipse.pde.SchemaBuilder + + + + + org.eclipse.m2e.core.maven2Builder + + + + + + org.eclipse.m2e.core.maven2Nature + org.eclipse.pde.PluginNature + org.eclipse.jdt.core.javanature + + + + 1681418411918 + + 30 + + org.eclipse.core.resources.regexFilterMatcher + node_modules|\.git|__CREATED_BY_JAVA_LANGUAGE_SERVER__ + + + + diff --git a/plugins/org.etsi.mts.tdl.extras.openapi.generator.wrapper/.settings/org.eclipse.core.resources.prefs b/plugins/org.etsi.mts.tdl.extras.openapi.generator.wrapper/.settings/org.eclipse.core.resources.prefs new file mode 100644 index 0000000000000000000000000000000000000000..99f26c0203a7844de00dbfc56e6a35d8ed3c022c --- /dev/null +++ b/plugins/org.etsi.mts.tdl.extras.openapi.generator.wrapper/.settings/org.eclipse.core.resources.prefs @@ -0,0 +1,2 @@ +eclipse.preferences.version=1 +encoding/=UTF-8 diff --git a/plugins/org.etsi.mts.tdl.extras.openapi.generator.wrapper/.settings/org.eclipse.jdt.core.prefs b/plugins/org.etsi.mts.tdl.extras.openapi.generator.wrapper/.settings/org.eclipse.jdt.core.prefs new file mode 100644 index 0000000000000000000000000000000000000000..7adc0fb9a0d32bd6b4e3ce6f305ab7165208865c --- /dev/null +++ b/plugins/org.etsi.mts.tdl.extras.openapi.generator.wrapper/.settings/org.eclipse.jdt.core.prefs @@ -0,0 +1,10 @@ +eclipse.preferences.version=1 +org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled +org.eclipse.jdt.core.compiler.codegen.targetPlatform=11 +org.eclipse.jdt.core.compiler.compliance=11 +org.eclipse.jdt.core.compiler.problem.assertIdentifier=error +org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled +org.eclipse.jdt.core.compiler.problem.enumIdentifier=error +org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=warning +org.eclipse.jdt.core.compiler.release=enabled +org.eclipse.jdt.core.compiler.source=11 diff --git a/plugins/org.etsi.mts.tdl.extras.openapi.generator.wrapper/.settings/org.eclipse.m2e.core.prefs b/plugins/org.etsi.mts.tdl.extras.openapi.generator.wrapper/.settings/org.eclipse.m2e.core.prefs new file mode 100644 index 0000000000000000000000000000000000000000..f897a7f1cb2389f85fe6381425d29f0a9866fb65 --- /dev/null +++ b/plugins/org.etsi.mts.tdl.extras.openapi.generator.wrapper/.settings/org.eclipse.m2e.core.prefs @@ -0,0 +1,4 @@ +activeProfiles= +eclipse.preferences.version=1 +resolveWorkspaceProjects=true +version=1 diff --git a/plugins/org.etsi.mts.tdl.extras.openapi.generator.wrapper/META-INF/MANIFEST.MF b/plugins/org.etsi.mts.tdl.extras.openapi.generator.wrapper/META-INF/MANIFEST.MF new file mode 100644 index 0000000000000000000000000000000000000000..e0ea5995de9d2dc2c4064bd24c842d0f97151035 --- /dev/null +++ b/plugins/org.etsi.mts.tdl.extras.openapi.generator.wrapper/META-INF/MANIFEST.MF @@ -0,0 +1,663 @@ +Manifest-Version: 1.0 +Bundle-ManifestVersion: 2 +Bundle-Name: OpenAPI Generator Wrapper +Bundle-SymbolicName: org.etsi.mts.tdl.extras.openapi.generator.wrapper +Bundle-Version: 6.3.0 +Bundle-ClassPath: openapi-generator-cli-6.3.0.jar +Bundle-Vendor: ETSI +Export-Package: ch.lambdaj, + ch.lambdaj.collection, + ch.lambdaj.function.aggregate, + ch.lambdaj.function.argument, + ch.lambdaj.function.closure, + ch.lambdaj.function.compare, + ch.lambdaj.function.convert, + ch.lambdaj.function.matcher, + ch.lambdaj.group, + ch.lambdaj.proxy, + ch.lambdaj.util, + ch.lambdaj.util.iterator, + ch.qos.logback.classic, + ch.qos.logback.classic.boolex, + ch.qos.logback.classic.db.names, + ch.qos.logback.classic.encoder, + ch.qos.logback.classic.filter, + ch.qos.logback.classic.helpers, + ch.qos.logback.classic.html, + ch.qos.logback.classic.jmx, + ch.qos.logback.classic.joran, + ch.qos.logback.classic.joran.action, + ch.qos.logback.classic.jul, + ch.qos.logback.classic.layout, + ch.qos.logback.classic.log4j, + ch.qos.logback.classic.net, + ch.qos.logback.classic.net.server, + ch.qos.logback.classic.pattern, + ch.qos.logback.classic.pattern.color, + ch.qos.logback.classic.selector, + ch.qos.logback.classic.selector.servlet, + ch.qos.logback.classic.servlet, + ch.qos.logback.classic.sift, + ch.qos.logback.classic.spi, + ch.qos.logback.classic.turbo, + ch.qos.logback.classic.util, + ch.qos.logback.core, + ch.qos.logback.core.boolex, + ch.qos.logback.core.encoder, + ch.qos.logback.core.filter, + ch.qos.logback.core.helpers, + ch.qos.logback.core.hook, + ch.qos.logback.core.html, + ch.qos.logback.core.joran, + ch.qos.logback.core.joran.action, + ch.qos.logback.core.joran.conditional, + ch.qos.logback.core.joran.event, + ch.qos.logback.core.joran.event.stax, + ch.qos.logback.core.joran.node, + ch.qos.logback.core.joran.spi, + ch.qos.logback.core.joran.util, + ch.qos.logback.core.joran.util.beans, + ch.qos.logback.core.layout, + ch.qos.logback.core.net, + ch.qos.logback.core.net.server, + ch.qos.logback.core.net.ssl, + ch.qos.logback.core.pattern, + ch.qos.logback.core.pattern.color, + ch.qos.logback.core.pattern.parser, + ch.qos.logback.core.pattern.util, + ch.qos.logback.core.property, + ch.qos.logback.core.read, + ch.qos.logback.core.recovery, + ch.qos.logback.core.rolling, + ch.qos.logback.core.rolling.helper, + ch.qos.logback.core.sift, + ch.qos.logback.core.spi, + ch.qos.logback.core.status, + ch.qos.logback.core.subst, + ch.qos.logback.core.util, + com.fasterxml.jackson.annotation, + com.fasterxml.jackson.core, + com.fasterxml.jackson.core.async, + com.fasterxml.jackson.core.base, + com.fasterxml.jackson.core.exc, + com.fasterxml.jackson.core.filter, + com.fasterxml.jackson.core.format, + com.fasterxml.jackson.core.io, + com.fasterxml.jackson.core.json, + com.fasterxml.jackson.core.json.async, + com.fasterxml.jackson.core.sym, + com.fasterxml.jackson.core.type, + com.fasterxml.jackson.core.util, + com.fasterxml.jackson.databind, + com.fasterxml.jackson.databind.annotation, + com.fasterxml.jackson.databind.cfg, + com.fasterxml.jackson.databind.deser, + com.fasterxml.jackson.databind.deser.impl, + com.fasterxml.jackson.databind.deser.std, + com.fasterxml.jackson.databind.exc, + com.fasterxml.jackson.databind.ext, + com.fasterxml.jackson.databind.introspect, + com.fasterxml.jackson.databind.jdk14, + com.fasterxml.jackson.databind.json, + com.fasterxml.jackson.databind.jsonFormatVisitors, + com.fasterxml.jackson.databind.jsonschema, + com.fasterxml.jackson.databind.jsontype, + com.fasterxml.jackson.databind.jsontype.impl, + com.fasterxml.jackson.databind.module, + com.fasterxml.jackson.databind.node, + com.fasterxml.jackson.databind.ser, + com.fasterxml.jackson.databind.ser.impl, + com.fasterxml.jackson.databind.ser.std, + com.fasterxml.jackson.databind.type, + com.fasterxml.jackson.databind.util, + com.fasterxml.jackson.dataformat.yaml, + com.fasterxml.jackson.dataformat.yaml.snakeyaml.error, + com.fasterxml.jackson.dataformat.yaml.util, + com.fasterxml.jackson.datatype.guava, + com.fasterxml.jackson.datatype.guava.deser, + com.fasterxml.jackson.datatype.guava.deser.multimap, + com.fasterxml.jackson.datatype.guava.deser.multimap.list, + com.fasterxml.jackson.datatype.guava.deser.multimap.set, + com.fasterxml.jackson.datatype.guava.deser.util, + com.fasterxml.jackson.datatype.guava.ser, + com.fasterxml.jackson.datatype.joda, + com.fasterxml.jackson.datatype.joda.cfg, + com.fasterxml.jackson.datatype.joda.deser, + com.fasterxml.jackson.datatype.joda.deser.key, + com.fasterxml.jackson.datatype.joda.ser, + com.fasterxml.jackson.datatype.jsr310, + com.fasterxml.jackson.datatype.jsr310.deser, + com.fasterxml.jackson.datatype.jsr310.deser.key, + com.fasterxml.jackson.datatype.jsr310.ser, + com.fasterxml.jackson.datatype.jsr310.ser.key, + com.fasterxml.jackson.datatype.jsr310.util, + com.fasterxml.jackson.datatype.threetenbp, + com.fasterxml.jackson.datatype.threetenbp.deser, + com.fasterxml.jackson.datatype.threetenbp.deser.key, + com.fasterxml.jackson.datatype.threetenbp.function, + com.fasterxml.jackson.datatype.threetenbp.ser, + com.fasterxml.jackson.datatype.threetenbp.ser.key, + com.github.benmanes.caffeine, + com.github.benmanes.caffeine.base, + com.github.benmanes.caffeine.cache, + com.github.benmanes.caffeine.cache.stats, + com.github.curiousoddman.rgxgen, + com.github.curiousoddman.rgxgen.config, + com.github.curiousoddman.rgxgen.iterators, + com.github.curiousoddman.rgxgen.iterators.suppliers, + com.github.curiousoddman.rgxgen.nodes, + com.github.curiousoddman.rgxgen.parsing, + com.github.curiousoddman.rgxgen.parsing.dflt, + com.github.curiousoddman.rgxgen.util, + com.github.curiousoddman.rgxgen.visitors, + com.github.fge, + com.github.fge.jackson, + com.github.fge.jackson.jsonpointer, + com.github.fge.jsonpatch, + com.github.fge.jsonpatch.diff, + com.github.fge.jsonpatch.mergepatch, + com.github.fge.jsonschema, + com.github.fge.jsonschema.cfg, + com.github.fge.jsonschema.core.exceptions, + com.github.fge.jsonschema.core.keyword.syntax, + com.github.fge.jsonschema.core.keyword.syntax.checkers, + com.github.fge.jsonschema.core.keyword.syntax.checkers.common, + com.github.fge.jsonschema.core.keyword.syntax.checkers.draftv3, + com.github.fge.jsonschema.core.keyword.syntax.checkers.draftv4, + com.github.fge.jsonschema.core.keyword.syntax.checkers.helpers, + com.github.fge.jsonschema.core.keyword.syntax.checkers.hyperschema, + com.github.fge.jsonschema.core.keyword.syntax.dictionaries, + com.github.fge.jsonschema.core.load, + com.github.fge.jsonschema.core.load.configuration, + com.github.fge.jsonschema.core.load.download, + com.github.fge.jsonschema.core.load.uri, + com.github.fge.jsonschema.core.messages, + com.github.fge.jsonschema.core.processing, + com.github.fge.jsonschema.core.ref, + com.github.fge.jsonschema.core.report, + com.github.fge.jsonschema.core.tree, + com.github.fge.jsonschema.core.tree.key, + com.github.fge.jsonschema.core.util, + com.github.fge.jsonschema.core.util.equivalence, + com.github.fge.jsonschema.examples, + com.github.fge.jsonschema.exceptions, + com.github.fge.jsonschema.format, + com.github.fge.jsonschema.format.common, + com.github.fge.jsonschema.format.draftv3, + com.github.fge.jsonschema.format.extra, + com.github.fge.jsonschema.format.helpers, + com.github.fge.jsonschema.keyword.digest, + com.github.fge.jsonschema.keyword.digest.common, + com.github.fge.jsonschema.keyword.digest.draftv3, + com.github.fge.jsonschema.keyword.digest.draftv4, + com.github.fge.jsonschema.keyword.digest.helpers, + com.github.fge.jsonschema.keyword.validator, + com.github.fge.jsonschema.keyword.validator.common, + com.github.fge.jsonschema.keyword.validator.draftv3, + com.github.fge.jsonschema.keyword.validator.draftv4, + com.github.fge.jsonschema.keyword.validator.helpers, + com.github.fge.jsonschema.library, + com.github.fge.jsonschema.library.digest, + com.github.fge.jsonschema.library.format, + com.github.fge.jsonschema.library.validator, + com.github.fge.jsonschema.main, + com.github.fge.jsonschema.main.cli, + com.github.fge.jsonschema.messages, + com.github.fge.jsonschema.processors.build, + com.github.fge.jsonschema.processors.data, + com.github.fge.jsonschema.processors.digest, + com.github.fge.jsonschema.processors.format, + com.github.fge.jsonschema.processors.syntax, + com.github.fge.jsonschema.processors.validation, + com.github.fge.msgsimple, + com.github.fge.msgsimple.bundle, + com.github.fge.msgsimple.load, + com.github.fge.msgsimple.locale, + com.github.fge.msgsimple.provider, + com.github.fge.msgsimple.source, + com.github.fge.uritemplate, + com.github.fge.uritemplate.expression, + com.github.fge.uritemplate.parse, + com.github.fge.uritemplate.render, + com.github.fge.uritemplate.vars, + com.github.fge.uritemplate.vars.specs, + com.github.fge.uritemplate.vars.values, + com.github.jknack.handlebars, + com.github.jknack.handlebars.cache, + com.github.jknack.handlebars.context, + com.github.jknack.handlebars.helper, + com.github.jknack.handlebars.internal, + com.github.jknack.handlebars.internal.antlr, + com.github.jknack.handlebars.internal.antlr.atn, + com.github.jknack.handlebars.internal.antlr.dfa, + com.github.jknack.handlebars.internal.antlr.misc, + com.github.jknack.handlebars.internal.antlr.tree, + com.github.jknack.handlebars.internal.antlr.tree.pattern, + com.github.jknack.handlebars.internal.antlr.tree.xpath, + com.github.jknack.handlebars.internal.lang3, + com.github.jknack.handlebars.internal.lang3.builder, + com.github.jknack.handlebars.internal.lang3.exception, + com.github.jknack.handlebars.internal.lang3.function, + com.github.jknack.handlebars.internal.lang3.math, + com.github.jknack.handlebars.internal.lang3.mutable, + com.github.jknack.handlebars.internal.lang3.text, + com.github.jknack.handlebars.internal.lang3.text.translate, + com.github.jknack.handlebars.internal.lang3.time, + com.github.jknack.handlebars.internal.lang3.tuple, + com.github.jknack.handlebars.internal.path, + com.github.jknack.handlebars.internal.text, + com.github.jknack.handlebars.internal.text.matcher, + com.github.jknack.handlebars.internal.text.translate, + com.github.jknack.handlebars.io, + com.google.common.annotations, + com.google.common.base, + com.google.common.base.internal, + com.google.common.cache, + com.google.common.collect, + com.google.common.escape, + com.google.common.eventbus, + com.google.common.graph, + com.google.common.hash, + com.google.common.html, + com.google.common.io, + com.google.common.math, + com.google.common.net, + com.google.common.primitives, + com.google.common.reflect, + com.google.common.util.concurrent, + com.google.common.util.concurrent.internal, + com.google.common.xml, + com.google.errorprone.annotations, + com.google.errorprone.annotations.concurrent, + com.google.i18n.phonenumbers, + com.google.i18n.phonenumbers.internal, + com.google.j2objc.annotations, + com.google.thirdparty.publicsuffix, + com.mifmif.common.regex, + com.mifmif.common.regex.util, + com.samskivert.mustache, + com.sun.jna, + com.sun.jna.internal, + com.sun.jna.ptr, + com.sun.jna.win32, + com.sun.mail.auth, + com.sun.mail.handlers, + com.sun.mail.util, + dk.brics.automaton, + io.airlift.airline, + io.airlift.airline.model, + io.swagger.annotations, + io.swagger.config, + io.swagger.converter, + io.swagger.core.filter, + io.swagger.deserializer, + io.swagger.io, + io.swagger.jackson, + io.swagger.jackson.mixin, + io.swagger.model, + io.swagger.models, + io.swagger.models.apideclaration, + io.swagger.models.auth, + io.swagger.models.parameters, + io.swagger.models.properties, + io.swagger.models.reader, + io.swagger.models.refs, + io.swagger.models.resourcelisting, + io.swagger.models.utils, + io.swagger.parser, + io.swagger.parser.processors, + io.swagger.parser.util, + io.swagger.reader, + io.swagger.report, + io.swagger.transform.migrate, + io.swagger.transform.migrate.resourcelisting, + io.swagger.transform.util, + io.swagger.util, + io.swagger.v3.core.converter, + io.swagger.v3.core.filter, + io.swagger.v3.core.jackson, + io.swagger.v3.core.jackson.mixin, + io.swagger.v3.core.model, + io.swagger.v3.core.util, + io.swagger.v3.oas.annotations, + io.swagger.v3.oas.annotations.callbacks, + io.swagger.v3.oas.annotations.enums, + io.swagger.v3.oas.annotations.extensions, + io.swagger.v3.oas.annotations.headers, + io.swagger.v3.oas.annotations.info, + io.swagger.v3.oas.annotations.links, + io.swagger.v3.oas.annotations.media, + io.swagger.v3.oas.annotations.parameters, + io.swagger.v3.oas.annotations.responses, + io.swagger.v3.oas.annotations.security, + io.swagger.v3.oas.annotations.servers, + io.swagger.v3.oas.annotations.tags, + io.swagger.v3.oas.models, + io.swagger.v3.oas.models.annotations, + io.swagger.v3.oas.models.callbacks, + io.swagger.v3.oas.models.examples, + io.swagger.v3.oas.models.headers, + io.swagger.v3.oas.models.info, + io.swagger.v3.oas.models.links, + io.swagger.v3.oas.models.media, + io.swagger.v3.oas.models.parameters, + io.swagger.v3.oas.models.responses, + io.swagger.v3.oas.models.security, + io.swagger.v3.oas.models.servers, + io.swagger.v3.oas.models.tags, + io.swagger.v3.parser, + io.swagger.v3.parser.converter, + io.swagger.v3.parser.core.extensions, + io.swagger.v3.parser.core.models, + io.swagger.v3.parser.exception, + io.swagger.v3.parser.extensions, + io.swagger.v3.parser.models, + io.swagger.v3.parser.processors, + io.swagger.v3.parser.reference, + io.swagger.v3.parser.util, + io.swagger.validate, + javax.activation, + javax.annotation, + javax.annotation.concurrent, + javax.annotation.meta, + javax.inject, + javax.mail, + javax.mail.event, + javax.mail.internet, + javax.mail.search, + javax.mail.util, + javax.validation, + javax.validation.bootstrap, + javax.validation.constraints, + javax.validation.constraintvalidation, + javax.validation.executable, + javax.validation.groups, + javax.validation.metadata, + javax.validation.spi, + javax.validation.valueextraction, + javax.xml.bind, + javax.xml.bind.annotation, + javax.xml.bind.annotation.adapters, + javax.xml.bind.attachment, + javax.xml.bind.helpers, + javax.xml.bind.util, + joptsimple, + joptsimple.internal, + joptsimple.util, + net.sf.cglib.asm, + net.sf.cglib.asm.signature, + net.sf.cglib.beans, + net.sf.cglib.core, + net.sf.cglib.proxy, + net.sf.cglib.reflect, + net.sf.cglib.transform, + net.sf.cglib.transform.impl, + net.sf.cglib.util, + org.apache.commons.cli, + org.apache.commons.codec, + org.apache.commons.codec.binary, + org.apache.commons.codec.cli, + org.apache.commons.codec.digest, + org.apache.commons.codec.language, + org.apache.commons.codec.language.bm, + org.apache.commons.codec.net, + org.apache.commons.io, + org.apache.commons.io.comparator, + org.apache.commons.io.file, + org.apache.commons.io.file.spi, + org.apache.commons.io.filefilter, + org.apache.commons.io.function, + org.apache.commons.io.input, + org.apache.commons.io.input.buffer, + org.apache.commons.io.monitor, + org.apache.commons.io.output, + org.apache.commons.io.serialization, + org.apache.commons.lang3, + org.apache.commons.lang3.arch, + org.apache.commons.lang3.builder, + org.apache.commons.lang3.compare, + org.apache.commons.lang3.concurrent, + org.apache.commons.lang3.concurrent.locks, + org.apache.commons.lang3.event, + org.apache.commons.lang3.exception, + org.apache.commons.lang3.function, + org.apache.commons.lang3.math, + org.apache.commons.lang3.mutable, + org.apache.commons.lang3.reflect, + org.apache.commons.lang3.stream, + org.apache.commons.lang3.text, + org.apache.commons.lang3.text.translate, + org.apache.commons.lang3.time, + org.apache.commons.lang3.tuple, + org.apache.commons.logging, + org.apache.commons.logging.impl, + org.apache.commons.text, + org.apache.commons.text.diff, + org.apache.commons.text.io, + org.apache.commons.text.lookup, + org.apache.commons.text.matcher, + org.apache.commons.text.numbers, + org.apache.commons.text.similarity, + org.apache.commons.text.translate, + org.apache.http, + org.apache.http.annotation, + org.apache.http.auth, + org.apache.http.auth.params, + org.apache.http.client, + org.apache.http.client.config, + org.apache.http.client.entity, + org.apache.http.client.methods, + org.apache.http.client.params, + org.apache.http.client.protocol, + org.apache.http.client.utils, + org.apache.http.concurrent, + org.apache.http.config, + org.apache.http.conn, + org.apache.http.conn.params, + org.apache.http.conn.routing, + org.apache.http.conn.scheme, + org.apache.http.conn.socket, + org.apache.http.conn.ssl, + org.apache.http.conn.util, + org.apache.http.cookie, + org.apache.http.cookie.params, + org.apache.http.entity, + org.apache.http.impl, + org.apache.http.impl.auth, + org.apache.http.impl.bootstrap, + org.apache.http.impl.client, + org.apache.http.impl.conn, + org.apache.http.impl.conn.tsccm, + org.apache.http.impl.cookie, + org.apache.http.impl.entity, + org.apache.http.impl.execchain, + org.apache.http.impl.io, + org.apache.http.impl.pool, + org.apache.http.io, + org.apache.http.message, + org.apache.http.params, + org.apache.http.pool, + org.apache.http.protocol, + org.apache.http.ssl, + org.apache.http.util, + org.checkerframework.checker.builder.qual, + org.checkerframework.checker.calledmethods.qual, + org.checkerframework.checker.compilermsgs.qual, + org.checkerframework.checker.fenum.qual, + org.checkerframework.checker.formatter.qual, + org.checkerframework.checker.guieffect.qual, + org.checkerframework.checker.i18n.qual, + org.checkerframework.checker.i18nformatter.qual, + org.checkerframework.checker.index.qual, + org.checkerframework.checker.initialization.qual, + org.checkerframework.checker.interning.qual, + org.checkerframework.checker.lock.qual, + org.checkerframework.checker.nullness.qual, + org.checkerframework.checker.optional.qual, + org.checkerframework.checker.regex.qual, + org.checkerframework.checker.signature.qual, + org.checkerframework.checker.signedness.qual, + org.checkerframework.checker.tainting.qual, + org.checkerframework.checker.units.qual, + org.checkerframework.checker.units.qual, + org.checkerframework.common.aliasing.qual, + org.checkerframework.common.initializedfields.qual, + org.checkerframework.common.reflection.qual, + org.checkerframework.common.returnsreceiver.qual, + org.checkerframework.common.subtyping.qual, + org.checkerframework.common.util.report.qual, + org.checkerframework.common.value.qual, + org.checkerframework.dataflow.qual, + org.checkerframework.framework.qual, + org.codehaus.commons.compiler, + org.codehaus.commons.compiler.io, + org.codehaus.commons.compiler.java8.java.util, + org.codehaus.commons.compiler.java8.java.util.function, + org.codehaus.commons.compiler.java8.java.util.stream, + org.codehaus.commons.compiler.java9.java.lang.module, + org.codehaus.commons.compiler.samples, + org.codehaus.commons.compiler.util, + org.codehaus.commons.compiler.util.iterator, + org.codehaus.commons.compiler.util.reflect, + org.codehaus.commons.compiler.util.resource, + org.codehaus.commons.nullanalysis, + org.codehaus.janino, + org.codehaus.janino.samples, + org.codehaus.janino.tools, + org.codehaus.janino.util, + org.commonmark, + org.commonmark.internal, + org.commonmark.internal.inline, + org.commonmark.internal.renderer, + org.commonmark.internal.renderer.text, + org.commonmark.internal.util, + org.commonmark.node, + org.commonmark.parser, + org.commonmark.parser.block, + org.commonmark.parser.delimiter, + org.commonmark.renderer, + org.commonmark.renderer.html, + org.commonmark.renderer.text, + org.hamcrest, + org.hamcrest.beans, + org.hamcrest.collection, + org.hamcrest.core, + org.hamcrest.generator, + org.hamcrest.generator.config, + org.hamcrest.generator.qdox, + org.hamcrest.generator.qdox.ant, + org.hamcrest.generator.qdox.directorywalker, + org.hamcrest.generator.qdox.junit, + org.hamcrest.generator.qdox.model, + org.hamcrest.generator.qdox.model.util, + org.hamcrest.generator.qdox.parser, + org.hamcrest.generator.qdox.parser.impl, + org.hamcrest.generator.qdox.parser.structs, + org.hamcrest.generator.qdox.tools, + org.hamcrest.integration, + org.hamcrest.internal, + org.hamcrest.number, + org.hamcrest.object, + org.hamcrest.text, + org.hamcrest.text.pattern, + org.hamcrest.text.pattern.internal.ast, + org.hamcrest.text.pattern.internal.naming, + org.hamcrest.xml, + org.joda.time, + org.joda.time.base, + org.joda.time.chrono, + org.joda.time.convert, + org.joda.time.field, + org.joda.time.format, + org.joda.time.tz, + org.mozilla.classfile, + org.mozilla.javascript, + org.mozilla.javascript.annotations, + org.mozilla.javascript.ast, + org.mozilla.javascript.commonjs.module, + org.mozilla.javascript.commonjs.module.provider, + org.mozilla.javascript.debug, + org.mozilla.javascript.jdk13, + org.mozilla.javascript.jdk15, + org.mozilla.javascript.json, + org.mozilla.javascript.optimizer, + org.mozilla.javascript.regexp, + org.mozilla.javascript.serialize, + org.mozilla.javascript.tools, + org.mozilla.javascript.tools.debugger, + org.mozilla.javascript.tools.debugger.treetable, + org.mozilla.javascript.tools.idswitch, + org.mozilla.javascript.tools.jsc, + org.mozilla.javascript.tools.shell, + org.mozilla.javascript.typedarrays, + org.mozilla.javascript.v8dtoa, + org.mozilla.javascript.xml, + org.mozilla.javascript.xmlimpl, + org.objenesis, + org.objenesis.instantiator, + org.objenesis.instantiator.basic, + org.objenesis.instantiator.gcj, + org.objenesis.instantiator.jrockit, + org.objenesis.instantiator.perc, + org.objenesis.instantiator.sun, + org.objenesis.strategy, + org.openapitools.codegen, + org.openapitools.codegen.api, + org.openapitools.codegen.auth, + org.openapitools.codegen.cmd, + org.openapitools.codegen.config, + org.openapitools.codegen.examples, + org.openapitools.codegen.exceptions, + org.openapitools.codegen.ignore, + org.openapitools.codegen.ignore.rules, + org.openapitools.codegen.languages, + org.openapitools.codegen.languages.features, + org.openapitools.codegen.meta, + org.openapitools.codegen.meta.features, + org.openapitools.codegen.meta.features.annotations, + org.openapitools.codegen.model, + org.openapitools.codegen.serializer, + org.openapitools.codegen.templating, + org.openapitools.codegen.templating.handlebars, + org.openapitools.codegen.templating.mustache, + org.openapitools.codegen.utils, + org.openapitools.codegen.validation, + org.openapitools.codegen.validations.oas, + org.slf4j, + org.slf4j.agent, + org.slf4j.cal10n, + org.slf4j.event, + org.slf4j.ext, + org.slf4j.helpers, + org.slf4j.impl, + org.slf4j.instrumentation, + org.slf4j.profiler, + org.slf4j.spi, + org.threeten.bp, + org.threeten.bp.chrono, + org.threeten.bp.format, + org.threeten.bp.jdk8, + org.threeten.bp.temporal, + org.threeten.bp.zone, + org.yaml.snakeyaml, + org.yaml.snakeyaml.comments, + org.yaml.snakeyaml.composer, + org.yaml.snakeyaml.constructor, + org.yaml.snakeyaml.emitter, + org.yaml.snakeyaml.env, + org.yaml.snakeyaml.error, + org.yaml.snakeyaml.events, + org.yaml.snakeyaml.extensions.compactnotation, + org.yaml.snakeyaml.external.biz.base64Coder, + org.yaml.snakeyaml.external.com.google.gdata.util.common.base, + org.yaml.snakeyaml.introspector, + org.yaml.snakeyaml.nodes, + org.yaml.snakeyaml.parser, + org.yaml.snakeyaml.reader, + org.yaml.snakeyaml.representer, + org.yaml.snakeyaml.resolver, + org.yaml.snakeyaml.scanner, + org.yaml.snakeyaml.serializer, + org.yaml.snakeyaml.tokens, + org.yaml.snakeyaml.util +Automatic-Module-Name: org.etsi.mts.tdl.openapi.generator.wrapper diff --git a/plugins/org.etsi.mts.tdl.extras.openapi.generator.wrapper/README.md b/plugins/org.etsi.mts.tdl.extras.openapi.generator.wrapper/README.md new file mode 100644 index 0000000000000000000000000000000000000000..2b0038941c2e58d345748ac6473abe28018e9972 --- /dev/null +++ b/plugins/org.etsi.mts.tdl.extras.openapi.generator.wrapper/README.md @@ -0,0 +1,3 @@ +# OpenAPI Generator Wrapper + +This plug-in wraps the [OpenAPI Generator](https://openapi-generator.tech) licensed unter the Apache 2.0 Software License for consumption as an Eclipse plug-in. It is currently used as a dependency in the OpenAPI-to-TDL generator and in the OpenAPI Generator UI components. \ No newline at end of file diff --git a/plugins/org.etsi.mts.tdl.extras.openapi.generator.wrapper/build.properties b/plugins/org.etsi.mts.tdl.extras.openapi.generator.wrapper/build.properties new file mode 100644 index 0000000000000000000000000000000000000000..948c28979fb4a207c4a32617ead2251ba716b495 --- /dev/null +++ b/plugins/org.etsi.mts.tdl.extras.openapi.generator.wrapper/build.properties @@ -0,0 +1,2 @@ +bin.includes = META-INF/,\ + openapi-generator-cli-6.3.0.jar diff --git a/plugins/org.etsi.mts.tdl.extras.openapi.generator.wrapper/openapi-generator-cli-6.3.0-javadoc.jar b/plugins/org.etsi.mts.tdl.extras.openapi.generator.wrapper/openapi-generator-cli-6.3.0-javadoc.jar new file mode 100644 index 0000000000000000000000000000000000000000..5bf67c86b696f7e7eef91a1320dadba75e8c0b22 Binary files /dev/null and b/plugins/org.etsi.mts.tdl.extras.openapi.generator.wrapper/openapi-generator-cli-6.3.0-javadoc.jar differ diff --git a/plugins/org.etsi.mts.tdl.extras.openapi.generator.wrapper/openapi-generator-cli-6.3.0-sources.jar b/plugins/org.etsi.mts.tdl.extras.openapi.generator.wrapper/openapi-generator-cli-6.3.0-sources.jar new file mode 100644 index 0000000000000000000000000000000000000000..dee84f9739105564c7acb24c32c3ca1740725764 Binary files /dev/null and b/plugins/org.etsi.mts.tdl.extras.openapi.generator.wrapper/openapi-generator-cli-6.3.0-sources.jar differ diff --git a/plugins/org.etsi.mts.tdl.extras.openapi.generator.wrapper/openapi-generator-cli-6.3.0.jar b/plugins/org.etsi.mts.tdl.extras.openapi.generator.wrapper/openapi-generator-cli-6.3.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..4949a0640d27449bb844d625dde2c12dedb58bed Binary files /dev/null and b/plugins/org.etsi.mts.tdl.extras.openapi.generator.wrapper/openapi-generator-cli-6.3.0.jar differ diff --git a/plugins/org.etsi.mts.tdl.extras.openapi.generator.wrapper/pom.xml b/plugins/org.etsi.mts.tdl.extras.openapi.generator.wrapper/pom.xml new file mode 100644 index 0000000000000000000000000000000000000000..45acd0f6895e58e23c97bd0772b366e2e0c7c82c --- /dev/null +++ b/plugins/org.etsi.mts.tdl.extras.openapi.generator.wrapper/pom.xml @@ -0,0 +1,19 @@ + + 4.0.0 + + org.etsi.mts.tdl.extras + org.etsi.mts.tdl.extras.parent + 1.0.0-SNAPSHOT + ../../org.etsi.mts.tdl.extras.parent + + + org.etsi.mts.tdl.extras.openapi.generator.wrapper + eclipse-plugin + + + + maven-compiler-plugin + + + + \ No newline at end of file diff --git a/updatesite/org.etsi.mts.tdl.extras.updatesite/.project b/updatesite/org.etsi.mts.tdl.extras.updatesite/.project new file mode 100644 index 0000000000000000000000000000000000000000..2da50a50a380114bf5ed35bd1caae3878faafa5d --- /dev/null +++ b/updatesite/org.etsi.mts.tdl.extras.updatesite/.project @@ -0,0 +1,17 @@ + + + org.etsi.mts.tdl.extras.updatesite + + + + + + org.eclipse.m2e.core.maven2Builder + + + + + + org.eclipse.m2e.core.maven2Nature + + diff --git a/updatesite/org.etsi.mts.tdl.extras.updatesite/category.xml b/updatesite/org.etsi.mts.tdl.extras.updatesite/category.xml new file mode 100644 index 0000000000000000000000000000000000000000..f3cd6cbf882cf1f41769e9ce7ce23bd8a40de112 --- /dev/null +++ b/updatesite/org.etsi.mts.tdl.extras.updatesite/category.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/updatesite/org.etsi.mts.tdl.extras.updatesite/pom.xml b/updatesite/org.etsi.mts.tdl.extras.updatesite/pom.xml new file mode 100644 index 0000000000000000000000000000000000000000..ccb1ab5ea58d28f4e3e8291d85444047a3d2c272 --- /dev/null +++ b/updatesite/org.etsi.mts.tdl.extras.updatesite/pom.xml @@ -0,0 +1,48 @@ + + 4.0.0 + + + org.etsi.mts.tdl.extras + org.etsi.mts.tdl.extras.parent + 1.0.0-SNAPSHOT + ../../org.etsi.mts.tdl.extras.parent + + + org.etsi.mts.tdl.extras.updatesite + eclipse-repository + + TDL Open Source Project (TOP) Extras Update Site + + + + + + + org.eclipse.m2e + lifecycle-mapping + 1.0.0 + + + + + + org.apache.maven.plugins + maven-clean-plugin + [2.5,) + + clean + + + + + + + + + + + + + + \ No newline at end of file