From 0a49e942153e36db451ef281b41c1c680c3b4f3a Mon Sep 17 00:00:00 2001 From: Rodrigo Antunes Date: Thu, 9 May 2024 20:41:27 -0300 Subject: [PATCH 01/90] NO-ISSUE: KIE Tools Quarkus DevUI components weekly job (#2310) --- .ci/jenkins/Jenkinsfile.weekly-publish | 149 ++++++++++++++++++ .ci/jenkins/shared-scripts/githubUtils.groovy | 11 ++ .../shared-scripts/pipelineVars.groovy | 42 ++--- .../jbpm-quarkus-devui-deployment/pom.xml | 2 +- .../pom.xml | 2 +- 5 files changed, 183 insertions(+), 23 deletions(-) create mode 100644 .ci/jenkins/Jenkinsfile.weekly-publish diff --git a/.ci/jenkins/Jenkinsfile.weekly-publish b/.ci/jenkins/Jenkinsfile.weekly-publish new file mode 100644 index 00000000000..1b1125a2c6f --- /dev/null +++ b/.ci/jenkins/Jenkinsfile.weekly-publish @@ -0,0 +1,149 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import java.text.SimpleDateFormat + +def sdf = new SimpleDateFormat("yyyy-MM-dd") +def dateDefaultValue = sdf.format(new Date()) + +@Library('jenkins-pipeline-shared-libraries')_ + +pipeline { + agent { + docker { + image 'quay.io/kie-tools/kie-tools-ci-build:latest' + args '--shm-size=2g --privileged --group-add docker' + label util.avoidFaultyNodes() + } + } + + options { + timeout(time: 240, unit: 'MINUTES') + } + + parameters { + string(name: 'BUILD_BRANCH_NAME', defaultValue: 'main', description: 'Set the Git branch to checkout', trim: true) + string(name: 'GIT_CHECKOUT_DATETIME', defaultValue: "${dateDefaultValue} 02:00", description: 'Git checkout date and time - (Y-m-d H:i)', trim: true) + } + + environment { + KIE_TOOLS_BUILD__runLinters = 'false' + KIE_TOOLS_BUILD__runTests = 'false' + KIE_TOOLS_BUILD__runEndToEndTests = 'false' + KIE_TOOLS_BUILD__buildContainerImages = 'false' + KIE_TOOLS_BUILD__mavenDeploySkip = 'false' + + PNPM_FILTER_STRING = '-F jbpm-quarkus-devui... -F sonataflow-quarkus-devui...' + } + + stages { + stage('Load local shared scripts') { + steps { + script { + pipelineVars = load '.ci/jenkins/shared-scripts/pipelineVars.groovy' + buildUtils = load '.ci/jenkins/shared-scripts/buildUtils.groovy' + githubUtils = load '.ci/jenkins/shared-scripts/githubUtils.groovy' + } + } + } + + stage('Clean workspace before build') { + steps { + cleanWs(deleteDirs: true, disableDeferredWipeout: true) + } + } + + stage('Checkout kie-tools') { + steps { + dir('kie-tools') { + script { + checkout scm + sh """#!/bin/bash -el + git checkout ${params.BUILD_BRANCH_NAME} + git checkout `git rev-list -n 1 --before=\"${params.GIT_CHECKOUT_DATETIME}\" ${params.BUILD_BRANCH_NAME}` + """.trim() + } + } + } + } + + stage('Setup PNPM') { + steps { + dir('kie-tools') { + script { + buildUtils.setupPnpm() + } + } + } + } + + stage('PNPM Bootstrap') { + steps { + dir('kie-tools') { + script { + buildUtils.pnpmBootstrap("${env.PNPM_FILTER_STRING}") + } + } + } + } + + stage('Build and Publish devui packages') { + steps { + dir('kie-tools') { + script { + withCredentials([usernamePassword(credentialsId: "${pipelineVars.mavenDeployRepositoryCredentialsId}", usernameVariable: 'REPOSITORY_USER', passwordVariable: 'REPOSITORY_TOKEN')]) { + configFileProvider([configFile(fileId: "${pipelineVars.mavenSettingsConfigFileId}", variable: 'MAVEN_SETTINGS_FILE')]) { + timestampedSnapshotVersion = "999.0.0-${getDateFromCheckoutDateTime()}-SNAPSHOT" + sh """#!/bin/bash -el + pnpm update-version-to ${timestampedSnapshotVersion} ${env.PNPM_FILTER_STRING} + pnpm ${env.PNPM_FILTER_STRING} exec 'bash' '-c' 'echo -e "\n--settings=${MAVEN_SETTINGS_FILE}" >> .mvn/maven.config' + pnpm ${env.PNPM_FILTER_STRING} exec 'bash' '-c' 'echo -Dapache.repository.username=${REPOSITORY_USER} >> .mvn/maven.config' + pnpm ${env.PNPM_FILTER_STRING} exec 'bash' '-c' 'echo -Dapache.repository.password=${REPOSITORY_TOKEN} >> .mvn/maven.config' + pnpm ${env.PNPM_FILTER_STRING} build:prod + """.trim() + } + } + } + } + } + } + + stage('Create a new tag') { + steps { + dir('kie-tools') { + script { + tagName = "999-${getDateFromCheckoutDateTime()}" + githubUtils.createTag("${tagName}") + githubUtils.pushObject('origin', "${tagName}", "${pipelineVars.asfGithubPushCredentialsId}") + } + } + } + } + } + + post { + always { + cleanWs(deleteDirs: true, disableDeferredWipeout: true) + } + } +} + +String getDateFromCheckoutDateTime() { + /* groovylint-disable-next-line DuplicateNumberLiteral */ + def parsedDate = (params.GIT_CHECKOUT_DATETIME =~ /(\d{4}-\d{2}-\d{2})/)[0][0] + return parsedDate.replace('-', '') +} diff --git a/.ci/jenkins/shared-scripts/githubUtils.groovy b/.ci/jenkins/shared-scripts/githubUtils.groovy index 31f4a76bb1c..1fc48fc451e 100644 --- a/.ci/jenkins/shared-scripts/githubUtils.groovy +++ b/.ci/jenkins/shared-scripts/githubUtils.groovy @@ -114,6 +114,17 @@ def squashedMerge(String author, String branch, String url) { """.trim() } +/** +* Create a new tag +*/ +def createTag(String tagName) { + sh """#!/bin/bash -el + git config user.email asf-ci-kie@jenkins.kie.apache.org + git config user.name asf-ci-kie + git tag "${tagName}" + """.trim() +} + /** * Checkout a github repository and perform a squashed merge on a local repository */ diff --git a/.ci/jenkins/shared-scripts/pipelineVars.groovy b/.ci/jenkins/shared-scripts/pipelineVars.groovy index e3ed412710a..3bb27b3ef26 100644 --- a/.ci/jenkins/shared-scripts/pipelineVars.groovy +++ b/.ci/jenkins/shared-scripts/pipelineVars.groovy @@ -16,27 +16,27 @@ */ class PipelineVars implements Serializable { - String githubRepositoryOrg = 'apache'; - String githubRepositoryName = 'incubator-kie-tools'; - String githubRepositorySlug = 'apache/incubator-kie-tools'; - - String quayPushCredentialsId = 'quay-io-kie-tools-token'; - String quayKiegroupPushCredentialsId = 'quay_kiegroup_registry_token'; - String openshiftCredentialsId = 'openshift-kie-tools-token'; - String kieToolsBotGithubCredentialsId = 'kie-tools-bot-gh'; - String kieToolsBotGithubTokenCredentialsId = 'kie-tools-bot-gh-token'; - String kieToolsGithubCodeQLTokenCredentialsId = 'kie-tools-gh-codeql-token'; - String chromeStoreCredentialsId = 'kie-tools-chrome-store'; - String chromeStoreRefreshTokenCredentialsId = 'kie-tools-chrome-store-refresh-token'; - String chromeExtensionIdCredentialsId = 'kie-tools-chrome-extension-id'; - String swfChromeExtensionIdCredentialsId = 'kie-tools-swf-chrome-extension-id'; - String npmTokenCredentialsId = 'kie-tools-npm-token'; - String buildKiteTokenCredentialsId = 'kie-tools-build-kite-token'; - String asfGithubPushCredentialsId = '84811880-2025-45b6-a44c-2f33bef30ad2'; - String asfGithubTokenPushCredentialsId = '41128c14-bb63-4708-9074-d20a318ee630'; - - String defaultArtifactsTempDir = 'artifacts-tmp'; + String githubRepositoryOrg = 'apache' + String githubRepositoryName = 'incubator-kie-tools' + String githubRepositorySlug = 'apache/incubator-kie-tools' + String quayPushCredentialsId = 'quay-io-kie-tools-token' + String quayKiegroupPushCredentialsId = 'quay_kiegroup_registry_token' + String openshiftCredentialsId = 'openshift-kie-tools-token' + String kieToolsBotGithubCredentialsId = 'kie-tools-bot-gh' + String kieToolsBotGithubTokenCredentialsId = 'kie-tools-bot-gh-token' + String kieToolsGithubCodeQLTokenCredentialsId = 'kie-tools-gh-codeql-token' + String chromeStoreCredentialsId = 'kie-tools-chrome-store' + String chromeStoreRefreshTokenCredentialsId = 'kie-tools-chrome-store-refresh-token' + String chromeExtensionIdCredentialsId = 'kie-tools-chrome-extension-id' + String swfChromeExtensionIdCredentialsId = 'kie-tools-swf-chrome-extension-id' + String npmTokenCredentialsId = 'kie-tools-npm-token' + String buildKiteTokenCredentialsId = 'kie-tools-build-kite-token' + String asfGithubPushCredentialsId = '84811880-2025-45b6-a44c-2f33bef30ad2' + String asfGithubTokenPushCredentialsId = '41128c14-bb63-4708-9074-d20a318ee630' + String mavenSettingsConfigFileId = 'kie-release-settings' + String mavenDeployRepositoryCredentialsId = 'apache-nexus-kie-deploy-credentials' + String defaultArtifactsTempDir = 'artifacts-tmp' } -return new PipelineVars(); +return new PipelineVars(); \ No newline at end of file diff --git a/packages/jbpm-quarkus-devui/jbpm-quarkus-devui-deployment/pom.xml b/packages/jbpm-quarkus-devui/jbpm-quarkus-devui-deployment/pom.xml index afb0eaa2c1e..4407bb5e17a 100644 --- a/packages/jbpm-quarkus-devui/jbpm-quarkus-devui-deployment/pom.xml +++ b/packages/jbpm-quarkus-devui/jbpm-quarkus-devui-deployment/pom.xml @@ -37,7 +37,7 @@ org.jbpm.quarkus.dev.ui.deployment - ../../runtime-tools-process-dev-ui-webapp + ../node_modules/@kie-tools/runtime-tools-process-dev-ui-webapp diff --git a/packages/sonataflow-quarkus-devui/sonataflow-quarkus-devui-deployment/pom.xml b/packages/sonataflow-quarkus-devui/sonataflow-quarkus-devui-deployment/pom.xml index d9df35ddfa1..ee3d5e5d463 100644 --- a/packages/sonataflow-quarkus-devui/sonataflow-quarkus-devui-deployment/pom.xml +++ b/packages/sonataflow-quarkus-devui/sonataflow-quarkus-devui-deployment/pom.xml @@ -37,7 +37,7 @@ KIE Tools :: SonataFlow Quarkus Dev UI Extension :: Deployment - ../../serverless-workflow-dev-ui-webapp + ../node_modules/@kie-tools/serverless-workflow-dev-ui-webapp From f61344f3c4b69400112db9696651af9f5b51782f Mon Sep 17 00:00:00 2001 From: Thiago Lugli Date: Thu, 9 May 2024 23:18:27 -0300 Subject: [PATCH 02/90] NO-ISSUE: Fix CI partitioning by matching package dirs with path separator (#2311) --- .../ci/build-partitioning/build_partitioning.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/supporting-files/ci/build-partitioning/build_partitioning.ts b/.github/supporting-files/ci/build-partitioning/build_partitioning.ts index 56dda986665..ccb9c42e811 100644 --- a/.github/supporting-files/ci/build-partitioning/build_partitioning.ts +++ b/.github/supporting-files/ci/build-partitioning/build_partitioning.ts @@ -184,8 +184,9 @@ async function getPartitions(): Promise> { } const changedSourcePathsInPartition = changedSourcePaths.filter((path) => - [...partition.dirs].some((partitionDir) => path.startsWith(partitionDir)) + [...partition.dirs].some((partitionDir) => path.startsWith(`${partitionDir}/`)) ); + if (changedSourcePathsInPartition.length === 0) { console.log(`[build-partitioning] 'None' build of '${partition.name}'.`); console.log(`[build-partitioning] Building 0/${partition.dirs.size}/${allPackageDirs.size} packages.`); @@ -203,7 +204,7 @@ async function getPartitions(): Promise> { ); const relevantPackageNamesInPartition = new Set( - [...(await getDirsOfDependencies(affectedPackageNamesInPartition))].map( + [...(await getDirsOfDependencies(affectedPackageNamesInPartition, partition.name))].map( (pkgDir) => packageNamesByDir.get(pkgDir)! ) ); From 311d9cae1e48923f730cce449eeafa692aa7fbba Mon Sep 17 00:00:00 2001 From: Kbowers <92726146+kbowers-ibm@users.noreply.github.com> Date: Fri, 10 May 2024 14:45:06 +0200 Subject: [PATCH 03/90] kie-issues#408: KIE Sandbox Quarkus Accelerators will wrongly initializate in branch different than "main" (#2299) --- .../src/accelerators/AcceleratorsHooks.tsx | 48 +++++++++---------- .../online-editor/src/accelerators/test.dmn | 0 2 files changed, 23 insertions(+), 25 deletions(-) create mode 100644 packages/online-editor/src/accelerators/test.dmn diff --git a/packages/online-editor/src/accelerators/AcceleratorsHooks.tsx b/packages/online-editor/src/accelerators/AcceleratorsHooks.tsx index d3624a807a6..534a2749c96 100644 --- a/packages/online-editor/src/accelerators/AcceleratorsHooks.tsx +++ b/packages/online-editor/src/accelerators/AcceleratorsHooks.tsx @@ -41,10 +41,7 @@ import { useCancelableEffect } from "@kie-tools-core/react-hooks/dist/useCancela import { useAuthSession } from "../authSessions/AuthSessionsContext"; import { ActiveWorkspace } from "@kie-tools-core/workspaces-git-fs/dist/model/ActiveWorkspace"; import { useWorkspaceFilePromise } from "@kie-tools-core/workspaces-git-fs/dist/hooks/WorkspaceFileHooks"; -import { - GIT_DEFAULT_BRANCH, - GIT_ORIGIN_REMOTE_NAME, -} from "@kie-tools-core/workspaces-git-fs/dist/constants/GitConstants"; +import { GIT_ORIGIN_REMOTE_NAME } from "@kie-tools-core/workspaces-git-fs/dist/constants/GitConstants"; import { isOfKind } from "@kie-tools-core/workspaces-git-fs/dist/constants/ExtensionHelper"; const TEMP_ACCELERATOR_REMOTE_NAME = "__kie-sandbox__accelerator-remote"; @@ -70,7 +67,7 @@ export function useAcceleratorsDispatch(workspace: ActiveWorkspace) { const { i18n } = useOnlineI18n(); const { gitConfig } = useAuthSession(workspace.descriptor.gitAuthSessionId); - const apllyingAcceleratorAlert = useGlobalAlert( + const applyingAcceleratorAlert = useGlobalAlert( useCallback( (_, staticArgs: { acceleratorName: string }) => ( { - apllyingAcceleratorAlert.show({ acceleratorName: accelerator.name }); + applyingAcceleratorAlert.show({ acceleratorName: accelerator.name }); const workspaceId = workspace.descriptor.workspaceId; @@ -163,25 +160,17 @@ export function useAcceleratorsDispatch(workspace: ActiveWorkspace) { const workspaceFiles = await workspaces.getFiles({ workspaceId }); - // Create new temporary branch with current files, but stay on main + // Create new temporary branch with current files, but stay on current branch await workspaces.branch({ workspaceId, name: BACKUP_BRANCH_NAME, checkout: false }); - // Commit moved files to moved files branch (this commit will never be pushed, as this branch will be deleted) + // Commit files to backup branch (this commit will never be pushed, as this branch will be deleted) await workspaces.commit({ workspaceId, commitMessage: `${env.KIE_SANDBOX_APP_NAME}: Backup files before applying ${accelerator.name} Accelerator`, targetBranch: BACKUP_BRANCH_NAME, }); - - // Create new temporary branch for moved files, but stay on main - await workspaces.branch({ workspaceId, name: MOVED_FILES_BRANCH_NAME, checkout: false }); - - // Checkout to moved files branch - await workspaces.checkout({ - workspaceId, - ref: MOVED_FILES_BRANCH_NAME, - remote: GIT_ORIGIN_REMOTE_NAME, - }); + // Create and checkout new temporary branch for moved files + await workspaces.branch({ workspaceId, name: MOVED_FILES_BRANCH_NAME, checkout: true }); // Move files let currentFileAfterAccelerator: WorkspaceFile | undefined; @@ -224,8 +213,12 @@ export function useAcceleratorsDispatch(workspace: ActiveWorkspace) { targetBranch: MOVED_FILES_BRANCH_NAME, }); - // Go back to main - await workspaces.checkout({ workspaceId, ref: GIT_DEFAULT_BRANCH, remote: GIT_ORIGIN_REMOTE_NAME }); + // Go back to original branch + await workspaces.checkout({ + workspaceId, + ref: workspace.descriptor.origin.branch, + remote: GIT_ORIGIN_REMOTE_NAME, + }); // Add Accelerator remote and fetch it await workspaces.addRemote({ @@ -311,7 +304,7 @@ export function useAcceleratorsDispatch(workspace: ActiveWorkspace) { forceHasChanges: true, }); - apllyingAcceleratorAlert.close(); + applyingAcceleratorAlert.close(); applyAcceleratorSuccessAlert.show({ acceleratorName: accelerator.name }); @@ -325,7 +318,7 @@ export function useAcceleratorsDispatch(workspace: ActiveWorkspace) { }), }); } catch (e) { - apllyingAcceleratorAlert.close(); + applyingAcceleratorAlert.close(); applyAcceleratorFailAlert.show({ acceleratorName: accelerator.name }); console.error(e); @@ -335,8 +328,12 @@ export function useAcceleratorsDispatch(workspace: ActiveWorkspace) { await workspaces.deleteFile({ file: configFile }); } - // Return to main - await workspaces.checkout({ workspaceId, ref: GIT_DEFAULT_BRANCH, remote: GIT_ORIGIN_REMOTE_NAME }); + // Return to original branch + await workspaces.checkout({ + workspaceId, + ref: workspace.descriptor.origin.branch, + remote: GIT_ORIGIN_REMOTE_NAME, + }); // Revert repo await workspaces.checkoutFilesFromLocalHead({ @@ -367,7 +364,7 @@ export function useAcceleratorsDispatch(workspace: ActiveWorkspace) { } }, [ - apllyingAcceleratorAlert, + applyingAcceleratorAlert, applyAcceleratorFailAlert, applyAcceleratorSuccessAlert, attemptToDeleteTemporaryBranches, @@ -376,6 +373,7 @@ export function useAcceleratorsDispatch(workspace: ActiveWorkspace) { history, i18n.accelerators, routes.workspaceWithFilePath, + workspace.descriptor.origin.branch, workspace.descriptor.workspaceId, workspaces, ] diff --git a/packages/online-editor/src/accelerators/test.dmn b/packages/online-editor/src/accelerators/test.dmn new file mode 100644 index 00000000000..e69de29bb2d From fcede17348f7bba64ff6ef482a48d0affe65b143 Mon Sep 17 00:00:00 2001 From: Yeser Amer Date: Fri, 10 May 2024 17:01:58 +0200 Subject: [PATCH 04/90] kie-issue#958: Quarkus LTS Upgrade to 3.8.4 (#2272) Co-authored-by: Rodrigo Antunes Co-authored-by: Tiago Bento Co-authored-by: Tiago Bento <1584568+tiagobento@users.noreply.github.com> --- .../dmn-marshaller/tests/dmnSemanticComparison.test.ts | 1 + packages/dmn-marshaller/tests/dmnValidation.test.ts | 1 + packages/extended-services/package.json | 2 +- .../kn-plugin-workflow/e2e-tests/quarkus_convert_test.go | 2 +- .../kn-plugin-workflow/e2e-tests/quarkus_create_test.go | 2 +- .../pkg/command/quarkus/quarkus_project.go | 3 +++ packages/kn-plugin-workflow/pkg/metadata/constants.go | 2 +- packages/maven-base/pom.xml | 4 ++-- packages/root-env/env/index.js | 4 ++-- .../env/index.js | 2 +- .../install.js | 2 +- .../pom.xml | 2 +- .../env/index.js | 2 +- pnpm-lock.yaml | 8 ++++---- 14 files changed, 21 insertions(+), 16 deletions(-) diff --git a/packages/dmn-marshaller/tests/dmnSemanticComparison.test.ts b/packages/dmn-marshaller/tests/dmnSemanticComparison.test.ts index 437e2fb63ad..93a7ccbdd8d 100644 --- a/packages/dmn-marshaller/tests/dmnSemanticComparison.test.ts +++ b/packages/dmn-marshaller/tests/dmnSemanticComparison.test.ts @@ -36,6 +36,7 @@ const dmnTestingModelsPath = path.dirname(require.resolve("@kie-tools/dmn-testin const dmnTestingModels = [ "dist/valid_models/DMNv1_5/AllowedValuesChecksInsideCollection.dmn", + "dist/valid_models/DMNv1_5/ConstraintsChecks.dmn", "dist/valid_models/DMNv1_5/DateToDateTimeFunction.dmn", "dist/valid_models/DMNv1_5/ForLoopDatesEvaluate.dmn", "dist/valid_models/DMNv1_5/Imported_Model_Unamed.dmn", diff --git a/packages/dmn-marshaller/tests/dmnValidation.test.ts b/packages/dmn-marshaller/tests/dmnValidation.test.ts index 9c3c4a904d2..da3f1a33341 100644 --- a/packages/dmn-marshaller/tests/dmnValidation.test.ts +++ b/packages/dmn-marshaller/tests/dmnValidation.test.ts @@ -36,6 +36,7 @@ const dmnTestingModelsPath = path.dirname(require.resolve("@kie-tools/dmn-testin const dmnTestingModels = [ "dist/valid_models/DMNv1_5/AllowedValuesChecksInsideCollection.dmn", + "dist/valid_models/DMNv1_5/ConstraintsChecks.dmn", "dist/valid_models/DMNv1_5/DateToDateTimeFunction.dmn", "dist/valid_models/DMNv1_5/ForLoopDatesEvaluate.dmn", "dist/valid_models/DMNv1_5/Imported_Model_Unamed.dmn", diff --git a/packages/extended-services/package.json b/packages/extended-services/package.json index 2ba9d2854cf..405ca614de6 100644 --- a/packages/extended-services/package.json +++ b/packages/extended-services/package.json @@ -40,7 +40,7 @@ "start": "cross-env ENV=dev make start" }, "dependencies": { - "@kie-tools/jitexecutor-native": "999.0.0-20240417-SNAPSHOT" + "@kie-tools/jitexecutor-native": "999.0.0-20240505-SNAPSHOT" }, "devDependencies": { "@kie-tools/root-env": "workspace:*", diff --git a/packages/kn-plugin-workflow/e2e-tests/quarkus_convert_test.go b/packages/kn-plugin-workflow/e2e-tests/quarkus_convert_test.go index 31e5e7005c7..e8d7726c904 100644 --- a/packages/kn-plugin-workflow/e2e-tests/quarkus_convert_test.go +++ b/packages/kn-plugin-workflow/e2e-tests/quarkus_convert_test.go @@ -56,7 +56,7 @@ var cfgTestInputQuarkusConvert_Success = []CfgTestInputQuarkusConvert{ Extensions: "quarkus-jsonp,quarkus-smallrye-openapi", DependenciesVersion: metadata.DependenciesVersion{ QuarkusPlatformGroupId: "io.quarkus.platform", - QuarkusVersion: "3.2.10.Final", + QuarkusVersion: "3.8.4", }, }}, } diff --git a/packages/kn-plugin-workflow/e2e-tests/quarkus_create_test.go b/packages/kn-plugin-workflow/e2e-tests/quarkus_create_test.go index 782aca36ee7..200f50d808c 100644 --- a/packages/kn-plugin-workflow/e2e-tests/quarkus_create_test.go +++ b/packages/kn-plugin-workflow/e2e-tests/quarkus_create_test.go @@ -50,7 +50,7 @@ var cfgTestInputQuarkusCreate_Success = []CfgTestInputQuarkusCreate{ Extensions: "quarkus-jsonp,quarkus-smallrye-openapi", DependenciesVersion: metadata.DependenciesVersion{ QuarkusPlatformGroupId: "io.quarkus.platform", - QuarkusVersion: "3.2.10.Final", + QuarkusVersion: "3.8.4", }, }}, } diff --git a/packages/kn-plugin-workflow/pkg/command/quarkus/quarkus_project.go b/packages/kn-plugin-workflow/pkg/command/quarkus/quarkus_project.go index c61cd2d1788..c39e124e9ba 100644 --- a/packages/kn-plugin-workflow/pkg/command/quarkus/quarkus_project.go +++ b/packages/kn-plugin-workflow/pkg/command/quarkus/quarkus_project.go @@ -122,6 +122,9 @@ func manipulatePomToKogito(filename string, cfg CreateQuarkusProjectConfig) erro dependencyElement := dependencies.CreateElement("dependency") dependencyElement.CreateElement("groupId").SetText(dep.GroupId) dependencyElement.CreateElement("artifactId").SetText(dep.ArtifactId) + if dep.Version != "" { + dependencyElement.CreateElement("version").SetText(dep.Version) + } } doc.Indent(4) diff --git a/packages/kn-plugin-workflow/pkg/metadata/constants.go b/packages/kn-plugin-workflow/pkg/metadata/constants.go index 8dc3c610145..2b84c2b3361 100644 --- a/packages/kn-plugin-workflow/pkg/metadata/constants.go +++ b/packages/kn-plugin-workflow/pkg/metadata/constants.go @@ -41,7 +41,7 @@ var KogitoBomDependency = Dependency{ var KogitoDependencies = []Dependency{ {GroupId: "org.kie", ArtifactId: "kie-addons-quarkus-knative-eventing"}, {GroupId: "org.kie", ArtifactId: "kie-addons-quarkus-source-files"}, - {GroupId: "org.apache.kie.sonataflow", ArtifactId: "sonataflow-quarkus-devui"}, + {GroupId: "org.apache.kie.sonataflow", ArtifactId: "sonataflow-quarkus-devui", Version: PluginVersion}, {GroupId: "org.kie", ArtifactId: "kogito-addons-quarkus-data-index-inmemory"}, {GroupId: "org.apache.kie.sonataflow", ArtifactId: "sonataflow-quarkus"}, } diff --git a/packages/maven-base/pom.xml b/packages/maven-base/pom.xml index d43d16222de..09190759322 100644 --- a/packages/maven-base/pom.xml +++ b/packages/maven-base/pom.xml @@ -76,8 +76,8 @@ 1.3.0 4.13.2 3.2.5 - 3.2.10.Final - 999-20240417-SNAPSHOT + 3.8.4 + 999-20240509-SNAPSHOT ${quarkus.platform.version} io.quarkus 3.0.0-M7 diff --git a/packages/root-env/env/index.js b/packages/root-env/env/index.js index c96c878113e..3820ed0360d 100644 --- a/packages/root-env/env/index.js +++ b/packages/root-env/env/index.js @@ -51,11 +51,11 @@ module.exports = composeEnv([], { description: "Enables/disables building example packages during the build.", }, QUARKUS_PLATFORM_version: { - default: "3.2.10.Final", + default: "3.8.4", description: "Quarkus version to be used on dependency declaration.", }, KOGITO_RUNTIME_version: { - default: "999-20240417-SNAPSHOT", + default: "999-20240509-SNAPSHOT", description: "Kogito version to be used on dependency declaration.", }, }), diff --git a/packages/serverless-logic-web-tools-base-builder-image/env/index.js b/packages/serverless-logic-web-tools-base-builder-image/env/index.js index 7210baf1c4d..23e66601910 100644 --- a/packages/serverless-logic-web-tools-base-builder-image/env/index.js +++ b/packages/serverless-logic-web-tools-base-builder-image/env/index.js @@ -32,7 +32,7 @@ module.exports = composeEnv( description: "", }, SERVERLESS_LOGIC_WEB_TOOLS__baseBuilderKogitoImageTag: { - default: "999-20240417", + default: "999-20240505", description: "", }, }), diff --git a/packages/serverless-logic-web-tools-swf-deployment-quarkus-app/install.js b/packages/serverless-logic-web-tools-swf-deployment-quarkus-app/install.js index 5f4cc7c0b82..b562eaace2c 100644 --- a/packages/serverless-logic-web-tools-swf-deployment-quarkus-app/install.js +++ b/packages/serverless-logic-web-tools-swf-deployment-quarkus-app/install.js @@ -23,5 +23,5 @@ const { setup } = require("@kie-tools/maven-config-setup-helper"); setup(` -Drevision=${buildEnv.env.swfDeploymentQuarkusApp.version} -Dquarkus.platform.version=${buildEnv.env.quarkusPlatform.version} - -Dkogito.version=${buildEnv.env.kogitoRuntime.version} + -Dversion.org.kie.kogito=${buildEnv.env.kogitoRuntime.version} `); diff --git a/packages/serverless-logic-web-tools-swf-deployment-quarkus-app/pom.xml b/packages/serverless-logic-web-tools-swf-deployment-quarkus-app/pom.xml index f65cd96d0b9..a62de181587 100644 --- a/packages/serverless-logic-web-tools-swf-deployment-quarkus-app/pom.xml +++ b/packages/serverless-logic-web-tools-swf-deployment-quarkus-app/pom.xml @@ -64,7 +64,7 @@ ${kogito.bom.group-id} ${kogito.bom.artifact-id} - ${kogito.version} + ${version.org.kie.kogito} pom import diff --git a/packages/serverless-logic-web-tools-swf-dev-mode-image/env/index.js b/packages/serverless-logic-web-tools-swf-dev-mode-image/env/index.js index 658917fa701..edfd5d09093 100644 --- a/packages/serverless-logic-web-tools-swf-dev-mode-image/env/index.js +++ b/packages/serverless-logic-web-tools-swf-dev-mode-image/env/index.js @@ -28,7 +28,7 @@ module.exports = composeEnv( description: "", }, SERVERLESS_LOGIC_WEB_TOOLS_DEVMODE_IMAGE__kogitoBaseBuilderImageTag: { - default: "999-20240417", + default: "999-20240505", description: "", }, }), diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index bcbcf0d811c..d565a163f47 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -4370,8 +4370,8 @@ importers: packages/extended-services: dependencies: "@kie-tools/jitexecutor-native": - specifier: 999.0.0-20240417-SNAPSHOT - version: 999.0.0-20240417-SNAPSHOT + specifier: 999.0.0-20240505-SNAPSHOT + version: 999.0.0-20240505-SNAPSHOT devDependencies: "@kie-tools/root-env": specifier: workspace:* @@ -23429,9 +23429,9 @@ packages: { integrity: sha512-dxmfwq2F+yxawuGrVVRGmTeZHTqRHa79Vp4FX2KEXHAA9AgK1aaVz8mxZxXYFs2ycfp30NjWvhZCOIRbIKTjAQ== } dev: false - /@kie-tools/jitexecutor-native@999.0.0-20240417-SNAPSHOT: + /@kie-tools/jitexecutor-native@999.0.0-20240505-SNAPSHOT: resolution: - { integrity: sha512-SkRpqYfS24Y+C6rzH0MUozIYvBJvfZkHtCQ+coAxyu9G3aO4ksQLdd33bwWP/27yjjzI75yDmlL6RXG5/LBkkw== } + { integrity: sha512-swpesoPfMsMPlVBOmgAFp28QAfkN9t0fJOPEimK3ChIS/7u1mDaIOKDtceawfQPjVW9Pe0KK6lLMgHyay/oWfw== } dev: false /@koa/cors@3.4.3: From f675085ebcefa75d81a97f4523fbe7d44f679634 Mon Sep 17 00:00:00 2001 From: Thiago Lugli Date: Fri, 10 May 2024 14:54:36 -0300 Subject: [PATCH 05/90] NO-ISSUE: Fix extended-services URL on kie-sandbox (#2313) --- packages/online-editor/env/index.js | 2 +- packages/online-editor/src/settings/SettingsContext.tsx | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/packages/online-editor/env/index.js b/packages/online-editor/env/index.js index 1287d0fa621..248c357ac91 100644 --- a/packages/online-editor/env/index.js +++ b/packages/online-editor/env/index.js @@ -62,7 +62,7 @@ module.exports = composeEnv( description: "CORS Proxy URL.", }, ONLINE_EDITOR__extendedServicesUrl: { - default: `http://${extendedServicesEnv.env.extendedServices.host}:${extendedServicesEnv.env.extendedServices.port}`, + default: `http://${extendedServicesEnv.env.extendedServices.ip}:${extendedServicesEnv.env.extendedServices.port}`, description: "Extended Services URL.", }, ONLINE_EDITOR__requireCustomCommitMessage: { diff --git a/packages/online-editor/src/settings/SettingsContext.tsx b/packages/online-editor/src/settings/SettingsContext.tsx index 6feaabfa92c..d9b58c0658a 100644 --- a/packages/online-editor/src/settings/SettingsContext.tsx +++ b/packages/online-editor/src/settings/SettingsContext.tsx @@ -143,7 +143,10 @@ export function SettingsContextProvider(props: PropsWithChildren<{}>) { } const envExtendedServicesUrl = new URL(env.KIE_SANDBOX_EXTENDED_SERVICES_URL); - const envExtendedServicesHost = `${envExtendedServicesUrl.protocol}//${envExtendedServicesUrl.hostname}`; + // 0.0.0.0 is "equivalent" to localhost, but browsers don't like having mixed http/https urls with the exception of localhost + const envExtendedServicesHost = `${envExtendedServicesUrl.protocol}//${ + envExtendedServicesUrl.hostname === "0.0.0.0" ? "localhost" : envExtendedServicesUrl.hostname + }`; const envExtendedServicesPort = envExtendedServicesUrl.port; await persistSettings({ From 163fff2749cd434f203ad57630a7c3b9c81ae437 Mon Sep 17 00:00:00 2001 From: Thiago Lugli Date: Fri, 10 May 2024 15:22:20 -0300 Subject: [PATCH 06/90] NO-ISSUE: Update kogito-base-builder image tag (#2314) --- .../serverless-logic-web-tools-base-builder-image/env/index.js | 2 +- .../serverless-logic-web-tools-swf-dev-mode-image/env/index.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/serverless-logic-web-tools-base-builder-image/env/index.js b/packages/serverless-logic-web-tools-base-builder-image/env/index.js index 23e66601910..7d0cae43134 100644 --- a/packages/serverless-logic-web-tools-base-builder-image/env/index.js +++ b/packages/serverless-logic-web-tools-base-builder-image/env/index.js @@ -32,7 +32,7 @@ module.exports = composeEnv( description: "", }, SERVERLESS_LOGIC_WEB_TOOLS__baseBuilderKogitoImageTag: { - default: "999-20240505", + default: "999-20240509", description: "", }, }), diff --git a/packages/serverless-logic-web-tools-swf-dev-mode-image/env/index.js b/packages/serverless-logic-web-tools-swf-dev-mode-image/env/index.js index edfd5d09093..dad8f3a2bff 100644 --- a/packages/serverless-logic-web-tools-swf-dev-mode-image/env/index.js +++ b/packages/serverless-logic-web-tools-swf-dev-mode-image/env/index.js @@ -28,7 +28,7 @@ module.exports = composeEnv( description: "", }, SERVERLESS_LOGIC_WEB_TOOLS_DEVMODE_IMAGE__kogitoBaseBuilderImageTag: { - default: "999-20240505", + default: "999-20240509", description: "", }, }), From a935f6be9e046f4546fc354e167649327ddf1c9b Mon Sep 17 00:00:00 2001 From: Yeser Amer Date: Sat, 11 May 2024 07:30:55 +0200 Subject: [PATCH 07/90] kie-issues#1163: incubator-kie-tools missing header files (Part III) (#2307) --- .github/actions/.gitignore | 18 ++++++++++ .github/actions/bootstrap/action.yml | 19 +++++++++++ .github/actions/checkout-pr/action.yml | 19 +++++++++++ .github/actions/deploy-openshift/action.yml | 19 +++++++++++ .github/actions/setup-ci-patterns/action.yml | 19 +++++++++++ .github/actions/setup-env/action.yml | 19 +++++++++++ .../action.yml | 19 +++++++++++ .../ci/build-partitioning/README.md | 17 ++++++++++ .../publish_emscripten_fs/README.md | 17 ++++++++++ .../publish_emscripten_fs/build.sh | 18 ++++++++++ .github/workflows/ci_build.yml | 19 +++++++++++ .../workflows/ci_check_code_formatting.yml | 19 +++++++++++ .../ci_check_dependencies_consistency.yaml | 19 +++++++++++ .github/workflows/ci_codeql.yml | 19 +++++++++++ .github/workflows/publish_emscripten_fs.yml | 19 +++++++++++ .../release_build_extended_services.yml | 19 +++++++++++ .../release_dry_run_extended_services.yml | 19 +++++++++++ .../release_publish_extended_services.yml | 19 +++++++++++ .../staging_build_extended_services.yml | 19 +++++++++++ .../staging_dry_run_extended_services.yml | 19 +++++++++++ .../staging_publish_extended_services.yml | 19 +++++++++++ .gitignore | 18 ++++++++++ .idea/jsLinters/eslint.xml | 18 ++++++++++ .idea/vcs.xml | 18 ++++++++++ DISCLAIMER | 5 +++ KOGITO_UPGRADE_PROCESS.md | 17 ++++++++++ NIX_DEV_ENV.md | 17 ++++++++++ README.md | 17 ++++++++++ RELEASE_PROCESS.md | 17 ++++++++++ .../README.md | 17 ++++++++++ .../README.md | 17 ++++++++++ examples/base64png-editor/README.md | 17 ++++++++++ .../README.md | 17 ++++++++++ .../kitchensink/Kitchensink.dash.yml | 19 +++++++++++ .../README.md | 17 ++++++++++ .../pom.xml | 34 +++++++++---------- .../resources/org/acme/travels/approval.bpmn | 18 ++++++++++ examples/ping-pong-view-angular/README.md | 17 ++++++++++ examples/ping-pong-view-react/README.md | 17 ++++++++++ examples/ping-pong-view/README.md | 17 ++++++++++ .../README.md | 17 ++++++++++ .../pom.xml | 34 +++++++++---------- .../src/main/resources/yamlgreet.sw.yml | 19 +++++++++++ .../todo-list-view-vscode-extension/README.md | 17 ++++++++++ examples/todo-list-view/README.md | 17 ++++++++++ examples/webapp/README.md | 17 ++++++++++ examples/webapp/static/examples/sample.bpmn | 19 +++++++++++ examples/webapp/static/examples/sample.dmn | 19 +++++++++++ packages/backend/README.md | 17 ++++++++++ packages/boxed-expression-component/README.md | 17 ++++++++++ .../other/sample-sanitized.bpmn | 19 +++++++++++ .../tests-data--manual/other/sample.bpmn | 19 +++++++++++ packages/bpmn-vscode-extension/CHANGELOG.md | 17 ++++++++++ packages/bpmn-vscode-extension/README.md | 17 ++++++++++ .../e2e-tests/samples/test.bpmn | 19 +++++++++++ .../e2e-tests/samples/test.dmn | 19 +++++++++++ .../e2e-tests/samples/chrome_sample.sw.yaml | 19 +++++++++++ packages/chrome-extension/README.md | 17 ++++++++++ packages/cors-proxy-image/README.md | 17 ++++++++++ packages/cors-proxy/README.md | 17 ++++++++++ packages/dashbuilder-editor/README.md | 17 ++++++++++ .../dashbuilder-language-service/README.md | 17 ++++++++++ ...rverlessWorkflowAndServerMetrics.dash.yaml | 19 +++++++++++ .../src/ServerlessWorkflowMetrics.dash.yaml | 19 +++++++++++ .../static/dashboard.dash.yaml | 19 +++++++++++ packages/dashbuilder-viewer/README.md | 17 ++++++++++ packages/dashbuilder/README.md | 17 ++++++++++ .../i18n/UberfireConstants_de.properties | 19 +++++++++++ .../i18n/UberfireConstants_pt_BR.properties | 19 +++++++++++ .../i18n/UberfireConstants_zh_CN.properties | 19 +++++++++++ .../i18n/CommonConstants_de.properties | 19 +++++++++++ .../i18n/CommonConstants_pt_BR.properties | 19 +++++++++++ .../i18n/CommonConstants_zh_CN.properties | 19 +++++++++++ ...rspectiveEditorPaletteConstants.properties | 19 +++++++++++ ...ectiveEditorPaletteConstants_es.properties | 19 +++++++++++ ...ectiveEditorPaletteConstants_fr.properties | 19 +++++++++++ ...ectiveEditorPaletteConstants_ja.properties | 19 +++++++++++ .../i18n/CommonConstants_de.properties | 19 +++++++++++ .../i18n/CommonConstants_pt_BR.properties | 19 +++++++++++ .../i18n/CommonConstants_zh_CN.properties | 19 +++++++++++ .../i18n/CoreConstants_de.properties | 19 +++++++++++ .../i18n/CoreConstants_pt_BR.properties | 19 +++++++++++ .../i18n/CoreConstants_zh_CN.properties | 19 +++++++++++ .../i18n/CommonConstants_de.properties | 19 +++++++++++ .../i18n/CommonConstants_pt_BR.properties | 19 +++++++++++ .../i18n/CommonConstants_zh_CN.properties | 19 +++++++++++ .../pfly/resources/i18n/Constants.properties | 19 +++++++++++ .../resources/i18n/Constants_de.properties | 19 +++++++++++ .../resources/i18n/Constants_es.properties | 19 +++++++++++ .../resources/i18n/Constants_fr.properties | 19 +++++++++++ .../resources/i18n/Constants_ja.properties | 19 +++++++++++ .../resources/i18n/Constants_pt_BR.properties | 19 +++++++++++ .../resources/i18n/Constants_zh_CN.properties | 19 +++++++++++ .../resources/META-INF/ErraiApp.properties | 19 +++++++++++ .../i18n/WorkbenchConstants_de.properties | 19 +++++++++++ .../i18n/WorkbenchConstants_pt_BR.properties | 19 +++++++++++ .../i18n/WorkbenchConstants_zh_CN.properties | 19 +++++++++++ .../src/test/resources/logback-test.xml | 18 ++++++++++ .../src/test/resources/logback-test.xml | 18 ++++++++++ .../dashbuilder/checkstyle-suppressions.xml | 20 ++++++++++- .../DashbuilderCommonConstants.properties | 19 +++++++++++ .../DashbuilderCommonConstants_de.properties | 19 +++++++++++ .../DashbuilderCommonConstants_es.properties | 19 +++++++++++ .../DashbuilderCommonConstants_fr.properties | 19 +++++++++++ .../DashbuilderCommonConstants_ja.properties | 19 +++++++++++ ...ashbuilderCommonConstants_pt_BR.properties | 19 +++++++++++ ...ashbuilderCommonConstants_zh_CN.properties | 19 +++++++++++ ...gregateFunctionTypeConstants_de.properties | 19 +++++++++++ ...gateFunctionTypeConstants_pt_BR.properties | 19 +++++++++++ ...gateFunctionTypeConstants_zh_CN.properties | 19 +++++++++++ .../i18n/CommonConstants_de.properties | 19 +++++++++++ .../i18n/CommonConstants_pt_BR.properties | 19 +++++++++++ .../i18n/CommonConstants_zh_CN.properties | 19 +++++++++++ .../CoreFunctionTypeConstants_de.properties | 19 +++++++++++ ...CoreFunctionTypeConstants_pt_BR.properties | 19 +++++++++++ ...CoreFunctionTypeConstants_zh_CN.properties | 19 +++++++++++ .../DateIntervalTypeConstants_de.properties | 19 +++++++++++ ...DateIntervalTypeConstants_pt_BR.properties | 19 +++++++++++ ...DateIntervalTypeConstants_zh_CN.properties | 19 +++++++++++ .../i18n/DayOfWeekConstants_de.properties | 19 +++++++++++ .../i18n/DayOfWeekConstants_pt_BR.properties | 19 +++++++++++ .../i18n/DayOfWeekConstants_zh_CN.properties | 19 +++++++++++ .../i18n/MonthConstants_de.properties | 19 +++++++++++ .../i18n/MonthConstants_pt_BR.properties | 19 +++++++++++ .../i18n/MonthConstants_zh_CN.properties | 19 +++++++++++ .../i18n/QuarterConstants_de.properties | 19 +++++++++++ .../i18n/QuarterConstants_pt_BR.properties | 19 +++++++++++ .../i18n/QuarterConstants_zh_CN.properties | 19 +++++++++++ .../i18n/TimeModeConstants_de.properties | 19 +++++++++++ .../i18n/TimeModeConstants_pt_BR.properties | 19 +++++++++++ .../i18n/TimeModeConstants_zh_CN.properties | 19 +++++++++++ .../RendererSelectorListBoxView.ui.xml | 19 +++++++++++ .../RendererSelectorRadioListView.ui.xml | 19 +++++++++++ .../RendererSelectorTabListView.ui.xml | 19 +++++++++++ .../i18n/CommonConstants_de.properties | 19 +++++++++++ .../i18n/CommonConstants_pt_BR.properties | 19 +++++++++++ .../i18n/CommonConstants_zh_CN.properties | 19 +++++++++++ .../i18n/DisplayerConstants_de.properties | 19 +++++++++++ .../i18n/DisplayerConstants_pt_BR.properties | 19 +++++++++++ .../i18n/DisplayerConstants_zh_CN.properties | 19 +++++++++++ .../i18n/NavigationConstants_de.properties | 19 +++++++++++ .../i18n/NavigationConstants_pt_BR.properties | 19 +++++++++++ .../i18n/NavigationConstants_zh_CN.properties | 19 +++++++++++ .../dashbuilder-renderer-c3/pom.xml | 18 ++++++++++ .../i18n/C3DisplayerConstants_de.properties | 19 +++++++++++ .../C3DisplayerConstants_pt_BR.properties | 19 +++++++++++ .../C3DisplayerConstants_zh_CN.properties | 19 +++++++++++ .../i18n/CommonConstants_de.properties | 19 +++++++++++ .../i18n/CommonConstants_pt_BR.properties | 19 +++++++++++ .../i18n/CommonConstants_zh_CN.properties | 19 +++++++++++ .../i18n/MetricConstants_de.properties | 19 +++++++++++ .../i18n/MetricConstants_pt_BR.properties | 19 +++++++++++ .../i18n/MetricConstants_zh_CN.properties | 19 +++++++++++ .../i18n/SelectorConstants_de.properties | 19 +++++++++++ .../i18n/SelectorConstants_pt_BR.properties | 19 +++++++++++ .../i18n/SelectorConstants_zh_CN.properties | 19 +++++++++++ .../i18n/TableConstants_de.properties | 19 +++++++++++ .../i18n/TableConstants_pt_BR.properties | 19 +++++++++++ .../i18n/TableConstants_zh_CN.properties | 19 +++++++++++ .../resources/META-INF/ErraiApp.properties | 19 +++++++++++ .../dashbuilder/dashbuilder-shared/pom.xml | 18 ++++++++++ .../resources/META-INF/ErraiApp.properties | 19 +++++++++++ packages/dev-deployment-base-image/README.md | 17 ++++++++++ .../src/main/resources/Adjudication.dmn | 18 ++++++++++ .../src/main/resources/FlightRebooking.dmn | 18 ++++++++++ .../src/main/resources/Functions.dmn | 18 ++++++++++ .../src/main/resources/InsurancePricing.dmn | 18 ++++++++++ .../main/resources/LoanPreQualification.dmn | 18 ++++++++++ .../src/main/resources/ManyInputs.dmn | 18 ++++++++++ .../src/main/resources/Recursive.dmn | 18 ++++++++++ .../src/main/resources/Routing.dmn | 18 ++++++++++ .../src/main/resources/Strategy.dmn | 18 ++++++++++ .../quarkus-app/src/main/resources/Types.dmn | 18 ++++++++++ .../src/main/resources/application.properties | 19 +++++++++++ .../src/main/resources/canDrive/CanDrive.dmn | 18 ++++++++++ .../src/main/resources/canDrive/Types3.dmn | 18 ++++++++++ .../src/main/resources/complex/can_drive.dmn | 18 ++++++++++ .../main/resources/complex/can_drive_2.dmn | 18 ++++++++++ .../resources/findEmployees/FindEmployees.dmn | 18 ++++++++++ .../README.md | 17 ++++++++++ .../src/main/resources/application.properties | 19 +++++++++++ .../dev-deployment-upload-service/README.md | 17 ++++++++++ .../getDevDeploymentUploadService.sh | 5 +-- packages/dmn-editor-envelope/README.md | 19 ++++++++++- .../parser/grammar/generated-parser/README.md | 17 ++++++++++ .../tests/fixtures/decisions.dmn | 18 ++++++++++ .../tests/fixtures/dmn12/a.dmn | 18 ++++++++++ .../tests/fixtures/dmn12/bImportsA.dmn | 18 ++++++++++ .../tests/fixtures/dmn12/cImportsB.dmn | 18 ++++++++++ .../tests/fixtures/dmn12/dImportsAB.dmn | 18 ++++++++++ .../tests/fixtures/dmn12/eImportsXB.dmn | 18 ++++++++++ .../tests/fixtures/dmn12/xImportsY.dmn | 18 ++++++++++ .../tests/fixtures/dmn12/y.dmn | 20 ++++++++++- .../tests/fixtures/dmn15/aImportsDmn12C.dmn | 18 ++++++++++ .../tests/fixtures/dmn15/bImportsDmn12D.dmn | 18 ++++++++++ .../fixtures/immediateRecursion/aImportsB.dmn | 18 ++++++++++ .../fixtures/immediateRecursion/bImportsA.dmn | 18 ++++++++++ .../threeLevelRecursion/aImportsB.dmn | 18 ++++++++++ .../threeLevelRecursion/bImportsC.dmn | 18 ++++++++++ .../threeLevelRecursion/cImportsA.dmn | 18 ++++++++++ .../README.md | 17 ++++++++++ .../dmn-1_0--examples/dmn10.dmn | 18 ++++++++++ .../Chapter 11 Example - Financial.dmn | 18 ++++++++++ .../Chapter 11/Chapter 11 Example.dmn | 18 ++++++++++ .../diagram-interchange-decision-service.dmn | 18 ++++++++++ ...change-decision-with-listed-input-data.dmn | 18 ++++++++++ .../diagram-interchange-dish-example.dmn | 18 ++++++++++ ...gram-interchange-shape-with-label-text.dmn | 18 ++++++++++ .../dmn-1_2--examples/README.md | 17 ++++++++++ .../Chapter 11 Example.dmn | 18 ++++++++++ .../Financial.dmn | 19 +++++++++++ .../Loan info.dmn | 18 ++++++++++ .../Recommended Loan Products.dmn | 18 ++++++++++ .../diagram-interchange-decision-service.dmn | 18 ++++++++++ ...change-decision-with-listed-input-data.dmn | 18 ++++++++++ .../diagram-interchange-dish-example.dmn | 18 ++++++++++ ...gram-interchange-shape-with-label-text.dmn | 18 ++++++++++ .../dmn-1_3--examples/README.md | 17 ++++++++++ .../Chapter 11 Example.dmn | 19 +++++++++++ .../Financial.dmn | 19 +++++++++++ .../Loan info.dmn | 18 ++++++++++ .../Recommended Loan Products.dmn | 18 ++++++++++ .../diagram-interchange-decision-service.dmn | 18 ++++++++++ ...change-decision-with-listed-input-data.dmn | 18 ++++++++++ .../diagram-interchange-dish-example.dmn | 18 ++++++++++ ...gram-interchange-shape-with-label-text.dmn | 18 ++++++++++ .../dmn-1_4--examples/README.md | 17 ++++++++++ .../tests-data--manual/other/attachment.dmn | 18 ++++++++++ .../other/decisionAndInput.dmn | 18 ++++++++++ .../other/decisionAndInputWithAddition.dmn | 18 ++++++++++ .../decisionAndInput_wrongSequenceOrder.dmn | 18 ++++++++++ .../tests-data--manual/other/empty13.dmn | 18 ++++++++++ .../tests-data--manual/other/external.dmn | 18 ++++++++++ .../tests-data--manual/other/list.dmn | 18 ++++++++++ .../tests-data--manual/other/list2.dmn | 18 ++++++++++ .../tests-data--manual/other/sample12.dmn | 19 +++++++++++ packages/dmn-testing-models/README.md | 17 ++++++++++ packages/dmn-vscode-extension/CHANGELOG.md | 17 ++++++++++ packages/dmn-vscode-extension/README.md | 17 ++++++++++ packages/editor/README.md | 17 ++++++++++ packages/envelope-bus/README.md | 17 ++++++++++ packages/extended-services-java/README.md | 17 ++++++++++ packages/extended-services/README.md | 17 ++++++++++ .../extended-services/scripts/macos/build.sh | 19 ++++++++++- packages/form-generation-tool/README.md | 17 ++++++++++ packages/i18n/README.md | 17 ++++++++++ packages/i18n/examples/react.md | 17 ++++++++++ packages/i18n/examples/typescript.md | 17 ++++++++++ packages/image-env-to-json/README.md | 17 ++++++++++ .../import-java-classes-component/README.md | 17 ++++++++++ .../jbpm-quarkus-devui-deployment/pom.xml | 34 +++++++++---------- .../jbpm-quarkus-devui-runtime/pom.xml | 34 +++++++++---------- packages/jbpm-quarkus-devui/pom.xml | 34 +++++++++---------- packages/json-yaml-language-service/README.md | 17 ++++++++++ .../k8s-yaml-to-apiserver-requests/README.md | 17 ++++++++++ packages/keyboard-shortcuts/README.md | 17 ++++++++++ packages/kie-bc-editors/README.md | 17 ++++++++++ .../README.md | 17 ++++++++++ .../resources/MultipleInstanceSubprocess.bpmn | 18 ++++++++++ .../resources/ProcessWithCollaboration.bpmn | 18 ++++++++++ .../resources/ProcessWithGenerics.bpmn | 18 ++++++++++ .../e2e-tests/resources/SaveAssetTest.bpmn | 19 +++++++++++ .../e2e-tests/resources/UserTask.bpmn | 18 ++++++++++ .../e2e-tests/resources/demo-expression.dmn | 19 +++++++++++ .../e2e-tests/resources/demo.bpmn | 18 ++++++++++ .../e2e-tests/resources/demo.dmn | 19 +++++++++++ .../e2e-tests/resources/demo.pmml | 19 +++++++++++ .../e2e-tests/resources/demo.scesim | 19 +++++++++++ .../e2e-tests/resources/example.bpmn | 18 ++++++++++ .../e2e-tests/resources/reusable-model.dmn | 19 +++++++++++ .../java/org/kie/businessapp/process-wid.bpmn | 19 +++++++++++ packages/kie-editors-standalone/README.md | 17 ++++++++++ .../cypress/fixtures/Traffic Violation.dmn | 20 ++++++++++- .../cypress/fixtures/call centre drd.dmn | 19 +++++++++++ .../cypress/fixtures/process-string.bpmn | 19 +++++++++++ .../cypress/fixtures/process-wid.bpmn | 19 +++++++++++ .../resources/processWithWidDefinition.bpmn2 | 19 +++++++++++ packages/kie-sandbox-distribution/README.md | 17 ++++++++++ .../docker-compose.yaml | 19 +++++++++++ .../README.md | 17 ++++++++++ packages/kie-sandbox-fs/README.md | 17 ++++++++++ packages/kie-sandbox-helm-chart/README.md | 17 ++++++++++ packages/kie-sandbox-helm-chart/src/README.md | 17 ++++++++++ .../src/charts/cors_proxy/README.md | 17 ++++++++++ .../src/charts/cors_proxy/values.yaml | 19 +++++++++++ .../src/charts/extended_services/README.md | 17 ++++++++++ .../src/charts/extended_services/values.yaml | 19 +++++++++++ .../src/charts/kie_sandbox/README.md | 17 ++++++++++ .../src/charts/kie_sandbox/values.yaml | 19 +++++++++++ .../src/values-kubernetes.yaml | 19 +++++++++++ .../src/values-minikube-nginx.yaml | 19 +++++++++++ .../src/values-openshift.yaml | 19 +++++++++++ .../kie-sandbox-helm-chart/src/values.yaml | 19 +++++++++++ packages/kie-sandbox-image/README.md | 17 ++++++++++ packages/kie-sandbox-image/entrypoint.sh | 18 ++++++++++ packages/kn-plugin-workflow/.gitignore | 18 ++++++++++ packages/kn-plugin-workflow/README.md | 17 ++++++++++ packages/kogito-management-console/README.md | 17 ++++++++++ .../kogito-management-console/entrypoint.sh | 18 ++++++++++ packages/kogito-serverless-operator/README.md | 17 ++++++++++ .../bundle/metadata/annotations.yaml | 19 +++++++++++ .../config/crd/kustomization.yaml | 19 +++++++++++ .../config/crd/kustomizeconfig.yaml | 19 +++++++++++ .../cainjection_in_sonataflowbuilds.yaml | 19 +++++++++++ ...jection_in_sonataflowclusterplatforms.yaml | 19 +++++++++++ .../cainjection_in_sonataflowplatforms.yaml | 19 +++++++++++ .../patches/cainjection_in_sonataflows.yaml | 19 +++++++++++ .../patches/webhook_in_sonataflowbuilds.yaml | 19 +++++++++++ ...webhook_in_sonataflowclusterplatforms.yaml | 19 +++++++++++ .../webhook_in_sonataflowplatforms.yaml | 19 +++++++++++ .../crd/patches/webhook_in_sonataflows.yaml | 19 +++++++++++ .../default/controllers_config_patch.yaml | 19 +++++++++++ .../config/default/kustomization.yaml | 19 +++++++++++ .../default/manager_auth_proxy_patch.yaml | 19 +++++++++++ .../config/default/manager_config_patch.yaml | 19 +++++++++++ .../manager/controller_manager_config.yaml | 19 +++++++++++ .../config/manager/kustomization.yaml | 19 +++++++++++ .../config/manager/manager.yaml | 19 +++++++++++ .../config/manifests/kustomization.yaml | 19 +++++++++++ .../config/prometheus/kustomization.yaml | 19 +++++++++++ .../config/prometheus/monitor.yaml | 19 +++++++++++ .../rbac/auth_proxy_client_clusterrole.yaml | 19 +++++++++++ .../config/rbac/auth_proxy_role.yaml | 19 +++++++++++ .../config/rbac/auth_proxy_role_binding.yaml | 19 +++++++++++ .../config/rbac/auth_proxy_service.yaml | 19 +++++++++++ .../config/rbac/builder_role.yaml | 19 +++++++++++ .../config/rbac/builder_role_binding.yaml | 19 +++++++++++ .../config/rbac/kustomization.yaml | 19 +++++++++++ .../config/rbac/leader_election_role.yaml | 19 +++++++++++ .../rbac/leader_election_role_binding.yaml | 19 +++++++++++ .../config/rbac/openshift_role.yaml | 19 +++++++++++ .../config/rbac/openshift_role_binding.yaml | 19 +++++++++++ .../rbac/operator_role_binding_leases.yaml | 19 +++++++++++ .../config/rbac/operator_role_leases.yaml | 19 +++++++++++ .../config/rbac/role_binding.yaml | 19 +++++++++++ .../config/rbac/service_account.yaml | 19 +++++++++++ .../config/rbac/service_discovery_role.yaml | 19 +++++++++++ .../rbac/service_discovery_role_binding.yaml | 19 +++++++++++ .../config/rbac/sonataflow_editor_role.yaml | 19 +++++++++++ .../config/rbac/sonataflow_viewer_role.yaml | 19 +++++++++++ .../rbac/sonataflowbuild_editor_role.yaml | 19 +++++++++++ .../rbac/sonataflowbuild_viewer_role.yaml | 19 +++++++++++ ...sonataflowclusterplatform_editor_role.yaml | 19 +++++++++++ ...rplatform_viewer_cluster_role_binding.yaml | 19 +++++++++++ ...sonataflowclusterplatform_viewer_role.yaml | 19 +++++++++++ .../rbac/sonataflowplatform_editor_role.yaml | 19 +++++++++++ .../rbac/sonataflowplatform_viewer_role.yaml | 19 +++++++++++ .../config/samples/kustomization.yaml | 19 +++++++++++ .../sonataflow.org_v1alpha08_sonataflow.yaml | 19 +++++++++++ ...vmodeWithConfigMapAndExternalResource.yaml | 19 +++++++++++ ...g_v1alpha08_sonataflowclusterplatform.yaml | 19 +++++++++++ ...flow.org_v1alpha08_sonataflowplatform.yaml | 19 +++++++++++ .../config/scorecard/bases/config.yaml | 19 +++++++++++ .../config/scorecard/kustomization.yaml | 19 +++++++++++ .../scorecard/patches/basic.config.yaml | 19 +++++++++++ .../config/scorecard/patches/olm.config.yaml | 19 +++++++++++ .../container-builder/README.md | 17 ++++++++++ ...usingKanikowithCacheAndCustomizations.yaml | 19 +++++++++++ .../PlatformBuild_usingKanikowithCache.yaml | 19 +++++++++++ .../container-builder/examples/app.yaml | 19 +++++++++++ .../hack/btrfs_installed_tag.sh | 4 ++- .../container-builder/hack/btrfs_tag.sh | 4 ++- .../cfg/testdata/controllers-cfg-invalid.yaml | 25 ++++++++------ .../cfg/testdata/controllers-cfg-test.yaml | 25 ++++++++------ .../docs/CONTRIBUTING.md | 17 ++++++++++ .../docs/PIPELINE.md | 17 ++++++++++ .../hack/addheaders.sh | 4 ++- .../hack/bump-version.sh | 5 ++- .../ci/create-kind-cluster-with-registry.sh | 28 ++++++++------- .../hack/ci/install-minikube.sh | 4 ++- .../hack/ci/install-operator-sdk.sh | 5 ++- .../hack/clean-cluster-operators.sh | 4 ++- .../hack/clean-crds.sh | 4 ++- .../hack/clean-stuck-namespaces.sh | 4 ++- .../kogito-serverless-operator/hack/env.sh | 4 ++- .../hack/get-images-sha.sh | 4 ++- .../hack/go-path.sh | 4 ++- .../hack/goimports.sh | 4 ++- .../hack/kube-utils.sh | 4 ++- .../hack/local/build-simple-workflow.sh | 26 ++++++++------ .../hack/local/greeting_example_deploy.sh | 4 ++- .../hack/local/greeting_example_remove.sh | 5 +-- .../hack/local/run-e2e-crc.sh | 4 ++- .../hack/local/run-e2e.sh | 4 ++- .../hack/local/run-operator.sh | 4 ++- .../hack/run-tests.sh | 4 ++- .../images/bundle.yaml | 19 +++++++++++ .../images/manager.yaml | 19 +++++++++++ .../module.yaml | 19 +++++++++++ .../install.sh | 5 ++- .../module.yaml | 19 +++++++++++ .../install.sh | 5 ++- .../module.yaml | 19 +++++++++++ .../kogito_serverless_operator_pipeline.yaml | 19 +++++++++++ ...gito_serverless_operator_pipeline_run.yaml | 19 +++++++++++ .../tekton/role/cluster_role.yaml | 19 +++++++++++ .../tekton/role/cluster_role_binding.yaml | 19 +++++++++++ .../tekton/task/show_workspace_content.yaml | 19 +++++++++++ .../tekton/trigger/trigger_binding.yaml | 19 +++++++++++ .../trigger/trigger_event_listener.yaml | 19 +++++++++++ .../tekton/trigger/trigger_resource.yaml | 19 +++++++++++ .../tekton/trigger/trigger_template.yaml | 19 +++++++++++ .../trigger/webhook_event_listener_route.yaml | 19 +++++++++++ .../tekton/volume/persistent_volume.yaml | 19 +++++++++++ .../01_v1_configmap_subflows.yaml | 4 ++- .../02_appsv1_deployment_eventlistener.yaml | 4 ++- .../order-processing/03_discovery_role.yaml | 4 ++- .../04_v1_configmap_properties.yaml | 4 ++- ...08_sonataflow_devmode_orderprocessing.yaml | 4 ++- .../test/testdata/order-processing/README.md | 17 ++++++++++ .../ephemeral/02-sonataflow_platform.yaml | 25 ++++++++------ .../preview/ephemeral/kustomization.yaml | 25 ++++++++------ ...3-sonataflow_callbackstatetimeouts.sw.yaml | 25 ++++++++------ .../generic_from_platform_cr/01-postgres.yaml | 25 ++++++++------ .../02-sonataflow_platform.yaml | 25 ++++++++------ .../kustomization.yaml | 26 ++++++++------ .../overwritten_by_services/01-postgres.yaml | 25 ++++++++------ .../02-sonataflow_platform.yaml | 25 ++++++++------ .../kustomization.yaml | 25 ++++++++------ .../dev/ephemeral/02-sonataflow_platform.yaml | 25 ++++++++------ .../services/dev/ephemeral/kustomization.yaml | 25 ++++++++------ ...3-sonataflow_callbackstatetimeouts.sw.yaml | 25 ++++++++------ .../services/dev/postgreSQL/01-postgres.yaml | 25 ++++++++------ .../postgreSQL/02-sonataflow_platform.yaml | 25 ++++++++------ .../dev/postgreSQL/kustomization.yaml | 25 ++++++++------ ...4-sonataflow_callbackstatetimeouts.sw.yaml | 25 ++++++++------ .../01-sonataflow_clusterplatform.yaml | 4 ++- .../02-sonataflow_platform.yaml | 25 ++++++++------ .../cluster-wide-ephemeral/kustomization.yaml | 25 ++++++++------ .../02-sonataflow_platform.yaml | 25 ++++++++------ .../ephemeral-data-index/kustomization.yaml | 25 ++++++++------ ...3-sonataflow_callbackstatetimeouts.sw.yaml | 25 ++++++++------ .../02-sonataflow_platform.yaml | 26 ++++++++------ .../ephemeral-job-service/kustomization.yaml | 26 ++++++++------ ...3-sonataflow_callbackstatetimeouts.sw.yaml | 25 ++++++++------ .../02-sonataflow_platform.yaml | 25 ++++++++------ .../kustomization.yaml | 25 ++++++++------ ...3-sonataflow_callbackstatetimeouts.sw.yaml | 25 ++++++++------ .../ephemeral/02-sonataflow_platform.yaml | 25 ++++++++------ .../preview/ephemeral/kustomization.yaml | 25 ++++++++------ ...3-sonataflow_callbackstatetimeouts.sw.yaml | 26 ++++++++------ .../preview/postgreSQL/01-postgres.yaml | 25 ++++++++------ .../postgreSQL/02-sonataflow_platform.yaml | 25 ++++++++------ .../preview/postgreSQL/kustomization.yaml | 25 ++++++++------ ...4-sonataflow_callbackstatetimeouts.sw.yaml | 25 ++++++++------ ...flow.org_v1alpha08_sonataflow-metainf.yaml | 25 ++++++++------ ...ow.org_v1alpha08_sonataflow-simpleops.yaml | 25 ++++++++------ .../sonataflow.org_v1alpha08_sonataflow.yaml | 4 ++- ...flow.org_v1alpha08_sonataflow_devmode.yaml | 4 ++- ...lpha08_sonataflow_devmode_events_http.yaml | 4 ++- ...lpha08_sonataflow_greetings_datainput.yaml | 4 ++- ...ow.org_v1alpha08_sonataflow_vet_event.yaml | 4 ++- ...ataflow.org_v1alpha08_sonataflowbuild.yaml | 4 ++- ...g_v1alpha08_sonataflowclusterplatform.yaml | 4 ++- ...flow.org_v1alpha08_sonataflowplatform.yaml | 4 ++- ...1alpha08_sonataflowplatform_openshift.yaml | 4 ++- ...sonataflowplatform_withCache_minikube.yaml | 4 ++- .../v1_configmap_greetings_datainput.yaml | 4 ++- .../v1_configmap_greetings_staticfiles.yaml | 25 ++++++++------ .../persistence/by_service/01-postgres.yaml | 25 ++++++++------ .../by_service/02-sonataflow_platform.yaml | 25 ++++++++------ ...3-sonataflow_callbackstatetimeouts.sw.yaml | 25 ++++++++------ .../persistence/by_service/kustomization.yaml | 25 ++++++++------ .../01-postgres.yaml | 25 ++++++++------ .../02-sonataflow_platform.yaml | 25 ++++++++------ ...3-sonataflow_callbackstatetimeouts.sw.yaml | 25 ++++++++------ .../kustomization.yaml | 25 ++++++++------ .../01-postgres.yaml | 25 ++++++++------ .../02-sonataflow_platform.yaml | 25 ++++++++------ ...3-sonataflow_callbackstatetimeouts.sw.yaml | 25 ++++++++------ .../kustomization.yaml | 25 ++++++++------ .../01-postgres.yaml | 25 ++++++++------ .../02-sonataflow_platform.yaml | 25 ++++++++------ ...llbackstatetimeouts-no-persistence.sw.yaml | 25 ++++++++------ .../kustomization.yaml | 25 ++++++++------ .../01-postgres.yaml | 25 ++++++++------ .../02-sonataflow_platform.yaml | 25 ++++++++------ ...3-sonataflow_callbackstatetimeouts.sw.yaml | 25 ++++++++------ .../kustomization.yaml | 25 ++++++++------ .../testbdd/README.md | 17 ++++++++++ .../workflowproj/README.md | 17 ++++++++++ .../workflowproj/testdata/valid-asyncapi.yaml | 4 ++- .../testdata/valid-camelroute.yaml | 4 ++- .../workflowproj/testdata/valid-openapi.yaml | 4 ++- packages/kogito-swf-builder/README.md | 17 ++++++++++ packages/kogito-swf-common/README.md | 17 ++++++++++ .../resources/scripts/README.md | 33 ++++++++++++++++++ .../resources/tests/shell/README.md | 17 ++++++++++ packages/kogito-swf-devmode/README.md | 17 ++++++++++ packages/kogito-task-console/README.md | 17 ++++++++++ packages/kogito-task-console/entrypoint.sh | 18 ++++++++++ packages/maven-config-setup-helper/README.md | 17 ++++++++++ packages/monaco-editor/README.md | 17 ++++++++++ packages/notifications/README.md | 17 ++++++++++ packages/online-editor/README.md | 17 ++++++++++ ...kie-sandbox-dev-deployments-resources.yaml | 19 +++++++++++ .../cluster-config/kind-cluster-config.yaml | 19 +++++++++++ .../online-editor/static/samples/Sample.bpmn | 19 +++++++++++ .../online-editor/static/samples/Sample.dmn | 18 ++++++++++ .../online-editor/static/samples/Sample.pmml | 19 +++++++++++ .../e2e/files/testFolder/testScoreCard.pmml | 19 +++++++++++ .../tests/e2e/files/testModel.dmn | 19 +++++++++++ .../tests/e2e/files/testModelBroken.dmn | 19 +++++++++++ .../e2e/files/testModelDocumentation.dmn | 18 ++++++++++ .../e2e/files/testModelWithCustomDataType.dmn | 18 ++++++++++ .../e2e/files/testModelWithoutLayout.dmn | 19 +++++++++++ .../tests/e2e/files/testProcess.bpmn | 19 +++++++++++ .../tests/e2e/files/testScoreCard.pmml | 19 +++++++++++ packages/operating-system/README.md | 17 ++++++++++ .../src/marshaller/model/README.md | 17 ++++++++++ packages/pmml-editor/README.md | 17 ++++++++++ .../fixtures/compound-predicate.pmml | 21 +++++++++++- ...mpty-characteristics-DD-defined-types.pmml | 19 +++++++++++ .../empty-characteristics-DD-defined.pmml | 19 +++++++++++ .../e2e-tests/fixtures/simple-predicate.pmml | 19 +++++++++++ packages/pmml-vscode-extension/CHANGELOG.md | 17 ++++++++++ packages/pmml-vscode-extension/README.md | 17 ++++++++++ packages/python-venv/README.md | 17 ++++++++++ .../README.md | 17 ++++++++++ .../README.md | 17 ++++++++++ packages/scesim-editor/README.md | 17 ++++++++++ .../tests-data--manual/OldEnoughTest.scesim | 19 +++++++++++ .../TrafficViolationTest.scesim | 20 ++++++++++- .../tests-data--manual/simple.scesim | 18 ++++++++++ .../src/main/resources/application.properties | 19 +++++++++++ .../resources/assets/invalid-openapi.yaml | 19 +++++++++++ .../test/resources/assets/invalid.properties | 19 +++++++++++ .../test/resources/assets/valid-openapi.yaml | 19 +++++++++++ .../test/resources/assets/valid.properties | 19 +++++++++++ .../testing-resources/apicurio-local.yml | 19 +++++++++++ .../src/MonitoringReport.dash.yml | 19 +++++++++++ .../src/WorkflowDetails.dash.yml | 19 +++++++++++ .../MockData/customDashboard/age.dash.yaml | 19 +++++++++++ .../customDashboard/products.dash.yaml | 19 +++++++++++ .../.gitignore | 18 ++++++++++ .../appformer-client-api/README.md | 17 ++++++++++ .../checkstyle-suppressions.xml | 20 ++++++++++- .../docs/live-reload-dmn-loader.md | 17 ++++++++++ .../kie-wb-common-stunner/README.md | 17 ++++++++++ .../i18n/StunnerWidgetsConstants.properties | 19 +++++++++++ .../StunnerWidgetsConstants_de.properties | 19 +++++++++++ .../StunnerWidgetsConstants_es.properties | 19 +++++++++++ .../StunnerWidgetsConstants_fr.properties | 19 +++++++++++ .../StunnerWidgetsConstants_ja.properties | 19 +++++++++++ .../processing/traverse/content/README.md | 17 ++++++++++ .../README.md | 17 ++++++++++ .../kie-wb-common-ui/pom.xml | 18 ++++++++++ .../pom.xml | 19 +++++++++++ .../src/main/resources/META-INF/kmodule.xml | 18 ++++++++++ .../pom.xml | 19 +++++++++++ .../src/main/resources/META-INF/kmodule.xml | 18 ++++++++++ .../pom.xml | 19 +++++++++++ .../src/main/resources/META-INF/kmodule.xml | 18 ++++++++++ .../DataModelBackendSuperTypesTest1/pom.xml | 19 +++++++++++ .../src/main/resources/META-INF/kmodule.xml | 18 ++++++++++ .../resources/DataModelBackendTest1/pom.xml | 19 +++++++++++ .../src/main/resources/META-INF/kmodule.xml | 18 ++++++++++ .../resources/DataModelBackendTest2/pom.xml | 19 +++++++++++ .../src/main/resources/META-INF/kmodule.xml | 18 ++++++++++ .../kie-wb-common-widgets/pom.xml | 18 ++++++++++ .../lienzo-core/README.md | 17 ++++++++++ .../lienzo-tests/README.md | 17 ++++++++++ .../java/com/ait/lienzo/test/stub/README.md | 17 ++++++++++ .../sw-editor/README.md | 17 ++++++++++ .../sw-editor/TODOs.md | 17 ++++++++++ .../sw/resources/i18n/SWConstants.properties | 19 +++++++++++ .../sw-editor/sw-editor-kogito-app/README.md | 17 ++++++++++ .../AccumulateRoomReadingsExample.sw.yaml | 19 +++++++++++ .../ApplicantRequestDecisionExample.sw.yaml | 19 +++++++++++ .../AsyncFunctionInvocationExample.sw.yaml | 19 +++++++++++ .../AsyncSubFlowInvocationExample.sw.yaml | 19 +++++++++++ .../selenium/yaml/BookLendingExample.sw.yaml | 19 +++++++++++ .../yaml/CarVitalsCheckExample.sw.yaml | 19 +++++++++++ .../CheckInboxPeriodicallyExample.sw.yaml | 19 +++++++++++ .../yaml/CustomerCreditCheckExample.sw.yaml | 19 +++++++++++ .../yaml/EventBasedGreetingExample.sw.yaml | 19 +++++++++++ ...EventBasedServiceInvocationExample.sw.yaml | 19 +++++++++++ .../yaml/EventBasedSwitchStateExample.sw.yaml | 19 +++++++++++ .../yaml/FillGlassOfWaterExample.sw.yaml | 19 +++++++++++ .../FinalizeCollegeApplicationExample.sw.yaml | 19 +++++++++++ .../yaml/HandleCarAuctionBidExample.sw.yaml | 19 +++++++++++ .../selenium/yaml/HelloWorldExample.sw.yaml | 19 +++++++++++ .../yaml/JobMonitoringExample.sw.yaml | 19 +++++++++++ .../MonitorPatientVitalSignsExample.sw.yaml | 19 +++++++++++ .../yaml/NewPatientOnboardingExample.sw.yaml | 19 +++++++++++ .../NotifyCustomerWorkflowExample.sw.yaml | 19 +++++++++++ .../yaml/ParallelExecutionExample.sw.yaml | 19 +++++++++++ .../yaml/ProcessTransactionsExample.sw.yaml | 19 +++++++++++ .../yaml/ProvisionOrdersExample.sw.yaml | 19 +++++++++++ .../yaml/PurchaseOrderDeadlineExample.sw.yaml | 19 +++++++++++ .../SendCloudEventOnProvisionExample.sw.yaml | 19 +++++++++++ .../yaml/SolveMathProblemsExample.sw.yaml | 19 +++++++++++ .../yaml/main-workflow-definition.sw.yaml | 19 +++++++++++ .../third_party/errai/pom.xml | 18 ++++++++++ .../third_party/gwtproject/pom.xml | 18 ++++++++++ .../third_party/pom.xml | 18 ++++++++++ .../i18n/UberfireConstants_de.properties | 19 +++++++++++ .../i18n/UberfireConstants_pt_BR.properties | 19 +++++++++++ .../i18n/UberfireConstants_zh_CN.properties | 19 +++++++++++ .../i18n/CommonConstants_de.properties | 19 +++++++++++ .../i18n/CommonConstants_pt_BR.properties | 19 +++++++++++ .../i18n/CommonConstants_zh_CN.properties | 19 +++++++++++ .../src/test/resources/logback-test.xml | 18 ++++++++++ .../README.md | 17 ++++++++++ .../README.md | 17 ++++++++++ .../channel/parsers/examples/greeting.yaml | 19 +++++++++++ .../channel/parsers/examples/hiring.yaml | 19 +++++++++++ .../tests/channel/parsers/examples/http.yaml | 19 +++++++++++ .../channel/parsers/examples/message.yaml | 19 +++++++++++ .../parsers/examples/multiplication.yaml | 19 +++++++++++ .../parsers/examples/numberToWords.yaml | 19 +++++++++++ .../channel/parsers/examples/sendMessage.yaml | 19 +++++++++++ .../README.md | 17 ++++++++++ .../CHANGELOG.md | 17 ++++++++++ .../README.md | 17 ++++++++++ .../resources/autocompletion/specs/api.yaml | 19 +++++++++++ .../functions-events/routes/camel.yaml | 19 +++++++++++ .../functions-events/specs/openapi.yaml | 19 +++++++++++ .../resources/greeting-flow/.gitignore | 18 ++++++++++ .../e2e-tests/resources/greeting-flow/pom.xml | 20 ++++++++++- .../src/main/resources/application.properties | 19 +++++++++++ .../src/main/resources/openapi.yaml | 19 +++++++++++ .../syntax-highlight-hello-world.sw.yaml | 19 +++++++++++ .../sonataflow-deployment-webapp/README.md | 17 ++++++++++ packages/sonataflow-quarkus-devui/pom.xml | 34 +++++++++---------- .../pom.xml | 34 +++++++++---------- .../sonataflow-quarkus-devui/pom.xml | 34 +++++++++---------- .../appformer-client-api/README.md | 17 ++++++++++ .../appformer-js-monaco/pom.xml | 18 ++++++++++ .../checkstyle-suppressions.xml | 20 ++++++++++- .../docs/live-reload-dmn-loader.md | 17 ++++++++++ .../pom.xml | 18 ++++++++++ .../Docks.md | 17 ++++++++++ .../pom.xml | 18 ++++++++++ .../client/popup/CustomBusyPopup.ui.xml | 19 +++++++++++ ...rioSimulationEditorConstants_de.properties | 19 +++++++++++ ...SimulationEditorConstants_pt_BR.properties | 19 +++++++++++ ...SimulationEditorConstants_zh_CN.properties | 19 +++++++++++ .../README.md | 17 ++++++++++ .../pom.xml | 18 ++++++++++ .../README.md | 17 ++++++++++ .../pom.xml | 18 ++++++++++ .../README.md | 17 ++++++++++ .../pom.xml | 18 ++++++++++ .../resources/META-INF/ErraiApp.properties | 1 + .../README.md | 17 ++++++++++ .../pom.xml | 18 ++++++++++ .../resources/META-INF/ErraiApp.properties | 1 + .../stunner-editors/drools-wb-screens/pom.xml | 18 ++++++++++ packages/stunner-editors/errai-api/pom.xml | 19 +++++++++++ packages/stunner-editors/errai-bom/pom.xml | 18 ++++++++++ .../errai-cdi/RELEASE-PROCESS.md | 17 ++++++++++ .../errai-cdi/errai-cdi-client/pom.xml | 18 ++++++++++ .../errai-cdi/errai-cdi-shared/pom.xml | 19 +++++++++++ packages/stunner-editors/errai-cdi/pom.xml | 18 ++++++++++ .../stunner-editors/errai-codegen-gwt/pom.xml | 18 ++++++++++ .../stunner-editors/errai-codegen/pom.xml | 18 ++++++++++ packages/stunner-editors/errai-common/pom.xml | 19 +++++++++++ packages/stunner-editors/errai-config/pom.xml | 18 ++++++++++ .../errai-data-binding/pom.xml | 18 ++++++++++ packages/stunner-editors/errai-ioc/pom.xml | 18 ++++++++++ .../resources/META-INF/ErraiApp.properties | 19 +++++++++++ .../errai-javax-enterprise/pom.xml | 18 ++++++++++ .../stunner-editors/errai-reflections/pom.xml | 19 +++++++++++ .../errai-reflections/reflections/pom.xml | 19 +++++++++++ .../inner/resource2-reflections.xml | 18 ++++++++++ .../reflections/resource1-reflections.xml | 18 ++++++++++ packages/stunner-editors/errai-ui/pom.xml | 18 ++++++++++ .../client/res/TestPropertyBundle.properties | 19 +++++++++++ .../res/TestPropertyBundle_de.properties | 19 +++++++++++ .../stunner-editors/errai-validation/pom.xml | 18 ++++++++++ .../kie-wb-common-dmn/README.md | 17 ++++++++++ .../resources/i18n/DMNAPIConstants.properties | 19 +++++++++++ .../i18n/DMNAPIConstants_de.properties | 19 +++++++++++ .../i18n/DMNAPIConstants_es.properties | 19 +++++++++++ .../i18n/DMNAPIConstants_fr.properties | 19 +++++++++++ .../i18n/DMNAPIConstants_ja.properties | 19 +++++++++++ .../resources/META-INF/ErraiApp.properties | 2 +- .../resources/META-INF/ErraiApp.properties | 2 ++ .../src/main/resources/project-defaults.yml | 19 +++++++++++ .../KogitoCommonWebappSwitch.md | 17 ++++++++++ .../README.md | 17 ++++++++++ .../resources/META-INF/ErraiApp.properties | 2 +- .../src/main/webapp/static/sample.dmn | 19 +++++++++++ .../dmn11-expected/0001-filter.dmn | 20 ++++++++++- .../dmn11-expected/0001-input-data-string.dmn | 20 ++++++++++- .../dmn11-expected/0002-input-data-number.dmn | 20 ++++++++++- .../dmn11-expected/0002-string-functions.dmn | 20 ++++++++++- .../0003-input-data-string-allowed-values.dmn | 20 ++++++++++- .../dmn11-expected/0003-iteration.dmn | 20 ++++++++++- .../dmn11-expected/0004-lending.dmn | 20 ++++++++++- .../dmn11-expected/0004-simpletable-U.dmn | 20 ++++++++++- .../0005-literal-invocation.dmn | 20 ++++++++++- .../dmn11-expected/0005-simpletable-A.dmn | 20 ++++++++++- .../dmn11-expected/0006-join.dmn | 20 ++++++++++- .../dmn11-expected/0006-simpletable-P1.dmn | 20 ++++++++++- .../dmn11-expected/0007-date-time.dmn | 20 ++++++++++- .../dmn11-expected/0007-simpletable-P2.dmn | 20 ++++++++++- .../dmn11-expected/0008-LX-arithmetic.dmn | 20 ++++++++++- .../dmn11-expected/0008-listGen.dmn | 20 ++++++++++- .../dmn11-expected/0009-append-flatten.dmn | 20 ++++++++++- .../0009-invocation-arithmetic.dmn | 20 ++++++++++- .../dmn11-expected/0010-concatenate.dmn | 20 ++++++++++- .../dmn11-expected/0010-multi-output-U.dmn | 20 ++++++++++- .../dmn11-expected/0011-insert-remove.dmn | 20 ++++++++++- .../dmn11-expected/0012-list-functions.dmn | 20 ++++++++++- .../dmn11-expected/0013-sort.dmn | 20 ++++++++++- .../dmn11-expected/0014-loan-comparison.dmn | 20 ++++++++++- .../dmn11-expected/0015-all-any.dmn | 20 ++++++++++- .../dmn11-expected/0016-some-every.dmn | 20 ++++++++++- .../dmn11-expected/0017-tableTests.dmn | 20 ++++++++++- .../dmn11-expected/0019-flight-rebooking.dmn | 20 ++++++++++- .../compatibility/dmn11/0001-filter.dmn | 18 ++++++++++ .../dmn11/0001-input-data-string.dmn | 18 ++++++++++ .../dmn11/0002-input-data-number.dmn | 18 ++++++++++ .../dmn11/0002-string-functions.dmn | 18 ++++++++++ .../0003-input-data-string-allowed-values.dmn | 18 ++++++++++ .../compatibility/dmn11/0003-iteration.dmn | 18 ++++++++++ .../compatibility/dmn11/0004-lending.dmn | 18 ++++++++++ .../dmn11/0004-simpletable-U.dmn | 18 ++++++++++ .../dmn11/0005-literal-invocation.dmn | 18 ++++++++++ .../dmn11/0005-simpletable-A.dmn | 18 ++++++++++ .../compatibility/dmn11/0006-join.dmn | 18 ++++++++++ .../dmn11/0006-simpletable-P1.dmn | 18 ++++++++++ .../compatibility/dmn11/0007-date-time.dmn | 18 ++++++++++ .../dmn11/0007-simpletable-P2.dmn | 18 ++++++++++ .../dmn11/0008-LX-arithmetic.dmn | 18 ++++++++++ .../compatibility/dmn11/0008-listGen.dmn | 18 ++++++++++ .../dmn11/0009-append-flatten.dmn | 18 ++++++++++ .../dmn11/0009-invocation-arithmetic.dmn | 18 ++++++++++ .../compatibility/dmn11/0010-concatenate.dmn | 18 ++++++++++ .../dmn11/0010-multi-output-U.dmn | 18 ++++++++++ .../dmn11/0011-insert-remove.dmn | 18 ++++++++++ .../dmn11/0012-list-functions.dmn | 18 ++++++++++ .../compatibility/dmn11/0013-sort.dmn | 18 ++++++++++ .../dmn11/0014-loan-comparison.dmn | 18 ++++++++++ .../compatibility/dmn11/0015-all-any.dmn | 18 ++++++++++ .../compatibility/dmn11/0016-some-every.dmn | 18 ++++++++++ .../compatibility/dmn11/0017-tableTests.dmn | 18 ++++++++++ .../dmn11/0019-flight-rebooking.dmn | 18 ++++++++++ .../dmn12-expected/0001-filter.dmn | 20 ++++++++++- .../dmn12-expected/0001-input-data-string.dmn | 20 ++++++++++- .../dmn12-expected/0002-input-data-number.dmn | 20 ++++++++++- .../dmn12-expected/0002-string-functions.dmn | 20 ++++++++++- .../0003-input-data-string-allowed-values.dmn | 20 ++++++++++- .../dmn12-expected/0003-iteration.dmn | 20 ++++++++++- .../dmn12-expected/0004-lending.dmn | 20 ++++++++++- .../dmn12-expected/0004-simpletable-U.dmn | 20 ++++++++++- .../0005-literal-invocation.dmn | 20 ++++++++++- .../dmn12-expected/0005-simpletable-A.dmn | 20 ++++++++++- .../dmn12-expected/0006-join.dmn | 20 ++++++++++- .../dmn12-expected/0006-simpletable-P1.dmn | 20 ++++++++++- .../dmn12-expected/0007-date-time.dmn | 20 ++++++++++- .../dmn12-expected/0007-simpletable-P2.dmn | 20 ++++++++++- .../dmn12-expected/0008-LX-arithmetic.dmn | 20 ++++++++++- .../dmn12-expected/0008-listGen.dmn | 20 ++++++++++- .../dmn12-expected/0009-append-flatten.dmn | 20 ++++++++++- .../0009-invocation-arithmetic.dmn | 20 ++++++++++- .../dmn12-expected/0010-concatenate.dmn | 20 ++++++++++- .../dmn12-expected/0010-multi-output-U.dmn | 20 ++++++++++- .../dmn12-expected/0011-insert-remove.dmn | 20 ++++++++++- .../dmn12-expected/0012-list-functions.dmn | 20 ++++++++++- .../dmn12-expected/0013-sort.dmn | 20 ++++++++++- .../dmn12-expected/0014-loan-comparison.dmn | 20 ++++++++++- .../dmn12-expected/0016-some-every.dmn | 20 ++++++++++- .../dmn12-expected/0017-tableTests.dmn | 20 ++++++++++- .../dmn12-expected/0020-vacation-days.dmn | 20 ++++++++++- .../dmn12-expected/0021-singleton-list.dmn | 20 ++++++++++- .../0030-user-defined-functions.dmn | 20 ++++++++++- .../0031-user-defined-functions.dmn | 20 ++++++++++- .../dmn12-expected/0032-conditionals.dmn | 20 ++++++++++- .../dmn12-expected/0033-for-loops.dmn | 20 ++++++++++- .../dmn12-expected/0034-drg-scopes.dmn | 20 ++++++++++- .../0035-test-structure-output.dmn | 20 ++++++++++- .../dmn12-expected/0036-dt-variable-input.dmn | 20 ++++++++++- .../0037-dt-on-bkm-implicit-params.dmn | 20 ++++++++++- .../0038-dt-on-bkm-explicit-params.dmn | 20 ++++++++++- .../dmn12-expected/0039-dt-list-semantics.dmn | 20 ++++++++++- .../0040-singlenestedcontext.dmn | 21 ++++++++++-- .../0041-multiple-nestedcontext.dmn | 21 ++++++++++-- .../dmn12-expected/0100-feel-constants.dmn | 20 ++++++++++- .../dmn12-expected/0101-feel-constants.dmn | 20 ++++++++++- .../dmn12-expected/0102-feel-constants.dmn | 20 ++++++++++- .../dmn12-expected/0105-feel-math.dmn | 20 ++++++++++- .../0106-feel-ternary-logic.dmn | 20 ++++++++++- .../0107-feel-ternary-logic-not.dmn | 20 ++++++++++- .../dmn12-expected/0108-first-hitpolicy.dmn | 20 ++++++++++- .../0109-ruleOrder-hitpolicy.dmn | 20 ++++++++++- .../0110-outputOrder-hitpolicy.dmn | 20 ++++++++++- .../0111-first-hitpolicy-singleoutputcol.dmn | 20 ++++++++++- ...112-ruleOrder-hitpolicy-singleinoutcol.dmn | 20 ++++++++++- ...3-outputOrder-hitpolicy-singleinoutcol.dmn | 20 ++++++++++- .../0114-min-collect-hitpolicy.dmn | 20 ++++++++++- .../0115-sum-collect-hitpolicy.dmn | 20 ++++++++++- .../0116-count-collect-hitpolicy.dmn | 20 ++++++++++- .../0117-multi-any-hitpolicy.dmn | 20 ++++++++++- .../0118-multi-priority-hitpolicy.dmn | 20 ++++++++++- .../0119-multi-collect-hitpolicy.dmn | 20 ++++++++++- .../1100-feel-decimal-function.dmn | 20 ++++++++++- .../1101-feel-floor-function.dmn | 20 ++++++++++- .../1102-feel-ceiling-function.dmn | 20 ++++++++++- .../1103-feel-substring-function.dmn | 20 ++++++++++- .../1104-feel-string-length-function.dmn | 20 ++++++++++- .../1105-feel-upper-case-function.dmn | 20 ++++++++++- .../1106-feel-lower-case-function.dmn | 20 ++++++++++- .../1107-feel-substring-before-function.dmn | 20 ++++++++++- .../1108-feel-substring-after-function.dmn | 20 ++++++++++- .../1109-feel-replace-function.dmn | 20 ++++++++++- .../1110-feel-contains-function.dmn | 20 ++++++++++- .../1115-feel-date-function.dmn | 20 ++++++++++- .../1116-feel-time-function.dmn | 20 ++++++++++- .../1117-feel-date-and-time-function.dmn | 20 ++++++++++- .../1120-feel-duration-function.dmn | 20 ++++++++++- ...eel-years-and-months-duration-function.dmn | 20 ++++++++++- .../compatibility/dmn12/0001-filter.dmn | 19 ++++++++++- .../dmn12/0001-input-data-string.dmn | 19 ++++++++++- .../dmn12/0002-input-data-number.dmn | 19 ++++++++++- .../dmn12/0002-string-functions.dmn | 19 ++++++++++- .../0003-input-data-string-allowed-values.dmn | 19 ++++++++++- .../compatibility/dmn12/0003-iteration.dmn | 19 ++++++++++- .../compatibility/dmn12/0004-lending.dmn | 19 ++++++++++- .../dmn12/0004-simpletable-U.dmn | 19 ++++++++++- .../dmn12/0005-literal-invocation.dmn | 19 ++++++++++- .../dmn12/0005-simpletable-A.dmn | 19 ++++++++++- .../compatibility/dmn12/0006-join.dmn | 19 ++++++++++- .../dmn12/0006-simpletable-P1.dmn | 19 ++++++++++- .../compatibility/dmn12/0007-date-time.dmn | 19 ++++++++++- .../dmn12/0007-simpletable-P2.dmn | 19 ++++++++++- .../dmn12/0008-LX-arithmetic.dmn | 19 ++++++++++- .../compatibility/dmn12/0008-listGen.dmn | 19 ++++++++++- .../dmn12/0009-append-flatten.dmn | 19 ++++++++++- .../dmn12/0009-invocation-arithmetic.dmn | 19 ++++++++++- .../compatibility/dmn12/0010-concatenate.dmn | 19 ++++++++++- .../dmn12/0010-multi-output-U.dmn | 19 ++++++++++- .../dmn12/0011-insert-remove.dmn | 19 ++++++++++- .../dmn12/0012-list-functions.dmn | 19 ++++++++++- .../compatibility/dmn12/0013-sort.dmn | 19 ++++++++++- .../dmn12/0014-loan-comparison.dmn | 19 ++++++++++- .../compatibility/dmn12/0016-some-every.dmn | 19 ++++++++++- .../compatibility/dmn12/0017-tableTests.dmn | 19 ++++++++++- .../dmn12/0020-vacation-days.dmn | 19 ++++++++++- .../dmn12/0021-singleton-list.dmn | 19 ++++++++++- .../dmn12/0030-user-defined-functions.dmn | 19 ++++++++++- .../dmn12/0031-user-defined-functions.dmn | 19 ++++++++++- .../compatibility/dmn12/0032-conditionals.dmn | 19 ++++++++++- .../compatibility/dmn12/0033-for-loops.dmn | 19 ++++++++++- .../compatibility/dmn12/0034-drg-scopes.dmn | 19 ++++++++++- .../dmn12/0035-test-structure-output.dmn | 19 ++++++++++- .../dmn12/0036-dt-variable-input.dmn | 19 ++++++++++- .../dmn12/0037-dt-on-bkm-implicit-params.dmn | 19 ++++++++++- .../dmn12/0038-dt-on-bkm-explicit-params.dmn | 19 ++++++++++- .../dmn12/0039-dt-list-semantics.dmn | 19 ++++++++++- .../dmn12/0040-singlenestedcontext.dmn | 19 ++++++++++- .../dmn12/0041-multiple-nestedcontext.dmn | 19 ++++++++++- .../dmn12/0100-feel-constants.dmn | 19 ++++++++++- .../dmn12/0101-feel-constants.dmn | 19 ++++++++++- .../dmn12/0102-feel-constants.dmn | 19 ++++++++++- .../compatibility/dmn12/0105-feel-math.dmn | 19 ++++++++++- .../dmn12/0106-feel-ternary-logic.dmn | 19 ++++++++++- .../dmn12/0107-feel-ternary-logic-not.dmn | 19 ++++++++++- .../dmn12/0108-first-hitpolicy.dmn | 19 ++++++++++- .../dmn12/0109-ruleOrder-hitpolicy.dmn | 19 ++++++++++- .../dmn12/0110-outputOrder-hitpolicy.dmn | 19 ++++++++++- .../0111-first-hitpolicy-singleoutputcol.dmn | 19 ++++++++++- ...112-ruleOrder-hitpolicy-singleinoutcol.dmn | 19 ++++++++++- ...3-outputOrder-hitpolicy-singleinoutcol.dmn | 19 ++++++++++- .../dmn12/0114-min-collect-hitpolicy.dmn | 19 ++++++++++- .../dmn12/0115-sum-collect-hitpolicy.dmn | 19 ++++++++++- .../dmn12/0116-count-collect-hitpolicy.dmn | 19 ++++++++++- .../dmn12/0117-multi-any-hitpolicy.dmn | 19 ++++++++++- .../dmn12/0118-multi-priority-hitpolicy.dmn | 19 ++++++++++- .../dmn12/0119-multi-collect-hitpolicy.dmn | 19 ++++++++++- .../dmn12/1100-feel-decimal-function.dmn | 19 ++++++++++- .../dmn12/1101-feel-floor-function.dmn | 19 ++++++++++- .../dmn12/1102-feel-ceiling-function.dmn | 19 ++++++++++- .../dmn12/1103-feel-substring-function.dmn | 19 ++++++++++- .../1104-feel-string-length-function.dmn | 19 ++++++++++- .../dmn12/1105-feel-upper-case-function.dmn | 19 ++++++++++- .../dmn12/1106-feel-lower-case-function.dmn | 19 ++++++++++- .../1107-feel-substring-before-function.dmn | 19 ++++++++++- .../1108-feel-substring-after-function.dmn | 19 ++++++++++- .../dmn12/1109-feel-replace-function.dmn | 19 ++++++++++- .../dmn12/1110-feel-contains-function.dmn | 19 ++++++++++- .../dmn12/1115-feel-date-function.dmn | 19 ++++++++++- .../dmn12/1116-feel-time-function.dmn | 19 ++++++++++- .../1117-feel-date-and-time-function.dmn | 19 ++++++++++- .../dmn12/1120-feel-duration-function.dmn | 19 ++++++++++- ...eel-years-and-months-duration-function.dmn | 19 ++++++++++- .../dmn13-expected/0001-filter.dmn | 20 ++++++++++- .../dmn13-expected/0001-input-data-string.dmn | 20 ++++++++++- .../dmn13-expected/0002-input-data-number.dmn | 20 ++++++++++- .../dmn13-expected/0002-string-functions.dmn | 20 ++++++++++- .../0003-input-data-string-allowed-values.dmn | 20 ++++++++++- .../dmn13-expected/0003-iteration.dmn | 20 ++++++++++- .../dmn13-expected/0004-lending.dmn | 20 ++++++++++- .../dmn13-expected/0004-simpletable-U.dmn | 20 ++++++++++- .../0005-literal-invocation.dmn | 20 ++++++++++- .../dmn13-expected/0005-simpletable-A.dmn | 20 ++++++++++- .../dmn13-expected/0006-join.dmn | 20 ++++++++++- .../dmn13-expected/0006-simpletable-P1.dmn | 20 ++++++++++- .../dmn13-expected/0007-date-time.dmn | 20 ++++++++++- .../dmn13-expected/0007-simpletable-P2.dmn | 20 ++++++++++- .../dmn13-expected/0008-LX-arithmetic.dmn | 20 ++++++++++- .../dmn13-expected/0008-listGen.dmn | 20 ++++++++++- .../dmn13-expected/0009-append-flatten.dmn | 20 ++++++++++- .../0009-invocation-arithmetic.dmn | 20 ++++++++++- .../dmn13-expected/0010-concatenate.dmn | 20 ++++++++++- .../dmn13-expected/0010-multi-output-U.dmn | 20 ++++++++++- .../dmn13-expected/0011-insert-remove.dmn | 20 ++++++++++- .../dmn13-expected/0012-list-functions.dmn | 20 ++++++++++- .../dmn13-expected/0013-sort.dmn | 20 ++++++++++- .../dmn13-expected/0014-loan-comparison.dmn | 20 ++++++++++- .../dmn13-expected/0016-some-every.dmn | 20 ++++++++++- .../dmn13-expected/0017-tableTests.dmn | 20 ++++++++++- .../dmn13-expected/0020-vacation-days.dmn | 20 ++++++++++- .../dmn13-expected/0021-singleton-list.dmn | 20 ++++++++++- .../0030-user-defined-functions.dmn | 20 ++++++++++- .../0031-user-defined-functions.dmn | 20 ++++++++++- .../dmn13-expected/0032-conditionals.dmn | 20 ++++++++++- .../dmn13-expected/0033-for-loops.dmn | 20 ++++++++++- .../dmn13-expected/0034-drg-scopes.dmn | 20 ++++++++++- .../0035-test-structure-output.dmn | 20 ++++++++++- .../dmn13-expected/0036-dt-variable-input.dmn | 20 ++++++++++- .../0037-dt-on-bkm-implicit-params.dmn | 20 ++++++++++- .../0038-dt-on-bkm-explicit-params.dmn | 20 ++++++++++- .../dmn13-expected/0039-dt-list-semantics.dmn | 20 ++++++++++- .../0040-singlenestedcontext.dmn | 20 ++++++++++- .../0041-multiple-nestedcontext.dmn | 20 ++++++++++- .../dmn13-expected/0050-feel-abs-function.dmn | 20 ++++++++++- .../0051-feel-sqrt-function.dmn | 20 ++++++++++- .../dmn13-expected/0052-feel-exp-function.dmn | 20 ++++++++++- .../dmn13-expected/0053-feel-log-function.dmn | 20 ++++++++++- .../0054-feel-even-function.dmn | 20 ++++++++++- .../dmn13-expected/0055-feel-odd-function.dmn | 20 ++++++++++- .../0056-feel-modulo-function.dmn | 20 ++++++++++- .../dmn13-expected/0057-feel-context.dmn | 20 ++++++++++- .../0058-feel-number-function.dmn | 20 ++++++++++- .../dmn13-expected/0059-feel-all-function.dmn | 20 ++++++++++- .../dmn13-expected/0060-feel-any-function.dmn | 20 ++++++++++- .../0061-feel-median-function.dmn | 20 ++++++++++- .../0062-feel-mode-function.dmn | 20 ++++++++++- .../0063-feel-stddev-function.dmn | 20 ++++++++++- .../dmn13-expected/0064-feel-conjunction.dmn | 20 ++++++++++- .../dmn13-expected/0065-feel-disjunction.dmn | 20 ++++++++++- .../dmn13-expected/0066-feel-negation.dmn | 20 ++++++++++- .../0067-feel-split-function.dmn | 20 ++++++++++- .../dmn13-expected/0068-feel-equality.dmn | 20 ++++++++++- .../dmn13-expected/0069-feel-list.dmn | 20 ++++++++++- .../dmn13-expected/0070-feel-instance-of.dmn | 20 ++++++++++- .../dmn13-expected/0071-feel-between.dmn | 20 ++++++++++- .../dmn13-expected/0072-feel-in.dmn | 19 ++++++++++- .../dmn13-expected/0073-feel-comments.dmn | 20 ++++++++++- .../dmn13-expected/0074-feel-properties.dmn | 20 ++++++++++- .../dmn13-expected/0075-feel-exponent.dmn | 20 ++++++++++- .../0076-feel-external-java.dmn | 20 ++++++++++- .../dmn13-expected/0077-feel-nan.dmn | 20 ++++++++++- .../dmn13-expected/0078-feel-infinity.dmn | 20 ++++++++++- .../0080-feel-getvalue-function.dmn | 20 ++++++++++- .../0081-feel-getentries-function.dmn | 20 ++++++++++- .../dmn13-expected/0082-feel-coercion.dmn | 18 ++++++++++ .../dmn13-expected/0083-feel-unicode.dmn | 20 ++++++++++- .../dmn13-expected/0084-feel-for-loops.dmn | 20 ++++++++++- .../dmn13-expected/0085-decision-services.dmn | 18 ++++++++++ .../dmn13-expected/0086-import.dmn | 20 ++++++++++- .../0087-chapter-11-example.dmn | 18 ++++++++++ .../dmn13-expected/0088-no-decision-logic.dmn | 18 ++++++++++ .../0089-nested-inputdata-imports.dmn | 20 ++++++++++- .../dmn13-expected/0090-feel-paths.dmn | 20 ++++++++++- .../dmn13-expected/0100-feel-constants.dmn | 20 ++++++++++- .../dmn13-expected/0101-feel-constants.dmn | 20 ++++++++++- .../dmn13-expected/0102-feel-constants.dmn | 20 ++++++++++- .../dmn13-expected/0105-feel-math.dmn | 20 ++++++++++- .../0106-feel-ternary-logic.dmn | 20 ++++++++++- .../0107-feel-ternary-logic-not.dmn | 20 ++++++++++- .../dmn13-expected/0108-first-hitpolicy.dmn | 20 ++++++++++- .../0109-ruleOrder-hitpolicy.dmn | 20 ++++++++++- .../0110-outputOrder-hitpolicy.dmn | 20 ++++++++++- .../0111-first-hitpolicy-singleoutputcol.dmn | 20 ++++++++++- ...112-ruleOrder-hitpolicy-singleinoutcol.dmn | 20 ++++++++++- ...3-outputOrder-hitpolicy-singleinoutcol.dmn | 20 ++++++++++- .../0114-min-collect-hitpolicy.dmn | 20 ++++++++++- .../0115-sum-collect-hitpolicy.dmn | 20 ++++++++++- .../0116-count-collect-hitpolicy.dmn | 20 ++++++++++- .../0117-multi-any-hitpolicy.dmn | 20 ++++++++++- .../0118-multi-priority-hitpolicy.dmn | 20 ++++++++++- .../0119-multi-collect-hitpolicy.dmn | 20 ++++++++++- .../1100-feel-decimal-function.dmn | 20 ++++++++++- .../1101-feel-floor-function.dmn | 20 ++++++++++- .../1102-feel-ceiling-function.dmn | 20 ++++++++++- .../1103-feel-substring-function.dmn | 20 ++++++++++- .../1104-feel-string-length-function.dmn | 20 ++++++++++- .../1105-feel-upper-case-function.dmn | 20 ++++++++++- .../1106-feel-lower-case-function.dmn | 20 ++++++++++- .../1107-feel-substring-before-function.dmn | 20 ++++++++++- .../1108-feel-substring-after-function.dmn | 20 ++++++++++- .../1109-feel-replace-function.dmn | 20 ++++++++++- .../1110-feel-contains-function.dmn | 20 ++++++++++- .../1115-feel-date-function.dmn | 20 ++++++++++- .../1116-feel-time-function.dmn | 20 ++++++++++- .../1117-feel-date-and-time-function.dmn | 20 ++++++++++- .../1120-feel-duration-function.dmn | 20 ++++++++++- ...eel-years-and-months-duration-function.dmn | 20 ++++++++++- .../dmn13-expected/Imported_Model.dmn | 20 ++++++++++- .../compatibility/dmn13-expected/Model_B.dmn | 20 ++++++++++- .../compatibility/dmn13-expected/Model_B2.dmn | 20 ++++++++++- .../dmn13-expected/Say_hello_1ID1D.dmn | 20 ++++++++++- .../compatibility/dmn13/0001-filter.dmn | 19 ++++++++++- .../dmn13/0001-input-data-string.dmn | 19 ++++++++++- .../dmn13/0002-input-data-number.dmn | 19 ++++++++++- .../dmn13/0002-string-functions.dmn | 19 ++++++++++- .../0003-input-data-string-allowed-values.dmn | 19 ++++++++++- .../compatibility/dmn13/0003-iteration.dmn | 19 ++++++++++- .../compatibility/dmn13/0004-lending.dmn | 19 ++++++++++- .../dmn13/0004-simpletable-U.dmn | 19 ++++++++++- .../dmn13/0005-literal-invocation.dmn | 19 ++++++++++- .../dmn13/0005-simpletable-A.dmn | 19 ++++++++++- .../compatibility/dmn13/0006-join.dmn | 19 ++++++++++- .../dmn13/0006-simpletable-P1.dmn | 19 ++++++++++- .../compatibility/dmn13/0007-date-time.dmn | 19 ++++++++++- .../dmn13/0007-simpletable-P2.dmn | 19 ++++++++++- .../dmn13/0008-LX-arithmetic.dmn | 19 ++++++++++- .../compatibility/dmn13/0008-listGen.dmn | 19 ++++++++++- .../dmn13/0009-append-flatten.dmn | 19 ++++++++++- .../dmn13/0009-invocation-arithmetic.dmn | 19 ++++++++++- .../compatibility/dmn13/0010-concatenate.dmn | 19 ++++++++++- .../dmn13/0010-multi-output-U.dmn | 19 ++++++++++- .../dmn13/0011-insert-remove.dmn | 19 ++++++++++- .../dmn13/0012-list-functions.dmn | 19 ++++++++++- .../compatibility/dmn13/0013-sort.dmn | 19 ++++++++++- .../dmn13/0014-loan-comparison.dmn | 19 ++++++++++- .../compatibility/dmn13/0016-some-every.dmn | 19 ++++++++++- .../compatibility/dmn13/0017-tableTests.dmn | 19 ++++++++++- .../dmn13/0020-vacation-days.dmn | 19 ++++++++++- .../dmn13/0021-singleton-list.dmn | 19 ++++++++++- .../dmn13/0030-user-defined-functions.dmn | 19 ++++++++++- .../dmn13/0031-user-defined-functions.dmn | 19 ++++++++++- .../compatibility/dmn13/0032-conditionals.dmn | 19 ++++++++++- .../compatibility/dmn13/0033-for-loops.dmn | 19 ++++++++++- .../compatibility/dmn13/0034-drg-scopes.dmn | 19 ++++++++++- .../dmn13/0035-test-structure-output.dmn | 19 ++++++++++- .../dmn13/0036-dt-variable-input.dmn | 19 ++++++++++- .../dmn13/0037-dt-on-bkm-implicit-params.dmn | 19 ++++++++++- .../dmn13/0038-dt-on-bkm-explicit-params.dmn | 19 ++++++++++- .../dmn13/0039-dt-list-semantics.dmn | 19 ++++++++++- .../dmn13/0040-singlenestedcontext.dmn | 19 ++++++++++- .../dmn13/0041-multiple-nestedcontext.dmn | 19 ++++++++++- .../dmn13/0050-feel-abs-function.dmn | 19 ++++++++++- .../dmn13/0051-feel-sqrt-function.dmn | 19 ++++++++++- .../dmn13/0052-feel-exp-function.dmn | 19 ++++++++++- .../dmn13/0053-feel-log-function.dmn | 19 ++++++++++- .../dmn13/0054-feel-even-function.dmn | 19 ++++++++++- .../dmn13/0055-feel-odd-function.dmn | 19 ++++++++++- .../dmn13/0056-feel-modulo-function.dmn | 19 ++++++++++- .../compatibility/dmn13/0057-feel-context.dmn | 19 ++++++++++- .../dmn13/0058-feel-number-function.dmn | 19 ++++++++++- .../dmn13/0059-feel-all-function.dmn | 19 ++++++++++- .../dmn13/0060-feel-any-function.dmn | 19 ++++++++++- .../dmn13/0061-feel-median-function.dmn | 19 ++++++++++- .../dmn13/0062-feel-mode-function.dmn | 19 ++++++++++- .../dmn13/0063-feel-stddev-function.dmn | 19 ++++++++++- .../dmn13/0064-feel-conjunction.dmn | 19 ++++++++++- .../dmn13/0065-feel-disjunction.dmn | 19 ++++++++++- .../dmn13/0066-feel-negation.dmn | 19 ++++++++++- .../dmn13/0067-feel-split-function.dmn | 19 ++++++++++- .../dmn13/0068-feel-equality.dmn | 19 ++++++++++- .../compatibility/dmn13/0069-feel-list.dmn | 19 ++++++++++- .../dmn13/0070-feel-instance-of.dmn | 19 ++++++++++- .../compatibility/dmn13/0071-feel-between.dmn | 19 ++++++++++- .../compatibility/dmn13/0072-feel-in.dmn | 19 ++++++++++- .../dmn13/0073-feel-comments.dmn | 19 ++++++++++- .../dmn13/0074-feel-properties.dmn | 18 ++++++++++ .../dmn13/0075-feel-exponent.dmn | 18 ++++++++++ .../dmn13/0076-feel-external-java.dmn | 18 ++++++++++ .../compatibility/dmn13/0077-feel-nan.dmn | 18 ++++++++++ .../dmn13/0078-feel-infinity.dmn | 18 ++++++++++ .../dmn13/0080-feel-getvalue-function.dmn | 19 ++++++++++- .../dmn13/0081-feel-getentries-function.dmn | 19 ++++++++++- .../dmn13/0082-feel-coercion.dmn | 18 ++++++++++ .../compatibility/dmn13/0083-feel-unicode.dmn | 19 ++++++++++- .../dmn13/0084-feel-for-loops.dmn | 18 ++++++++++ .../dmn13/0085-decision-services.dmn | 18 ++++++++++ .../compatibility/dmn13/0086-import.dmn | 18 ++++++++++ .../dmn13/0087-chapter-11-example.dmn | 18 ++++++++++ .../dmn13/0088-no-decision-logic.dmn | 18 ++++++++++ .../dmn13/0089-nested-inputdata-imports.dmn | 18 ++++++++++ .../compatibility/dmn13/0090-feel-paths.dmn | 19 ++++++++++- .../dmn13/0100-feel-constants.dmn | 19 ++++++++++- .../dmn13/0101-feel-constants.dmn | 19 ++++++++++- .../dmn13/0102-feel-constants.dmn | 19 ++++++++++- .../compatibility/dmn13/0105-feel-math.dmn | 19 ++++++++++- .../dmn13/0106-feel-ternary-logic.dmn | 19 ++++++++++- .../dmn13/0107-feel-ternary-logic-not.dmn | 19 ++++++++++- .../dmn13/0108-first-hitpolicy.dmn | 19 ++++++++++- .../dmn13/0109-ruleOrder-hitpolicy.dmn | 19 ++++++++++- .../dmn13/0110-outputOrder-hitpolicy.dmn | 19 ++++++++++- .../0111-first-hitpolicy-singleoutputcol.dmn | 19 ++++++++++- ...112-ruleOrder-hitpolicy-singleinoutcol.dmn | 19 ++++++++++- ...3-outputOrder-hitpolicy-singleinoutcol.dmn | 19 ++++++++++- .../dmn13/0114-min-collect-hitpolicy.dmn | 19 ++++++++++- .../dmn13/0115-sum-collect-hitpolicy.dmn | 19 ++++++++++- .../dmn13/0116-count-collect-hitpolicy.dmn | 19 ++++++++++- .../dmn13/0117-multi-any-hitpolicy.dmn | 19 ++++++++++- .../dmn13/0118-multi-priority-hitpolicy.dmn | 19 ++++++++++- .../dmn13/0119-multi-collect-hitpolicy.dmn | 19 ++++++++++- .../dmn13/1100-feel-decimal-function.dmn | 19 ++++++++++- .../dmn13/1101-feel-floor-function.dmn | 19 ++++++++++- .../dmn13/1102-feel-ceiling-function.dmn | 19 ++++++++++- .../dmn13/1103-feel-substring-function.dmn | 19 ++++++++++- .../1104-feel-string-length-function.dmn | 19 ++++++++++- .../dmn13/1105-feel-upper-case-function.dmn | 19 ++++++++++- .../dmn13/1106-feel-lower-case-function.dmn | 19 ++++++++++- .../1107-feel-substring-before-function.dmn | 19 ++++++++++- .../1108-feel-substring-after-function.dmn | 19 ++++++++++- .../dmn13/1109-feel-replace-function.dmn | 19 ++++++++++- .../dmn13/1110-feel-contains-function.dmn | 19 ++++++++++- .../dmn13/1115-feel-date-function.dmn | 19 ++++++++++- .../dmn13/1116-feel-time-function.dmn | 19 ++++++++++- .../1117-feel-date-and-time-function.dmn | 19 ++++++++++- .../dmn13/1120-feel-duration-function.dmn | 19 ++++++++++- ...eel-years-and-months-duration-function.dmn | 19 ++++++++++- .../compatibility/dmn13/Imported_Model.dmn | 18 ++++++++++ .../backward/compatibility/dmn13/Model_B.dmn | 18 ++++++++++ .../backward/compatibility/dmn13/Model_B2.dmn | 18 ++++++++++ .../compatibility/dmn13/Say_hello_1ID1D.dmn | 18 ++++++++++ .../DROOLS-4724 (Empty expression).xml | 20 ++++++++++- .../DROOLS-5131 (List expression).xml | 20 ++++++++++- ...LS-5178 (Single Output Clause typeRef).xml | 20 ++++++++++- ...-1181 (Default Output Value - missing).xml | 20 ++++++++++- ...-1181 (Default Output Value - present).xml | 20 ++++++++++- ...del with decision services - expected).xml | 20 ++++++++++- ...odel with decision services - fixture).xml | 19 +++++++++++ ...cision Table Input Clause constraints).xml | 20 ++++++++++- ...6 (DMN model without DMNDI - expected).xml | 19 +++++++++++ ...96 (DMN model without DMNDI - fixture).xml | 19 +++++++++++ ...-371 (Decision Service node locations).xml | 20 ++++++++++- .../selenium/KOGITO-404 (Payment Date).xml | 18 ++++++++++ .../KOGITO-674 (Documentation links).xml | 20 ++++++++++- .../showcase/client/selenium/basic-model.xml | 18 ++++++++++ ...ess-knowledge-model-expression-context.xml | 20 ++++++++++- ...sion-decision-table-default-output-ref.xml | 20 ++++++++++- ...wledge-model-expression-decision-table.xml | 20 ++++++++++- ...ss-knowledge-model-expression-function.xml | 20 ++++++++++- ...-knowledge-model-expression-invocation.xml | 20 ++++++++++- ...ess-knowledge-model-expression-literal.xml | 20 ++++++++++- ...ss-knowledge-model-expression-relation.xml | 20 ++++++++++- .../selenium/business-knowledge-model.xml | 20 ++++++++++- .../showcase/client/selenium/call-center.xml | 18 ++++++++++ .../client/selenium/complex-data-types.xml | 20 ++++++++++- .../client/selenium/complex-diagram.xml | 20 ++++++++++- .../client/selenium/connector-association.xml | 20 ++++++++++- .../connector-authority-requirement.xml | 20 ++++++++++- .../connector-information-requirement.xml | 20 ++++++++++- .../connector-knowledge-requirement.xml | 20 ++++++++++- ...ata-type-simple-constraint-enumeration.xml | 20 ++++++++++- ...data-type-simple-constraint-expression.xml | 20 ++++++++++- .../data-type-simple-constraint-range.xml | 20 ++++++++++- .../client/selenium/data-type-simple-list.xml | 20 ++++++++++- .../client/selenium/data-type-simple.xml | 20 ++++++++++- .../client/selenium/data-type-structure.xml | 20 ++++++++++- .../client/selenium/decision-empty.xml | 20 ++++++++++- ...sion-expression-context-decision-table.xml | 20 ++++++++++- .../decision-expression-context-function.xml | 20 ++++++++++- ...decision-expression-context-invocation.xml | 20 ++++++++++- .../decision-expression-context-literal.xml | 20 ++++++++++- .../decision-expression-context-relation.xml | 20 ++++++++++- .../decision-expression-context-simple.xml | 20 ++++++++++- ...ession-decision-table-rule-annotations.xml | 20 ++++++++++- ...ecision-table-without-rule-annotations.xml | 20 ++++++++++- .../decision-expression-decision-table.xml | 20 ++++++++++- .../decision-expression-function-feel.xml | 20 ++++++++++- .../decision-expression-function-java.xml | 20 ++++++++++- .../decision-expression-function-pmml.xml | 20 ++++++++++- .../decision-expression-invocation.xml | 20 ++++++++++- .../selenium/decision-expression-literal.xml | 20 ++++++++++- .../selenium/decision-expression-relation.xml | 20 ++++++++++- .../selenium/decision-service-empty.xml | 20 ++++++++++- .../decision-service-three-inputs.xml | 20 ++++++++++- .../showcase/client/selenium/input-data.xml | 18 ++++++++++ .../client/selenium/knowledge-source.xml | 20 ++++++++++- .../selenium/multiple-diagrams-with-drg.xml | 20 ++++++++++- .../multiple-diagrams-without-drg.xml | 20 ++++++++++- .../showcase/client/selenium/new-diagram.xml | 20 ++++++++++- .../showcase/client/selenium/node-styling.xml | 20 ++++++++++- .../selenium/single-diagram-with-drg.xml | 20 ++++++++++- .../selenium/single-diagram-without-dmndi.xml | 20 ++++++++++- .../selenium/single-diagram-without-drg.xml | 20 ++++++++++- .../kie-wb-common-dynamic-forms-api/pom.xml | 18 ++++++++++ .../pom.xml | 18 ++++++++++ .../i18n/FormRenderingConstants.properties | 19 +++++++++++ .../i18n/FormRenderingConstants_es.properties | 19 +++++++++++ .../i18n/FormRenderingConstants_fr.properties | 19 +++++++++++ .../i18n/FormRenderingConstants_ja.properties | 19 +++++++++++ .../kie-wb-common-dynamic-forms/pom.xml | 18 ++++++++++ .../pom.xml | 18 ++++++++++ .../pom.xml | 18 ++++++++++ .../pom.xml | 18 ++++++++++ .../i18n/CrudComponentConstants.properties | 19 +++++++++++ .../i18n/CrudComponentConstants_de.properties | 19 +++++++++++ .../i18n/CrudComponentConstants_es.properties | 19 +++++++++++ .../i18n/CrudComponentConstants_fr.properties | 19 +++++++++++ .../i18n/CrudComponentConstants_ja.properties | 19 +++++++++++ .../pom.xml | 18 ++++++++++ .../i18n/ProcessingEngineConstants.properties | 19 +++++++++++ .../ProcessingEngineConstants_de.properties | 19 +++++++++++ .../ProcessingEngineConstants_es.properties | 19 +++++++++++ .../ProcessingEngineConstants_fr.properties | 19 +++++++++++ .../ProcessingEngineConstants_ja.properties | 19 +++++++++++ .../kie-wb-common-forms-commons/pom.xml | 18 ++++++++++ .../kie-wb-common-forms-api/pom.xml | 18 ++++++++++ .../kie-wb-common-forms-core/pom.xml | 18 ++++++++++ .../kie-wb-common-forms/pom.xml | 18 ++++++++++ .../i18n/KogitoAPIConstants.properties | 19 +++++++++++ .../i18n/KogitoAPIConstants_de.properties | 19 +++++++++++ .../i18n/KogitoAPIConstants_es.properties | 19 +++++++++++ .../i18n/KogitoAPIConstants_fr.properties | 19 +++++++++++ .../i18n/KogitoAPIConstants_ja.properties | 19 +++++++++++ .../i18n/KogitoClientConstants.properties | 19 +++++++++++ .../i18n/KogitoClientConstants_de.properties | 19 +++++++++++ .../i18n/KogitoClientConstants_es.properties | 19 +++++++++++ .../i18n/KogitoClientConstants_fr.properties | 20 ++++++++++- .../i18n/KogitoClientConstants_ja.properties | 20 ++++++++++- .../Readme.md | 17 ++++++++++ .../kie-wb-common-kogito-webapp-base/pom.xml | 18 ++++++++++ .../kie-wb-common-stunner/README.md | 17 ++++++++++ .../i18n/StunnerWidgetsConstants.properties | 19 +++++++++++ .../StunnerWidgetsConstants_de.properties | 19 +++++++++++ .../StunnerWidgetsConstants_es.properties | 19 +++++++++++ .../StunnerWidgetsConstants_fr.properties | 19 +++++++++++ .../StunnerWidgetsConstants_ja.properties | 19 +++++++++++ .../processing/traverse/content/README.md | 17 ++++++++++ .../kie-wb-common-stunner-forms/README.md | 17 ++++++++++ .../i18n/FormsClientConstants.properties | 19 +++++++++++ .../i18n/FormsClientConstants_de.properties | 19 +++++++++++ .../i18n/FormsClientConstants_es.properties | 19 +++++++++++ .../i18n/FormsClientConstants_fr.properties | 19 +++++++++++ .../i18n/FormsClientConstants_ja.properties | 19 +++++++++++ .../kie-wb-common-stunner-kogito/README.md | 17 ++++++++++ .../README.md | 17 ++++++++++ .../kie-wb-common-stunner-svg-gen/README.md | 17 ++++++++++ .../i18n/StunnerBPMNConstants.properties | 20 ++++++++++- .../i18n/StunnerBPMNConstants_es.properties | 20 ++++++++++- .../i18n/StunnerBPMNConstants_fr.properties | 20 ++++++++++- .../i18n/StunnerBPMNConstants_ja.properties | 20 ++++++++++- ...erFormsClientFieldsConstants_de.properties | 19 +++++++++++ ...ormsClientFieldsConstants_pt_BR.properties | 19 +++++++++++ ...ormsClientFieldsConstants_zh_CN.properties | 19 +++++++++++ .../client/resources/images/icons/README.md | 17 ++++++++++ .../kie-wb-common-stunner-bpmn-emf/README.md | 17 ++++++++++ .../resources/org/eclipse/emf/emul/README.md | 17 ++++++++++ .../README.md | 17 ++++++++++ .../resources/META-INF/ErraiApp.properties | 4 ++- .../client/selenium/basic-process.bpmn2 | 18 ++++++++++ .../kogito/client/selenium/new-diagram.bpmn2 | 18 ++++++++++ .../README.md | 17 ++++++++++ .../bpmn/client/marshall/testFlight.bpmn | 18 ++++++++++ .../kie-wb-common-ui/pom.xml | 18 ++++++++++ .../CollapseExpandConstants_de.properties | 19 +++++++++++ .../CollapseExpandConstants_pt_BR.properties | 19 +++++++++++ .../CollapseExpandConstants_zh_CN.properties | 19 +++++++++++ .../resources/i18n/CommonConstants.properties | 19 +++++++++++ .../i18n/CommonConstants_de.properties | 19 +++++++++++ .../i18n/CommonConstants_es.properties | 19 +++++++++++ .../i18n/CommonConstants_fr.properties | 19 +++++++++++ .../i18n/CommonConstants_ja.properties | 19 +++++++++++ .../i18n/CommonConstants_pt_BR.properties | 19 +++++++++++ .../i18n/CommonConstants_zh_CN.properties | 19 +++++++++++ .../i18n/HumanReadableConstants.properties | 19 +++++++++++ .../i18n/HumanReadableConstants_de.properties | 19 +++++++++++ .../i18n/HumanReadableConstants_es.properties | 19 +++++++++++ .../i18n/HumanReadableConstants_fr.properties | 19 +++++++++++ .../i18n/HumanReadableConstants_ja.properties | 19 +++++++++++ .../HumanReadableConstants_pt_BR.properties | 19 +++++++++++ .../HumanReadableConstants_zh_CN.properties | 19 +++++++++++ .../KieWorkbenchWidgetsConstants.properties | 19 +++++++++++ ...KieWorkbenchWidgetsConstants_de.properties | 19 +++++++++++ ...KieWorkbenchWidgetsConstants_es.properties | 19 +++++++++++ ...KieWorkbenchWidgetsConstants_fr.properties | 19 +++++++++++ ...KieWorkbenchWidgetsConstants_ja.properties | 19 +++++++++++ ...WorkbenchWidgetsConstants_pt_BR.properties | 19 +++++++++++ ...WorkbenchWidgetsConstants_zh_CN.properties | 19 +++++++++++ ...tConcurrentChangePopupConstants.properties | 19 +++++++++++ ...ncurrentChangePopupConstants_de.properties | 19 +++++++++++ ...ncurrentChangePopupConstants_es.properties | 19 +++++++++++ ...ncurrentChangePopupConstants_fr.properties | 19 +++++++++++ ...ncurrentChangePopupConstants_ja.properties | 19 +++++++++++ ...rrentChangePopupConstants_pt_BR.properties | 19 +++++++++++ ...rrentChangePopupConstants_zh_CN.properties | 19 +++++++++++ .../i18n/ToolsMenuConstants_de.properties | 19 +++++++++++ .../i18n/ToolsMenuConstants_pt_BR.properties | 19 +++++++++++ .../i18n/ToolsMenuConstants_zh_CN.properties | 19 +++++++++++ .../pom.xml | 19 +++++++++++ .../src/main/resources/META-INF/kmodule.xml | 18 ++++++++++ .../pom.xml | 19 +++++++++++ .../src/main/resources/META-INF/kmodule.xml | 18 ++++++++++ .../pom.xml | 19 +++++++++++ .../src/main/resources/META-INF/kmodule.xml | 18 ++++++++++ .../DataModelBackendSuperTypesTest1/pom.xml | 19 +++++++++++ .../src/main/resources/META-INF/kmodule.xml | 18 ++++++++++ .../resources/DataModelBackendTest1/pom.xml | 19 +++++++++++ .../src/main/resources/META-INF/kmodule.xml | 18 ++++++++++ .../resources/DataModelBackendTest2/pom.xml | 19 +++++++++++ .../src/main/resources/META-INF/kmodule.xml | 18 ++++++++++ .../kie-wb-common-widgets/pom.xml | 18 ++++++++++ .../stunner-editors/lienzo-core/README.md | 17 ++++++++++ .../stunner-editors/lienzo-tests/README.md | 17 ++++++++++ .../java/com/ait/lienzo/test/stub/README.md | 17 ++++++++++ .../stunner-editors/lienzo-webapp/README.md | 17 ++++++++++ .../lienzo-webapp/j2cl-usage.md | 17 ++++++++++ .../stunner-editors/lienzo-webapp/links.md | 17 ++++++++++ .../src/main/webapp/WEB-INF/web.xml | 18 ++++++++++ .../i18n/UberfireConstants_de.properties | 19 +++++++++++ .../i18n/UberfireConstants_pt_BR.properties | 19 +++++++++++ .../i18n/UberfireConstants_zh_CN.properties | 19 +++++++++++ .../i18n/CommonConstants_de.properties | 19 +++++++++++ .../i18n/CommonConstants_pt_BR.properties | 19 +++++++++++ .../i18n/CommonConstants_zh_CN.properties | 19 +++++++++++ .../i18n/CommonConstants_de.properties | 19 +++++++++++ .../i18n/CommonConstants_pt_BR.properties | 19 +++++++++++ .../i18n/CommonConstants_zh_CN.properties | 19 +++++++++++ .../i18n/CommonConstants_de.properties | 19 +++++++++++ .../i18n/CommonConstants_pt_BR.properties | 19 +++++++++++ .../i18n/CommonConstants_zh_CN.properties | 19 +++++++++++ .../i18n/CommonConstants_de.properties | 19 +++++++++++ .../i18n/CommonConstants_pt_BR.properties | 19 +++++++++++ .../i18n/CommonConstants_zh_CN.properties | 19 +++++++++++ .../i18n/CoreConstants_de.properties | 19 +++++++++++ .../i18n/CoreConstants_pt_BR.properties | 19 +++++++++++ .../i18n/CoreConstants_zh_CN.properties | 19 +++++++++++ .../i18n/CommonConstants_de.properties | 19 +++++++++++ .../i18n/CommonConstants_pt_BR.properties | 19 +++++++++++ .../i18n/CommonConstants_zh_CN.properties | 19 +++++++++++ .../uberfire-wires/README.md | 17 ++++++++++ .../uberfire-wires-core-grids/pom.xml | 18 ++++++++++ .../pfly/tab/TabPanelWithDropdowns.ui.xml | 1 + .../resources/META-INF/ErraiApp.properties | 19 +++++++++++ .../src/test/resources/logback-test.xml | 18 ++++++++++ packages/switch-expression-ts/README.md | 17 ++++++++++ .../uniforms-bootstrap4-codegen/README.md | 17 ++++++++++ .../uniforms-patternfly-codegen/README.md | 17 ++++++++++ packages/uniforms-patternfly/README.md | 17 ++++++++++ .../README.md | 17 ++++++++++ .../CHANGELOG.md | 17 ++++++++++ .../README.md | 17 ++++++++++ .../simple-dashbuilder-example.dash.yml | 19 +++++++++++ .../CHANGELOG.md | 17 ++++++++++ .../vscode-extension-kie-ba-bundle/README.md | 17 ++++++++++ .../CHANGELOG.md | 17 ++++++++++ .../vscode-extension-kogito-bundle/README.md | 17 ++++++++++ packages/vscode-extension/README.md | 17 ++++++++++ .../README.md | 17 ++++++++++ .../pom.xml | 18 ++++++++++ .../vscode-java-code-completion/README.md | 17 ++++++++++ packages/workspace/README.md | 17 ++++++++++ packages/xml-parser-ts-codegen/README.md | 17 ++++++++++ packages/xml-parser-ts/README.md | 17 ++++++++++ packages/yaml-language-server/README.md | 17 ++++++++++ packages/yard-editor/README.md | 17 ++++++++++ packages/yard-language-service/README.md | 17 ++++++++++ packages/yard-validator-worker/README.md | 17 ++++++++++ .../org/yard/validator/YardValidatorTest.java | 4 +-- .../org/yard/validator/package-prices.yml | 19 +++++++++++ .../org/yard/validator/redundancy.yml | 19 +++++++++++ .../org/yard/validator/service-price.yml | 19 +++++++++++ .../validator/subsumption-the-other-way.yml | 19 +++++++++++ .../org/yard/validator/subsumption.yml | 19 +++++++++++ .../validator/traffic-violation-empty-row.yml | 19 +++++++++++ .../org/yard/validator/traffic-violation.yml | 19 +++++++++++ .../yard/validator/when-then-redundancy.yml | 19 +++++++++++ packages/yard-validator/README.md | 17 ++++++++++ packages/yard-vscode-extension/CHANGELOG.md | 17 ++++++++++ packages/yard-vscode-extension/README.md | 17 ++++++++++ repo/README.md | 17 ++++++++++ scripts/build-env/README.md | 17 ++++++++++ .../reports/junit-report__from-cypress.xml | 18 ++++++++++ .../tests/reports/junit-report__from-jest.xml | 18 ++++++++++ .../reports/junit-report__from-surefire.xml | 18 ++++++++++ scripts/sparse-checkout/README.md | 17 ++++++++++ scripts/sparse-checkout/run.sh | 18 ++++++++++ 1378 files changed, 24383 insertions(+), 1275 deletions(-) diff --git a/.github/actions/.gitignore b/.github/actions/.gitignore index 50d10e91fe5..b0c755f1190 100644 --- a/.github/actions/.gitignore +++ b/.github/actions/.gitignore @@ -1 +1,19 @@ +### +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + !**/node_modules \ No newline at end of file diff --git a/.github/actions/bootstrap/action.yml b/.github/actions/bootstrap/action.yml index c6aea0f6f07..d794ae9b323 100644 --- a/.github/actions/bootstrap/action.yml +++ b/.github/actions/bootstrap/action.yml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + name: "Bootstrap Apache KIE Tools" description: "" diff --git a/.github/actions/checkout-pr/action.yml b/.github/actions/checkout-pr/action.yml index 4b1b8d1be0a..f420441b27f 100644 --- a/.github/actions/checkout-pr/action.yml +++ b/.github/actions/checkout-pr/action.yml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + name: "Checkout PR" description: "" diff --git a/.github/actions/deploy-openshift/action.yml b/.github/actions/deploy-openshift/action.yml index a66eaf7650e..ecb377c23f5 100644 --- a/.github/actions/deploy-openshift/action.yml +++ b/.github/actions/deploy-openshift/action.yml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + name: "Deploy to OpenShift" description: "" diff --git a/.github/actions/setup-ci-patterns/action.yml b/.github/actions/setup-ci-patterns/action.yml index b3ddb660d2b..f69d1254ace 100644 --- a/.github/actions/setup-ci-patterns/action.yml +++ b/.github/actions/setup-ci-patterns/action.yml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + name: "Setup CI patterns" description: "" diff --git a/.github/actions/setup-env/action.yml b/.github/actions/setup-env/action.yml index 3ba0220bc05..64435197d44 100644 --- a/.github/actions/setup-env/action.yml +++ b/.github/actions/setup-env/action.yml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + name: "Setup Apache KIE Tools build environment" description: "" diff --git a/.github/actions/upload-ci-reports-and-artifacts/action.yml b/.github/actions/upload-ci-reports-and-artifacts/action.yml index 1f587d543ac..90dbbeb42a3 100644 --- a/.github/actions/upload-ci-reports-and-artifacts/action.yml +++ b/.github/actions/upload-ci-reports-and-artifacts/action.yml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + name: "Upload CI reports and artifacts" description: "" diff --git a/.github/supporting-files/ci/build-partitioning/README.md b/.github/supporting-files/ci/build-partitioning/README.md index 3533c6c4cac..fdae2ba2607 100644 --- a/.github/supporting-files/ci/build-partitioning/README.md +++ b/.github/supporting-files/ci/build-partitioning/README.md @@ -1,3 +1,20 @@ + + # Build partitioning This script uses `bun` as runtime and has the purpose of splitting the monorepo build in N partitions that, when built, will ensure the entire monorepo has been covered. diff --git a/.github/supporting-files/publish_emscripten_fs/README.md b/.github/supporting-files/publish_emscripten_fs/README.md index 2abcddbdb30..489fbb9073d 100644 --- a/.github/supporting-files/publish_emscripten_fs/README.md +++ b/.github/supporting-files/publish_emscripten_fs/README.md @@ -1,3 +1,20 @@ + + # @kie-tools / Emscripten :: FS Simple `emscripten` build to expose its FS implementation at the `FS` variable. diff --git a/.github/supporting-files/publish_emscripten_fs/build.sh b/.github/supporting-files/publish_emscripten_fs/build.sh index 903725012e6..2c9cb18c78a 100755 --- a/.github/supporting-files/publish_emscripten_fs/build.sh +++ b/.github/supporting-files/publish_emscripten_fs/build.sh @@ -1,4 +1,22 @@ #!/bin/bash +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# rm -rf dist mkdir dist diff --git a/.github/workflows/ci_build.yml b/.github/workflows/ci_build.yml index 36750513e50..b72bc1fc0d8 100644 --- a/.github/workflows/ci_build.yml +++ b/.github/workflows/ci_build.yml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + name: "CI :: Build" on: diff --git a/.github/workflows/ci_check_code_formatting.yml b/.github/workflows/ci_check_code_formatting.yml index 6b39b7f13cc..3a37f7f3cee 100644 --- a/.github/workflows/ci_check_code_formatting.yml +++ b/.github/workflows/ci_check_code_formatting.yml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + name: "CI :: Code formatting" on: diff --git a/.github/workflows/ci_check_dependencies_consistency.yaml b/.github/workflows/ci_check_dependencies_consistency.yaml index 1dcb2f170c5..c87f3dcd250 100644 --- a/.github/workflows/ci_check_dependencies_consistency.yaml +++ b/.github/workflows/ci_check_dependencies_consistency.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + name: "CI :: Dependencies consistency" on: diff --git a/.github/workflows/ci_codeql.yml b/.github/workflows/ci_codeql.yml index 36584f74748..42c436d3f67 100644 --- a/.github/workflows/ci_codeql.yml +++ b/.github/workflows/ci_codeql.yml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + # For most projects, this workflow file will not need changing; you simply need # to commit it to your repository. # diff --git a/.github/workflows/publish_emscripten_fs.yml b/.github/workflows/publish_emscripten_fs.yml index 0f5b708c762..3a630f0a229 100644 --- a/.github/workflows/publish_emscripten_fs.yml +++ b/.github/workflows/publish_emscripten_fs.yml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + name: "Publish emscripten-fs" on: diff --git a/.github/workflows/release_build_extended_services.yml b/.github/workflows/release_build_extended_services.yml index 108f616383f..7d2fef17044 100644 --- a/.github/workflows/release_build_extended_services.yml +++ b/.github/workflows/release_build_extended_services.yml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + name: "Release :: Build (Extended Services)" on: diff --git a/.github/workflows/release_dry_run_extended_services.yml b/.github/workflows/release_dry_run_extended_services.yml index 1f681d830c8..3666753e647 100644 --- a/.github/workflows/release_dry_run_extended_services.yml +++ b/.github/workflows/release_dry_run_extended_services.yml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + name: "Release :: Dry Run (Extended Services)" on: diff --git a/.github/workflows/release_publish_extended_services.yml b/.github/workflows/release_publish_extended_services.yml index 0dfe102d3a7..5b4b19cc193 100644 --- a/.github/workflows/release_publish_extended_services.yml +++ b/.github/workflows/release_publish_extended_services.yml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + name: "Release :: Publish (Extended Services)" on: diff --git a/.github/workflows/staging_build_extended_services.yml b/.github/workflows/staging_build_extended_services.yml index ec56e8f7c76..d79640bbc54 100644 --- a/.github/workflows/staging_build_extended_services.yml +++ b/.github/workflows/staging_build_extended_services.yml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + name: "Staging :: Build (Extended Services)" on: diff --git a/.github/workflows/staging_dry_run_extended_services.yml b/.github/workflows/staging_dry_run_extended_services.yml index 6b04f976e6a..5417cd4a480 100644 --- a/.github/workflows/staging_dry_run_extended_services.yml +++ b/.github/workflows/staging_dry_run_extended_services.yml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + name: "Staging :: Dry Run (Extended Services)" on: diff --git a/.github/workflows/staging_publish_extended_services.yml b/.github/workflows/staging_publish_extended_services.yml index a644bf8db01..24a5e6df384 100644 --- a/.github/workflows/staging_publish_extended_services.yml +++ b/.github/workflows/staging_publish_extended_services.yml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + name: "Staging :: Publish (Extended Services)" on: diff --git a/.gitignore b/.gitignore index 9f637235ec6..00125a134b2 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,21 @@ +### +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + ## ci !/.ci diff --git a/.idea/jsLinters/eslint.xml b/.idea/jsLinters/eslint.xml index 2319055c20a..bc2bd7823c2 100644 --- a/.idea/jsLinters/eslint.xml +++ b/.idea/jsLinters/eslint.xml @@ -1,4 +1,22 @@ + diff --git a/.idea/vcs.xml b/.idea/vcs.xml index 67f800dded4..565e3e5413b 100644 --- a/.idea/vcs.xml +++ b/.idea/vcs.xml @@ -1,4 +1,22 @@ + diff --git a/DISCLAIMER b/DISCLAIMER index 1d3c541c552..08aef0bfcf4 100644 --- a/DISCLAIMER +++ b/DISCLAIMER @@ -15,6 +15,11 @@ aware of (note that this list, by definition, is likely to be incomplete): * Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header * +* Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +* Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + If you are planning to incorporate this work into your product/project, please be aware that you will need to conduct a thorough licensing review to determine the overall implications of including this work. For the current status of this diff --git a/KOGITO_UPGRADE_PROCESS.md b/KOGITO_UPGRADE_PROCESS.md index f7052822622..0f4efb887de 100644 --- a/KOGITO_UPGRADE_PROCESS.md +++ b/KOGITO_UPGRADE_PROCESS.md @@ -1,3 +1,20 @@ + + This guide aims to assist you in the process of upgrading all Kogito dependencies versions present in the kie-tools repository. Typically, these dependencies point to backend-side modules or images diff --git a/NIX_DEV_ENV.md b/NIX_DEV_ENV.md index ea3180e2d04..c18f8d30458 100644 --- a/NIX_DEV_ENV.md +++ b/NIX_DEV_ENV.md @@ -1,3 +1,20 @@ + + ## Nix-based development environment shell ### Installing diff --git a/README.md b/README.md index e7d54c75da8..181832ed529 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,20 @@ + +

--- diff --git a/RELEASE_PROCESS.md b/RELEASE_PROCESS.md index d5da053ab8e..1ce6bffb4b3 100644 --- a/RELEASE_PROCESS.md +++ b/RELEASE_PROCESS.md @@ -1,3 +1,20 @@ + + Release workflow (post 0.13.0) Make sure an associated tag to the release is created on: diff --git a/examples/base64png-editor-chrome-extension/README.md b/examples/base64png-editor-chrome-extension/README.md index 343f808c9b5..2451cb3fbf8 100644 --- a/examples/base64png-editor-chrome-extension/README.md +++ b/examples/base64png-editor-chrome-extension/README.md @@ -1,3 +1,20 @@ + + ## Base64 PNG Editor - Chrome Extension You can read [here](https://blog.kie.org/2020/10/kogito-tooling-examples%e2%80%8a-%e2%80%8ahow-to-create-a-chrome-extension-for-a-custom-editor.html) a step-by-step tutorial of how this Chrome Extension was built. diff --git a/examples/base64png-editor-vscode-extension/README.md b/examples/base64png-editor-vscode-extension/README.md index 31c9a41d849..f7d18b085aa 100644 --- a/examples/base64png-editor-vscode-extension/README.md +++ b/examples/base64png-editor-vscode-extension/README.md @@ -1,3 +1,20 @@ + + ## Base64 PNG Editor - Visual Studio Code Extension You can read [here](https://blog.kie.org/2020/10/kogito-tooling-examples%e2%80%8a-%e2%80%8ahow-to-create-a-vs-code-extension-for-the-custom-editor.html) a step-by-step tutorial of how this VS Code Extension was built. diff --git a/examples/base64png-editor/README.md b/examples/base64png-editor/README.md index f8be5b71f90..a2a32529a51 100644 --- a/examples/base64png-editor/README.md +++ b/examples/base64png-editor/README.md @@ -1,3 +1,20 @@ + + # Base64 PNG Editor You can read [here](https://blog.kie.org/2020/10/kogito-tooling-examples%e2%80%8a-%e2%80%8ahow-to-create-a-custom-editor-in-a-react-application.html) a step-by-step tutorial of how this custom Editor was built. diff --git a/examples/commit-message-validation-service/README.md b/examples/commit-message-validation-service/README.md index fc2aba4d341..b44b746c34f 100644 --- a/examples/commit-message-validation-service/README.md +++ b/examples/commit-message-validation-service/README.md @@ -1,3 +1,20 @@ + + ## Commit message validation service Provides a simple service to check for patterns in a commit message. diff --git a/examples/dashbuilder/kitchensink/Kitchensink.dash.yml b/examples/dashbuilder/kitchensink/Kitchensink.dash.yml index 12981cdd169..23f64a8a26a 100644 --- a/examples/dashbuilder/kitchensink/Kitchensink.dash.yml +++ b/examples/dashbuilder/kitchensink/Kitchensink.dash.yml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + pages: - name: index properties: diff --git a/examples/drools-process-usertasks-quarkus-example/README.md b/examples/drools-process-usertasks-quarkus-example/README.md index 493e71e7191..a1bb4766e26 100644 --- a/examples/drools-process-usertasks-quarkus-example/README.md +++ b/examples/drools-process-usertasks-quarkus-example/README.md @@ -1,3 +1,20 @@ + + # Process user task orchestration ## Description diff --git a/examples/drools-process-usertasks-quarkus-example/pom.xml b/examples/drools-process-usertasks-quarkus-example/pom.xml index 2e4e30a09b3..116ac070637 100644 --- a/examples/drools-process-usertasks-quarkus-example/pom.xml +++ b/examples/drools-process-usertasks-quarkus-example/pom.xml @@ -1,23 +1,21 @@ + diff --git a/examples/ping-pong-view-angular/README.md b/examples/ping-pong-view-angular/README.md index c3ad3cedbb0..784c8f424cf 100644 --- a/examples/ping-pong-view-angular/README.md +++ b/examples/ping-pong-view-angular/README.md @@ -1,3 +1,20 @@ + + # Ping-Pong View :: Angular implementation The Ping-Pong View is an interface that components can implement to be used inside a Ping-Pong View Envelope. diff --git a/examples/ping-pong-view-react/README.md b/examples/ping-pong-view-react/README.md index e16caf8ca98..778db3be501 100644 --- a/examples/ping-pong-view-react/README.md +++ b/examples/ping-pong-view-react/README.md @@ -1,3 +1,20 @@ + + # Ping-Pong View :: React implementation You can read [here](https://blog.kie.org/2020/10/kogito-tooling-examples-how-to-create-a-more-complex-custom-view.html) a step-by-step tutorial of how this custom View was built. diff --git a/examples/ping-pong-view/README.md b/examples/ping-pong-view/README.md index d8b9851502e..8b60bc90ec2 100644 --- a/examples/ping-pong-view/README.md +++ b/examples/ping-pong-view/README.md @@ -1,3 +1,20 @@ + + # Ping-Pong View You can read [here](https://blog.kie.org/2020/10/kogito-tooling-examples-how-to-create-a-more-complex-custom-view.html) a step-by-step tutorial of how this custom View was built. diff --git a/examples/sonataflow-greeting-quarkus-example/README.md b/examples/sonataflow-greeting-quarkus-example/README.md index 987ca4eab22..9588481375e 100644 --- a/examples/sonataflow-greeting-quarkus-example/README.md +++ b/examples/sonataflow-greeting-quarkus-example/README.md @@ -1,3 +1,20 @@ + + # KIE-Tools SonataFlow - Greeting Example ## Description diff --git a/examples/sonataflow-greeting-quarkus-example/pom.xml b/examples/sonataflow-greeting-quarkus-example/pom.xml index 0d083e6e395..0356bee900d 100644 --- a/examples/sonataflow-greeting-quarkus-example/pom.xml +++ b/examples/sonataflow-greeting-quarkus-example/pom.xml @@ -1,23 +1,21 @@ + # 'To do' list View :: VS Code Extension You can read [here](https://blog.kie.org/2020/10/kogito-tooling-examples%e2%80%8a-%e2%80%8ahow-to-create-a-vs-code-extension-for-a-custom-view.html) a step-by-step tutorial of how this VS Code Extension was built. diff --git a/examples/todo-list-view/README.md b/examples/todo-list-view/README.md index dc2eb263f17..631111ab9c7 100644 --- a/examples/todo-list-view/README.md +++ b/examples/todo-list-view/README.md @@ -1,3 +1,20 @@ + + # 'To do' list View You can read [here](https://blog.kie.org/2020/10/kogito-tooling-examples-how-to-create-a-custom-view.html) a step-by-step tutorial of how this custom View was built. diff --git a/examples/webapp/README.md b/examples/webapp/README.md index 9a98d7d0202..a7cb5979ad6 100644 --- a/examples/webapp/README.md +++ b/examples/webapp/README.md @@ -1,3 +1,20 @@ + + ## Webapp Example You can read [here](https://blog.kie.org/2020/10/kogito-tooling-examples%e2%80%8a-%e2%80%8ahow-to-integrate-a-custom-editor-an-existing-editors-and-custom-views.html) a step-by-step tutorial of how create this WebApp. diff --git a/examples/webapp/static/examples/sample.bpmn b/examples/webapp/static/examples/sample.bpmn index 5e743d410e1..9c5894125f3 100644 --- a/examples/webapp/static/examples/sample.bpmn +++ b/examples/webapp/static/examples/sample.bpmn @@ -1,3 +1,22 @@ + + diff --git a/examples/webapp/static/examples/sample.dmn b/examples/webapp/static/examples/sample.dmn index cb20a547f50..ac55ca5bb9d 100644 --- a/examples/webapp/static/examples/sample.dmn +++ b/examples/webapp/static/examples/sample.dmn @@ -1,3 +1,22 @@ + + diff --git a/packages/backend/README.md b/packages/backend/README.md index 4efd6045a52..b589661b9a0 100644 --- a/packages/backend/README.md +++ b/packages/backend/README.md @@ -1 +1,18 @@ + + Apache KIE Tools Backend API diff --git a/packages/boxed-expression-component/README.md b/packages/boxed-expression-component/README.md index bbcde626a6c..c329bec4b4d 100644 --- a/packages/boxed-expression-component/README.md +++ b/packages/boxed-expression-component/README.md @@ -1,3 +1,20 @@ + + # Boxed Expression Editor This editor provides the possibility to edit the expression related to a Decision Node, or to a Business Knowledge Model's function. diff --git a/packages/bpmn-marshaller/tests-data--manual/other/sample-sanitized.bpmn b/packages/bpmn-marshaller/tests-data--manual/other/sample-sanitized.bpmn index 1d4bdcb2f85..c7996023ab8 100644 --- a/packages/bpmn-marshaller/tests-data--manual/other/sample-sanitized.bpmn +++ b/packages/bpmn-marshaller/tests-data--manual/other/sample-sanitized.bpmn @@ -1,3 +1,22 @@ + + + + # 0.32.0 (alpha) - NO-ISSUE - Improved localization for Stunner BPMN Editor diff --git a/packages/bpmn-vscode-extension/README.md b/packages/bpmn-vscode-extension/README.md index ba0cffedbcf..0310ad18171 100644 --- a/packages/bpmn-vscode-extension/README.md +++ b/packages/bpmn-vscode-extension/README.md @@ -1,3 +1,20 @@ + + ## BPMN Editor ![vs-code-support](https://img.shields.io/badge/Visual%20Studio%20Code-1.67.0+-blue.svg) diff --git a/packages/chrome-extension-pack-kogito-kie-editors/e2e-tests/samples/test.bpmn b/packages/chrome-extension-pack-kogito-kie-editors/e2e-tests/samples/test.bpmn index db697fb64c3..f0c9ada963c 100644 --- a/packages/chrome-extension-pack-kogito-kie-editors/e2e-tests/samples/test.bpmn +++ b/packages/chrome-extension-pack-kogito-kie-editors/e2e-tests/samples/test.bpmn @@ -1,3 +1,22 @@ + + diff --git a/packages/chrome-extension-pack-kogito-kie-editors/e2e-tests/samples/test.dmn b/packages/chrome-extension-pack-kogito-kie-editors/e2e-tests/samples/test.dmn index 6b06f8453d6..aaf15fba216 100644 --- a/packages/chrome-extension-pack-kogito-kie-editors/e2e-tests/samples/test.dmn +++ b/packages/chrome-extension-pack-kogito-kie-editors/e2e-tests/samples/test.dmn @@ -1,3 +1,22 @@ + + diff --git a/packages/chrome-extension-serverless-workflow-editor/e2e-tests/samples/chrome_sample.sw.yaml b/packages/chrome-extension-serverless-workflow-editor/e2e-tests/samples/chrome_sample.sw.yaml index 3812443df07..fc9813d1519 100644 --- a/packages/chrome-extension-serverless-workflow-editor/e2e-tests/samples/chrome_sample.sw.yaml +++ b/packages/chrome-extension-serverless-workflow-editor/e2e-tests/samples/chrome_sample.sw.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + id: "chrome_extension_sample_yaml" version: "1.0" specVersion: "0.8" diff --git a/packages/chrome-extension/README.md b/packages/chrome-extension/README.md index 436ea59b56b..26348a2097b 100644 --- a/packages/chrome-extension/README.md +++ b/packages/chrome-extension/README.md @@ -1 +1,18 @@ + + ## Apache KIE Tools GitHub Chrome extension library diff --git a/packages/cors-proxy-image/README.md b/packages/cors-proxy-image/README.md index 3ab9086afb7..93b66396030 100644 --- a/packages/cors-proxy-image/README.md +++ b/packages/cors-proxy-image/README.md @@ -1,3 +1,20 @@ + + # cors-proxy-image This package contains the `Containerfile` and scripts to build a container image for the [@kie-tools/cors-proxy](https://github.com/apache/incubator-kie-tools/packages/cors-proxy). diff --git a/packages/cors-proxy/README.md b/packages/cors-proxy/README.md index 21937d02cae..71b1f1af777 100644 --- a/packages/cors-proxy/README.md +++ b/packages/cors-proxy/README.md @@ -1,3 +1,20 @@ + + # cors-proxy This package contains a `cors-proxy`, which is a simple Node.js application intended to be used to solve CORS issues while connecting our front end tools (online-editor, serverless-logic-web-tools) with external services (GitHub, Bitbucket, OpenShift, Kubernetes...) diff --git a/packages/dashbuilder-editor/README.md b/packages/dashbuilder-editor/README.md index 82a730b7d78..04202c12acf 100644 --- a/packages/dashbuilder-editor/README.md +++ b/packages/dashbuilder-editor/README.md @@ -1,3 +1,20 @@ + + In order to run the development webapp: `pnpm start` diff --git a/packages/dashbuilder-language-service/README.md b/packages/dashbuilder-language-service/README.md index 04f095e9441..1ca58d5f43e 100644 --- a/packages/dashbuilder-language-service/README.md +++ b/packages/dashbuilder-language-service/README.md @@ -1 +1,18 @@ + + ## Dashbuilder Language Service diff --git a/packages/dashbuilder-swf-monitoring-dashboard/src/ServerlessWorkflowAndServerMetrics.dash.yaml b/packages/dashbuilder-swf-monitoring-dashboard/src/ServerlessWorkflowAndServerMetrics.dash.yaml index 9db9bb03b4d..f0c33876c2e 100644 --- a/packages/dashbuilder-swf-monitoring-dashboard/src/ServerlessWorkflowAndServerMetrics.dash.yaml +++ b/packages/dashbuilder-swf-monitoring-dashboard/src/ServerlessWorkflowAndServerMetrics.dash.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + properties: # SWF Charts size swfChartsWidth: 400 diff --git a/packages/dashbuilder-swf-monitoring-dashboard/src/ServerlessWorkflowMetrics.dash.yaml b/packages/dashbuilder-swf-monitoring-dashboard/src/ServerlessWorkflowMetrics.dash.yaml index d2994c7e36e..b159d1d8e2d 100644 --- a/packages/dashbuilder-swf-monitoring-dashboard/src/ServerlessWorkflowMetrics.dash.yaml +++ b/packages/dashbuilder-swf-monitoring-dashboard/src/ServerlessWorkflowMetrics.dash.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + properties: # serverLocation (must end with /) serverLocation: / diff --git a/packages/dashbuilder-viewer-deployment-webapp/static/dashboard.dash.yaml b/packages/dashbuilder-viewer-deployment-webapp/static/dashboard.dash.yaml index 88e26858b58..ea685a0b5c3 100644 --- a/packages/dashbuilder-viewer-deployment-webapp/static/dashboard.dash.yaml +++ b/packages/dashbuilder-viewer-deployment-webapp/static/dashboard.dash.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + datasets: - uuid: products content: >- diff --git a/packages/dashbuilder-viewer/README.md b/packages/dashbuilder-viewer/README.md index 82a730b7d78..04202c12acf 100644 --- a/packages/dashbuilder-viewer/README.md +++ b/packages/dashbuilder-viewer/README.md @@ -1,3 +1,20 @@ + + In order to run the development webapp: `pnpm start` diff --git a/packages/dashbuilder/README.md b/packages/dashbuilder/README.md index 3a09693f5a6..9053fa57aee 100644 --- a/packages/dashbuilder/README.md +++ b/packages/dashbuilder/README.md @@ -1,3 +1,20 @@ + + # DashBuilder DashBuilder is a general purpose dashboard and reporting web app which allows for: diff --git a/packages/dashbuilder/appformer/uberfire-client-api/src/main/resources/org/uberfire/client/resources/i18n/UberfireConstants_de.properties b/packages/dashbuilder/appformer/uberfire-client-api/src/main/resources/org/uberfire/client/resources/i18n/UberfireConstants_de.properties index c1b78cfc4fc..49debe8bcbb 100644 --- a/packages/dashbuilder/appformer/uberfire-client-api/src/main/resources/org/uberfire/client/resources/i18n/UberfireConstants_de.properties +++ b/packages/dashbuilder/appformer/uberfire-client-api/src/main/resources/org/uberfire/client/resources/i18n/UberfireConstants_de.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + # translation auto-copied from project UberFire, version 0.3.0, document org.uberfire/uberfire-client-api/org/uberfire/client/resources/i18n/UberfireConstants, author nmirasch anyResourceTypeDescription=Andere # translation auto-copied from project UberFire, version 0.3.0, document org.uberfire/uberfire-client-api/org/uberfire/client/resources/i18n/UberfireConstants, author nmirasch diff --git a/packages/dashbuilder/appformer/uberfire-client-api/src/main/resources/org/uberfire/client/resources/i18n/UberfireConstants_pt_BR.properties b/packages/dashbuilder/appformer/uberfire-client-api/src/main/resources/org/uberfire/client/resources/i18n/UberfireConstants_pt_BR.properties index aed8aa92978..043c78a62ab 100644 --- a/packages/dashbuilder/appformer/uberfire-client-api/src/main/resources/org/uberfire/client/resources/i18n/UberfireConstants_pt_BR.properties +++ b/packages/dashbuilder/appformer/uberfire-client-api/src/main/resources/org/uberfire/client/resources/i18n/UberfireConstants_pt_BR.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + # translation auto-copied from project UberFire, version 0.3.0, document org.uberfire/uberfire-client-api/org/uberfire/client/resources/i18n/UberfireConstants, author ldelima@redhat.com anyResourceTypeDescription=Outros # translation auto-copied from project UberFire, version 0.3.0, document org.uberfire/uberfire-client-api/org/uberfire/client/resources/i18n/UberfireConstants, author ldelima@redhat.com diff --git a/packages/dashbuilder/appformer/uberfire-client-api/src/main/resources/org/uberfire/client/resources/i18n/UberfireConstants_zh_CN.properties b/packages/dashbuilder/appformer/uberfire-client-api/src/main/resources/org/uberfire/client/resources/i18n/UberfireConstants_zh_CN.properties index 3d5c92fd147..3c83d0854cf 100644 --- a/packages/dashbuilder/appformer/uberfire-client-api/src/main/resources/org/uberfire/client/resources/i18n/UberfireConstants_zh_CN.properties +++ b/packages/dashbuilder/appformer/uberfire-client-api/src/main/resources/org/uberfire/client/resources/i18n/UberfireConstants_zh_CN.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + # translation auto-copied from project UberFire, version 0.3.0, document org.uberfire/uberfire-client-api/org/uberfire/client/resources/i18n/UberfireConstants, author xi.huang anyResourceTypeDescription=其他 # translation auto-copied from project UberFire, version 0.3.0, document org.uberfire/uberfire-client-api/org/uberfire/client/resources/i18n/UberfireConstants, author xi.huang diff --git a/packages/dashbuilder/appformer/uberfire-extensions/uberfire-runtime-plugins/uberfire-runtime-plugins-client/src/main/resources/org/uberfire/ext/plugin/client/resources/i18n/CommonConstants_de.properties b/packages/dashbuilder/appformer/uberfire-extensions/uberfire-runtime-plugins/uberfire-runtime-plugins-client/src/main/resources/org/uberfire/ext/plugin/client/resources/i18n/CommonConstants_de.properties index 8d21f8b52c9..090880a5f51 100644 --- a/packages/dashbuilder/appformer/uberfire-extensions/uberfire-runtime-plugins/uberfire-runtime-plugins-client/src/main/resources/org/uberfire/ext/plugin/client/resources/i18n/CommonConstants_de.properties +++ b/packages/dashbuilder/appformer/uberfire-extensions/uberfire-runtime-plugins/uberfire-runtime-plugins-client/src/main/resources/org/uberfire/ext/plugin/client/resources/i18n/CommonConstants_de.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + TagName=Tagname TagNameHolder=Tagname AddTag=Tag hinzufüen diff --git a/packages/dashbuilder/appformer/uberfire-extensions/uberfire-runtime-plugins/uberfire-runtime-plugins-client/src/main/resources/org/uberfire/ext/plugin/client/resources/i18n/CommonConstants_pt_BR.properties b/packages/dashbuilder/appformer/uberfire-extensions/uberfire-runtime-plugins/uberfire-runtime-plugins-client/src/main/resources/org/uberfire/ext/plugin/client/resources/i18n/CommonConstants_pt_BR.properties index f3cc87054ff..760156f54f6 100644 --- a/packages/dashbuilder/appformer/uberfire-extensions/uberfire-runtime-plugins/uberfire-runtime-plugins-client/src/main/resources/org/uberfire/ext/plugin/client/resources/i18n/CommonConstants_pt_BR.properties +++ b/packages/dashbuilder/appformer/uberfire-extensions/uberfire-runtime-plugins/uberfire-runtime-plugins-client/src/main/resources/org/uberfire/ext/plugin/client/resources/i18n/CommonConstants_pt_BR.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + TagName=Nome da Tag TagNameHolder=nome da tag AddTag=Adicionar Tag diff --git a/packages/dashbuilder/appformer/uberfire-extensions/uberfire-runtime-plugins/uberfire-runtime-plugins-client/src/main/resources/org/uberfire/ext/plugin/client/resources/i18n/CommonConstants_zh_CN.properties b/packages/dashbuilder/appformer/uberfire-extensions/uberfire-runtime-plugins/uberfire-runtime-plugins-client/src/main/resources/org/uberfire/ext/plugin/client/resources/i18n/CommonConstants_zh_CN.properties index 6b820308950..004daaf8638 100644 --- a/packages/dashbuilder/appformer/uberfire-extensions/uberfire-runtime-plugins/uberfire-runtime-plugins-client/src/main/resources/org/uberfire/ext/plugin/client/resources/i18n/CommonConstants_zh_CN.properties +++ b/packages/dashbuilder/appformer/uberfire-extensions/uberfire-runtime-plugins/uberfire-runtime-plugins-client/src/main/resources/org/uberfire/ext/plugin/client/resources/i18n/CommonConstants_zh_CN.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + TagName=标签名称 TagNameHolder=标签名称 AddTag=添加标签 diff --git a/packages/dashbuilder/appformer/uberfire-extensions/uberfire-runtime-plugins/uberfire-runtime-plugins-client/src/main/resources/org/uberfire/ext/plugin/client/resources/i18n/PerspectiveEditorPaletteConstants.properties b/packages/dashbuilder/appformer/uberfire-extensions/uberfire-runtime-plugins/uberfire-runtime-plugins-client/src/main/resources/org/uberfire/ext/plugin/client/resources/i18n/PerspectiveEditorPaletteConstants.properties index b9f7d66f28e..99bdee20255 100644 --- a/packages/dashbuilder/appformer/uberfire-extensions/uberfire-runtime-plugins/uberfire-runtime-plugins-client/src/main/resources/org/uberfire/ext/plugin/client/resources/i18n/PerspectiveEditorPaletteConstants.properties +++ b/packages/dashbuilder/appformer/uberfire-extensions/uberfire-runtime-plugins/uberfire-runtime-plugins-client/src/main/resources/org/uberfire/ext/plugin/client/resources/i18n/PerspectiveEditorPaletteConstants.properties @@ -1,2 +1,21 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + coreComponentGroupName=Core navComponentGroupName=Navigation \ No newline at end of file diff --git a/packages/dashbuilder/appformer/uberfire-extensions/uberfire-runtime-plugins/uberfire-runtime-plugins-client/src/main/resources/org/uberfire/ext/plugin/client/resources/i18n/PerspectiveEditorPaletteConstants_es.properties b/packages/dashbuilder/appformer/uberfire-extensions/uberfire-runtime-plugins/uberfire-runtime-plugins-client/src/main/resources/org/uberfire/ext/plugin/client/resources/i18n/PerspectiveEditorPaletteConstants_es.properties index 6239b6ef5d5..cae24f32823 100644 --- a/packages/dashbuilder/appformer/uberfire-extensions/uberfire-runtime-plugins/uberfire-runtime-plugins-client/src/main/resources/org/uberfire/ext/plugin/client/resources/i18n/PerspectiveEditorPaletteConstants_es.properties +++ b/packages/dashbuilder/appformer/uberfire-extensions/uberfire-runtime-plugins/uberfire-runtime-plugins-client/src/main/resources/org/uberfire/ext/plugin/client/resources/i18n/PerspectiveEditorPaletteConstants_es.properties @@ -1,2 +1,21 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + coreComponentGroupName=Core navComponentGroupName=Navegación \ No newline at end of file diff --git a/packages/dashbuilder/appformer/uberfire-extensions/uberfire-runtime-plugins/uberfire-runtime-plugins-client/src/main/resources/org/uberfire/ext/plugin/client/resources/i18n/PerspectiveEditorPaletteConstants_fr.properties b/packages/dashbuilder/appformer/uberfire-extensions/uberfire-runtime-plugins/uberfire-runtime-plugins-client/src/main/resources/org/uberfire/ext/plugin/client/resources/i18n/PerspectiveEditorPaletteConstants_fr.properties index e5a703d7a8c..9030bb7e095 100644 --- a/packages/dashbuilder/appformer/uberfire-extensions/uberfire-runtime-plugins/uberfire-runtime-plugins-client/src/main/resources/org/uberfire/ext/plugin/client/resources/i18n/PerspectiveEditorPaletteConstants_fr.properties +++ b/packages/dashbuilder/appformer/uberfire-extensions/uberfire-runtime-plugins/uberfire-runtime-plugins-client/src/main/resources/org/uberfire/ext/plugin/client/resources/i18n/PerspectiveEditorPaletteConstants_fr.properties @@ -1,2 +1,21 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + coreComponentGroupName=Noyau navComponentGroupName=Navigation \ No newline at end of file diff --git a/packages/dashbuilder/appformer/uberfire-extensions/uberfire-runtime-plugins/uberfire-runtime-plugins-client/src/main/resources/org/uberfire/ext/plugin/client/resources/i18n/PerspectiveEditorPaletteConstants_ja.properties b/packages/dashbuilder/appformer/uberfire-extensions/uberfire-runtime-plugins/uberfire-runtime-plugins-client/src/main/resources/org/uberfire/ext/plugin/client/resources/i18n/PerspectiveEditorPaletteConstants_ja.properties index 4df574f79b0..bf11c5fccde 100644 --- a/packages/dashbuilder/appformer/uberfire-extensions/uberfire-runtime-plugins/uberfire-runtime-plugins-client/src/main/resources/org/uberfire/ext/plugin/client/resources/i18n/PerspectiveEditorPaletteConstants_ja.properties +++ b/packages/dashbuilder/appformer/uberfire-extensions/uberfire-runtime-plugins/uberfire-runtime-plugins-client/src/main/resources/org/uberfire/ext/plugin/client/resources/i18n/PerspectiveEditorPaletteConstants_ja.properties @@ -1,2 +1,21 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + coreComponentGroupName=コア navComponentGroupName=ナビゲーション \ No newline at end of file diff --git a/packages/dashbuilder/appformer/uberfire-extensions/uberfire-widgets/uberfire-widgets-commons/src/main/resources/org/uberfire/ext/widgets/common/client/resources/i18n/CommonConstants_de.properties b/packages/dashbuilder/appformer/uberfire-extensions/uberfire-widgets/uberfire-widgets-commons/src/main/resources/org/uberfire/ext/widgets/common/client/resources/i18n/CommonConstants_de.properties index cbac20a6f7f..ba84f88dacf 100644 --- a/packages/dashbuilder/appformer/uberfire-extensions/uberfire-widgets/uberfire-widgets-commons/src/main/resources/org/uberfire/ext/widgets/common/client/resources/i18n/CommonConstants_de.properties +++ b/packages/dashbuilder/appformer/uberfire-extensions/uberfire-widgets/uberfire-widgets-commons/src/main/resources/org/uberfire/ext/widgets/common/client/resources/i18n/CommonConstants_de.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + OK=Ok YES=Ja NO=Nein diff --git a/packages/dashbuilder/appformer/uberfire-extensions/uberfire-widgets/uberfire-widgets-commons/src/main/resources/org/uberfire/ext/widgets/common/client/resources/i18n/CommonConstants_pt_BR.properties b/packages/dashbuilder/appformer/uberfire-extensions/uberfire-widgets/uberfire-widgets-commons/src/main/resources/org/uberfire/ext/widgets/common/client/resources/i18n/CommonConstants_pt_BR.properties index b786958733d..650565b7cd4 100644 --- a/packages/dashbuilder/appformer/uberfire-extensions/uberfire-widgets/uberfire-widgets-commons/src/main/resources/org/uberfire/ext/widgets/common/client/resources/i18n/CommonConstants_pt_BR.properties +++ b/packages/dashbuilder/appformer/uberfire-extensions/uberfire-widgets/uberfire-widgets-commons/src/main/resources/org/uberfire/ext/widgets/common/client/resources/i18n/CommonConstants_pt_BR.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + OK=Ok YES=Sim NO=Não diff --git a/packages/dashbuilder/appformer/uberfire-extensions/uberfire-widgets/uberfire-widgets-commons/src/main/resources/org/uberfire/ext/widgets/common/client/resources/i18n/CommonConstants_zh_CN.properties b/packages/dashbuilder/appformer/uberfire-extensions/uberfire-widgets/uberfire-widgets-commons/src/main/resources/org/uberfire/ext/widgets/common/client/resources/i18n/CommonConstants_zh_CN.properties index 3722d57fafd..4350917930f 100644 --- a/packages/dashbuilder/appformer/uberfire-extensions/uberfire-widgets/uberfire-widgets-commons/src/main/resources/org/uberfire/ext/widgets/common/client/resources/i18n/CommonConstants_zh_CN.properties +++ b/packages/dashbuilder/appformer/uberfire-extensions/uberfire-widgets/uberfire-widgets-commons/src/main/resources/org/uberfire/ext/widgets/common/client/resources/i18n/CommonConstants_zh_CN.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + OK=确定 YES=是 NO=否 diff --git a/packages/dashbuilder/appformer/uberfire-extensions/uberfire-widgets/uberfire-widgets-core/uberfire-widgets-core-client/src/main/resources/org/uberfire/ext/widgets/core/client/resources/i18n/CoreConstants_de.properties b/packages/dashbuilder/appformer/uberfire-extensions/uberfire-widgets/uberfire-widgets-core/uberfire-widgets-core-client/src/main/resources/org/uberfire/ext/widgets/core/client/resources/i18n/CoreConstants_de.properties index d94ffe7f3d4..b9895099327 100644 --- a/packages/dashbuilder/appformer/uberfire-extensions/uberfire-widgets/uberfire-widgets-core/uberfire-widgets-core-client/src/main/resources/org/uberfire/ext/widgets/core/client/resources/i18n/CoreConstants_de.properties +++ b/packages/dashbuilder/appformer/uberfire-extensions/uberfire-widgets/uberfire-widgets-core/uberfire-widgets-core-client/src/main/resources/org/uberfire/ext/widgets/core/client/resources/i18n/CoreConstants_de.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + multipleMatchingActivitiesFound=Mehrere übereinstimmende Aktivitäten gefunden. cancel=Abbrechen Previous=Zurück diff --git a/packages/dashbuilder/appformer/uberfire-extensions/uberfire-widgets/uberfire-widgets-core/uberfire-widgets-core-client/src/main/resources/org/uberfire/ext/widgets/core/client/resources/i18n/CoreConstants_pt_BR.properties b/packages/dashbuilder/appformer/uberfire-extensions/uberfire-widgets/uberfire-widgets-core/uberfire-widgets-core-client/src/main/resources/org/uberfire/ext/widgets/core/client/resources/i18n/CoreConstants_pt_BR.properties index 66a9ad58a67..cb1d756feef 100644 --- a/packages/dashbuilder/appformer/uberfire-extensions/uberfire-widgets/uberfire-widgets-core/uberfire-widgets-core-client/src/main/resources/org/uberfire/ext/widgets/core/client/resources/i18n/CoreConstants_pt_BR.properties +++ b/packages/dashbuilder/appformer/uberfire-extensions/uberfire-widgets/uberfire-widgets-core/uberfire-widgets-core-client/src/main/resources/org/uberfire/ext/widgets/core/client/resources/i18n/CoreConstants_pt_BR.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + multipleMatchingActivitiesFound=Nenhuma atividade de combinação múltipla foi encontrada. cancel=Cancelar Previous=Anterior diff --git a/packages/dashbuilder/appformer/uberfire-extensions/uberfire-widgets/uberfire-widgets-core/uberfire-widgets-core-client/src/main/resources/org/uberfire/ext/widgets/core/client/resources/i18n/CoreConstants_zh_CN.properties b/packages/dashbuilder/appformer/uberfire-extensions/uberfire-widgets/uberfire-widgets-core/uberfire-widgets-core-client/src/main/resources/org/uberfire/ext/widgets/core/client/resources/i18n/CoreConstants_zh_CN.properties index f3e6e7266a6..8d38ab63496 100644 --- a/packages/dashbuilder/appformer/uberfire-extensions/uberfire-widgets/uberfire-widgets-core/uberfire-widgets-core-client/src/main/resources/org/uberfire/ext/widgets/core/client/resources/i18n/CoreConstants_zh_CN.properties +++ b/packages/dashbuilder/appformer/uberfire-extensions/uberfire-widgets/uberfire-widgets-core/uberfire-widgets-core-client/src/main/resources/org/uberfire/ext/widgets/core/client/resources/i18n/CoreConstants_zh_CN.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + multipleMatchingActivitiesFound=未找到多个匹配的活动。 cancel=取消 Previous=上一步 diff --git a/packages/dashbuilder/appformer/uberfire-extensions/uberfire-widgets/uberfire-widgets-table/src/main/resources/org/uberfire/ext/widgets/table/client/resources/i18n/CommonConstants_de.properties b/packages/dashbuilder/appformer/uberfire-extensions/uberfire-widgets/uberfire-widgets-table/src/main/resources/org/uberfire/ext/widgets/table/client/resources/i18n/CommonConstants_de.properties index 5faaabd9ef1..c98c61a8607 100644 --- a/packages/dashbuilder/appformer/uberfire-extensions/uberfire-widgets/uberfire-widgets-table/src/main/resources/org/uberfire/ext/widgets/table/client/resources/i18n/CommonConstants_de.properties +++ b/packages/dashbuilder/appformer/uberfire-extensions/uberfire-widgets/uberfire-widgets-table/src/main/resources/org/uberfire/ext/widgets/table/client/resources/i18n/CommonConstants_de.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + ColumnPickerButtonTooltip=Spalten einblenden/ausblenden Items=Posten Of=von diff --git a/packages/dashbuilder/appformer/uberfire-extensions/uberfire-widgets/uberfire-widgets-table/src/main/resources/org/uberfire/ext/widgets/table/client/resources/i18n/CommonConstants_pt_BR.properties b/packages/dashbuilder/appformer/uberfire-extensions/uberfire-widgets/uberfire-widgets-table/src/main/resources/org/uberfire/ext/widgets/table/client/resources/i18n/CommonConstants_pt_BR.properties index ef388ff6a1e..bf5d7bd8a33 100644 --- a/packages/dashbuilder/appformer/uberfire-extensions/uberfire-widgets/uberfire-widgets-table/src/main/resources/org/uberfire/ext/widgets/table/client/resources/i18n/CommonConstants_pt_BR.properties +++ b/packages/dashbuilder/appformer/uberfire-extensions/uberfire-widgets/uberfire-widgets-table/src/main/resources/org/uberfire/ext/widgets/table/client/resources/i18n/CommonConstants_pt_BR.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + ColumnPickerButtonTooltip=Mostrar/ esconder colunas Items=Itens Of=de diff --git a/packages/dashbuilder/appformer/uberfire-extensions/uberfire-widgets/uberfire-widgets-table/src/main/resources/org/uberfire/ext/widgets/table/client/resources/i18n/CommonConstants_zh_CN.properties b/packages/dashbuilder/appformer/uberfire-extensions/uberfire-widgets/uberfire-widgets-table/src/main/resources/org/uberfire/ext/widgets/table/client/resources/i18n/CommonConstants_zh_CN.properties index 572bfa3bf39..9f74cb74c30 100644 --- a/packages/dashbuilder/appformer/uberfire-extensions/uberfire-widgets/uberfire-widgets-table/src/main/resources/org/uberfire/ext/widgets/table/client/resources/i18n/CommonConstants_zh_CN.properties +++ b/packages/dashbuilder/appformer/uberfire-extensions/uberfire-widgets/uberfire-widgets-table/src/main/resources/org/uberfire/ext/widgets/table/client/resources/i18n/CommonConstants_zh_CN.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + ColumnPickerButtonTooltip=显示/隐藏列 Items=条目 Of=之 diff --git a/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-client-views-patternfly/src/main/resources/org/uberfire/client/views/pfly/resources/i18n/Constants.properties b/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-client-views-patternfly/src/main/resources/org/uberfire/client/views/pfly/resources/i18n/Constants.properties index 142ccb09c63..3dc8a9e1528 100644 --- a/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-client-views-patternfly/src/main/resources/org/uberfire/client/views/pfly/resources/i18n/Constants.properties +++ b/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-client-views-patternfly/src/main/resources/org/uberfire/client/views/pfly/resources/i18n/Constants.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + Actions=Actions ApplyLabel=Apply CancelLabel=Cancel diff --git a/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-client-views-patternfly/src/main/resources/org/uberfire/client/views/pfly/resources/i18n/Constants_de.properties b/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-client-views-patternfly/src/main/resources/org/uberfire/client/views/pfly/resources/i18n/Constants_de.properties index 25265ea7f02..e2466ead86c 100644 --- a/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-client-views-patternfly/src/main/resources/org/uberfire/client/views/pfly/resources/i18n/Constants_de.properties +++ b/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-client-views-patternfly/src/main/resources/org/uberfire/client/views/pfly/resources/i18n/Constants_de.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + Actions=Aktionen # translation auto-copied from project KIE Workbench - Common, version 6.0.0, document org.kie.workbench.widgets/kie-wb-common-ui/org/kie/workbench/common/widgets/client/resources/i18n/CommonConstants, author jdimanos January=Januar diff --git a/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-client-views-patternfly/src/main/resources/org/uberfire/client/views/pfly/resources/i18n/Constants_es.properties b/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-client-views-patternfly/src/main/resources/org/uberfire/client/views/pfly/resources/i18n/Constants_es.properties index beaddc62cb5..391f8e8bbac 100644 --- a/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-client-views-patternfly/src/main/resources/org/uberfire/client/views/pfly/resources/i18n/Constants_es.properties +++ b/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-client-views-patternfly/src/main/resources/org/uberfire/client/views/pfly/resources/i18n/Constants_es.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + Actions=Acciones ApplyLabel=Aplicar CancelLabel=Cancelar diff --git a/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-client-views-patternfly/src/main/resources/org/uberfire/client/views/pfly/resources/i18n/Constants_fr.properties b/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-client-views-patternfly/src/main/resources/org/uberfire/client/views/pfly/resources/i18n/Constants_fr.properties index aaccba791f6..3ece9ed1ec3 100644 --- a/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-client-views-patternfly/src/main/resources/org/uberfire/client/views/pfly/resources/i18n/Constants_fr.properties +++ b/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-client-views-patternfly/src/main/resources/org/uberfire/client/views/pfly/resources/i18n/Constants_fr.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + Actions=Actions ApplyLabel=Appliquer CancelLabel=Annuler diff --git a/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-client-views-patternfly/src/main/resources/org/uberfire/client/views/pfly/resources/i18n/Constants_ja.properties b/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-client-views-patternfly/src/main/resources/org/uberfire/client/views/pfly/resources/i18n/Constants_ja.properties index c20677134b7..97c85ff471b 100644 --- a/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-client-views-patternfly/src/main/resources/org/uberfire/client/views/pfly/resources/i18n/Constants_ja.properties +++ b/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-client-views-patternfly/src/main/resources/org/uberfire/client/views/pfly/resources/i18n/Constants_ja.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + Actions=アクション ApplyLabel=適用 CancelLabel=キャンセル diff --git a/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-client-views-patternfly/src/main/resources/org/uberfire/client/views/pfly/resources/i18n/Constants_pt_BR.properties b/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-client-views-patternfly/src/main/resources/org/uberfire/client/views/pfly/resources/i18n/Constants_pt_BR.properties index 6ee2714a476..48853c8380a 100644 --- a/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-client-views-patternfly/src/main/resources/org/uberfire/client/views/pfly/resources/i18n/Constants_pt_BR.properties +++ b/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-client-views-patternfly/src/main/resources/org/uberfire/client/views/pfly/resources/i18n/Constants_pt_BR.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + Actions=Ações January=Janeiro February=Fevereiro diff --git a/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-client-views-patternfly/src/main/resources/org/uberfire/client/views/pfly/resources/i18n/Constants_zh_CN.properties b/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-client-views-patternfly/src/main/resources/org/uberfire/client/views/pfly/resources/i18n/Constants_zh_CN.properties index 487e5961d42..c1d2e64f5b6 100644 --- a/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-client-views-patternfly/src/main/resources/org/uberfire/client/views/pfly/resources/i18n/Constants_zh_CN.properties +++ b/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-client-views-patternfly/src/main/resources/org/uberfire/client/views/pfly/resources/i18n/Constants_zh_CN.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + Actions=动作 # translation auto-copied from project KIE Workbench - Common, version 6.0.0, document org.kie.workbench.widgets/kie-wb-common-ui/org/kie/workbench/common/widgets/client/resources/i18n/CommonConstants, author xi.huang January=一月 diff --git a/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-client-views-patternfly/src/test/resources/META-INF/ErraiApp.properties b/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-client-views-patternfly/src/test/resources/META-INF/ErraiApp.properties index 1fe8a2aa969..0795d3432f0 100644 --- a/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-client-views-patternfly/src/test/resources/META-INF/ErraiApp.properties +++ b/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-client-views-patternfly/src/test/resources/META-INF/ErraiApp.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + errai.ioc.enabled.alternatives=org.uberfire.client.views.pfly.mock.MockPartView \ org.uberfire.client.views.pfly.mock.MockPlaceManager \ org.uberfire.security.impl.authz.RuntimeAuthorizationManager \ diff --git a/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-client/src/main/resources/org/uberfire/client/resources/i18n/WorkbenchConstants_de.properties b/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-client/src/main/resources/org/uberfire/client/resources/i18n/WorkbenchConstants_de.properties index f1f345ea756..d9009b65bc9 100644 --- a/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-client/src/main/resources/org/uberfire/client/resources/i18n/WorkbenchConstants_de.properties +++ b/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-client/src/main/resources/org/uberfire/client/resources/i18n/WorkbenchConstants_de.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + # translation auto-copied from project UberFire, version 0.3.0, document org.uberfire/uberfire-workbench-client/org/uberfire/client/resources/i18n/WorkbenchConstants, author nmirasch maximizePanel=Panel auf Vollbildmodus maximieren minimizePanel=Panel auf vorherige Größe minimieren diff --git a/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-client/src/main/resources/org/uberfire/client/resources/i18n/WorkbenchConstants_pt_BR.properties b/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-client/src/main/resources/org/uberfire/client/resources/i18n/WorkbenchConstants_pt_BR.properties index 47cc6bc87a8..df4b113194f 100644 --- a/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-client/src/main/resources/org/uberfire/client/resources/i18n/WorkbenchConstants_pt_BR.properties +++ b/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-client/src/main/resources/org/uberfire/client/resources/i18n/WorkbenchConstants_pt_BR.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + # translation auto-copied from project UberFire, version 0.3.0, document org.uberfire/uberfire-workbench-client/org/uberfire/client/resources/i18n/WorkbenchConstants, author nmirasch maximizePanel=Aumentar o painel para a tela cheia minimizePanel=Reduzir o painel ao tamanho anterior diff --git a/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-client/src/main/resources/org/uberfire/client/resources/i18n/WorkbenchConstants_zh_CN.properties b/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-client/src/main/resources/org/uberfire/client/resources/i18n/WorkbenchConstants_zh_CN.properties index f74a00bcde3..ea15eb3cf17 100644 --- a/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-client/src/main/resources/org/uberfire/client/resources/i18n/WorkbenchConstants_zh_CN.properties +++ b/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-client/src/main/resources/org/uberfire/client/resources/i18n/WorkbenchConstants_zh_CN.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + # translation auto-copied from project UberFire, version 0.3.0, document org.uberfire/uberfire-workbench-client/org/uberfire/client/resources/i18n/WorkbenchConstants, author nmirasch maximizePanel=最大化面板为全屏 minimizePanel=最小化面板为之前的尺寸 diff --git a/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-client/src/test/resources/logback-test.xml b/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-client/src/test/resources/logback-test.xml index 94aedef0768..112037db054 100644 --- a/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-client/src/test/resources/logback-test.xml +++ b/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-client/src/test/resources/logback-test.xml @@ -1,4 +1,22 @@ + diff --git a/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-processors-tests/src/test/resources/logback-test.xml b/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-processors-tests/src/test/resources/logback-test.xml index 94aedef0768..112037db054 100644 --- a/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-processors-tests/src/test/resources/logback-test.xml +++ b/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-processors-tests/src/test/resources/logback-test.xml @@ -1,4 +1,22 @@ + diff --git a/packages/dashbuilder/checkstyle-suppressions.xml b/packages/dashbuilder/checkstyle-suppressions.xml index 08b1e712327..9d12c1b7f42 100644 --- a/packages/dashbuilder/checkstyle-suppressions.xml +++ b/packages/dashbuilder/checkstyle-suppressions.xml @@ -1,4 +1,22 @@ - + + diff --git a/packages/dashbuilder/dashbuilder-client/dashbuilder-common-client/src/main/resources/org/dashbuilder/common/client/resources/i18n/DashbuilderCommonConstants.properties b/packages/dashbuilder/dashbuilder-client/dashbuilder-common-client/src/main/resources/org/dashbuilder/common/client/resources/i18n/DashbuilderCommonConstants.properties index 27e9b58f73f..c6418194ecf 100644 --- a/packages/dashbuilder/dashbuilder-client/dashbuilder-common-client/src/main/resources/org/dashbuilder/common/client/resources/i18n/DashbuilderCommonConstants.properties +++ b/packages/dashbuilder/dashbuilder-client/dashbuilder-common-client/src/main/resources/org/dashbuilder/common/client/resources/i18n/DashbuilderCommonConstants.properties @@ -1 +1,20 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + clearAll=Clear All \ No newline at end of file diff --git a/packages/dashbuilder/dashbuilder-client/dashbuilder-common-client/src/main/resources/org/dashbuilder/common/client/resources/i18n/DashbuilderCommonConstants_de.properties b/packages/dashbuilder/dashbuilder-client/dashbuilder-common-client/src/main/resources/org/dashbuilder/common/client/resources/i18n/DashbuilderCommonConstants_de.properties index 24bb540d3e8..5188f08c49a 100644 --- a/packages/dashbuilder/dashbuilder-client/dashbuilder-common-client/src/main/resources/org/dashbuilder/common/client/resources/i18n/DashbuilderCommonConstants_de.properties +++ b/packages/dashbuilder/dashbuilder-client/dashbuilder-common-client/src/main/resources/org/dashbuilder/common/client/resources/i18n/DashbuilderCommonConstants_de.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + add=Hinzufügen remove=Entfernen noData=Keine Daten diff --git a/packages/dashbuilder/dashbuilder-client/dashbuilder-common-client/src/main/resources/org/dashbuilder/common/client/resources/i18n/DashbuilderCommonConstants_es.properties b/packages/dashbuilder/dashbuilder-client/dashbuilder-common-client/src/main/resources/org/dashbuilder/common/client/resources/i18n/DashbuilderCommonConstants_es.properties index c676ea129f4..c85a2a0e478 100644 --- a/packages/dashbuilder/dashbuilder-client/dashbuilder-common-client/src/main/resources/org/dashbuilder/common/client/resources/i18n/DashbuilderCommonConstants_es.properties +++ b/packages/dashbuilder/dashbuilder-client/dashbuilder-common-client/src/main/resources/org/dashbuilder/common/client/resources/i18n/DashbuilderCommonConstants_es.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + add=Agregar remove=Quitar noData=No hay datos diff --git a/packages/dashbuilder/dashbuilder-client/dashbuilder-common-client/src/main/resources/org/dashbuilder/common/client/resources/i18n/DashbuilderCommonConstants_fr.properties b/packages/dashbuilder/dashbuilder-client/dashbuilder-common-client/src/main/resources/org/dashbuilder/common/client/resources/i18n/DashbuilderCommonConstants_fr.properties index 95ea56659bc..fe26f89b8c4 100644 --- a/packages/dashbuilder/dashbuilder-client/dashbuilder-common-client/src/main/resources/org/dashbuilder/common/client/resources/i18n/DashbuilderCommonConstants_fr.properties +++ b/packages/dashbuilder/dashbuilder-client/dashbuilder-common-client/src/main/resources/org/dashbuilder/common/client/resources/i18n/DashbuilderCommonConstants_fr.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + add=Ajouter remove=Supprimer noData=Aucune donnée diff --git a/packages/dashbuilder/dashbuilder-client/dashbuilder-common-client/src/main/resources/org/dashbuilder/common/client/resources/i18n/DashbuilderCommonConstants_ja.properties b/packages/dashbuilder/dashbuilder-client/dashbuilder-common-client/src/main/resources/org/dashbuilder/common/client/resources/i18n/DashbuilderCommonConstants_ja.properties index 2232e07ffc8..1947533de9b 100644 --- a/packages/dashbuilder/dashbuilder-client/dashbuilder-common-client/src/main/resources/org/dashbuilder/common/client/resources/i18n/DashbuilderCommonConstants_ja.properties +++ b/packages/dashbuilder/dashbuilder-client/dashbuilder-common-client/src/main/resources/org/dashbuilder/common/client/resources/i18n/DashbuilderCommonConstants_ja.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + add=追加 remove=削除 noData=データなし diff --git a/packages/dashbuilder/dashbuilder-client/dashbuilder-common-client/src/main/resources/org/dashbuilder/common/client/resources/i18n/DashbuilderCommonConstants_pt_BR.properties b/packages/dashbuilder/dashbuilder-client/dashbuilder-common-client/src/main/resources/org/dashbuilder/common/client/resources/i18n/DashbuilderCommonConstants_pt_BR.properties index 519391b0d0c..c475820cf1a 100644 --- a/packages/dashbuilder/dashbuilder-client/dashbuilder-common-client/src/main/resources/org/dashbuilder/common/client/resources/i18n/DashbuilderCommonConstants_pt_BR.properties +++ b/packages/dashbuilder/dashbuilder-client/dashbuilder-common-client/src/main/resources/org/dashbuilder/common/client/resources/i18n/DashbuilderCommonConstants_pt_BR.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + add=Adicionar remove=Remover noData=Nenhum dado diff --git a/packages/dashbuilder/dashbuilder-client/dashbuilder-common-client/src/main/resources/org/dashbuilder/common/client/resources/i18n/DashbuilderCommonConstants_zh_CN.properties b/packages/dashbuilder/dashbuilder-client/dashbuilder-common-client/src/main/resources/org/dashbuilder/common/client/resources/i18n/DashbuilderCommonConstants_zh_CN.properties index 297731f10fa..797bf937caa 100644 --- a/packages/dashbuilder/dashbuilder-client/dashbuilder-common-client/src/main/resources/org/dashbuilder/common/client/resources/i18n/DashbuilderCommonConstants_zh_CN.properties +++ b/packages/dashbuilder/dashbuilder-client/dashbuilder-common-client/src/main/resources/org/dashbuilder/common/client/resources/i18n/DashbuilderCommonConstants_zh_CN.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + add=添加 remove=删除 noData=没有数据 diff --git a/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/AggregateFunctionTypeConstants_de.properties b/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/AggregateFunctionTypeConstants_de.properties index 260fc9ebbec..2e4062da61c 100644 --- a/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/AggregateFunctionTypeConstants_de.properties +++ b/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/AggregateFunctionTypeConstants_de.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + COUNT=Anzahl DISTINCT=Eindeutig AVERAGE=Durchschnitt diff --git a/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/AggregateFunctionTypeConstants_pt_BR.properties b/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/AggregateFunctionTypeConstants_pt_BR.properties index c03a8c5e177..39868465b41 100644 --- a/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/AggregateFunctionTypeConstants_pt_BR.properties +++ b/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/AggregateFunctionTypeConstants_pt_BR.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + COUNT=Contar DISTINCT=Distinguir AVERAGE=Média diff --git a/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/AggregateFunctionTypeConstants_zh_CN.properties b/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/AggregateFunctionTypeConstants_zh_CN.properties index c12191e3c0f..045976d7462 100644 --- a/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/AggregateFunctionTypeConstants_zh_CN.properties +++ b/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/AggregateFunctionTypeConstants_zh_CN.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + COUNT=计数 DISTINCT=区分 AVERAGE=平均值 diff --git a/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/CommonConstants_de.properties b/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/CommonConstants_de.properties index fa8c786b36c..f8a56a11e8b 100644 --- a/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/CommonConstants_de.properties +++ b/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/CommonConstants_de.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + weeks=Wochen exc_text_columns_no_grouping=TEXT-Spalten unterstützen keine Gruppierung. exc_no_client_side_data_export=Export auf Client-Seite ist nicht verfügbar. diff --git a/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/CommonConstants_pt_BR.properties b/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/CommonConstants_pt_BR.properties index 87bb84e8b5d..8ef6de38c5d 100644 --- a/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/CommonConstants_pt_BR.properties +++ b/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/CommonConstants_pt_BR.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + weeks=semanas exc_text_columns_no_grouping=Colunas de TEXTO não suportam o agrupamento. exc_no_client_side_data_export=Exportação do lado do cliente não está disponível. diff --git a/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/CommonConstants_zh_CN.properties b/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/CommonConstants_zh_CN.properties index e24094d4f56..c9b4a039638 100644 --- a/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/CommonConstants_zh_CN.properties +++ b/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/CommonConstants_zh_CN.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + weeks=周 exc_text_columns_no_grouping=TEXT 字段不支持分组。 exc_no_client_side_data_export=客户端的导出不可用。 diff --git a/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/CoreFunctionTypeConstants_de.properties b/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/CoreFunctionTypeConstants_de.properties index d5d81c2c181..096263f14a5 100644 --- a/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/CoreFunctionTypeConstants_de.properties +++ b/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/CoreFunctionTypeConstants_de.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + IS_NULL=ist Null NOT_NULL=nicht Null EQUALS_TO=gleich diff --git a/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/CoreFunctionTypeConstants_pt_BR.properties b/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/CoreFunctionTypeConstants_pt_BR.properties index 19922c60155..618724adffa 100644 --- a/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/CoreFunctionTypeConstants_pt_BR.properties +++ b/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/CoreFunctionTypeConstants_pt_BR.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + IS_NULL=é nulo NOT_NULL=não é nulo EQUALS_TO=igual a diff --git a/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/CoreFunctionTypeConstants_zh_CN.properties b/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/CoreFunctionTypeConstants_zh_CN.properties index 930b53d7a78..365fe175e99 100644 --- a/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/CoreFunctionTypeConstants_zh_CN.properties +++ b/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/CoreFunctionTypeConstants_zh_CN.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + IS_NULL=为 null NOT_NULL=非 null EQUALS_TO=等于 diff --git a/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/DateIntervalTypeConstants_de.properties b/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/DateIntervalTypeConstants_de.properties index 93144879bdb..748aa88681e 100644 --- a/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/DateIntervalTypeConstants_de.properties +++ b/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/DateIntervalTypeConstants_de.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + MILLISECOND=Millisekunde HUNDRETH=Hunderstel TENTH=Zehntel diff --git a/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/DateIntervalTypeConstants_pt_BR.properties b/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/DateIntervalTypeConstants_pt_BR.properties index efa9c860125..76ec97e0996 100644 --- a/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/DateIntervalTypeConstants_pt_BR.properties +++ b/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/DateIntervalTypeConstants_pt_BR.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + MILLISECOND=Milésimos de segundos HUNDRETH=Centézimo TENTH=Décimo diff --git a/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/DateIntervalTypeConstants_zh_CN.properties b/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/DateIntervalTypeConstants_zh_CN.properties index 89c72cbc290..e0ba01fd17d 100644 --- a/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/DateIntervalTypeConstants_zh_CN.properties +++ b/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/DateIntervalTypeConstants_zh_CN.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + MILLISECOND=毫秒 HUNDRETH=第一百 TENTH=第十 diff --git a/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/DayOfWeekConstants_de.properties b/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/DayOfWeekConstants_de.properties index 84074e98b51..ceacbec9951 100644 --- a/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/DayOfWeekConstants_de.properties +++ b/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/DayOfWeekConstants_de.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + SUNDAY=Sonntag MONDAY=Montag TUESDAY=Dienstag diff --git a/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/DayOfWeekConstants_pt_BR.properties b/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/DayOfWeekConstants_pt_BR.properties index 6dae09c07c7..2073a7da6e5 100644 --- a/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/DayOfWeekConstants_pt_BR.properties +++ b/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/DayOfWeekConstants_pt_BR.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + SUNDAY=Domingo MONDAY=segunda-feira TUESDAY=terça-feira diff --git a/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/DayOfWeekConstants_zh_CN.properties b/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/DayOfWeekConstants_zh_CN.properties index 466f2b04990..b38fceb5503 100644 --- a/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/DayOfWeekConstants_zh_CN.properties +++ b/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/DayOfWeekConstants_zh_CN.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + SUNDAY=星期天 MONDAY=星期一 TUESDAY=星期二 diff --git a/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/MonthConstants_de.properties b/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/MonthConstants_de.properties index 934f5ba0fbf..584950da8ab 100644 --- a/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/MonthConstants_de.properties +++ b/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/MonthConstants_de.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + JANUARY=Januar FEBRUARY=Februar MARCH=März diff --git a/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/MonthConstants_pt_BR.properties b/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/MonthConstants_pt_BR.properties index aa6162058c4..2e06c4d736d 100644 --- a/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/MonthConstants_pt_BR.properties +++ b/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/MonthConstants_pt_BR.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + JANUARY=Janeiro FEBRUARY=Fevereiro MARCH=Março diff --git a/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/MonthConstants_zh_CN.properties b/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/MonthConstants_zh_CN.properties index 525add0d274..e1ffe72a6d3 100644 --- a/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/MonthConstants_zh_CN.properties +++ b/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/MonthConstants_zh_CN.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + JANUARY=1月 FEBRUARY=2月 MARCH=3月 diff --git a/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/QuarterConstants_de.properties b/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/QuarterConstants_de.properties index 4e9d8b84c30..3f1ac274568 100644 --- a/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/QuarterConstants_de.properties +++ b/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/QuarterConstants_de.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + Q1=Q1 Q2=Q2 Q3=Q3 diff --git a/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/QuarterConstants_pt_BR.properties b/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/QuarterConstants_pt_BR.properties index 4e9d8b84c30..3f1ac274568 100644 --- a/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/QuarterConstants_pt_BR.properties +++ b/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/QuarterConstants_pt_BR.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + Q1=Q1 Q2=Q2 Q3=Q3 diff --git a/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/QuarterConstants_zh_CN.properties b/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/QuarterConstants_zh_CN.properties index 4e9d8b84c30..3f1ac274568 100644 --- a/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/QuarterConstants_zh_CN.properties +++ b/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/QuarterConstants_zh_CN.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + Q1=Q1 Q2=Q2 Q3=Q3 diff --git a/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/TimeModeConstants_de.properties b/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/TimeModeConstants_de.properties index 0cf5a7dae09..ebee581c765 100644 --- a/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/TimeModeConstants_de.properties +++ b/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/TimeModeConstants_de.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + NOW=Jetzt BEGIN=Beginn von END=Ende von diff --git a/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/TimeModeConstants_pt_BR.properties b/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/TimeModeConstants_pt_BR.properties index bd38a5cbad0..422bb45b1ee 100644 --- a/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/TimeModeConstants_pt_BR.properties +++ b/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/TimeModeConstants_pt_BR.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + NOW=Agora BEGIN=Começo de END=Final de diff --git a/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/TimeModeConstants_zh_CN.properties b/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/TimeModeConstants_zh_CN.properties index 94c52e2ddb8..74d60b768b5 100644 --- a/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/TimeModeConstants_zh_CN.properties +++ b/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/org/dashbuilder/dataset/client/resources/i18n/TimeModeConstants_zh_CN.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + NOW=现在 BEGIN=开始于 END=结束于 diff --git a/packages/dashbuilder/dashbuilder-client/dashbuilder-displayer-client/src/main/java/org/dashbuilder/displayer/client/widgets/RendererSelectorListBoxView.ui.xml b/packages/dashbuilder/dashbuilder-client/dashbuilder-displayer-client/src/main/java/org/dashbuilder/displayer/client/widgets/RendererSelectorListBoxView.ui.xml index 2234390d403..144a17877df 100644 --- a/packages/dashbuilder/dashbuilder-client/dashbuilder-displayer-client/src/main/java/org/dashbuilder/displayer/client/widgets/RendererSelectorListBoxView.ui.xml +++ b/packages/dashbuilder/dashbuilder-client/dashbuilder-displayer-client/src/main/java/org/dashbuilder/displayer/client/widgets/RendererSelectorListBoxView.ui.xml @@ -1,3 +1,22 @@ + + diff --git a/packages/dashbuilder/dashbuilder-client/dashbuilder-displayer-client/src/main/java/org/dashbuilder/displayer/client/widgets/RendererSelectorRadioListView.ui.xml b/packages/dashbuilder/dashbuilder-client/dashbuilder-displayer-client/src/main/java/org/dashbuilder/displayer/client/widgets/RendererSelectorRadioListView.ui.xml index f359b6af96d..a73c655beab 100644 --- a/packages/dashbuilder/dashbuilder-client/dashbuilder-displayer-client/src/main/java/org/dashbuilder/displayer/client/widgets/RendererSelectorRadioListView.ui.xml +++ b/packages/dashbuilder/dashbuilder-client/dashbuilder-displayer-client/src/main/java/org/dashbuilder/displayer/client/widgets/RendererSelectorRadioListView.ui.xml @@ -1,3 +1,22 @@ + + diff --git a/packages/dashbuilder/dashbuilder-client/dashbuilder-displayer-client/src/main/java/org/dashbuilder/displayer/client/widgets/RendererSelectorTabListView.ui.xml b/packages/dashbuilder/dashbuilder-client/dashbuilder-displayer-client/src/main/java/org/dashbuilder/displayer/client/widgets/RendererSelectorTabListView.ui.xml index 41f81362227..06f77269c8a 100644 --- a/packages/dashbuilder/dashbuilder-client/dashbuilder-displayer-client/src/main/java/org/dashbuilder/displayer/client/widgets/RendererSelectorTabListView.ui.xml +++ b/packages/dashbuilder/dashbuilder-client/dashbuilder-displayer-client/src/main/java/org/dashbuilder/displayer/client/widgets/RendererSelectorTabListView.ui.xml @@ -1,3 +1,22 @@ + + diff --git a/packages/dashbuilder/dashbuilder-client/dashbuilder-displayer-client/src/main/resources/org/dashbuilder/displayer/client/resources/i18n/CommonConstants_de.properties b/packages/dashbuilder/dashbuilder-client/dashbuilder-displayer-client/src/main/resources/org/dashbuilder/displayer/client/resources/i18n/CommonConstants_de.properties index 894c37de7d5..5338d64d1bf 100644 --- a/packages/dashbuilder/dashbuilder-client/dashbuilder-displayer-client/src/main/resources/org/dashbuilder/displayer/client/resources/i18n/CommonConstants_de.properties +++ b/packages/dashbuilder/dashbuilder-client/dashbuilder-displayer-client/src/main/resources/org/dashbuilder/displayer/client/resources/i18n/CommonConstants_de.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + ok=Ok cancel=Abbrechen error=Fehler\: diff --git a/packages/dashbuilder/dashbuilder-client/dashbuilder-displayer-client/src/main/resources/org/dashbuilder/displayer/client/resources/i18n/CommonConstants_pt_BR.properties b/packages/dashbuilder/dashbuilder-client/dashbuilder-displayer-client/src/main/resources/org/dashbuilder/displayer/client/resources/i18n/CommonConstants_pt_BR.properties index 6ac0a36ad6c..6d699983d26 100644 --- a/packages/dashbuilder/dashbuilder-client/dashbuilder-displayer-client/src/main/resources/org/dashbuilder/displayer/client/resources/i18n/CommonConstants_pt_BR.properties +++ b/packages/dashbuilder/dashbuilder-client/dashbuilder-displayer-client/src/main/resources/org/dashbuilder/displayer/client/resources/i18n/CommonConstants_pt_BR.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + ok=Ok cancel=Cancelar error=Erro diff --git a/packages/dashbuilder/dashbuilder-client/dashbuilder-displayer-client/src/main/resources/org/dashbuilder/displayer/client/resources/i18n/CommonConstants_zh_CN.properties b/packages/dashbuilder/dashbuilder-client/dashbuilder-displayer-client/src/main/resources/org/dashbuilder/displayer/client/resources/i18n/CommonConstants_zh_CN.properties index b39390ceff8..e0748e511b0 100644 --- a/packages/dashbuilder/dashbuilder-client/dashbuilder-displayer-client/src/main/resources/org/dashbuilder/displayer/client/resources/i18n/CommonConstants_zh_CN.properties +++ b/packages/dashbuilder/dashbuilder-client/dashbuilder-displayer-client/src/main/resources/org/dashbuilder/displayer/client/resources/i18n/CommonConstants_zh_CN.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + ok=确认 cancel=取消 error=错误: diff --git a/packages/dashbuilder/dashbuilder-client/dashbuilder-displayer-client/src/main/resources/org/dashbuilder/displayer/client/resources/i18n/DisplayerConstants_de.properties b/packages/dashbuilder/dashbuilder-client/dashbuilder-displayer-client/src/main/resources/org/dashbuilder/displayer/client/resources/i18n/DisplayerConstants_de.properties index c5dc068c7a8..c6e3af6b52d 100644 --- a/packages/dashbuilder/dashbuilder-client/dashbuilder-displayer-client/src/main/resources/org/dashbuilder/displayer/client/resources/i18n/DisplayerConstants_de.properties +++ b/packages/dashbuilder/dashbuilder-client/dashbuilder-displayer-client/src/main/resources/org/dashbuilder/displayer/client/resources/i18n/DisplayerConstants_de.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + initializing=Initialisiere... error=FEHLER\: error_settings_unset=DisplayerSettings-Eigenschaft nicht eingestellt. diff --git a/packages/dashbuilder/dashbuilder-client/dashbuilder-displayer-client/src/main/resources/org/dashbuilder/displayer/client/resources/i18n/DisplayerConstants_pt_BR.properties b/packages/dashbuilder/dashbuilder-client/dashbuilder-displayer-client/src/main/resources/org/dashbuilder/displayer/client/resources/i18n/DisplayerConstants_pt_BR.properties index d1a345f4ac9..db5537e3074 100644 --- a/packages/dashbuilder/dashbuilder-client/dashbuilder-displayer-client/src/main/resources/org/dashbuilder/displayer/client/resources/i18n/DisplayerConstants_pt_BR.properties +++ b/packages/dashbuilder/dashbuilder-client/dashbuilder-displayer-client/src/main/resources/org/dashbuilder/displayer/client/resources/i18n/DisplayerConstants_pt_BR.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + initializing=Inicializando... error=ERRO\: error_settings_unset=Propriedade DisplayerSettings não definida diff --git a/packages/dashbuilder/dashbuilder-client/dashbuilder-displayer-client/src/main/resources/org/dashbuilder/displayer/client/resources/i18n/DisplayerConstants_zh_CN.properties b/packages/dashbuilder/dashbuilder-client/dashbuilder-displayer-client/src/main/resources/org/dashbuilder/displayer/client/resources/i18n/DisplayerConstants_zh_CN.properties index 3ef1c01e89e..be05fda506d 100644 --- a/packages/dashbuilder/dashbuilder-client/dashbuilder-displayer-client/src/main/resources/org/dashbuilder/displayer/client/resources/i18n/DisplayerConstants_zh_CN.properties +++ b/packages/dashbuilder/dashbuilder-client/dashbuilder-displayer-client/src/main/resources/org/dashbuilder/displayer/client/resources/i18n/DisplayerConstants_zh_CN.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + initializing=正在初始化...... error=错误: error_settings_unset=没有设置 DisplayerSettings 属性 diff --git a/packages/dashbuilder/dashbuilder-client/dashbuilder-navigation-client/src/main/resources/org/dashbuilder/client/navigation/resources/i18n/NavigationConstants_de.properties b/packages/dashbuilder/dashbuilder-client/dashbuilder-navigation-client/src/main/resources/org/dashbuilder/client/navigation/resources/i18n/NavigationConstants_de.properties index d6fd7d93a18..06d5da51431 100644 --- a/packages/dashbuilder/dashbuilder-client/dashbuilder-navigation-client/src/main/resources/org/dashbuilder/client/navigation/resources/i18n/NavigationConstants_de.properties +++ b/packages/dashbuilder/dashbuilder-client/dashbuilder-navigation-client/src/main/resources/org/dashbuilder/client/navigation/resources/i18n/NavigationConstants_de.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + # translation auto-copied from project jBPM Form Modeler, version 6.0.0, document org.jbpm/jbpm-form-modeler-form-editor/org/jbpm/formModeler/components/editor/messages moveUp=Nach oben # translation auto-copied from project jBPM Form Modeler, version 6.0.0, document org.jbpm/jbpm-form-modeler-form-editor/org/jbpm/formModeler/components/editor/messages diff --git a/packages/dashbuilder/dashbuilder-client/dashbuilder-navigation-client/src/main/resources/org/dashbuilder/client/navigation/resources/i18n/NavigationConstants_pt_BR.properties b/packages/dashbuilder/dashbuilder-client/dashbuilder-navigation-client/src/main/resources/org/dashbuilder/client/navigation/resources/i18n/NavigationConstants_pt_BR.properties index 589f2226e58..d365a06afaf 100644 --- a/packages/dashbuilder/dashbuilder-client/dashbuilder-navigation-client/src/main/resources/org/dashbuilder/client/navigation/resources/i18n/NavigationConstants_pt_BR.properties +++ b/packages/dashbuilder/dashbuilder-client/dashbuilder-navigation-client/src/main/resources/org/dashbuilder/client/navigation/resources/i18n/NavigationConstants_pt_BR.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + # translation auto-copied from project jBPM Form Modeler, version 6.0.0, document org.jbpm/jbpm-form-modeler-form-editor/org/jbpm/formModeler/components/editor/messages moveUp=Mover para cima # translation auto-copied from project jBPM Form Modeler, version 6.0.0, document org.jbpm/jbpm-form-modeler-form-editor/org/jbpm/formModeler/components/editor/messages diff --git a/packages/dashbuilder/dashbuilder-client/dashbuilder-navigation-client/src/main/resources/org/dashbuilder/client/navigation/resources/i18n/NavigationConstants_zh_CN.properties b/packages/dashbuilder/dashbuilder-client/dashbuilder-navigation-client/src/main/resources/org/dashbuilder/client/navigation/resources/i18n/NavigationConstants_zh_CN.properties index d5da44e6167..e2f2489cd36 100644 --- a/packages/dashbuilder/dashbuilder-client/dashbuilder-navigation-client/src/main/resources/org/dashbuilder/client/navigation/resources/i18n/NavigationConstants_zh_CN.properties +++ b/packages/dashbuilder/dashbuilder-client/dashbuilder-navigation-client/src/main/resources/org/dashbuilder/client/navigation/resources/i18n/NavigationConstants_zh_CN.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + # translation auto-copied from project jBPM Form Modeler, version 6.0.0, document org.jbpm/jbpm-form-modeler-form-editor/org/jbpm/formModeler/components/editor/messages moveUp=上移 # translation auto-copied from project jBPM Form Modeler, version 6.0.0, document org.jbpm/jbpm-form-modeler-form-editor/org/jbpm/formModeler/components/editor/messages diff --git a/packages/dashbuilder/dashbuilder-client/dashbuilder-renderers/dashbuilder-renderer-c3/pom.xml b/packages/dashbuilder/dashbuilder-client/dashbuilder-renderers/dashbuilder-renderer-c3/pom.xml index 8fbccd171f3..c5177db3bb7 100644 --- a/packages/dashbuilder/dashbuilder-client/dashbuilder-renderers/dashbuilder-renderer-c3/pom.xml +++ b/packages/dashbuilder/dashbuilder-client/dashbuilder-renderers/dashbuilder-renderer-c3/pom.xml @@ -1,4 +1,22 @@ + + + # Dev Deployment Base Image Docker image with Java and Maven, as well as the dev-deployment-upload-service binary installed and ready to be used. diff --git a/packages/dev-deployment-dmn-form-webapp/dev-webapp/quarkus-app/src/main/resources/Adjudication.dmn b/packages/dev-deployment-dmn-form-webapp/dev-webapp/quarkus-app/src/main/resources/Adjudication.dmn index db93e5cacc3..fcef7059eb1 100644 --- a/packages/dev-deployment-dmn-form-webapp/dev-webapp/quarkus-app/src/main/resources/Adjudication.dmn +++ b/packages/dev-deployment-dmn-form-webapp/dev-webapp/quarkus-app/src/main/resources/Adjudication.dmn @@ -1,4 +1,22 @@ + diff --git a/packages/dev-deployment-dmn-form-webapp/dev-webapp/quarkus-app/src/main/resources/FlightRebooking.dmn b/packages/dev-deployment-dmn-form-webapp/dev-webapp/quarkus-app/src/main/resources/FlightRebooking.dmn index b661313f894..c9cae380621 100644 --- a/packages/dev-deployment-dmn-form-webapp/dev-webapp/quarkus-app/src/main/resources/FlightRebooking.dmn +++ b/packages/dev-deployment-dmn-form-webapp/dev-webapp/quarkus-app/src/main/resources/FlightRebooking.dmn @@ -1,4 +1,22 @@ + diff --git a/packages/dev-deployment-dmn-form-webapp/dev-webapp/quarkus-app/src/main/resources/Functions.dmn b/packages/dev-deployment-dmn-form-webapp/dev-webapp/quarkus-app/src/main/resources/Functions.dmn index 89ae0524143..096119d6f9d 100644 --- a/packages/dev-deployment-dmn-form-webapp/dev-webapp/quarkus-app/src/main/resources/Functions.dmn +++ b/packages/dev-deployment-dmn-form-webapp/dev-webapp/quarkus-app/src/main/resources/Functions.dmn @@ -1,4 +1,22 @@ + diff --git a/packages/dev-deployment-dmn-form-webapp/dev-webapp/quarkus-app/src/main/resources/InsurancePricing.dmn b/packages/dev-deployment-dmn-form-webapp/dev-webapp/quarkus-app/src/main/resources/InsurancePricing.dmn index c05115c5e26..dc75befff30 100644 --- a/packages/dev-deployment-dmn-form-webapp/dev-webapp/quarkus-app/src/main/resources/InsurancePricing.dmn +++ b/packages/dev-deployment-dmn-form-webapp/dev-webapp/quarkus-app/src/main/resources/InsurancePricing.dmn @@ -1,4 +1,22 @@ + diff --git a/packages/dev-deployment-dmn-form-webapp/dev-webapp/quarkus-app/src/main/resources/LoanPreQualification.dmn b/packages/dev-deployment-dmn-form-webapp/dev-webapp/quarkus-app/src/main/resources/LoanPreQualification.dmn index c1622f5dce3..5425f347d19 100644 --- a/packages/dev-deployment-dmn-form-webapp/dev-webapp/quarkus-app/src/main/resources/LoanPreQualification.dmn +++ b/packages/dev-deployment-dmn-form-webapp/dev-webapp/quarkus-app/src/main/resources/LoanPreQualification.dmn @@ -1,4 +1,22 @@ + diff --git a/packages/dev-deployment-dmn-form-webapp/dev-webapp/quarkus-app/src/main/resources/ManyInputs.dmn b/packages/dev-deployment-dmn-form-webapp/dev-webapp/quarkus-app/src/main/resources/ManyInputs.dmn index d7b10f66edc..9f26c10faaa 100644 --- a/packages/dev-deployment-dmn-form-webapp/dev-webapp/quarkus-app/src/main/resources/ManyInputs.dmn +++ b/packages/dev-deployment-dmn-form-webapp/dev-webapp/quarkus-app/src/main/resources/ManyInputs.dmn @@ -1,4 +1,22 @@ + diff --git a/packages/dev-deployment-dmn-form-webapp/dev-webapp/quarkus-app/src/main/resources/Recursive.dmn b/packages/dev-deployment-dmn-form-webapp/dev-webapp/quarkus-app/src/main/resources/Recursive.dmn index e4a4ee6043a..5aad4dac68c 100644 --- a/packages/dev-deployment-dmn-form-webapp/dev-webapp/quarkus-app/src/main/resources/Recursive.dmn +++ b/packages/dev-deployment-dmn-form-webapp/dev-webapp/quarkus-app/src/main/resources/Recursive.dmn @@ -1,4 +1,22 @@ + diff --git a/packages/dev-deployment-dmn-form-webapp/dev-webapp/quarkus-app/src/main/resources/Routing.dmn b/packages/dev-deployment-dmn-form-webapp/dev-webapp/quarkus-app/src/main/resources/Routing.dmn index 7832fc30e85..9ca15a9c4f1 100644 --- a/packages/dev-deployment-dmn-form-webapp/dev-webapp/quarkus-app/src/main/resources/Routing.dmn +++ b/packages/dev-deployment-dmn-form-webapp/dev-webapp/quarkus-app/src/main/resources/Routing.dmn @@ -1,4 +1,22 @@ + diff --git a/packages/dev-deployment-dmn-form-webapp/dev-webapp/quarkus-app/src/main/resources/Strategy.dmn b/packages/dev-deployment-dmn-form-webapp/dev-webapp/quarkus-app/src/main/resources/Strategy.dmn index 1f668799bc6..649efbed3e5 100644 --- a/packages/dev-deployment-dmn-form-webapp/dev-webapp/quarkus-app/src/main/resources/Strategy.dmn +++ b/packages/dev-deployment-dmn-form-webapp/dev-webapp/quarkus-app/src/main/resources/Strategy.dmn @@ -1,4 +1,22 @@ + diff --git a/packages/dev-deployment-dmn-form-webapp/dev-webapp/quarkus-app/src/main/resources/Types.dmn b/packages/dev-deployment-dmn-form-webapp/dev-webapp/quarkus-app/src/main/resources/Types.dmn index e602835f45d..141ab5d8763 100644 --- a/packages/dev-deployment-dmn-form-webapp/dev-webapp/quarkus-app/src/main/resources/Types.dmn +++ b/packages/dev-deployment-dmn-form-webapp/dev-webapp/quarkus-app/src/main/resources/Types.dmn @@ -1,4 +1,22 @@ + diff --git a/packages/dev-deployment-dmn-form-webapp/dev-webapp/quarkus-app/src/main/resources/application.properties b/packages/dev-deployment-dmn-form-webapp/dev-webapp/quarkus-app/src/main/resources/application.properties index c427e9dcef7..54d6f6eedd9 100644 --- a/packages/dev-deployment-dmn-form-webapp/dev-webapp/quarkus-app/src/main/resources/application.properties +++ b/packages/dev-deployment-dmn-form-webapp/dev-webapp/quarkus-app/src/main/resources/application.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + quarkus.swagger-ui.always-include=true quarkus.http.cors=true %dev.quarkus.http.cors.origins=/.*/ diff --git a/packages/dev-deployment-dmn-form-webapp/dev-webapp/quarkus-app/src/main/resources/canDrive/CanDrive.dmn b/packages/dev-deployment-dmn-form-webapp/dev-webapp/quarkus-app/src/main/resources/canDrive/CanDrive.dmn index ad3184d5bf1..f148133e5c1 100644 --- a/packages/dev-deployment-dmn-form-webapp/dev-webapp/quarkus-app/src/main/resources/canDrive/CanDrive.dmn +++ b/packages/dev-deployment-dmn-form-webapp/dev-webapp/quarkus-app/src/main/resources/canDrive/CanDrive.dmn @@ -1,4 +1,22 @@ + diff --git a/packages/dev-deployment-dmn-form-webapp/dev-webapp/quarkus-app/src/main/resources/canDrive/Types3.dmn b/packages/dev-deployment-dmn-form-webapp/dev-webapp/quarkus-app/src/main/resources/canDrive/Types3.dmn index 2657350d201..ed7bd9ffa44 100644 --- a/packages/dev-deployment-dmn-form-webapp/dev-webapp/quarkus-app/src/main/resources/canDrive/Types3.dmn +++ b/packages/dev-deployment-dmn-form-webapp/dev-webapp/quarkus-app/src/main/resources/canDrive/Types3.dmn @@ -1,4 +1,22 @@ + diff --git a/packages/dev-deployment-dmn-form-webapp/dev-webapp/quarkus-app/src/main/resources/complex/can_drive.dmn b/packages/dev-deployment-dmn-form-webapp/dev-webapp/quarkus-app/src/main/resources/complex/can_drive.dmn index 46345a9ff4e..0589da2c869 100644 --- a/packages/dev-deployment-dmn-form-webapp/dev-webapp/quarkus-app/src/main/resources/complex/can_drive.dmn +++ b/packages/dev-deployment-dmn-form-webapp/dev-webapp/quarkus-app/src/main/resources/complex/can_drive.dmn @@ -1,4 +1,22 @@ + diff --git a/packages/dev-deployment-dmn-form-webapp/dev-webapp/quarkus-app/src/main/resources/complex/can_drive_2.dmn b/packages/dev-deployment-dmn-form-webapp/dev-webapp/quarkus-app/src/main/resources/complex/can_drive_2.dmn index 8196d4b47e7..3cdbb7f4666 100644 --- a/packages/dev-deployment-dmn-form-webapp/dev-webapp/quarkus-app/src/main/resources/complex/can_drive_2.dmn +++ b/packages/dev-deployment-dmn-form-webapp/dev-webapp/quarkus-app/src/main/resources/complex/can_drive_2.dmn @@ -1,4 +1,22 @@ + diff --git a/packages/dev-deployment-dmn-form-webapp/dev-webapp/quarkus-app/src/main/resources/findEmployees/FindEmployees.dmn b/packages/dev-deployment-dmn-form-webapp/dev-webapp/quarkus-app/src/main/resources/findEmployees/FindEmployees.dmn index ee0a5bd8520..2cc5895fac6 100644 --- a/packages/dev-deployment-dmn-form-webapp/dev-webapp/quarkus-app/src/main/resources/findEmployees/FindEmployees.dmn +++ b/packages/dev-deployment-dmn-form-webapp/dev-webapp/quarkus-app/src/main/resources/findEmployees/FindEmployees.dmn @@ -1,4 +1,22 @@ + diff --git a/packages/dev-deployment-kogito-quarkus-blank-app-image/README.md b/packages/dev-deployment-kogito-quarkus-blank-app-image/README.md index ebd273e9141..995bd572de6 100644 --- a/packages/dev-deployment-kogito-quarkus-blank-app-image/README.md +++ b/packages/dev-deployment-kogito-quarkus-blank-app-image/README.md @@ -1,3 +1,20 @@ + + # Dev Deployment Kogito Quarkus Blank App Image This image is ready to be used for Dev deployments on KIE Sandbox. diff --git a/packages/dev-deployment-kogito-quarkus-blank-app/src/main/resources/application.properties b/packages/dev-deployment-kogito-quarkus-blank-app/src/main/resources/application.properties index 2b7a3191ed0..056f10b9ee2 100644 --- a/packages/dev-deployment-kogito-quarkus-blank-app/src/main/resources/application.properties +++ b/packages/dev-deployment-kogito-quarkus-blank-app/src/main/resources/application.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + quarkus.swagger-ui.always-include=true quarkus.http.cors=true quarkus.http.cors.origins=/.*/ diff --git a/packages/dev-deployment-upload-service/README.md b/packages/dev-deployment-upload-service/README.md index bcffe013488..1d28a442118 100644 --- a/packages/dev-deployment-upload-service/README.md +++ b/packages/dev-deployment-upload-service/README.md @@ -1,3 +1,20 @@ + + # Dev Deployment Upload Service This package is used on the KIE Sandbox's Dev deployments feature and should be the first command to run when a deployed container spins up. diff --git a/packages/dev-deployment-upload-service/getDevDeploymentUploadService.sh b/packages/dev-deployment-upload-service/getDevDeploymentUploadService.sh index ee4bffc6c1a..2a06cfbbaed 100755 --- a/packages/dev-deployment-upload-service/getDevDeploymentUploadService.sh +++ b/packages/dev-deployment-upload-service/getDevDeploymentUploadService.sh @@ -1,5 +1,5 @@ #!/bin/bash - +# # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information @@ -8,7 +8,7 @@ # "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 +# 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 @@ -16,6 +16,7 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. +# # The install script is based off of the Apache-licensed script from helm, # a tool for managing Charts: https://github.com/helm/helm/blob/main/scripts/get-helm-3 diff --git a/packages/dmn-editor-envelope/README.md b/packages/dmn-editor-envelope/README.md index c5e5dad0d9f..4fc58fedf16 100644 --- a/packages/dmn-editor-envelope/README.md +++ b/packages/dmn-editor-envelope/README.md @@ -1,3 +1,20 @@ -## DMN Editor Envelopedmn + + +## DMN Editor Envelope Package responsible for creating the necessary pumbling for `dmn-editor` to be used inside an Envelope. diff --git a/packages/dmn-feel-antlr4-parser/src/parser/grammar/generated-parser/README.md b/packages/dmn-feel-antlr4-parser/src/parser/grammar/generated-parser/README.md index ad0bea6b329..1cf52b020d7 100644 --- a/packages/dmn-feel-antlr4-parser/src/parser/grammar/generated-parser/README.md +++ b/packages/dmn-feel-antlr4-parser/src/parser/grammar/generated-parser/README.md @@ -1,3 +1,20 @@ + + The code in this package is automatic generated by ANTLR4 using the file `FEEL_1_1.g4` as input. To regenerate the code after you changed `FEEL_1_1.g4`: diff --git a/packages/dmn-language-service/tests/fixtures/decisions.dmn b/packages/dmn-language-service/tests/fixtures/decisions.dmn index a7bd1c11617..e3a85c52d06 100644 --- a/packages/dmn-language-service/tests/fixtures/decisions.dmn +++ b/packages/dmn-language-service/tests/fixtures/decisions.dmn @@ -1,4 +1,22 @@ + diff --git a/packages/dmn-language-service/tests/fixtures/dmn12/a.dmn b/packages/dmn-language-service/tests/fixtures/dmn12/a.dmn index 15e809218f4..5c0122efc93 100644 --- a/packages/dmn-language-service/tests/fixtures/dmn12/a.dmn +++ b/packages/dmn-language-service/tests/fixtures/dmn12/a.dmn @@ -1,4 +1,22 @@ + diff --git a/packages/dmn-language-service/tests/fixtures/dmn12/bImportsA.dmn b/packages/dmn-language-service/tests/fixtures/dmn12/bImportsA.dmn index d4b17a49f6c..1857998dbbc 100644 --- a/packages/dmn-language-service/tests/fixtures/dmn12/bImportsA.dmn +++ b/packages/dmn-language-service/tests/fixtures/dmn12/bImportsA.dmn @@ -1,4 +1,22 @@ + diff --git a/packages/dmn-language-service/tests/fixtures/dmn12/cImportsB.dmn b/packages/dmn-language-service/tests/fixtures/dmn12/cImportsB.dmn index ca37873de5a..7a33814cf7b 100644 --- a/packages/dmn-language-service/tests/fixtures/dmn12/cImportsB.dmn +++ b/packages/dmn-language-service/tests/fixtures/dmn12/cImportsB.dmn @@ -1,4 +1,22 @@ + diff --git a/packages/dmn-language-service/tests/fixtures/dmn12/dImportsAB.dmn b/packages/dmn-language-service/tests/fixtures/dmn12/dImportsAB.dmn index 8a52ed6465d..4ef2a05e895 100644 --- a/packages/dmn-language-service/tests/fixtures/dmn12/dImportsAB.dmn +++ b/packages/dmn-language-service/tests/fixtures/dmn12/dImportsAB.dmn @@ -1,4 +1,22 @@ + diff --git a/packages/dmn-language-service/tests/fixtures/dmn12/eImportsXB.dmn b/packages/dmn-language-service/tests/fixtures/dmn12/eImportsXB.dmn index 935f6f9f416..66b40ecdad0 100644 --- a/packages/dmn-language-service/tests/fixtures/dmn12/eImportsXB.dmn +++ b/packages/dmn-language-service/tests/fixtures/dmn12/eImportsXB.dmn @@ -1,4 +1,22 @@ + diff --git a/packages/dmn-language-service/tests/fixtures/dmn12/xImportsY.dmn b/packages/dmn-language-service/tests/fixtures/dmn12/xImportsY.dmn index 93e508198e1..f8f3d3454b5 100644 --- a/packages/dmn-language-service/tests/fixtures/dmn12/xImportsY.dmn +++ b/packages/dmn-language-service/tests/fixtures/dmn12/xImportsY.dmn @@ -1,4 +1,22 @@ + diff --git a/packages/dmn-language-service/tests/fixtures/dmn12/y.dmn b/packages/dmn-language-service/tests/fixtures/dmn12/y.dmn index 38bae12b276..91f07b3b5ec 100644 --- a/packages/dmn-language-service/tests/fixtures/dmn12/y.dmn +++ b/packages/dmn-language-service/tests/fixtures/dmn12/y.dmn @@ -1,4 +1,22 @@ - + + diff --git a/packages/dmn-language-service/tests/fixtures/dmn15/aImportsDmn12C.dmn b/packages/dmn-language-service/tests/fixtures/dmn15/aImportsDmn12C.dmn index 70f5ceaee63..70fe241658c 100644 --- a/packages/dmn-language-service/tests/fixtures/dmn15/aImportsDmn12C.dmn +++ b/packages/dmn-language-service/tests/fixtures/dmn15/aImportsDmn12C.dmn @@ -1,4 +1,22 @@ + diff --git a/packages/dmn-language-service/tests/fixtures/dmn15/bImportsDmn12D.dmn b/packages/dmn-language-service/tests/fixtures/dmn15/bImportsDmn12D.dmn index 708ca221f61..288c4f42dd1 100644 --- a/packages/dmn-language-service/tests/fixtures/dmn15/bImportsDmn12D.dmn +++ b/packages/dmn-language-service/tests/fixtures/dmn15/bImportsDmn12D.dmn @@ -1,4 +1,22 @@ + diff --git a/packages/dmn-language-service/tests/fixtures/immediateRecursion/aImportsB.dmn b/packages/dmn-language-service/tests/fixtures/immediateRecursion/aImportsB.dmn index 6a15b2028d0..025f971b980 100644 --- a/packages/dmn-language-service/tests/fixtures/immediateRecursion/aImportsB.dmn +++ b/packages/dmn-language-service/tests/fixtures/immediateRecursion/aImportsB.dmn @@ -1,4 +1,22 @@ + diff --git a/packages/dmn-language-service/tests/fixtures/immediateRecursion/bImportsA.dmn b/packages/dmn-language-service/tests/fixtures/immediateRecursion/bImportsA.dmn index fdc6d81d2dd..a3f015a6fe3 100644 --- a/packages/dmn-language-service/tests/fixtures/immediateRecursion/bImportsA.dmn +++ b/packages/dmn-language-service/tests/fixtures/immediateRecursion/bImportsA.dmn @@ -1,4 +1,22 @@ + diff --git a/packages/dmn-language-service/tests/fixtures/threeLevelRecursion/aImportsB.dmn b/packages/dmn-language-service/tests/fixtures/threeLevelRecursion/aImportsB.dmn index 659c29e9e29..a877423765d 100644 --- a/packages/dmn-language-service/tests/fixtures/threeLevelRecursion/aImportsB.dmn +++ b/packages/dmn-language-service/tests/fixtures/threeLevelRecursion/aImportsB.dmn @@ -1,4 +1,22 @@ + diff --git a/packages/dmn-language-service/tests/fixtures/threeLevelRecursion/bImportsC.dmn b/packages/dmn-language-service/tests/fixtures/threeLevelRecursion/bImportsC.dmn index eecdc0901f6..0ae35223589 100644 --- a/packages/dmn-language-service/tests/fixtures/threeLevelRecursion/bImportsC.dmn +++ b/packages/dmn-language-service/tests/fixtures/threeLevelRecursion/bImportsC.dmn @@ -1,4 +1,22 @@ + diff --git a/packages/dmn-language-service/tests/fixtures/threeLevelRecursion/cImportsA.dmn b/packages/dmn-language-service/tests/fixtures/threeLevelRecursion/cImportsA.dmn index fdc6d81d2dd..a3f015a6fe3 100644 --- a/packages/dmn-language-service/tests/fixtures/threeLevelRecursion/cImportsA.dmn +++ b/packages/dmn-language-service/tests/fixtures/threeLevelRecursion/cImportsA.dmn @@ -1,4 +1,22 @@ + diff --git a/packages/dmn-marshaller-backend-compatibility-tester/README.md b/packages/dmn-marshaller-backend-compatibility-tester/README.md index db0cf33b452..2a01f904205 100644 --- a/packages/dmn-marshaller-backend-compatibility-tester/README.md +++ b/packages/dmn-marshaller-backend-compatibility-tester/README.md @@ -1,3 +1,20 @@ + + ### DMN Marshaller backend compatibility tester The scope of this module is to provide a reliable scripting mechanism that tests DMN Files generated by the `dmn-marshaller` package against the backend counterpart code that lives in the drools repository. diff --git a/packages/dmn-marshaller/tests-data--manual/dmn-1_0--examples/dmn10.dmn b/packages/dmn-marshaller/tests-data--manual/dmn-1_0--examples/dmn10.dmn index 04c3fa779b4..ff71264f26e 100644 --- a/packages/dmn-marshaller/tests-data--manual/dmn-1_0--examples/dmn10.dmn +++ b/packages/dmn-marshaller/tests-data--manual/dmn-1_0--examples/dmn10.dmn @@ -1,4 +1,22 @@ + + diff --git a/packages/dmn-marshaller/tests-data--manual/dmn-1_2--examples/Chapter 11/Chapter 11 Example.dmn b/packages/dmn-marshaller/tests-data--manual/dmn-1_2--examples/Chapter 11/Chapter 11 Example.dmn index 6acdb378d4d..475fee3eb15 100644 --- a/packages/dmn-marshaller/tests-data--manual/dmn-1_2--examples/Chapter 11/Chapter 11 Example.dmn +++ b/packages/dmn-marshaller/tests-data--manual/dmn-1_2--examples/Chapter 11/Chapter 11 Example.dmn @@ -1,4 +1,22 @@ + diff --git a/packages/dmn-marshaller/tests-data--manual/dmn-1_2--examples/Diagram Interchange/diagram-interchange-decision-service.dmn b/packages/dmn-marshaller/tests-data--manual/dmn-1_2--examples/Diagram Interchange/diagram-interchange-decision-service.dmn index 4f9baa33fec..7f9a72072ca 100644 --- a/packages/dmn-marshaller/tests-data--manual/dmn-1_2--examples/Diagram Interchange/diagram-interchange-decision-service.dmn +++ b/packages/dmn-marshaller/tests-data--manual/dmn-1_2--examples/Diagram Interchange/diagram-interchange-decision-service.dmn @@ -1,4 +1,22 @@ + + + + + These are non-normative examples to illustrate the use of the DMN XML Schema. diff --git a/packages/dmn-marshaller/tests-data--manual/dmn-1_3--examples/Chapter 11 Example 1 Originations/Chapter 11 Example.dmn b/packages/dmn-marshaller/tests-data--manual/dmn-1_3--examples/Chapter 11 Example 1 Originations/Chapter 11 Example.dmn index c06693c7fbf..ad6d5a749c2 100644 --- a/packages/dmn-marshaller/tests-data--manual/dmn-1_3--examples/Chapter 11 Example 1 Originations/Chapter 11 Example.dmn +++ b/packages/dmn-marshaller/tests-data--manual/dmn-1_3--examples/Chapter 11 Example 1 Originations/Chapter 11 Example.dmn @@ -1,4 +1,22 @@ + diff --git a/packages/dmn-marshaller/tests-data--manual/dmn-1_3--examples/Chapter 11 Example 1 Originations/Financial.dmn b/packages/dmn-marshaller/tests-data--manual/dmn-1_3--examples/Chapter 11 Example 1 Originations/Financial.dmn index 5a722a9bc2a..eb01fd4ea81 100644 --- a/packages/dmn-marshaller/tests-data--manual/dmn-1_3--examples/Chapter 11 Example 1 Originations/Financial.dmn +++ b/packages/dmn-marshaller/tests-data--manual/dmn-1_3--examples/Chapter 11 Example 1 Originations/Financial.dmn @@ -1,3 +1,22 @@ + + diff --git a/packages/dmn-marshaller/tests-data--manual/dmn-1_3--examples/Chapter 11 Example 2 Ranked Loan Products/Loan info.dmn b/packages/dmn-marshaller/tests-data--manual/dmn-1_3--examples/Chapter 11 Example 2 Ranked Loan Products/Loan info.dmn index 532d3cecd98..2f50a35141f 100644 --- a/packages/dmn-marshaller/tests-data--manual/dmn-1_3--examples/Chapter 11 Example 2 Ranked Loan Products/Loan info.dmn +++ b/packages/dmn-marshaller/tests-data--manual/dmn-1_3--examples/Chapter 11 Example 2 Ranked Loan Products/Loan info.dmn @@ -1,4 +1,22 @@ + diff --git a/packages/dmn-marshaller/tests-data--manual/dmn-1_3--examples/Chapter 11 Example 2 Ranked Loan Products/Recommended Loan Products.dmn b/packages/dmn-marshaller/tests-data--manual/dmn-1_3--examples/Chapter 11 Example 2 Ranked Loan Products/Recommended Loan Products.dmn index 79bd5099688..02f1e3a9364 100644 --- a/packages/dmn-marshaller/tests-data--manual/dmn-1_3--examples/Chapter 11 Example 2 Ranked Loan Products/Recommended Loan Products.dmn +++ b/packages/dmn-marshaller/tests-data--manual/dmn-1_3--examples/Chapter 11 Example 2 Ranked Loan Products/Recommended Loan Products.dmn @@ -1,4 +1,22 @@ + diff --git a/packages/dmn-marshaller/tests-data--manual/dmn-1_3--examples/Diagram Interchange/diagram-interchange-decision-service.dmn b/packages/dmn-marshaller/tests-data--manual/dmn-1_3--examples/Diagram Interchange/diagram-interchange-decision-service.dmn index ba8febdb35d..022af643d01 100644 --- a/packages/dmn-marshaller/tests-data--manual/dmn-1_3--examples/Diagram Interchange/diagram-interchange-decision-service.dmn +++ b/packages/dmn-marshaller/tests-data--manual/dmn-1_3--examples/Diagram Interchange/diagram-interchange-decision-service.dmn @@ -1,4 +1,22 @@ + + + + + These are non-normative examples to illustrate the use of the DMN XML Schema. diff --git a/packages/dmn-marshaller/tests-data--manual/dmn-1_4--examples/Chapter 11 Example 1 Originations/Chapter 11 Example.dmn b/packages/dmn-marshaller/tests-data--manual/dmn-1_4--examples/Chapter 11 Example 1 Originations/Chapter 11 Example.dmn index 3aa7b5f9885..0e5fe7eebc0 100644 --- a/packages/dmn-marshaller/tests-data--manual/dmn-1_4--examples/Chapter 11 Example 1 Originations/Chapter 11 Example.dmn +++ b/packages/dmn-marshaller/tests-data--manual/dmn-1_4--examples/Chapter 11 Example 1 Originations/Chapter 11 Example.dmn @@ -1,3 +1,22 @@ + + diff --git a/packages/dmn-marshaller/tests-data--manual/dmn-1_4--examples/Chapter 11 Example 1 Originations/Financial.dmn b/packages/dmn-marshaller/tests-data--manual/dmn-1_4--examples/Chapter 11 Example 1 Originations/Financial.dmn index 8bd728e8cfa..945c768d59d 100644 --- a/packages/dmn-marshaller/tests-data--manual/dmn-1_4--examples/Chapter 11 Example 1 Originations/Financial.dmn +++ b/packages/dmn-marshaller/tests-data--manual/dmn-1_4--examples/Chapter 11 Example 1 Originations/Financial.dmn @@ -1,3 +1,22 @@ + + diff --git a/packages/dmn-marshaller/tests-data--manual/dmn-1_4--examples/Chapter 11 Example 2 Ranked Loan Products/Loan info.dmn b/packages/dmn-marshaller/tests-data--manual/dmn-1_4--examples/Chapter 11 Example 2 Ranked Loan Products/Loan info.dmn index 589c92af1e2..227bf41bf78 100644 --- a/packages/dmn-marshaller/tests-data--manual/dmn-1_4--examples/Chapter 11 Example 2 Ranked Loan Products/Loan info.dmn +++ b/packages/dmn-marshaller/tests-data--manual/dmn-1_4--examples/Chapter 11 Example 2 Ranked Loan Products/Loan info.dmn @@ -1,4 +1,22 @@ + diff --git a/packages/dmn-marshaller/tests-data--manual/dmn-1_4--examples/Chapter 11 Example 2 Ranked Loan Products/Recommended Loan Products.dmn b/packages/dmn-marshaller/tests-data--manual/dmn-1_4--examples/Chapter 11 Example 2 Ranked Loan Products/Recommended Loan Products.dmn index bb5294c0b44..2ca920449a7 100644 --- a/packages/dmn-marshaller/tests-data--manual/dmn-1_4--examples/Chapter 11 Example 2 Ranked Loan Products/Recommended Loan Products.dmn +++ b/packages/dmn-marshaller/tests-data--manual/dmn-1_4--examples/Chapter 11 Example 2 Ranked Loan Products/Recommended Loan Products.dmn @@ -1,4 +1,22 @@ + diff --git a/packages/dmn-marshaller/tests-data--manual/dmn-1_4--examples/Diagram Interchange/diagram-interchange-decision-service.dmn b/packages/dmn-marshaller/tests-data--manual/dmn-1_4--examples/Diagram Interchange/diagram-interchange-decision-service.dmn index 774f89f7d68..cadc86639a8 100644 --- a/packages/dmn-marshaller/tests-data--manual/dmn-1_4--examples/Diagram Interchange/diagram-interchange-decision-service.dmn +++ b/packages/dmn-marshaller/tests-data--manual/dmn-1_4--examples/Diagram Interchange/diagram-interchange-decision-service.dmn @@ -1,4 +1,22 @@ + + + + + These are non-normative examples to illustrate the use of the DMN XML Schema. diff --git a/packages/dmn-marshaller/tests-data--manual/other/attachment.dmn b/packages/dmn-marshaller/tests-data--manual/other/attachment.dmn index ed6e0810f19..6d34d048d32 100644 --- a/packages/dmn-marshaller/tests-data--manual/other/attachment.dmn +++ b/packages/dmn-marshaller/tests-data--manual/other/attachment.dmn @@ -1,4 +1,22 @@ + diff --git a/packages/dmn-marshaller/tests-data--manual/other/decisionAndInput.dmn b/packages/dmn-marshaller/tests-data--manual/other/decisionAndInput.dmn index 575cff37382..bc11edd0a9f 100644 --- a/packages/dmn-marshaller/tests-data--manual/other/decisionAndInput.dmn +++ b/packages/dmn-marshaller/tests-data--manual/other/decisionAndInput.dmn @@ -1,4 +1,22 @@ + + + + + diff --git a/packages/dmn-marshaller/tests-data--manual/other/list.dmn b/packages/dmn-marshaller/tests-data--manual/other/list.dmn index 14e9bf0b0ec..7da8026d4de 100644 --- a/packages/dmn-marshaller/tests-data--manual/other/list.dmn +++ b/packages/dmn-marshaller/tests-data--manual/other/list.dmn @@ -1,4 +1,22 @@ + diff --git a/packages/dmn-marshaller/tests-data--manual/other/list2.dmn b/packages/dmn-marshaller/tests-data--manual/other/list2.dmn index 3b0c801ab5d..91eab708ba7 100644 --- a/packages/dmn-marshaller/tests-data--manual/other/list2.dmn +++ b/packages/dmn-marshaller/tests-data--manual/other/list2.dmn @@ -1,4 +1,22 @@ + diff --git a/packages/dmn-marshaller/tests-data--manual/other/sample12.dmn b/packages/dmn-marshaller/tests-data--manual/other/sample12.dmn index f500f149f3b..6cdce84e87a 100644 --- a/packages/dmn-marshaller/tests-data--manual/other/sample12.dmn +++ b/packages/dmn-marshaller/tests-data--manual/other/sample12.dmn @@ -1,3 +1,22 @@ + + diff --git a/packages/dmn-testing-models/README.md b/packages/dmn-testing-models/README.md index 4fbb9663200..7dccea74c0f 100644 --- a/packages/dmn-testing-models/README.md +++ b/packages/dmn-testing-models/README.md @@ -1,3 +1,20 @@ + + ## DMN testing models This package is meant to contain all the DMN models published inside [kie-dmn-test-resources](https://github.com/apache/incubator-kie-drools/tree/main/kie-dmn/kie-dmn-test-resources) to make them available for testing purposes. diff --git a/packages/dmn-vscode-extension/CHANGELOG.md b/packages/dmn-vscode-extension/CHANGELOG.md index c05fd56d367..c75ce5acab0 100644 --- a/packages/dmn-vscode-extension/CHANGELOG.md +++ b/packages/dmn-vscode-extension/CHANGELOG.md @@ -1,3 +1,20 @@ + + # 0.32.0 (alpha) - NO-ISSUE - Add DMN 1.5 specification files to `packages/dmn-marshaller` diff --git a/packages/dmn-vscode-extension/README.md b/packages/dmn-vscode-extension/README.md index 0ae6a5cdb20..4e7d9cf914d 100644 --- a/packages/dmn-vscode-extension/README.md +++ b/packages/dmn-vscode-extension/README.md @@ -1,3 +1,20 @@ + + ## DMN Editor ![vs-code-support](https://img.shields.io/badge/Visual%20Studio%20Code-1.67.0+-blue.svg) diff --git a/packages/editor/README.md b/packages/editor/README.md index 78fb0b87973..6ac4b20583a 100644 --- a/packages/editor/README.md +++ b/packages/editor/README.md @@ -1,3 +1,20 @@ + + ## Apache KIE Tools Editor API Interfaces to define Editors. diff --git a/packages/envelope-bus/README.md b/packages/envelope-bus/README.md index 0e790ea21be..d4a22a79f0e 100644 --- a/packages/envelope-bus/README.md +++ b/packages/envelope-bus/README.md @@ -1 +1,18 @@ + + ## Envelope Bus diff --git a/packages/extended-services-java/README.md b/packages/extended-services-java/README.md index c809e2c0ca1..bf1832503d6 100644 --- a/packages/extended-services-java/README.md +++ b/packages/extended-services-java/README.md @@ -1,3 +1,20 @@ + + ## Extended Services This is a shallow copy of the Extended-Services Go application, diff --git a/packages/extended-services/README.md b/packages/extended-services/README.md index e118aae9838..9ec1bd8caf7 100644 --- a/packages/extended-services/README.md +++ b/packages/extended-services/README.md @@ -1,3 +1,20 @@ + + ## Extended Services Powers the DMN Runner and Dev deployments features. diff --git a/packages/extended-services/scripts/macos/build.sh b/packages/extended-services/scripts/macos/build.sh index f55dfacfd0c..085fdf5e0f4 100755 --- a/packages/extended-services/scripts/macos/build.sh +++ b/packages/extended-services/scripts/macos/build.sh @@ -1,5 +1,22 @@ #!/bin/bash - +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# APP="target/Extended Services.app" CONTENTS=$APP/Contents diff --git a/packages/form-generation-tool/README.md b/packages/form-generation-tool/README.md index c3097d520d1..e2ebbe6aea9 100644 --- a/packages/form-generation-tool/README.md +++ b/packages/form-generation-tool/README.md @@ -1,3 +1,20 @@ + + ## Form Generation Tool This is a utility CLI to help generating forms in differents formats for BPMN processes and User Tasks in your Kogito projects. diff --git a/packages/i18n/README.md b/packages/i18n/README.md index fa512dad5e0..5f385761d49 100644 --- a/packages/i18n/README.md +++ b/packages/i18n/README.md @@ -1,3 +1,20 @@ + + # Apache KIE Tools i18n This package provides a type-safe i18n library for a Typescript project. diff --git a/packages/i18n/examples/react.md b/packages/i18n/examples/react.md index 04b25768b9d..44d267c8b82 100644 --- a/packages/i18n/examples/react.md +++ b/packages/i18n/examples/react.md @@ -1,3 +1,20 @@ + + ## Setup example for a React project File structure: diff --git a/packages/i18n/examples/typescript.md b/packages/i18n/examples/typescript.md index cd27f0242b1..486e12022a5 100644 --- a/packages/i18n/examples/typescript.md +++ b/packages/i18n/examples/typescript.md @@ -1,3 +1,20 @@ + + ## Setup example for a Typescript project File structure: diff --git a/packages/image-env-to-json/README.md b/packages/image-env-to-json/README.md index 56f9459a4e2..ad316f39a35 100644 --- a/packages/image-env-to-json/README.md +++ b/packages/image-env-to-json/README.md @@ -1,3 +1,20 @@ + + # image-env-to-json This package contains a CLI tool to convert environment variables to a JSON file. diff --git a/packages/import-java-classes-component/README.md b/packages/import-java-classes-component/README.md index 722ceba0749..961bc58a6cb 100644 --- a/packages/import-java-classes-component/README.md +++ b/packages/import-java-classes-component/README.md @@ -1,3 +1,20 @@ + + # Import Java Classes component This editor provides the possibility to edit the expression related to a Decision Node, or to a Business Knowledge Model's function. diff --git a/packages/jbpm-quarkus-devui/jbpm-quarkus-devui-deployment/pom.xml b/packages/jbpm-quarkus-devui/jbpm-quarkus-devui-deployment/pom.xml index 4407bb5e17a..f246450075c 100644 --- a/packages/jbpm-quarkus-devui/jbpm-quarkus-devui-deployment/pom.xml +++ b/packages/jbpm-quarkus-devui/jbpm-quarkus-devui-deployment/pom.xml @@ -1,23 +1,21 @@ + ## JSON and YAML Language Service JSON and YAML language service to be reused in VSCode and Monaco editor. diff --git a/packages/k8s-yaml-to-apiserver-requests/README.md b/packages/k8s-yaml-to-apiserver-requests/README.md index 67bc4fe8051..091794ddeec 100644 --- a/packages/k8s-yaml-to-apiserver-requests/README.md +++ b/packages/k8s-yaml-to-apiserver-requests/README.md @@ -1,3 +1,20 @@ + + ## K8s YAML to APIServer Requests Library to map Kubernetes API resources and apply resource YAMLs diff --git a/packages/keyboard-shortcuts/README.md b/packages/keyboard-shortcuts/README.md index 5fa66321102..b214bc46a69 100644 --- a/packages/keyboard-shortcuts/README.md +++ b/packages/keyboard-shortcuts/README.md @@ -1 +1,18 @@ + + ## Keyboard Shortcuts diff --git a/packages/kie-bc-editors/README.md b/packages/kie-bc-editors/README.md index 845e54d8223..60fa673b0f8 100644 --- a/packages/kie-bc-editors/README.md +++ b/packages/kie-bc-editors/README.md @@ -1,3 +1,20 @@ + + ## Apache KIE Tools GWT Editors Defines `AppFormer.Editor` class for GWT editors (BPMN and DMN). diff --git a/packages/kie-editors-dev-vscode-extension/README.md b/packages/kie-editors-dev-vscode-extension/README.md index 1c5777834d0..47d28be34f5 100644 --- a/packages/kie-editors-dev-vscode-extension/README.md +++ b/packages/kie-editors-dev-vscode-extension/README.md @@ -1 +1,18 @@ + + This is a development distribution. To download the production version, refer to https://marketplace.visualstudio.com/items?itemName=kie-group.vscode-extension-kogito-bundle diff --git a/packages/kie-editors-dev-vscode-extension/e2e-tests/resources/MultipleInstanceSubprocess.bpmn b/packages/kie-editors-dev-vscode-extension/e2e-tests/resources/MultipleInstanceSubprocess.bpmn index 73a084f4577..76a5b1f8def 100644 --- a/packages/kie-editors-dev-vscode-extension/e2e-tests/resources/MultipleInstanceSubprocess.bpmn +++ b/packages/kie-editors-dev-vscode-extension/e2e-tests/resources/MultipleInstanceSubprocess.bpmn @@ -1,4 +1,22 @@ + diff --git a/packages/kie-editors-dev-vscode-extension/e2e-tests/resources/ProcessWithCollaboration.bpmn b/packages/kie-editors-dev-vscode-extension/e2e-tests/resources/ProcessWithCollaboration.bpmn index d015c6be0de..4c7411d8d73 100644 --- a/packages/kie-editors-dev-vscode-extension/e2e-tests/resources/ProcessWithCollaboration.bpmn +++ b/packages/kie-editors-dev-vscode-extension/e2e-tests/resources/ProcessWithCollaboration.bpmn @@ -1,4 +1,22 @@ + diff --git a/packages/kie-editors-dev-vscode-extension/e2e-tests/resources/ProcessWithGenerics.bpmn b/packages/kie-editors-dev-vscode-extension/e2e-tests/resources/ProcessWithGenerics.bpmn index 6c54b45dd99..9c6c1f15d35 100644 --- a/packages/kie-editors-dev-vscode-extension/e2e-tests/resources/ProcessWithGenerics.bpmn +++ b/packages/kie-editors-dev-vscode-extension/e2e-tests/resources/ProcessWithGenerics.bpmn @@ -1,4 +1,22 @@ + diff --git a/packages/kie-editors-dev-vscode-extension/e2e-tests/resources/SaveAssetTest.bpmn b/packages/kie-editors-dev-vscode-extension/e2e-tests/resources/SaveAssetTest.bpmn index e4ed8e33c93..1a0c3f8237f 100644 --- a/packages/kie-editors-dev-vscode-extension/e2e-tests/resources/SaveAssetTest.bpmn +++ b/packages/kie-editors-dev-vscode-extension/e2e-tests/resources/SaveAssetTest.bpmn @@ -1,3 +1,22 @@ + + diff --git a/packages/kie-editors-dev-vscode-extension/e2e-tests/resources/UserTask.bpmn b/packages/kie-editors-dev-vscode-extension/e2e-tests/resources/UserTask.bpmn index 367eb59d2cf..92e53cdfcea 100644 --- a/packages/kie-editors-dev-vscode-extension/e2e-tests/resources/UserTask.bpmn +++ b/packages/kie-editors-dev-vscode-extension/e2e-tests/resources/UserTask.bpmn @@ -1,4 +1,22 @@ + diff --git a/packages/kie-editors-dev-vscode-extension/e2e-tests/resources/demo-expression.dmn b/packages/kie-editors-dev-vscode-extension/e2e-tests/resources/demo-expression.dmn index de1dc120aca..1673dbed21c 100644 --- a/packages/kie-editors-dev-vscode-extension/e2e-tests/resources/demo-expression.dmn +++ b/packages/kie-editors-dev-vscode-extension/e2e-tests/resources/demo-expression.dmn @@ -1,3 +1,22 @@ + + diff --git a/packages/kie-editors-dev-vscode-extension/e2e-tests/resources/demo.bpmn b/packages/kie-editors-dev-vscode-extension/e2e-tests/resources/demo.bpmn index d6e84997b93..4b11cfb7857 100644 --- a/packages/kie-editors-dev-vscode-extension/e2e-tests/resources/demo.bpmn +++ b/packages/kie-editors-dev-vscode-extension/e2e-tests/resources/demo.bpmn @@ -1,4 +1,22 @@ + + diff --git a/packages/kie-editors-dev-vscode-extension/e2e-tests/resources/demo.pmml b/packages/kie-editors-dev-vscode-extension/e2e-tests/resources/demo.pmml index ad3446846b6..0e6130b370d 100644 --- a/packages/kie-editors-dev-vscode-extension/e2e-tests/resources/demo.pmml +++ b/packages/kie-editors-dev-vscode-extension/e2e-tests/resources/demo.pmml @@ -1,3 +1,22 @@ + +
diff --git a/packages/kie-editors-dev-vscode-extension/e2e-tests/resources/demo.scesim b/packages/kie-editors-dev-vscode-extension/e2e-tests/resources/demo.scesim index f366bba5147..f1a3e50c34b 100644 --- a/packages/kie-editors-dev-vscode-extension/e2e-tests/resources/demo.scesim +++ b/packages/kie-editors-dev-vscode-extension/e2e-tests/resources/demo.scesim @@ -1,3 +1,22 @@ + + diff --git a/packages/kie-editors-dev-vscode-extension/e2e-tests/resources/example.bpmn b/packages/kie-editors-dev-vscode-extension/e2e-tests/resources/example.bpmn index 96af50393d9..fd5d52acde6 100644 --- a/packages/kie-editors-dev-vscode-extension/e2e-tests/resources/example.bpmn +++ b/packages/kie-editors-dev-vscode-extension/e2e-tests/resources/example.bpmn @@ -1,4 +1,22 @@ + diff --git a/packages/kie-editors-dev-vscode-extension/e2e-tests/resources/reusable-model.dmn b/packages/kie-editors-dev-vscode-extension/e2e-tests/resources/reusable-model.dmn index be28cecfbf8..3058709dc34 100644 --- a/packages/kie-editors-dev-vscode-extension/e2e-tests/resources/reusable-model.dmn +++ b/packages/kie-editors-dev-vscode-extension/e2e-tests/resources/reusable-model.dmn @@ -1,3 +1,22 @@ + + Additional model for included models feature testing. diff --git a/packages/kie-editors-dev-vscode-extension/e2e-tests/resources/src/main/java/org/kie/businessapp/process-wid.bpmn b/packages/kie-editors-dev-vscode-extension/e2e-tests/resources/src/main/java/org/kie/businessapp/process-wid.bpmn index 61f4b676b39..31c24b5c4ce 100644 --- a/packages/kie-editors-dev-vscode-extension/e2e-tests/resources/src/main/java/org/kie/businessapp/process-wid.bpmn +++ b/packages/kie-editors-dev-vscode-extension/e2e-tests/resources/src/main/java/org/kie/businessapp/process-wid.bpmn @@ -1,3 +1,22 @@ + + diff --git a/packages/kie-editors-standalone/README.md b/packages/kie-editors-standalone/README.md index dd189b504b4..fe2b7d14c2d 100644 --- a/packages/kie-editors-standalone/README.md +++ b/packages/kie-editors-standalone/README.md @@ -1,3 +1,20 @@ + + ## BPMN and DMN Standalone Editors ### Description diff --git a/packages/kie-editors-standalone/e2e-tests/cypress/fixtures/Traffic Violation.dmn b/packages/kie-editors-standalone/e2e-tests/cypress/fixtures/Traffic Violation.dmn index 943d3fc93dc..fd301f27424 100644 --- a/packages/kie-editors-standalone/e2e-tests/cypress/fixtures/Traffic Violation.dmn +++ b/packages/kie-editors-standalone/e2e-tests/cypress/fixtures/Traffic Violation.dmn @@ -1,4 +1,22 @@ - + + diff --git a/packages/kie-editors-standalone/e2e-tests/cypress/fixtures/call centre drd.dmn b/packages/kie-editors-standalone/e2e-tests/cypress/fixtures/call centre drd.dmn index e43d367c06c..333317826fd 100644 --- a/packages/kie-editors-standalone/e2e-tests/cypress/fixtures/call centre drd.dmn +++ b/packages/kie-editors-standalone/e2e-tests/cypress/fixtures/call centre drd.dmn @@ -1,3 +1,22 @@ + + diff --git a/packages/kie-editors-standalone/e2e-tests/cypress/fixtures/process-string.bpmn b/packages/kie-editors-standalone/e2e-tests/cypress/fixtures/process-string.bpmn index 36df119c026..9ede4095f0d 100644 --- a/packages/kie-editors-standalone/e2e-tests/cypress/fixtures/process-string.bpmn +++ b/packages/kie-editors-standalone/e2e-tests/cypress/fixtures/process-string.bpmn @@ -1,3 +1,22 @@ + + diff --git a/packages/kie-editors-standalone/e2e-tests/cypress/fixtures/process-wid.bpmn b/packages/kie-editors-standalone/e2e-tests/cypress/fixtures/process-wid.bpmn index aca6c283b6b..0ad18166249 100644 --- a/packages/kie-editors-standalone/e2e-tests/cypress/fixtures/process-wid.bpmn +++ b/packages/kie-editors-standalone/e2e-tests/cypress/fixtures/process-wid.bpmn @@ -1,3 +1,22 @@ + + diff --git a/packages/kie-editors-standalone/e2e-tests/src/resources/processWithWidDefinition.bpmn2 b/packages/kie-editors-standalone/e2e-tests/src/resources/processWithWidDefinition.bpmn2 index 3bce08cb6ff..590993b59ba 100644 --- a/packages/kie-editors-standalone/e2e-tests/src/resources/processWithWidDefinition.bpmn2 +++ b/packages/kie-editors-standalone/e2e-tests/src/resources/processWithWidDefinition.bpmn2 @@ -1,3 +1,22 @@ + + diff --git a/packages/kie-sandbox-distribution/README.md b/packages/kie-sandbox-distribution/README.md index 8de5d76bcb9..fbc5fa9e321 100644 --- a/packages/kie-sandbox-distribution/README.md +++ b/packages/kie-sandbox-distribution/README.md @@ -1,3 +1,20 @@ + + # kie-sandbox-distribution This package contains the `docker-compose` file to run KIE Sandbox and all related services. diff --git a/packages/kie-sandbox-distribution/docker-compose.yaml b/packages/kie-sandbox-distribution/docker-compose.yaml index 3907d327caa..41e459615d6 100644 --- a/packages/kie-sandbox-distribution/docker-compose.yaml +++ b/packages/kie-sandbox-distribution/docker-compose.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + version: "3.8" services: kie_sandbox: diff --git a/packages/kie-sandbox-extended-services-image/README.md b/packages/kie-sandbox-extended-services-image/README.md index 344025ab37d..a33de9c5ad3 100644 --- a/packages/kie-sandbox-extended-services-image/README.md +++ b/packages/kie-sandbox-extended-services-image/README.md @@ -1,3 +1,20 @@ + + # kie-sandbox-extended-services-image This package contains the `Containerfile` and scripts to build a container image for the Extended Services. diff --git a/packages/kie-sandbox-fs/README.md b/packages/kie-sandbox-fs/README.md index 66ac45c0c53..4548f6581f8 100644 --- a/packages/kie-sandbox-fs/README.md +++ b/packages/kie-sandbox-fs/README.md @@ -1,3 +1,20 @@ + + # @kie-tools/kie-sandbox-fs This package is a fork of [LightningFS](https://github.com/isomorphic-git/lightning-fs). diff --git a/packages/kie-sandbox-helm-chart/README.md b/packages/kie-sandbox-helm-chart/README.md index eee733c702e..229477bfde8 100644 --- a/packages/kie-sandbox-helm-chart/README.md +++ b/packages/kie-sandbox-helm-chart/README.md @@ -1,3 +1,20 @@ + + # KIE Sandbox Helm Chart This chart can be used to deploy KIE Sandbox image on a [Kubernetes](https://kubernetes.io) cluster using the [Helm](https://helm.sh) package manager. diff --git a/packages/kie-sandbox-helm-chart/src/README.md b/packages/kie-sandbox-helm-chart/src/README.md index 37441439a25..4ea2da57dcb 100644 --- a/packages/kie-sandbox-helm-chart/src/README.md +++ b/packages/kie-sandbox-helm-chart/src/README.md @@ -1,3 +1,20 @@ + + # kie-sandbox-helm-chart ![Version: 0.0.0](https://img.shields.io/badge/Version-0.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.0.0](https://img.shields.io/badge/AppVersion-0.0.0-informational?style=flat-square) diff --git a/packages/kie-sandbox-helm-chart/src/charts/cors_proxy/README.md b/packages/kie-sandbox-helm-chart/src/charts/cors_proxy/README.md index 304582dc5db..06726570144 100644 --- a/packages/kie-sandbox-helm-chart/src/charts/cors_proxy/README.md +++ b/packages/kie-sandbox-helm-chart/src/charts/cors_proxy/README.md @@ -1,3 +1,20 @@ + + # cors_proxy ![Version: 0.0.0](https://img.shields.io/badge/Version-0.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.0.0](https://img.shields.io/badge/AppVersion-0.0.0-informational?style=flat-square) diff --git a/packages/kie-sandbox-helm-chart/src/charts/cors_proxy/values.yaml b/packages/kie-sandbox-helm-chart/src/charts/cors_proxy/values.yaml index 02c6142abd4..f93d37cd1f7 100644 --- a/packages/kie-sandbox-helm-chart/src/charts/cors_proxy/values.yaml +++ b/packages/kie-sandbox-helm-chart/src/charts/cors_proxy/values.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + # CORS Proxy component # -- The CORS Proxy application name name: cors-proxy diff --git a/packages/kie-sandbox-helm-chart/src/charts/extended_services/README.md b/packages/kie-sandbox-helm-chart/src/charts/extended_services/README.md index a70a717561c..5486252cad8 100644 --- a/packages/kie-sandbox-helm-chart/src/charts/extended_services/README.md +++ b/packages/kie-sandbox-helm-chart/src/charts/extended_services/README.md @@ -1,3 +1,20 @@ + + # extended_services ![Version: 0.0.0](https://img.shields.io/badge/Version-0.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.0.0](https://img.shields.io/badge/AppVersion-0.0.0-informational?style=flat-square) diff --git a/packages/kie-sandbox-helm-chart/src/charts/extended_services/values.yaml b/packages/kie-sandbox-helm-chart/src/charts/extended_services/values.yaml index 8b0c69a9b52..907e4ac61d2 100644 --- a/packages/kie-sandbox-helm-chart/src/charts/extended_services/values.yaml +++ b/packages/kie-sandbox-helm-chart/src/charts/extended_services/values.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + # Extended services component # -- The Extended Services application name name: extended-services diff --git a/packages/kie-sandbox-helm-chart/src/charts/kie_sandbox/README.md b/packages/kie-sandbox-helm-chart/src/charts/kie_sandbox/README.md index 77c75dd699b..16d92009414 100644 --- a/packages/kie-sandbox-helm-chart/src/charts/kie_sandbox/README.md +++ b/packages/kie-sandbox-helm-chart/src/charts/kie_sandbox/README.md @@ -1,3 +1,20 @@ + + # kie_sandbox ![Version: 0.0.0](https://img.shields.io/badge/Version-0.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.0.0](https://img.shields.io/badge/AppVersion-0.0.0-informational?style=flat-square) diff --git a/packages/kie-sandbox-helm-chart/src/charts/kie_sandbox/values.yaml b/packages/kie-sandbox-helm-chart/src/charts/kie_sandbox/values.yaml index 980b9576294..6c7639567bb 100644 --- a/packages/kie-sandbox-helm-chart/src/charts/kie_sandbox/values.yaml +++ b/packages/kie-sandbox-helm-chart/src/charts/kie_sandbox/values.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + # KIE Sandbox application # -- The KIE Sandbox application name name: kie-sandbox diff --git a/packages/kie-sandbox-helm-chart/src/values-kubernetes.yaml b/packages/kie-sandbox-helm-chart/src/values-kubernetes.yaml index aacb55777ad..45c7e0123fa 100644 --- a/packages/kie-sandbox-helm-chart/src/values-kubernetes.yaml +++ b/packages/kie-sandbox-helm-chart/src/values-kubernetes.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + # KIE Sandbox application kie_sandbox: env: diff --git a/packages/kie-sandbox-helm-chart/src/values-minikube-nginx.yaml b/packages/kie-sandbox-helm-chart/src/values-minikube-nginx.yaml index e59418e2c43..309ed3c1594 100644 --- a/packages/kie-sandbox-helm-chart/src/values-minikube-nginx.yaml +++ b/packages/kie-sandbox-helm-chart/src/values-minikube-nginx.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + # KIE Sandbox application kie_sandbox: env: diff --git a/packages/kie-sandbox-helm-chart/src/values-openshift.yaml b/packages/kie-sandbox-helm-chart/src/values-openshift.yaml index 0940eed6c96..69c8161a0af 100644 --- a/packages/kie-sandbox-helm-chart/src/values-openshift.yaml +++ b/packages/kie-sandbox-helm-chart/src/values-openshift.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + # KIE Sandbox application kie_sandbox: env: diff --git a/packages/kie-sandbox-helm-chart/src/values.yaml b/packages/kie-sandbox-helm-chart/src/values.yaml index da7c2bcad8d..01d7e8d89ed 100644 --- a/packages/kie-sandbox-helm-chart/src/values.yaml +++ b/packages/kie-sandbox-helm-chart/src/values.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + # -- Overrides charts name nameOverride: "" # -- Overrides charts full name diff --git a/packages/kie-sandbox-image/README.md b/packages/kie-sandbox-image/README.md index 177da86fa25..b9347614bfc 100644 --- a/packages/kie-sandbox-image/README.md +++ b/packages/kie-sandbox-image/README.md @@ -1,3 +1,20 @@ + + # kie-sandbox-image This package contains the `Containerfile/Dockerfile` and scripts to build a container image for KIE Sandbox. It also generated a JSON Schema for the `env.json` file, enabling it to be validated. diff --git a/packages/kie-sandbox-image/entrypoint.sh b/packages/kie-sandbox-image/entrypoint.sh index b1761030a03..076291c3f2a 100644 --- a/packages/kie-sandbox-image/entrypoint.sh +++ b/packages/kie-sandbox-image/entrypoint.sh @@ -1,4 +1,22 @@ #!/bin/bash +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# # Copying the KIE Sandbox assets here is essential for when the container is running with the readOnlyRootFilesystem flag. # But, just like any other directory modified during runtime, the /var/www/html must be a mounted volume in the container in this case. diff --git a/packages/kn-plugin-workflow/.gitignore b/packages/kn-plugin-workflow/.gitignore index 1a4d60ae174..23c9541bfb3 100644 --- a/packages/kn-plugin-workflow/.gitignore +++ b/packages/kn-plugin-workflow/.gitignore @@ -1,3 +1,21 @@ +### +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + debug/ kogito-serverless-operator/ TODO.txt diff --git a/packages/kn-plugin-workflow/README.md b/packages/kn-plugin-workflow/README.md index 8f1f13bc547..9eaa0a4baaf 100644 --- a/packages/kn-plugin-workflow/README.md +++ b/packages/kn-plugin-workflow/README.md @@ -1,3 +1,20 @@ + + # kn-plugin-workflow `kn-plugin-workflow` is a plugin of the Knative Client, to enable users to quickly set up a local SonataFlow project from the command line. diff --git a/packages/kogito-management-console/README.md b/packages/kogito-management-console/README.md index 2a439f4744f..19258fbaad4 100644 --- a/packages/kogito-management-console/README.md +++ b/packages/kogito-management-console/README.md @@ -1,3 +1,20 @@ + + # kogito-managment-console This package contains the `Containerfile/Dockerfile` and scripts to build a container image for Management Console. It also generated a JSON Schema for the `env.json` file, enabling it to be validated. diff --git a/packages/kogito-management-console/entrypoint.sh b/packages/kogito-management-console/entrypoint.sh index 7c716607696..1b92377150b 100644 --- a/packages/kogito-management-console/entrypoint.sh +++ b/packages/kogito-management-console/entrypoint.sh @@ -1,4 +1,22 @@ #!/bin/bash +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# # Copying the Task Console assets here is essential for when the container is running with the readOnlyRootFilesystem flag. # But, just like any other directory modified during runtime, the /var/www/html must be a mounted volume in the container in this case. diff --git a/packages/kogito-serverless-operator/README.md b/packages/kogito-serverless-operator/README.md index da2266d7f6e..ec6f9680815 100644 --- a/packages/kogito-serverless-operator/README.md +++ b/packages/kogito-serverless-operator/README.md @@ -1,3 +1,20 @@ + + # SonataFlow Operator The SonataFlow Operator defines a set diff --git a/packages/kogito-serverless-operator/bundle/metadata/annotations.yaml b/packages/kogito-serverless-operator/bundle/metadata/annotations.yaml index 68eab166f4f..f96ca03d721 100644 --- a/packages/kogito-serverless-operator/bundle/metadata/annotations.yaml +++ b/packages/kogito-serverless-operator/bundle/metadata/annotations.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + annotations: # Core bundle annotations. operators.operatorframework.io.bundle.mediatype.v1: registry+v1 diff --git a/packages/kogito-serverless-operator/config/crd/kustomization.yaml b/packages/kogito-serverless-operator/config/crd/kustomization.yaml index 61ebf163b35..05236be9636 100644 --- a/packages/kogito-serverless-operator/config/crd/kustomization.yaml +++ b/packages/kogito-serverless-operator/config/crd/kustomization.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + # This kustomization.yaml is not intended to be run by itself, # since it depends on service name and namespace that are out of this kustomize package. # It should be run by config/default diff --git a/packages/kogito-serverless-operator/config/crd/kustomizeconfig.yaml b/packages/kogito-serverless-operator/config/crd/kustomizeconfig.yaml index c1418ddee6e..a8064f7d643 100644 --- a/packages/kogito-serverless-operator/config/crd/kustomizeconfig.yaml +++ b/packages/kogito-serverless-operator/config/crd/kustomizeconfig.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + # This file is for teaching kustomize how to substitute name and namespace reference in CRD nameReference: - kind: Service diff --git a/packages/kogito-serverless-operator/config/crd/patches/cainjection_in_sonataflowbuilds.yaml b/packages/kogito-serverless-operator/config/crd/patches/cainjection_in_sonataflowbuilds.yaml index 451e6d05315..1ab7b19e09f 100644 --- a/packages/kogito-serverless-operator/config/crd/patches/cainjection_in_sonataflowbuilds.yaml +++ b/packages/kogito-serverless-operator/config/crd/patches/cainjection_in_sonataflowbuilds.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + # The following patch adds a directive for certmanager to inject CA into the CRD apiVersion: apiextensions.k8s.io/v1 kind: CustomResourceDefinition diff --git a/packages/kogito-serverless-operator/config/crd/patches/cainjection_in_sonataflowclusterplatforms.yaml b/packages/kogito-serverless-operator/config/crd/patches/cainjection_in_sonataflowclusterplatforms.yaml index dc0274cd7a4..64972e86dae 100644 --- a/packages/kogito-serverless-operator/config/crd/patches/cainjection_in_sonataflowclusterplatforms.yaml +++ b/packages/kogito-serverless-operator/config/crd/patches/cainjection_in_sonataflowclusterplatforms.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + # The following patch adds a directive for certmanager to inject CA into the CRD apiVersion: apiextensions.k8s.io/v1 kind: CustomResourceDefinition diff --git a/packages/kogito-serverless-operator/config/crd/patches/cainjection_in_sonataflowplatforms.yaml b/packages/kogito-serverless-operator/config/crd/patches/cainjection_in_sonataflowplatforms.yaml index f0cb2da79b1..c8fa2b1f71e 100644 --- a/packages/kogito-serverless-operator/config/crd/patches/cainjection_in_sonataflowplatforms.yaml +++ b/packages/kogito-serverless-operator/config/crd/patches/cainjection_in_sonataflowplatforms.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + # The following patch adds a directive for certmanager to inject CA into the CRD apiVersion: apiextensions.k8s.io/v1 kind: CustomResourceDefinition diff --git a/packages/kogito-serverless-operator/config/crd/patches/cainjection_in_sonataflows.yaml b/packages/kogito-serverless-operator/config/crd/patches/cainjection_in_sonataflows.yaml index 0f2efd86b4b..571864a6b14 100644 --- a/packages/kogito-serverless-operator/config/crd/patches/cainjection_in_sonataflows.yaml +++ b/packages/kogito-serverless-operator/config/crd/patches/cainjection_in_sonataflows.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + # The following patch adds a directive for certmanager to inject CA into the CRD apiVersion: apiextensions.k8s.io/v1 kind: CustomResourceDefinition diff --git a/packages/kogito-serverless-operator/config/crd/patches/webhook_in_sonataflowbuilds.yaml b/packages/kogito-serverless-operator/config/crd/patches/webhook_in_sonataflowbuilds.yaml index 3406df4d48f..38d25e0c9e8 100644 --- a/packages/kogito-serverless-operator/config/crd/patches/webhook_in_sonataflowbuilds.yaml +++ b/packages/kogito-serverless-operator/config/crd/patches/webhook_in_sonataflowbuilds.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + # The following patch enables a conversion webhook for the CRD apiVersion: apiextensions.k8s.io/v1 kind: CustomResourceDefinition diff --git a/packages/kogito-serverless-operator/config/crd/patches/webhook_in_sonataflowclusterplatforms.yaml b/packages/kogito-serverless-operator/config/crd/patches/webhook_in_sonataflowclusterplatforms.yaml index 68343cb2513..7e1caf3e1d4 100644 --- a/packages/kogito-serverless-operator/config/crd/patches/webhook_in_sonataflowclusterplatforms.yaml +++ b/packages/kogito-serverless-operator/config/crd/patches/webhook_in_sonataflowclusterplatforms.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + # The following patch enables a conversion webhook for the CRD apiVersion: apiextensions.k8s.io/v1 kind: CustomResourceDefinition diff --git a/packages/kogito-serverless-operator/config/crd/patches/webhook_in_sonataflowplatforms.yaml b/packages/kogito-serverless-operator/config/crd/patches/webhook_in_sonataflowplatforms.yaml index a51005ca19d..b1b82bdea9e 100644 --- a/packages/kogito-serverless-operator/config/crd/patches/webhook_in_sonataflowplatforms.yaml +++ b/packages/kogito-serverless-operator/config/crd/patches/webhook_in_sonataflowplatforms.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + # The following patch enables a conversion webhook for the CRD apiVersion: apiextensions.k8s.io/v1 kind: CustomResourceDefinition diff --git a/packages/kogito-serverless-operator/config/crd/patches/webhook_in_sonataflows.yaml b/packages/kogito-serverless-operator/config/crd/patches/webhook_in_sonataflows.yaml index b55a65f1a51..1eddbd8de0c 100644 --- a/packages/kogito-serverless-operator/config/crd/patches/webhook_in_sonataflows.yaml +++ b/packages/kogito-serverless-operator/config/crd/patches/webhook_in_sonataflows.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + # The following patch enables a conversion webhook for the CRD apiVersion: apiextensions.k8s.io/v1 kind: CustomResourceDefinition diff --git a/packages/kogito-serverless-operator/config/default/controllers_config_patch.yaml b/packages/kogito-serverless-operator/config/default/controllers_config_patch.yaml index 59fdab2bc72..8ec458221bb 100644 --- a/packages/kogito-serverless-operator/config/default/controllers_config_patch.yaml +++ b/packages/kogito-serverless-operator/config/default/controllers_config_patch.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + apiVersion: apps/v1 kind: Deployment metadata: diff --git a/packages/kogito-serverless-operator/config/default/kustomization.yaml b/packages/kogito-serverless-operator/config/default/kustomization.yaml index cde9f268fe9..fb29a81f184 100644 --- a/packages/kogito-serverless-operator/config/default/kustomization.yaml +++ b/packages/kogito-serverless-operator/config/default/kustomization.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + # Adds namespace to all resources. namespace: sonataflow-operator-system diff --git a/packages/kogito-serverless-operator/config/default/manager_auth_proxy_patch.yaml b/packages/kogito-serverless-operator/config/default/manager_auth_proxy_patch.yaml index 9b04d354a0c..382be8346ed 100644 --- a/packages/kogito-serverless-operator/config/default/manager_auth_proxy_patch.yaml +++ b/packages/kogito-serverless-operator/config/default/manager_auth_proxy_patch.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + # This patch inject a sidecar container which is a HTTP proxy for the # controller manager, it performs RBAC authorization against the Kubernetes API using SubjectAccessReviews. apiVersion: apps/v1 diff --git a/packages/kogito-serverless-operator/config/default/manager_config_patch.yaml b/packages/kogito-serverless-operator/config/default/manager_config_patch.yaml index 68563ebf121..4e91beef1ba 100644 --- a/packages/kogito-serverless-operator/config/default/manager_config_patch.yaml +++ b/packages/kogito-serverless-operator/config/default/manager_config_patch.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + apiVersion: apps/v1 kind: Deployment metadata: diff --git a/packages/kogito-serverless-operator/config/manager/controller_manager_config.yaml b/packages/kogito-serverless-operator/config/manager/controller_manager_config.yaml index 4cefd89bb3f..869f5e3f7df 100644 --- a/packages/kogito-serverless-operator/config/manager/controller_manager_config.yaml +++ b/packages/kogito-serverless-operator/config/manager/controller_manager_config.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + apiVersion: controller-runtime.sigs.k8s.io/v1alpha1 kind: ControllerManagerConfig health: diff --git a/packages/kogito-serverless-operator/config/manager/kustomization.yaml b/packages/kogito-serverless-operator/config/manager/kustomization.yaml index 771af44078c..c6fc5448e03 100644 --- a/packages/kogito-serverless-operator/config/manager/kustomization.yaml +++ b/packages/kogito-serverless-operator/config/manager/kustomization.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + resources: - manager.yaml generatorOptions: diff --git a/packages/kogito-serverless-operator/config/manager/manager.yaml b/packages/kogito-serverless-operator/config/manager/manager.yaml index 7474a88ad3a..e6c63a45d7b 100644 --- a/packages/kogito-serverless-operator/config/manager/manager.yaml +++ b/packages/kogito-serverless-operator/config/manager/manager.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + apiVersion: v1 kind: Namespace metadata: diff --git a/packages/kogito-serverless-operator/config/manifests/kustomization.yaml b/packages/kogito-serverless-operator/config/manifests/kustomization.yaml index b1dc3831287..2ce4a69188f 100644 --- a/packages/kogito-serverless-operator/config/manifests/kustomization.yaml +++ b/packages/kogito-serverless-operator/config/manifests/kustomization.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + # These resources constitute the fully configured set of manifests # used to generate the 'manifests/' directory in a bundle. resources: diff --git a/packages/kogito-serverless-operator/config/prometheus/kustomization.yaml b/packages/kogito-serverless-operator/config/prometheus/kustomization.yaml index d556b996a21..230f13a0b42 100644 --- a/packages/kogito-serverless-operator/config/prometheus/kustomization.yaml +++ b/packages/kogito-serverless-operator/config/prometheus/kustomization.yaml @@ -1,2 +1,21 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + resources: - monitor.yaml diff --git a/packages/kogito-serverless-operator/config/prometheus/monitor.yaml b/packages/kogito-serverless-operator/config/prometheus/monitor.yaml index 1f235df53b3..03dffb7163e 100644 --- a/packages/kogito-serverless-operator/config/prometheus/monitor.yaml +++ b/packages/kogito-serverless-operator/config/prometheus/monitor.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + # Prometheus Monitor Service (Metrics) apiVersion: monitoring.coreos.com/v1 kind: ServiceMonitor diff --git a/packages/kogito-serverless-operator/config/rbac/auth_proxy_client_clusterrole.yaml b/packages/kogito-serverless-operator/config/rbac/auth_proxy_client_clusterrole.yaml index 07f4382934e..3c02823ef56 100644 --- a/packages/kogito-serverless-operator/config/rbac/auth_proxy_client_clusterrole.yaml +++ b/packages/kogito-serverless-operator/config/rbac/auth_proxy_client_clusterrole.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRole metadata: diff --git a/packages/kogito-serverless-operator/config/rbac/auth_proxy_role.yaml b/packages/kogito-serverless-operator/config/rbac/auth_proxy_role.yaml index 2e55d6aeaca..cb9d8fedd2b 100644 --- a/packages/kogito-serverless-operator/config/rbac/auth_proxy_role.yaml +++ b/packages/kogito-serverless-operator/config/rbac/auth_proxy_role.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRole metadata: diff --git a/packages/kogito-serverless-operator/config/rbac/auth_proxy_role_binding.yaml b/packages/kogito-serverless-operator/config/rbac/auth_proxy_role_binding.yaml index ec70c402000..17e4c11a5d8 100644 --- a/packages/kogito-serverless-operator/config/rbac/auth_proxy_role_binding.yaml +++ b/packages/kogito-serverless-operator/config/rbac/auth_proxy_role_binding.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRoleBinding metadata: diff --git a/packages/kogito-serverless-operator/config/rbac/auth_proxy_service.yaml b/packages/kogito-serverless-operator/config/rbac/auth_proxy_service.yaml index b843fb75ceb..54f3b68dbde 100644 --- a/packages/kogito-serverless-operator/config/rbac/auth_proxy_service.yaml +++ b/packages/kogito-serverless-operator/config/rbac/auth_proxy_service.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + apiVersion: v1 kind: Service metadata: diff --git a/packages/kogito-serverless-operator/config/rbac/builder_role.yaml b/packages/kogito-serverless-operator/config/rbac/builder_role.yaml index 3547077f70d..a71614f856c 100644 --- a/packages/kogito-serverless-operator/config/rbac/builder_role.yaml +++ b/packages/kogito-serverless-operator/config/rbac/builder_role.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + --- apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRole diff --git a/packages/kogito-serverless-operator/config/rbac/builder_role_binding.yaml b/packages/kogito-serverless-operator/config/rbac/builder_role_binding.yaml index 160a7470f7e..6896e987b15 100644 --- a/packages/kogito-serverless-operator/config/rbac/builder_role_binding.yaml +++ b/packages/kogito-serverless-operator/config/rbac/builder_role_binding.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRoleBinding metadata: diff --git a/packages/kogito-serverless-operator/config/rbac/kustomization.yaml b/packages/kogito-serverless-operator/config/rbac/kustomization.yaml index 877a27cfae0..190d383d778 100644 --- a/packages/kogito-serverless-operator/config/rbac/kustomization.yaml +++ b/packages/kogito-serverless-operator/config/rbac/kustomization.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + resources: # All RBAC will be applied under this service account in # the deployment namespace. You may comment out this resource diff --git a/packages/kogito-serverless-operator/config/rbac/leader_election_role.yaml b/packages/kogito-serverless-operator/config/rbac/leader_election_role.yaml index 9221419fae4..6658bb43a49 100644 --- a/packages/kogito-serverless-operator/config/rbac/leader_election_role.yaml +++ b/packages/kogito-serverless-operator/config/rbac/leader_election_role.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + # permissions to do leader election. apiVersion: rbac.authorization.k8s.io/v1 kind: Role diff --git a/packages/kogito-serverless-operator/config/rbac/leader_election_role_binding.yaml b/packages/kogito-serverless-operator/config/rbac/leader_election_role_binding.yaml index 887508ddeff..103212b4946 100644 --- a/packages/kogito-serverless-operator/config/rbac/leader_election_role_binding.yaml +++ b/packages/kogito-serverless-operator/config/rbac/leader_election_role_binding.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + apiVersion: rbac.authorization.k8s.io/v1 kind: RoleBinding metadata: diff --git a/packages/kogito-serverless-operator/config/rbac/openshift_role.yaml b/packages/kogito-serverless-operator/config/rbac/openshift_role.yaml index 04945c5098b..e10968814a7 100644 --- a/packages/kogito-serverless-operator/config/rbac/openshift_role.yaml +++ b/packages/kogito-serverless-operator/config/rbac/openshift_role.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + --- apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRole diff --git a/packages/kogito-serverless-operator/config/rbac/openshift_role_binding.yaml b/packages/kogito-serverless-operator/config/rbac/openshift_role_binding.yaml index 1aaff931744..111c70ae495 100644 --- a/packages/kogito-serverless-operator/config/rbac/openshift_role_binding.yaml +++ b/packages/kogito-serverless-operator/config/rbac/openshift_role_binding.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRoleBinding metadata: diff --git a/packages/kogito-serverless-operator/config/rbac/operator_role_binding_leases.yaml b/packages/kogito-serverless-operator/config/rbac/operator_role_binding_leases.yaml index 188c7e218c7..e574a272a05 100644 --- a/packages/kogito-serverless-operator/config/rbac/operator_role_binding_leases.yaml +++ b/packages/kogito-serverless-operator/config/rbac/operator_role_binding_leases.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + kind: ClusterRoleBinding apiVersion: rbac.authorization.k8s.io/v1 metadata: diff --git a/packages/kogito-serverless-operator/config/rbac/operator_role_leases.yaml b/packages/kogito-serverless-operator/config/rbac/operator_role_leases.yaml index 1dacd7d7439..c7816443f12 100644 --- a/packages/kogito-serverless-operator/config/rbac/operator_role_leases.yaml +++ b/packages/kogito-serverless-operator/config/rbac/operator_role_leases.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + kind: ClusterRole apiVersion: rbac.authorization.k8s.io/v1 metadata: diff --git a/packages/kogito-serverless-operator/config/rbac/role_binding.yaml b/packages/kogito-serverless-operator/config/rbac/role_binding.yaml index d5925c3ac9a..ed947db9c30 100644 --- a/packages/kogito-serverless-operator/config/rbac/role_binding.yaml +++ b/packages/kogito-serverless-operator/config/rbac/role_binding.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRoleBinding metadata: diff --git a/packages/kogito-serverless-operator/config/rbac/service_account.yaml b/packages/kogito-serverless-operator/config/rbac/service_account.yaml index 7cd6025bfc4..126d4c8b9c4 100644 --- a/packages/kogito-serverless-operator/config/rbac/service_account.yaml +++ b/packages/kogito-serverless-operator/config/rbac/service_account.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + apiVersion: v1 kind: ServiceAccount metadata: diff --git a/packages/kogito-serverless-operator/config/rbac/service_discovery_role.yaml b/packages/kogito-serverless-operator/config/rbac/service_discovery_role.yaml index ea72098fa29..b2fb5c2a9c8 100644 --- a/packages/kogito-serverless-operator/config/rbac/service_discovery_role.yaml +++ b/packages/kogito-serverless-operator/config/rbac/service_discovery_role.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + --- apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRole diff --git a/packages/kogito-serverless-operator/config/rbac/service_discovery_role_binding.yaml b/packages/kogito-serverless-operator/config/rbac/service_discovery_role_binding.yaml index 00518a3ea47..9e90b45fca3 100644 --- a/packages/kogito-serverless-operator/config/rbac/service_discovery_role_binding.yaml +++ b/packages/kogito-serverless-operator/config/rbac/service_discovery_role_binding.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + --- apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRoleBinding diff --git a/packages/kogito-serverless-operator/config/rbac/sonataflow_editor_role.yaml b/packages/kogito-serverless-operator/config/rbac/sonataflow_editor_role.yaml index d7a1634d12b..7193c9c6d5d 100644 --- a/packages/kogito-serverless-operator/config/rbac/sonataflow_editor_role.yaml +++ b/packages/kogito-serverless-operator/config/rbac/sonataflow_editor_role.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + # permissions for end users to edit sonataflowworkflows. apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRole diff --git a/packages/kogito-serverless-operator/config/rbac/sonataflow_viewer_role.yaml b/packages/kogito-serverless-operator/config/rbac/sonataflow_viewer_role.yaml index f1cacbb89a5..0faa1594df3 100644 --- a/packages/kogito-serverless-operator/config/rbac/sonataflow_viewer_role.yaml +++ b/packages/kogito-serverless-operator/config/rbac/sonataflow_viewer_role.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + # permissions for end users to view sonataflowworkflows. apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRole diff --git a/packages/kogito-serverless-operator/config/rbac/sonataflowbuild_editor_role.yaml b/packages/kogito-serverless-operator/config/rbac/sonataflowbuild_editor_role.yaml index 76fdb8dd3ef..a964f4a3488 100644 --- a/packages/kogito-serverless-operator/config/rbac/sonataflowbuild_editor_role.yaml +++ b/packages/kogito-serverless-operator/config/rbac/sonataflowbuild_editor_role.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + # permissions for end users to edit sonataflowworkflowbuilds. apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRole diff --git a/packages/kogito-serverless-operator/config/rbac/sonataflowbuild_viewer_role.yaml b/packages/kogito-serverless-operator/config/rbac/sonataflowbuild_viewer_role.yaml index 08fcc90e375..1b9c6488bc6 100644 --- a/packages/kogito-serverless-operator/config/rbac/sonataflowbuild_viewer_role.yaml +++ b/packages/kogito-serverless-operator/config/rbac/sonataflowbuild_viewer_role.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + # permissions for end users to view sonataflowworkflowbuilds. apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRole diff --git a/packages/kogito-serverless-operator/config/rbac/sonataflowclusterplatform_editor_role.yaml b/packages/kogito-serverless-operator/config/rbac/sonataflowclusterplatform_editor_role.yaml index 0218ffa5cea..9a074a56794 100644 --- a/packages/kogito-serverless-operator/config/rbac/sonataflowclusterplatform_editor_role.yaml +++ b/packages/kogito-serverless-operator/config/rbac/sonataflowclusterplatform_editor_role.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + # permissions for end users to edit sonataflowclusterplatforms. apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRole diff --git a/packages/kogito-serverless-operator/config/rbac/sonataflowclusterplatform_viewer_cluster_role_binding.yaml b/packages/kogito-serverless-operator/config/rbac/sonataflowclusterplatform_viewer_cluster_role_binding.yaml index 27991fc0a01..58c2e4e7de5 100644 --- a/packages/kogito-serverless-operator/config/rbac/sonataflowclusterplatform_viewer_cluster_role_binding.yaml +++ b/packages/kogito-serverless-operator/config/rbac/sonataflowclusterplatform_viewer_cluster_role_binding.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + # allow users to view SonataFlowClusterPlatforms cluster-wide apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRoleBinding diff --git a/packages/kogito-serverless-operator/config/rbac/sonataflowclusterplatform_viewer_role.yaml b/packages/kogito-serverless-operator/config/rbac/sonataflowclusterplatform_viewer_role.yaml index 72c7def9e12..c060d016550 100644 --- a/packages/kogito-serverless-operator/config/rbac/sonataflowclusterplatform_viewer_role.yaml +++ b/packages/kogito-serverless-operator/config/rbac/sonataflowclusterplatform_viewer_role.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + # permissions for end users to view sonataflowclusterplatforms. apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRole diff --git a/packages/kogito-serverless-operator/config/rbac/sonataflowplatform_editor_role.yaml b/packages/kogito-serverless-operator/config/rbac/sonataflowplatform_editor_role.yaml index d0dd6550e47..10f1599d15a 100644 --- a/packages/kogito-serverless-operator/config/rbac/sonataflowplatform_editor_role.yaml +++ b/packages/kogito-serverless-operator/config/rbac/sonataflowplatform_editor_role.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + # permissions for end users to edit sonataflowplatforms. apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRole diff --git a/packages/kogito-serverless-operator/config/rbac/sonataflowplatform_viewer_role.yaml b/packages/kogito-serverless-operator/config/rbac/sonataflowplatform_viewer_role.yaml index 1f2edd009f9..f18619359a0 100644 --- a/packages/kogito-serverless-operator/config/rbac/sonataflowplatform_viewer_role.yaml +++ b/packages/kogito-serverless-operator/config/rbac/sonataflowplatform_viewer_role.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + # permissions for end users to view sonataflowplatforms. apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRole diff --git a/packages/kogito-serverless-operator/config/samples/kustomization.yaml b/packages/kogito-serverless-operator/config/samples/kustomization.yaml index 13918f6235b..87b26709cb5 100644 --- a/packages/kogito-serverless-operator/config/samples/kustomization.yaml +++ b/packages/kogito-serverless-operator/config/samples/kustomization.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + ## Append samples you want in your CSV to this file as resources ## resources: - sonataflow.org_v1alpha08_sonataflow.yaml diff --git a/packages/kogito-serverless-operator/config/samples/sonataflow.org_v1alpha08_sonataflow.yaml b/packages/kogito-serverless-operator/config/samples/sonataflow.org_v1alpha08_sonataflow.yaml index e094379fc14..0652b2ead1b 100644 --- a/packages/kogito-serverless-operator/config/samples/sonataflow.org_v1alpha08_sonataflow.yaml +++ b/packages/kogito-serverless-operator/config/samples/sonataflow.org_v1alpha08_sonataflow.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + apiVersion: sonataflow.org/v1alpha08 kind: SonataFlow metadata: diff --git a/packages/kogito-serverless-operator/config/samples/sonataflow.org_v1alpha08_sonataflow_devmodeWithConfigMapAndExternalResource.yaml b/packages/kogito-serverless-operator/config/samples/sonataflow.org_v1alpha08_sonataflow_devmodeWithConfigMapAndExternalResource.yaml index 79f6cf80b6c..cbf3ef0ded7 100644 --- a/packages/kogito-serverless-operator/config/samples/sonataflow.org_v1alpha08_sonataflow_devmodeWithConfigMapAndExternalResource.yaml +++ b/packages/kogito-serverless-operator/config/samples/sonataflow.org_v1alpha08_sonataflow_devmodeWithConfigMapAndExternalResource.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + --- apiVersion: v1 data: diff --git a/packages/kogito-serverless-operator/config/samples/sonataflow.org_v1alpha08_sonataflowclusterplatform.yaml b/packages/kogito-serverless-operator/config/samples/sonataflow.org_v1alpha08_sonataflowclusterplatform.yaml index 2117a7a078a..446cb323c34 100644 --- a/packages/kogito-serverless-operator/config/samples/sonataflow.org_v1alpha08_sonataflowclusterplatform.yaml +++ b/packages/kogito-serverless-operator/config/samples/sonataflow.org_v1alpha08_sonataflowclusterplatform.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + apiVersion: sonataflow.org/v1alpha08 kind: SonataFlowClusterPlatform metadata: diff --git a/packages/kogito-serverless-operator/config/samples/sonataflow.org_v1alpha08_sonataflowplatform.yaml b/packages/kogito-serverless-operator/config/samples/sonataflow.org_v1alpha08_sonataflowplatform.yaml index cc5b3cbb96c..1599252ff94 100644 --- a/packages/kogito-serverless-operator/config/samples/sonataflow.org_v1alpha08_sonataflowplatform.yaml +++ b/packages/kogito-serverless-operator/config/samples/sonataflow.org_v1alpha08_sonataflowplatform.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + apiVersion: sonataflow.org/v1alpha08 kind: SonataFlowPlatform metadata: diff --git a/packages/kogito-serverless-operator/config/scorecard/bases/config.yaml b/packages/kogito-serverless-operator/config/scorecard/bases/config.yaml index 707a5c25fd0..68c14df8e2a 100644 --- a/packages/kogito-serverless-operator/config/scorecard/bases/config.yaml +++ b/packages/kogito-serverless-operator/config/scorecard/bases/config.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + apiVersion: scorecard.operatorframework.io/v1alpha3 kind: Configuration metadata: diff --git a/packages/kogito-serverless-operator/config/scorecard/kustomization.yaml b/packages/kogito-serverless-operator/config/scorecard/kustomization.yaml index ee7181bb3b0..0fed554ef94 100644 --- a/packages/kogito-serverless-operator/config/scorecard/kustomization.yaml +++ b/packages/kogito-serverless-operator/config/scorecard/kustomization.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + resources: - bases/config.yaml patchesJson6902: diff --git a/packages/kogito-serverless-operator/config/scorecard/patches/basic.config.yaml b/packages/kogito-serverless-operator/config/scorecard/patches/basic.config.yaml index 9289982dc3a..7ef4444657c 100644 --- a/packages/kogito-serverless-operator/config/scorecard/patches/basic.config.yaml +++ b/packages/kogito-serverless-operator/config/scorecard/patches/basic.config.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + - op: add path: /stages/0/tests/- value: diff --git a/packages/kogito-serverless-operator/config/scorecard/patches/olm.config.yaml b/packages/kogito-serverless-operator/config/scorecard/patches/olm.config.yaml index a921027f024..ca9d10b3301 100644 --- a/packages/kogito-serverless-operator/config/scorecard/patches/olm.config.yaml +++ b/packages/kogito-serverless-operator/config/scorecard/patches/olm.config.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + - op: add path: /stages/0/tests/- value: diff --git a/packages/kogito-serverless-operator/container-builder/README.md b/packages/kogito-serverless-operator/container-builder/README.md index bd81dd1a733..70b0efccabd 100644 --- a/packages/kogito-serverless-operator/container-builder/README.md +++ b/packages/kogito-serverless-operator/container-builder/README.md @@ -1,3 +1,20 @@ + + # Container Builder This is an internal build system implementation inspired by [Camel-K Builder package](https://github.com/apache/camel-k/tree/main/pkg/builder) to build Kogito services in a Kubernetes clusters. diff --git a/packages/kogito-serverless-operator/container-builder/examples/api/Build_usingKanikowithCacheAndCustomizations.yaml b/packages/kogito-serverless-operator/container-builder/examples/api/Build_usingKanikowithCacheAndCustomizations.yaml index 4e4bc69826e..c09ecf8442f 100644 --- a/packages/kogito-serverless-operator/container-builder/examples/api/Build_usingKanikowithCacheAndCustomizations.yaml +++ b/packages/kogito-serverless-operator/container-builder/examples/api/Build_usingKanikowithCacheAndCustomizations.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + name: build-kaniko-using-cache-and-customizations spec: tasks: diff --git a/packages/kogito-serverless-operator/container-builder/examples/api/PlatformBuild_usingKanikowithCache.yaml b/packages/kogito-serverless-operator/container-builder/examples/api/PlatformBuild_usingKanikowithCache.yaml index 788da52bba7..83c9a155a47 100644 --- a/packages/kogito-serverless-operator/container-builder/examples/api/PlatformBuild_usingKanikowithCache.yaml +++ b/packages/kogito-serverless-operator/container-builder/examples/api/PlatformBuild_usingKanikowithCache.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + name: platform-kaniko-using-cache spec: publishStrategy: "Kaniko" diff --git a/packages/kogito-serverless-operator/container-builder/examples/app.yaml b/packages/kogito-serverless-operator/container-builder/examples/app.yaml index 5e93dd8f9ab..480c3a5216b 100644 --- a/packages/kogito-serverless-operator/container-builder/examples/app.yaml +++ b/packages/kogito-serverless-operator/container-builder/examples/app.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + # example deployment that can be used to run the built image apiVersion: apps/v1 kind: Deployment diff --git a/packages/kogito-serverless-operator/container-builder/hack/btrfs_installed_tag.sh b/packages/kogito-serverless-operator/container-builder/hack/btrfs_installed_tag.sh index 0073717f76a..6861bd7561e 100755 --- a/packages/kogito-serverless-operator/container-builder/hack/btrfs_installed_tag.sh +++ b/packages/kogito-serverless-operator/container-builder/hack/btrfs_installed_tag.sh @@ -1,4 +1,5 @@ #!/usr/bin/env bash +# # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information @@ -7,7 +8,7 @@ # "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 +# 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 @@ -15,6 +16,7 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. +# ${CPP:-${CC:-cc} -E} ${CPPFLAGS} - > /dev/null 2> /dev/null << EOF #include diff --git a/packages/kogito-serverless-operator/container-builder/hack/btrfs_tag.sh b/packages/kogito-serverless-operator/container-builder/hack/btrfs_tag.sh index 479fee3c550..fd392b58708 100755 --- a/packages/kogito-serverless-operator/container-builder/hack/btrfs_tag.sh +++ b/packages/kogito-serverless-operator/container-builder/hack/btrfs_tag.sh @@ -1,4 +1,5 @@ #!/usr/bin/env bash +# # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information @@ -7,7 +8,7 @@ # "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 +# 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 @@ -15,6 +16,7 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. +# ${CPP:-${CC:-cc} -E} ${CPPFLAGS} - > /dev/null 2> /dev/null << EOF #include diff --git a/packages/kogito-serverless-operator/controllers/cfg/testdata/controllers-cfg-invalid.yaml b/packages/kogito-serverless-operator/controllers/cfg/testdata/controllers-cfg-invalid.yaml index 3d10351d14c..b7285de887e 100644 --- a/packages/kogito-serverless-operator/controllers/cfg/testdata/controllers-cfg-invalid.yaml +++ b/packages/kogito-serverless-operator/controllers/cfg/testdata/controllers-cfg-invalid.yaml @@ -1,15 +1,20 @@ -# Copyright 2024 Apache Software Foundation (ASF) # -# 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 +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# 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. # -# 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. anyThingNotValid: "true" diff --git a/packages/kogito-serverless-operator/controllers/cfg/testdata/controllers-cfg-test.yaml b/packages/kogito-serverless-operator/controllers/cfg/testdata/controllers-cfg-test.yaml index 66ec30d8e34..b3f437c0264 100644 --- a/packages/kogito-serverless-operator/controllers/cfg/testdata/controllers-cfg-test.yaml +++ b/packages/kogito-serverless-operator/controllers/cfg/testdata/controllers-cfg-test.yaml @@ -1,16 +1,21 @@ -# Copyright 2024 Apache Software Foundation (ASF) # -# 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 +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# 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. # -# 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. # The default size of Kaniko PVC when using the internal operator builder manager defaultPvcKanikoSize: 2Gi diff --git a/packages/kogito-serverless-operator/docs/CONTRIBUTING.md b/packages/kogito-serverless-operator/docs/CONTRIBUTING.md index 9fbfff4876a..fc67b7b87ab 100644 --- a/packages/kogito-serverless-operator/docs/CONTRIBUTING.md +++ b/packages/kogito-serverless-operator/docs/CONTRIBUTING.md @@ -1,3 +1,20 @@ + + # We love contributions! - [We love contributions!](#we-love-contributions) diff --git a/packages/kogito-serverless-operator/docs/PIPELINE.md b/packages/kogito-serverless-operator/docs/PIPELINE.md index 18335811afc..769ec631ddb 100644 --- a/packages/kogito-serverless-operator/docs/PIPELINE.md +++ b/packages/kogito-serverless-operator/docs/PIPELINE.md @@ -1,3 +1,20 @@ + + ## Install and configure a Tekton pipeline on Openshift 1. Install Red Hat OpenShift Pipelines on `latest` channel from the Operator Hub using the Openshift UI diff --git a/packages/kogito-serverless-operator/hack/addheaders.sh b/packages/kogito-serverless-operator/hack/addheaders.sh index f5c5afee6e0..e687b0a9693 100755 --- a/packages/kogito-serverless-operator/hack/addheaders.sh +++ b/packages/kogito-serverless-operator/hack/addheaders.sh @@ -1,4 +1,5 @@ #!/bin/bash +# # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information @@ -7,7 +8,7 @@ # "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 +# 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 @@ -15,6 +16,7 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. +# if ! hash addlicense 2>/dev/null; then go install github.com/google/addlicense@latest diff --git a/packages/kogito-serverless-operator/hack/bump-version.sh b/packages/kogito-serverless-operator/hack/bump-version.sh index 855d00575e8..3f15c7efa63 100755 --- a/packages/kogito-serverless-operator/hack/bump-version.sh +++ b/packages/kogito-serverless-operator/hack/bump-version.sh @@ -1,4 +1,5 @@ #!/bin/bash +# # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information @@ -7,7 +8,7 @@ # "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 +# 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 @@ -15,6 +16,8 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. +# + set -e script_dir_path=$(dirname "${BASH_SOURCE[0]}") diff --git a/packages/kogito-serverless-operator/hack/ci/create-kind-cluster-with-registry.sh b/packages/kogito-serverless-operator/hack/ci/create-kind-cluster-with-registry.sh index 2feb2c2540c..56003baf501 100755 --- a/packages/kogito-serverless-operator/hack/ci/create-kind-cluster-with-registry.sh +++ b/packages/kogito-serverless-operator/hack/ci/create-kind-cluster-with-registry.sh @@ -1,18 +1,22 @@ -# Copyright 2024 Apache Software Foundation (ASF) +#!/bin/sh # -# 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 +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# 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. # -# 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. - -#!/bin/sh set -o errexit diff --git a/packages/kogito-serverless-operator/hack/ci/install-minikube.sh b/packages/kogito-serverless-operator/hack/ci/install-minikube.sh index 9a1e1844370..bd4a9151da9 100755 --- a/packages/kogito-serverless-operator/hack/ci/install-minikube.sh +++ b/packages/kogito-serverless-operator/hack/ci/install-minikube.sh @@ -1,4 +1,5 @@ #!/bin/bash +# # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information @@ -7,7 +8,7 @@ # "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 +# 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 @@ -15,6 +16,7 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. +# set -e diff --git a/packages/kogito-serverless-operator/hack/ci/install-operator-sdk.sh b/packages/kogito-serverless-operator/hack/ci/install-operator-sdk.sh index 047fa1d4ab3..2e72a1aa960 100755 --- a/packages/kogito-serverless-operator/hack/ci/install-operator-sdk.sh +++ b/packages/kogito-serverless-operator/hack/ci/install-operator-sdk.sh @@ -1,4 +1,5 @@ #!/bin/bash +# # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information @@ -7,7 +8,7 @@ # "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 +# 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 @@ -15,6 +16,8 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. +# + set -e default_operator_sdk_version=v1.25.0 diff --git a/packages/kogito-serverless-operator/hack/clean-cluster-operators.sh b/packages/kogito-serverless-operator/hack/clean-cluster-operators.sh index cd71bbb2775..78330bedb79 100755 --- a/packages/kogito-serverless-operator/hack/clean-cluster-operators.sh +++ b/packages/kogito-serverless-operator/hack/clean-cluster-operators.sh @@ -1,4 +1,5 @@ #!/bin/bash +# # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information @@ -7,7 +8,7 @@ # "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 +# 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 @@ -15,6 +16,7 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. +# script_dir_path=`dirname "${BASH_SOURCE[0]}"` source ${script_dir_path}/env.sh diff --git a/packages/kogito-serverless-operator/hack/clean-crds.sh b/packages/kogito-serverless-operator/hack/clean-crds.sh index ffb26803265..722e52568fb 100755 --- a/packages/kogito-serverless-operator/hack/clean-crds.sh +++ b/packages/kogito-serverless-operator/hack/clean-crds.sh @@ -1,4 +1,5 @@ #!/bin/bash +# # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information @@ -7,7 +8,7 @@ # "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 +# 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 @@ -15,6 +16,7 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. +# script_dir_path=`dirname "${BASH_SOURCE[0]}"` source ${script_dir_path}/env.sh diff --git a/packages/kogito-serverless-operator/hack/clean-stuck-namespaces.sh b/packages/kogito-serverless-operator/hack/clean-stuck-namespaces.sh index 00165d667b8..67509b621d9 100755 --- a/packages/kogito-serverless-operator/hack/clean-stuck-namespaces.sh +++ b/packages/kogito-serverless-operator/hack/clean-stuck-namespaces.sh @@ -1,4 +1,5 @@ #!/bin/bash +# # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information @@ -7,7 +8,7 @@ # "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 +# 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 @@ -15,6 +16,7 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. +# script_dir_path=`dirname "${BASH_SOURCE[0]}"` source ${script_dir_path}/env.sh diff --git a/packages/kogito-serverless-operator/hack/env.sh b/packages/kogito-serverless-operator/hack/env.sh index 945175db22f..2f1a3bc7ae5 100755 --- a/packages/kogito-serverless-operator/hack/env.sh +++ b/packages/kogito-serverless-operator/hack/env.sh @@ -1,4 +1,5 @@ #!/bin/bash +# # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information @@ -7,7 +8,7 @@ # "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 +# 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 @@ -15,6 +16,7 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. +# CSV_DIR="config/manifests/bases" BUNDLE_DIR="bundle/manifests" diff --git a/packages/kogito-serverless-operator/hack/get-images-sha.sh b/packages/kogito-serverless-operator/hack/get-images-sha.sh index c2240b7a07f..27f34949f29 100755 --- a/packages/kogito-serverless-operator/hack/get-images-sha.sh +++ b/packages/kogito-serverless-operator/hack/get-images-sha.sh @@ -1,4 +1,5 @@ #!/bin/bash +# # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information @@ -7,7 +8,7 @@ # "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 +# 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 @@ -15,6 +16,7 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. +# # # This script fetches the sha256 of images built on Brew and tagged into a specific Brew tag. diff --git a/packages/kogito-serverless-operator/hack/go-path.sh b/packages/kogito-serverless-operator/hack/go-path.sh index 56066af80a0..b4d9e42a8d0 100755 --- a/packages/kogito-serverless-operator/hack/go-path.sh +++ b/packages/kogito-serverless-operator/hack/go-path.sh @@ -1,4 +1,5 @@ #!/bin/bash +# # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information @@ -7,7 +8,7 @@ # "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 +# 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 @@ -15,6 +16,7 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. +# # enforce GOROOT # shellcheck disable=SC2155 diff --git a/packages/kogito-serverless-operator/hack/goimports.sh b/packages/kogito-serverless-operator/hack/goimports.sh index 8a6dc63e03b..27e19ed577f 100755 --- a/packages/kogito-serverless-operator/hack/goimports.sh +++ b/packages/kogito-serverless-operator/hack/goimports.sh @@ -1,4 +1,5 @@ #!/bin/bash +# # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information @@ -7,7 +8,7 @@ # "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 +# 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 @@ -15,6 +16,7 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. +# source ./hack/go-path.sh diff --git a/packages/kogito-serverless-operator/hack/kube-utils.sh b/packages/kogito-serverless-operator/hack/kube-utils.sh index 32fbf005ca5..4acc2f5c37f 100755 --- a/packages/kogito-serverless-operator/hack/kube-utils.sh +++ b/packages/kogito-serverless-operator/hack/kube-utils.sh @@ -1,4 +1,5 @@ #!/bin/bash +# # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information @@ -7,7 +8,7 @@ # "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 +# 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 @@ -15,6 +16,7 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. +# getKubeSystemPodStatusConditions() { kubectl get pods $1 -n kube-system -o json | jq '.items[].status.conditions[]' diff --git a/packages/kogito-serverless-operator/hack/local/build-simple-workflow.sh b/packages/kogito-serverless-operator/hack/local/build-simple-workflow.sh index c0886e45386..f2374d29988 100755 --- a/packages/kogito-serverless-operator/hack/local/build-simple-workflow.sh +++ b/packages/kogito-serverless-operator/hack/local/build-simple-workflow.sh @@ -1,16 +1,22 @@ -# Copyright 2023 Red Hat, Inc. and/or its affiliates +#!/bin/bash # -# 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 +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# 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. # -# 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. rm -rf /tmp/simpleworkflow mkdir -p /tmp/simpleworkflow diff --git a/packages/kogito-serverless-operator/hack/local/greeting_example_deploy.sh b/packages/kogito-serverless-operator/hack/local/greeting_example_deploy.sh index 950217f1411..f2a747ce010 100755 --- a/packages/kogito-serverless-operator/hack/local/greeting_example_deploy.sh +++ b/packages/kogito-serverless-operator/hack/local/greeting_example_deploy.sh @@ -1,4 +1,5 @@ #!/bin/bash +# # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information @@ -7,7 +8,7 @@ # "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 +# 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 @@ -15,6 +16,7 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. +# registry=$1 diff --git a/packages/kogito-serverless-operator/hack/local/greeting_example_remove.sh b/packages/kogito-serverless-operator/hack/local/greeting_example_remove.sh index 449bb463e27..fbe74a06260 100755 --- a/packages/kogito-serverless-operator/hack/local/greeting_example_remove.sh +++ b/packages/kogito-serverless-operator/hack/local/greeting_example_remove.sh @@ -1,4 +1,5 @@ #!/bin/bash +# # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information @@ -7,7 +8,7 @@ # "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 +# 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 @@ -15,7 +16,7 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. - +# remove_operator=${1} diff --git a/packages/kogito-serverless-operator/hack/local/run-e2e-crc.sh b/packages/kogito-serverless-operator/hack/local/run-e2e-crc.sh index c21a6faef3f..3a6768cf2d4 100755 --- a/packages/kogito-serverless-operator/hack/local/run-e2e-crc.sh +++ b/packages/kogito-serverless-operator/hack/local/run-e2e-crc.sh @@ -1,4 +1,5 @@ #!/bin/bash +# # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information @@ -7,7 +8,7 @@ # "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 +# 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 @@ -15,6 +16,7 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. +# # runs the e2e locally on crc NAMESPACE=sonataflow-operator-system diff --git a/packages/kogito-serverless-operator/hack/local/run-e2e.sh b/packages/kogito-serverless-operator/hack/local/run-e2e.sh index 334190f9373..6a9a666e784 100755 --- a/packages/kogito-serverless-operator/hack/local/run-e2e.sh +++ b/packages/kogito-serverless-operator/hack/local/run-e2e.sh @@ -1,4 +1,5 @@ #!/bin/bash +# # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information @@ -7,7 +8,7 @@ # "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 +# 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 @@ -15,6 +16,7 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. +# # runs the e2e locally # You must have minikube installed diff --git a/packages/kogito-serverless-operator/hack/local/run-operator.sh b/packages/kogito-serverless-operator/hack/local/run-operator.sh index 5cb8a73c923..e31651d5e8e 100755 --- a/packages/kogito-serverless-operator/hack/local/run-operator.sh +++ b/packages/kogito-serverless-operator/hack/local/run-operator.sh @@ -1,4 +1,5 @@ #!/bin/bash +# # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information @@ -7,7 +8,7 @@ # "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 +# 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 @@ -15,6 +16,7 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. +# # Runs the operator locally via go main diff --git a/packages/kogito-serverless-operator/hack/run-tests.sh b/packages/kogito-serverless-operator/hack/run-tests.sh index b22b0d72a35..ea2c09b7741 100755 --- a/packages/kogito-serverless-operator/hack/run-tests.sh +++ b/packages/kogito-serverless-operator/hack/run-tests.sh @@ -1,4 +1,5 @@ #!/bin/bash +# # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information @@ -7,7 +8,7 @@ # "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 +# 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 @@ -15,6 +16,7 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. +# # runs all BDD tests for the operator SCRIPT_NAME=`basename $0` diff --git a/packages/kogito-serverless-operator/images/bundle.yaml b/packages/kogito-serverless-operator/images/bundle.yaml index fe797bc3fe2..ce20008ca2a 100644 --- a/packages/kogito-serverless-operator/images/bundle.yaml +++ b/packages/kogito-serverless-operator/images/bundle.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + schema_version: 1 name: "sonataflow-operator-bundle" description: "SonataFlow Operator Bundle" diff --git a/packages/kogito-serverless-operator/images/manager.yaml b/packages/kogito-serverless-operator/images/manager.yaml index 6dfdb2c19a2..e3d0fafca84 100644 --- a/packages/kogito-serverless-operator/images/manager.yaml +++ b/packages/kogito-serverless-operator/images/manager.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + - name: operator-builder version: 0.0.0 from: "golang:1.21.6" diff --git a/packages/kogito-serverless-operator/images/modules/org.apache.kie.sonataflow.bundle/module.yaml b/packages/kogito-serverless-operator/images/modules/org.apache.kie.sonataflow.bundle/module.yaml index 7348191deef..7a8fa6e1fec 100644 --- a/packages/kogito-serverless-operator/images/modules/org.apache.kie.sonataflow.bundle/module.yaml +++ b/packages/kogito-serverless-operator/images/modules/org.apache.kie.sonataflow.bundle/module.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + name: org.apache.kie.sonataflow.bundle version: "1.0" description: Copy the bundle files to the target image diff --git a/packages/kogito-serverless-operator/images/modules/org.apache.kie.sonataflow.goModDownload/install.sh b/packages/kogito-serverless-operator/images/modules/org.apache.kie.sonataflow.goModDownload/install.sh index e2d36e4f6ef..dfa12d28413 100755 --- a/packages/kogito-serverless-operator/images/modules/org.apache.kie.sonataflow.goModDownload/install.sh +++ b/packages/kogito-serverless-operator/images/modules/org.apache.kie.sonataflow.goModDownload/install.sh @@ -1,4 +1,5 @@ #!/bin/sh +# # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information @@ -7,7 +8,7 @@ # "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 +# 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 @@ -15,6 +16,8 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. +# + set -e cd /workspace go mod download \ No newline at end of file diff --git a/packages/kogito-serverless-operator/images/modules/org.apache.kie.sonataflow.goModDownload/module.yaml b/packages/kogito-serverless-operator/images/modules/org.apache.kie.sonataflow.goModDownload/module.yaml index befb19a313a..149367ba37d 100644 --- a/packages/kogito-serverless-operator/images/modules/org.apache.kie.sonataflow.goModDownload/module.yaml +++ b/packages/kogito-serverless-operator/images/modules/org.apache.kie.sonataflow.goModDownload/module.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + name: org.apache.kie.sonataflow.goModDownload version: "1.0" description: Download and cache the modules diff --git a/packages/kogito-serverless-operator/images/modules/org.apache.kie.sonataflow.operatorBuilder/install.sh b/packages/kogito-serverless-operator/images/modules/org.apache.kie.sonataflow.operatorBuilder/install.sh index d4e18d13edb..4e0a594ec86 100644 --- a/packages/kogito-serverless-operator/images/modules/org.apache.kie.sonataflow.operatorBuilder/install.sh +++ b/packages/kogito-serverless-operator/images/modules/org.apache.kie.sonataflow.operatorBuilder/install.sh @@ -1,4 +1,5 @@ #!/bin/sh +# # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information @@ -7,7 +8,7 @@ # "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 +# 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 @@ -15,6 +16,8 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. +# + set -e cd /workspace diff --git a/packages/kogito-serverless-operator/images/modules/org.apache.kie.sonataflow.operatorBuilder/module.yaml b/packages/kogito-serverless-operator/images/modules/org.apache.kie.sonataflow.operatorBuilder/module.yaml index 4b1c6ced92c..3e020c63131 100644 --- a/packages/kogito-serverless-operator/images/modules/org.apache.kie.sonataflow.operatorBuilder/module.yaml +++ b/packages/kogito-serverless-operator/images/modules/org.apache.kie.sonataflow.operatorBuilder/module.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + name: org.apache.kie.sonataflow.operatorBuilder version: "1.0" description: Builds the operator binary diff --git a/packages/kogito-serverless-operator/tekton/pipeline/kogito_serverless_operator_pipeline.yaml b/packages/kogito-serverless-operator/tekton/pipeline/kogito_serverless_operator_pipeline.yaml index 3e05f9c6177..3ff959dcd46 100644 --- a/packages/kogito-serverless-operator/tekton/pipeline/kogito_serverless_operator_pipeline.yaml +++ b/packages/kogito-serverless-operator/tekton/pipeline/kogito_serverless_operator_pipeline.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + apiVersion: tekton.dev/v1beta1 kind: Pipeline metadata: diff --git a/packages/kogito-serverless-operator/tekton/pipeline/kogito_serverless_operator_pipeline_run.yaml b/packages/kogito-serverless-operator/tekton/pipeline/kogito_serverless_operator_pipeline_run.yaml index b09d1d876af..5ccda5c4de9 100644 --- a/packages/kogito-serverless-operator/tekton/pipeline/kogito_serverless_operator_pipeline_run.yaml +++ b/packages/kogito-serverless-operator/tekton/pipeline/kogito_serverless_operator_pipeline_run.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + apiVersion: tekton.dev/v1beta1 kind: PipelineRun metadata: diff --git a/packages/kogito-serverless-operator/tekton/role/cluster_role.yaml b/packages/kogito-serverless-operator/tekton/role/cluster_role.yaml index 2b0d2ec9eab..67f5c8bcaf0 100644 --- a/packages/kogito-serverless-operator/tekton/role/cluster_role.yaml +++ b/packages/kogito-serverless-operator/tekton/role/cluster_role.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRole metadata: diff --git a/packages/kogito-serverless-operator/tekton/role/cluster_role_binding.yaml b/packages/kogito-serverless-operator/tekton/role/cluster_role_binding.yaml index ce887fda840..1929c626449 100644 --- a/packages/kogito-serverless-operator/tekton/role/cluster_role_binding.yaml +++ b/packages/kogito-serverless-operator/tekton/role/cluster_role_binding.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRoleBinding metadata: diff --git a/packages/kogito-serverless-operator/tekton/task/show_workspace_content.yaml b/packages/kogito-serverless-operator/tekton/task/show_workspace_content.yaml index 40d07b807e4..dc070218e60 100644 --- a/packages/kogito-serverless-operator/tekton/task/show_workspace_content.yaml +++ b/packages/kogito-serverless-operator/tekton/task/show_workspace_content.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + apiVersion: tekton.dev/v1beta1 kind: Task metadata: diff --git a/packages/kogito-serverless-operator/tekton/trigger/trigger_binding.yaml b/packages/kogito-serverless-operator/tekton/trigger/trigger_binding.yaml index 643cb4c44d7..441d5909bf7 100644 --- a/packages/kogito-serverless-operator/tekton/trigger/trigger_binding.yaml +++ b/packages/kogito-serverless-operator/tekton/trigger/trigger_binding.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + apiVersion: triggers.tekton.dev/v1beta1 kind: TriggerBinding metadata: diff --git a/packages/kogito-serverless-operator/tekton/trigger/trigger_event_listener.yaml b/packages/kogito-serverless-operator/tekton/trigger/trigger_event_listener.yaml index 383860a129f..8d622ba3642 100644 --- a/packages/kogito-serverless-operator/tekton/trigger/trigger_event_listener.yaml +++ b/packages/kogito-serverless-operator/tekton/trigger/trigger_event_listener.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + apiVersion: triggers.tekton.dev/v1alpha1 kind: EventListener metadata: diff --git a/packages/kogito-serverless-operator/tekton/trigger/trigger_resource.yaml b/packages/kogito-serverless-operator/tekton/trigger/trigger_resource.yaml index 7ea8b39a2d0..55ea4a53921 100644 --- a/packages/kogito-serverless-operator/tekton/trigger/trigger_resource.yaml +++ b/packages/kogito-serverless-operator/tekton/trigger/trigger_resource.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + apiVersion: triggers.tekton.dev/v1beta1 kind: Trigger metadata: diff --git a/packages/kogito-serverless-operator/tekton/trigger/trigger_template.yaml b/packages/kogito-serverless-operator/tekton/trigger/trigger_template.yaml index a7e55ac162a..f49be0e6b94 100644 --- a/packages/kogito-serverless-operator/tekton/trigger/trigger_template.yaml +++ b/packages/kogito-serverless-operator/tekton/trigger/trigger_template.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + apiVersion: triggers.tekton.dev/v1beta1 kind: TriggerTemplate metadata: diff --git a/packages/kogito-serverless-operator/tekton/trigger/webhook_event_listener_route.yaml b/packages/kogito-serverless-operator/tekton/trigger/webhook_event_listener_route.yaml index 16bfe88e851..570d59b3df1 100644 --- a/packages/kogito-serverless-operator/tekton/trigger/webhook_event_listener_route.yaml +++ b/packages/kogito-serverless-operator/tekton/trigger/webhook_event_listener_route.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + apiVersion: route.openshift.io/v1 kind: Route metadata: diff --git a/packages/kogito-serverless-operator/tekton/volume/persistent_volume.yaml b/packages/kogito-serverless-operator/tekton/volume/persistent_volume.yaml index ecaad9142e2..492ea7e7e4b 100644 --- a/packages/kogito-serverless-operator/tekton/volume/persistent_volume.yaml +++ b/packages/kogito-serverless-operator/tekton/volume/persistent_volume.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + apiVersion: v1 kind: PersistentVolumeClaim metadata: diff --git a/packages/kogito-serverless-operator/test/testdata/order-processing/01_v1_configmap_subflows.yaml b/packages/kogito-serverless-operator/test/testdata/order-processing/01_v1_configmap_subflows.yaml index fe896c10bfd..8d02c2d0955 100644 --- a/packages/kogito-serverless-operator/test/testdata/order-processing/01_v1_configmap_subflows.yaml +++ b/packages/kogito-serverless-operator/test/testdata/order-processing/01_v1_configmap_subflows.yaml @@ -1,3 +1,4 @@ +# # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information @@ -6,7 +7,7 @@ # "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 +# 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 @@ -14,6 +15,7 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. +# kind: ConfigMap apiVersion: v1 diff --git a/packages/kogito-serverless-operator/test/testdata/order-processing/02_appsv1_deployment_eventlistener.yaml b/packages/kogito-serverless-operator/test/testdata/order-processing/02_appsv1_deployment_eventlistener.yaml index b9b810b355c..067d10f74c3 100644 --- a/packages/kogito-serverless-operator/test/testdata/order-processing/02_appsv1_deployment_eventlistener.yaml +++ b/packages/kogito-serverless-operator/test/testdata/order-processing/02_appsv1_deployment_eventlistener.yaml @@ -1,3 +1,4 @@ +# # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information @@ -6,7 +7,7 @@ # "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 +# 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 @@ -14,6 +15,7 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. +# apiVersion: v1 kind: Service diff --git a/packages/kogito-serverless-operator/test/testdata/order-processing/03_discovery_role.yaml b/packages/kogito-serverless-operator/test/testdata/order-processing/03_discovery_role.yaml index 5c35ab6a8e9..b439091cdc8 100644 --- a/packages/kogito-serverless-operator/test/testdata/order-processing/03_discovery_role.yaml +++ b/packages/kogito-serverless-operator/test/testdata/order-processing/03_discovery_role.yaml @@ -1,3 +1,4 @@ +# # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information @@ -6,7 +7,7 @@ # "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 +# 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 @@ -14,6 +15,7 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. +# apiVersion: rbac.authorization.k8s.io/v1 kind: Role diff --git a/packages/kogito-serverless-operator/test/testdata/order-processing/04_v1_configmap_properties.yaml b/packages/kogito-serverless-operator/test/testdata/order-processing/04_v1_configmap_properties.yaml index 5392bd27277..76b409042e0 100644 --- a/packages/kogito-serverless-operator/test/testdata/order-processing/04_v1_configmap_properties.yaml +++ b/packages/kogito-serverless-operator/test/testdata/order-processing/04_v1_configmap_properties.yaml @@ -1,3 +1,4 @@ +# # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information @@ -6,7 +7,7 @@ # "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 +# 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 @@ -14,6 +15,7 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. +# kind: ConfigMap apiVersion: v1 diff --git a/packages/kogito-serverless-operator/test/testdata/order-processing/05_sonataflow.org_v1alpha08_sonataflow_devmode_orderprocessing.yaml b/packages/kogito-serverless-operator/test/testdata/order-processing/05_sonataflow.org_v1alpha08_sonataflow_devmode_orderprocessing.yaml index b8cae65cf0a..05c87d8d3b9 100644 --- a/packages/kogito-serverless-operator/test/testdata/order-processing/05_sonataflow.org_v1alpha08_sonataflow_devmode_orderprocessing.yaml +++ b/packages/kogito-serverless-operator/test/testdata/order-processing/05_sonataflow.org_v1alpha08_sonataflow_devmode_orderprocessing.yaml @@ -1,3 +1,4 @@ +# # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information @@ -6,7 +7,7 @@ # "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 +# 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 @@ -14,6 +15,7 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. +# apiVersion: sonataflow.org/v1alpha08 kind: SonataFlow diff --git a/packages/kogito-serverless-operator/test/testdata/order-processing/README.md b/packages/kogito-serverless-operator/test/testdata/order-processing/README.md index 450761ded10..dca6221fa70 100644 --- a/packages/kogito-serverless-operator/test/testdata/order-processing/README.md +++ b/packages/kogito-serverless-operator/test/testdata/order-processing/README.md @@ -1,3 +1,20 @@ + + # Order Processing Example See: https://github.com/kiegroup/kogito-examples/tree/main/serverless-workflow-examples/serverless-workflow-order-processing diff --git a/packages/kogito-serverless-operator/test/testdata/platform/noservices/preview/ephemeral/02-sonataflow_platform.yaml b/packages/kogito-serverless-operator/test/testdata/platform/noservices/preview/ephemeral/02-sonataflow_platform.yaml index 87d5297b40d..0fcd3b9d712 100644 --- a/packages/kogito-serverless-operator/test/testdata/platform/noservices/preview/ephemeral/02-sonataflow_platform.yaml +++ b/packages/kogito-serverless-operator/test/testdata/platform/noservices/preview/ephemeral/02-sonataflow_platform.yaml @@ -1,16 +1,21 @@ -# Copyright 2024 Apache Software Foundation (ASF) # -# 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 +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# 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. # -# 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. apiVersion: sonataflow.org/v1alpha08 kind: SonataFlowPlatform diff --git a/packages/kogito-serverless-operator/test/testdata/platform/noservices/preview/ephemeral/kustomization.yaml b/packages/kogito-serverless-operator/test/testdata/platform/noservices/preview/ephemeral/kustomization.yaml index c078452270e..74897df5a28 100644 --- a/packages/kogito-serverless-operator/test/testdata/platform/noservices/preview/ephemeral/kustomization.yaml +++ b/packages/kogito-serverless-operator/test/testdata/platform/noservices/preview/ephemeral/kustomization.yaml @@ -1,16 +1,21 @@ -# Copyright 2024 Apache Software Foundation (ASF) # -# 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 +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# 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. # -# 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. resources: - 02-sonataflow_platform.yaml diff --git a/packages/kogito-serverless-operator/test/testdata/platform/noservices/preview/ephemeral/sonataflow/03-sonataflow_callbackstatetimeouts.sw.yaml b/packages/kogito-serverless-operator/test/testdata/platform/noservices/preview/ephemeral/sonataflow/03-sonataflow_callbackstatetimeouts.sw.yaml index 0709fbe9bc8..5d1b6b329ce 100644 --- a/packages/kogito-serverless-operator/test/testdata/platform/noservices/preview/ephemeral/sonataflow/03-sonataflow_callbackstatetimeouts.sw.yaml +++ b/packages/kogito-serverless-operator/test/testdata/platform/noservices/preview/ephemeral/sonataflow/03-sonataflow_callbackstatetimeouts.sw.yaml @@ -1,16 +1,21 @@ -# Copyright 2024 Apache Software Foundation (ASF) # -# 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 +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# 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. # -# 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. apiVersion: sonataflow.org/v1alpha08 kind: SonataFlow diff --git a/packages/kogito-serverless-operator/test/testdata/platform/persistence/generic_from_platform_cr/01-postgres.yaml b/packages/kogito-serverless-operator/test/testdata/platform/persistence/generic_from_platform_cr/01-postgres.yaml index be063351636..2365b93df6f 100644 --- a/packages/kogito-serverless-operator/test/testdata/platform/persistence/generic_from_platform_cr/01-postgres.yaml +++ b/packages/kogito-serverless-operator/test/testdata/platform/persistence/generic_from_platform_cr/01-postgres.yaml @@ -1,16 +1,21 @@ -# Copyright 2024 Apache Software Foundation (ASF) # -# 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 +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# 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. # -# 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. --- apiVersion: v1 diff --git a/packages/kogito-serverless-operator/test/testdata/platform/persistence/generic_from_platform_cr/02-sonataflow_platform.yaml b/packages/kogito-serverless-operator/test/testdata/platform/persistence/generic_from_platform_cr/02-sonataflow_platform.yaml index 6d7dae7ff98..64381c71225 100644 --- a/packages/kogito-serverless-operator/test/testdata/platform/persistence/generic_from_platform_cr/02-sonataflow_platform.yaml +++ b/packages/kogito-serverless-operator/test/testdata/platform/persistence/generic_from_platform_cr/02-sonataflow_platform.yaml @@ -1,16 +1,21 @@ -# Copyright 2024 Apache Software Foundation (ASF) # -# 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 +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# 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. # -# 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. apiVersion: sonataflow.org/v1alpha08 kind: SonataFlowPlatform diff --git a/packages/kogito-serverless-operator/test/testdata/platform/persistence/generic_from_platform_cr/kustomization.yaml b/packages/kogito-serverless-operator/test/testdata/platform/persistence/generic_from_platform_cr/kustomization.yaml index fb6f456cee8..da1daea82ff 100644 --- a/packages/kogito-serverless-operator/test/testdata/platform/persistence/generic_from_platform_cr/kustomization.yaml +++ b/packages/kogito-serverless-operator/test/testdata/platform/persistence/generic_from_platform_cr/kustomization.yaml @@ -1,17 +1,21 @@ -# Copyright 2024 Apache Software Foundation (ASF) # -# 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 +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# 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. # -# 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. - resources: - 01-postgres.yaml - 02-sonataflow_platform.yaml diff --git a/packages/kogito-serverless-operator/test/testdata/platform/persistence/overwritten_by_services/01-postgres.yaml b/packages/kogito-serverless-operator/test/testdata/platform/persistence/overwritten_by_services/01-postgres.yaml index be063351636..2365b93df6f 100644 --- a/packages/kogito-serverless-operator/test/testdata/platform/persistence/overwritten_by_services/01-postgres.yaml +++ b/packages/kogito-serverless-operator/test/testdata/platform/persistence/overwritten_by_services/01-postgres.yaml @@ -1,16 +1,21 @@ -# Copyright 2024 Apache Software Foundation (ASF) # -# 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 +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# 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. # -# 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. --- apiVersion: v1 diff --git a/packages/kogito-serverless-operator/test/testdata/platform/persistence/overwritten_by_services/02-sonataflow_platform.yaml b/packages/kogito-serverless-operator/test/testdata/platform/persistence/overwritten_by_services/02-sonataflow_platform.yaml index 8a9323fb9b6..0aa8a660920 100644 --- a/packages/kogito-serverless-operator/test/testdata/platform/persistence/overwritten_by_services/02-sonataflow_platform.yaml +++ b/packages/kogito-serverless-operator/test/testdata/platform/persistence/overwritten_by_services/02-sonataflow_platform.yaml @@ -1,16 +1,21 @@ -# Copyright 2024 Apache Software Foundation (ASF) # -# 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 +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# 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. # -# 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. apiVersion: sonataflow.org/v1alpha08 kind: SonataFlowPlatform diff --git a/packages/kogito-serverless-operator/test/testdata/platform/persistence/overwritten_by_services/kustomization.yaml b/packages/kogito-serverless-operator/test/testdata/platform/persistence/overwritten_by_services/kustomization.yaml index fb6f456cee8..6bfae2974f0 100644 --- a/packages/kogito-serverless-operator/test/testdata/platform/persistence/overwritten_by_services/kustomization.yaml +++ b/packages/kogito-serverless-operator/test/testdata/platform/persistence/overwritten_by_services/kustomization.yaml @@ -1,16 +1,21 @@ -# Copyright 2024 Apache Software Foundation (ASF) # -# 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 +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# 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. # -# 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. resources: - 01-postgres.yaml diff --git a/packages/kogito-serverless-operator/test/testdata/platform/services/dev/ephemeral/02-sonataflow_platform.yaml b/packages/kogito-serverless-operator/test/testdata/platform/services/dev/ephemeral/02-sonataflow_platform.yaml index a1fb788af32..32aab2cc905 100644 --- a/packages/kogito-serverless-operator/test/testdata/platform/services/dev/ephemeral/02-sonataflow_platform.yaml +++ b/packages/kogito-serverless-operator/test/testdata/platform/services/dev/ephemeral/02-sonataflow_platform.yaml @@ -1,16 +1,21 @@ -# Copyright 2024 Apache Software Foundation (ASF) # -# 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 +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# 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. # -# 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. apiVersion: sonataflow.org/v1alpha08 kind: SonataFlowPlatform diff --git a/packages/kogito-serverless-operator/test/testdata/platform/services/dev/ephemeral/kustomization.yaml b/packages/kogito-serverless-operator/test/testdata/platform/services/dev/ephemeral/kustomization.yaml index 81eb1865fff..1df48b30ef4 100644 --- a/packages/kogito-serverless-operator/test/testdata/platform/services/dev/ephemeral/kustomization.yaml +++ b/packages/kogito-serverless-operator/test/testdata/platform/services/dev/ephemeral/kustomization.yaml @@ -1,16 +1,21 @@ -# Copyright 2024 Apache Software Foundation (ASF) # -# 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 +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# 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. # -# 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. resources: - 02-sonataflow_platform.yaml diff --git a/packages/kogito-serverless-operator/test/testdata/platform/services/dev/ephemeral/sonataflow/03-sonataflow_callbackstatetimeouts.sw.yaml b/packages/kogito-serverless-operator/test/testdata/platform/services/dev/ephemeral/sonataflow/03-sonataflow_callbackstatetimeouts.sw.yaml index ec571780a0d..552da51d543 100644 --- a/packages/kogito-serverless-operator/test/testdata/platform/services/dev/ephemeral/sonataflow/03-sonataflow_callbackstatetimeouts.sw.yaml +++ b/packages/kogito-serverless-operator/test/testdata/platform/services/dev/ephemeral/sonataflow/03-sonataflow_callbackstatetimeouts.sw.yaml @@ -1,16 +1,21 @@ -# Copyright 2024 Apache Software Foundation (ASF) # -# 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 +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# 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. # -# 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. apiVersion: sonataflow.org/v1alpha08 kind: SonataFlow diff --git a/packages/kogito-serverless-operator/test/testdata/platform/services/dev/postgreSQL/01-postgres.yaml b/packages/kogito-serverless-operator/test/testdata/platform/services/dev/postgreSQL/01-postgres.yaml index be063351636..2365b93df6f 100644 --- a/packages/kogito-serverless-operator/test/testdata/platform/services/dev/postgreSQL/01-postgres.yaml +++ b/packages/kogito-serverless-operator/test/testdata/platform/services/dev/postgreSQL/01-postgres.yaml @@ -1,16 +1,21 @@ -# Copyright 2024 Apache Software Foundation (ASF) # -# 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 +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# 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. # -# 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. --- apiVersion: v1 diff --git a/packages/kogito-serverless-operator/test/testdata/platform/services/dev/postgreSQL/02-sonataflow_platform.yaml b/packages/kogito-serverless-operator/test/testdata/platform/services/dev/postgreSQL/02-sonataflow_platform.yaml index 6eea798bca6..830267031d5 100644 --- a/packages/kogito-serverless-operator/test/testdata/platform/services/dev/postgreSQL/02-sonataflow_platform.yaml +++ b/packages/kogito-serverless-operator/test/testdata/platform/services/dev/postgreSQL/02-sonataflow_platform.yaml @@ -1,16 +1,21 @@ -# Copyright 2024 Apache Software Foundation (ASF) # -# 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 +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# 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. # -# 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. apiVersion: sonataflow.org/v1alpha08 kind: SonataFlowPlatform diff --git a/packages/kogito-serverless-operator/test/testdata/platform/services/dev/postgreSQL/kustomization.yaml b/packages/kogito-serverless-operator/test/testdata/platform/services/dev/postgreSQL/kustomization.yaml index fb6f456cee8..6bfae2974f0 100644 --- a/packages/kogito-serverless-operator/test/testdata/platform/services/dev/postgreSQL/kustomization.yaml +++ b/packages/kogito-serverless-operator/test/testdata/platform/services/dev/postgreSQL/kustomization.yaml @@ -1,16 +1,21 @@ -# Copyright 2024 Apache Software Foundation (ASF) # -# 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 +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# 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. # -# 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. resources: - 01-postgres.yaml diff --git a/packages/kogito-serverless-operator/test/testdata/platform/services/dev/postgreSQL/sonataflow/04-sonataflow_callbackstatetimeouts.sw.yaml b/packages/kogito-serverless-operator/test/testdata/platform/services/dev/postgreSQL/sonataflow/04-sonataflow_callbackstatetimeouts.sw.yaml index ec571780a0d..552da51d543 100644 --- a/packages/kogito-serverless-operator/test/testdata/platform/services/dev/postgreSQL/sonataflow/04-sonataflow_callbackstatetimeouts.sw.yaml +++ b/packages/kogito-serverless-operator/test/testdata/platform/services/dev/postgreSQL/sonataflow/04-sonataflow_callbackstatetimeouts.sw.yaml @@ -1,16 +1,21 @@ -# Copyright 2024 Apache Software Foundation (ASF) # -# 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 +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# 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. # -# 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. apiVersion: sonataflow.org/v1alpha08 kind: SonataFlow diff --git a/packages/kogito-serverless-operator/test/testdata/platform/services/preview/cluster-wide-ephemeral/01-sonataflow_clusterplatform.yaml b/packages/kogito-serverless-operator/test/testdata/platform/services/preview/cluster-wide-ephemeral/01-sonataflow_clusterplatform.yaml index 57e9735dbea..f0ba3b972e1 100644 --- a/packages/kogito-serverless-operator/test/testdata/platform/services/preview/cluster-wide-ephemeral/01-sonataflow_clusterplatform.yaml +++ b/packages/kogito-serverless-operator/test/testdata/platform/services/preview/cluster-wide-ephemeral/01-sonataflow_clusterplatform.yaml @@ -1,3 +1,4 @@ +# # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information @@ -6,7 +7,7 @@ # "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 +# 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 @@ -14,6 +15,7 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. +# apiVersion: sonataflow.org/v1alpha08 kind: SonataFlowClusterPlatform diff --git a/packages/kogito-serverless-operator/test/testdata/platform/services/preview/cluster-wide-ephemeral/02-sonataflow_platform.yaml b/packages/kogito-serverless-operator/test/testdata/platform/services/preview/cluster-wide-ephemeral/02-sonataflow_platform.yaml index 6cdf1d697b8..67d92d71921 100644 --- a/packages/kogito-serverless-operator/test/testdata/platform/services/preview/cluster-wide-ephemeral/02-sonataflow_platform.yaml +++ b/packages/kogito-serverless-operator/test/testdata/platform/services/preview/cluster-wide-ephemeral/02-sonataflow_platform.yaml @@ -1,16 +1,21 @@ -# Copyright 2024 Apache Software Foundation (ASF) # -# 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 +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# 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. # -# 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. apiVersion: sonataflow.org/v1alpha08 kind: SonataFlowPlatform diff --git a/packages/kogito-serverless-operator/test/testdata/platform/services/preview/cluster-wide-ephemeral/kustomization.yaml b/packages/kogito-serverless-operator/test/testdata/platform/services/preview/cluster-wide-ephemeral/kustomization.yaml index da530c5f4ea..fc09e7586b3 100644 --- a/packages/kogito-serverless-operator/test/testdata/platform/services/preview/cluster-wide-ephemeral/kustomization.yaml +++ b/packages/kogito-serverless-operator/test/testdata/platform/services/preview/cluster-wide-ephemeral/kustomization.yaml @@ -1,16 +1,21 @@ -# Copyright 2024 Apache Software Foundation (ASF) # -# 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 +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# 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. # -# 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. resources: - 01-sonataflow_clusterplatform.yaml diff --git a/packages/kogito-serverless-operator/test/testdata/platform/services/preview/ephemeral-data-index/02-sonataflow_platform.yaml b/packages/kogito-serverless-operator/test/testdata/platform/services/preview/ephemeral-data-index/02-sonataflow_platform.yaml index 6377a731e63..701648c2bdf 100644 --- a/packages/kogito-serverless-operator/test/testdata/platform/services/preview/ephemeral-data-index/02-sonataflow_platform.yaml +++ b/packages/kogito-serverless-operator/test/testdata/platform/services/preview/ephemeral-data-index/02-sonataflow_platform.yaml @@ -1,16 +1,21 @@ -# Copyright 2024 Apache Software Foundation (ASF) # -# 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 +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# 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. # -# 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. apiVersion: sonataflow.org/v1alpha08 kind: SonataFlowPlatform diff --git a/packages/kogito-serverless-operator/test/testdata/platform/services/preview/ephemeral-data-index/kustomization.yaml b/packages/kogito-serverless-operator/test/testdata/platform/services/preview/ephemeral-data-index/kustomization.yaml index c078452270e..74897df5a28 100644 --- a/packages/kogito-serverless-operator/test/testdata/platform/services/preview/ephemeral-data-index/kustomization.yaml +++ b/packages/kogito-serverless-operator/test/testdata/platform/services/preview/ephemeral-data-index/kustomization.yaml @@ -1,16 +1,21 @@ -# Copyright 2024 Apache Software Foundation (ASF) # -# 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 +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# 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. # -# 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. resources: - 02-sonataflow_platform.yaml diff --git a/packages/kogito-serverless-operator/test/testdata/platform/services/preview/ephemeral-data-index/sonataflow/03-sonataflow_callbackstatetimeouts.sw.yaml b/packages/kogito-serverless-operator/test/testdata/platform/services/preview/ephemeral-data-index/sonataflow/03-sonataflow_callbackstatetimeouts.sw.yaml index 0709fbe9bc8..5d1b6b329ce 100644 --- a/packages/kogito-serverless-operator/test/testdata/platform/services/preview/ephemeral-data-index/sonataflow/03-sonataflow_callbackstatetimeouts.sw.yaml +++ b/packages/kogito-serverless-operator/test/testdata/platform/services/preview/ephemeral-data-index/sonataflow/03-sonataflow_callbackstatetimeouts.sw.yaml @@ -1,16 +1,21 @@ -# Copyright 2024 Apache Software Foundation (ASF) # -# 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 +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# 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. # -# 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. apiVersion: sonataflow.org/v1alpha08 kind: SonataFlow diff --git a/packages/kogito-serverless-operator/test/testdata/platform/services/preview/ephemeral-job-service/02-sonataflow_platform.yaml b/packages/kogito-serverless-operator/test/testdata/platform/services/preview/ephemeral-job-service/02-sonataflow_platform.yaml index a61ac76dd72..e9f6ae05aa2 100644 --- a/packages/kogito-serverless-operator/test/testdata/platform/services/preview/ephemeral-job-service/02-sonataflow_platform.yaml +++ b/packages/kogito-serverless-operator/test/testdata/platform/services/preview/ephemeral-job-service/02-sonataflow_platform.yaml @@ -1,17 +1,21 @@ -# Copyright 2024 Apache Software Foundation (ASF) # -# 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 +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# 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. # -# 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. - apiVersion: sonataflow.org/v1alpha08 kind: SonataFlowPlatform metadata: diff --git a/packages/kogito-serverless-operator/test/testdata/platform/services/preview/ephemeral-job-service/kustomization.yaml b/packages/kogito-serverless-operator/test/testdata/platform/services/preview/ephemeral-job-service/kustomization.yaml index c078452270e..38277fb3e23 100644 --- a/packages/kogito-serverless-operator/test/testdata/platform/services/preview/ephemeral-job-service/kustomization.yaml +++ b/packages/kogito-serverless-operator/test/testdata/platform/services/preview/ephemeral-job-service/kustomization.yaml @@ -1,17 +1,21 @@ -# Copyright 2024 Apache Software Foundation (ASF) # -# 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 +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# 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. # -# 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. - resources: - 02-sonataflow_platform.yaml - sonataflow/03-sonataflow_callbackstatetimeouts.sw.yaml diff --git a/packages/kogito-serverless-operator/test/testdata/platform/services/preview/ephemeral-job-service/sonataflow/03-sonataflow_callbackstatetimeouts.sw.yaml b/packages/kogito-serverless-operator/test/testdata/platform/services/preview/ephemeral-job-service/sonataflow/03-sonataflow_callbackstatetimeouts.sw.yaml index 0709fbe9bc8..5d1b6b329ce 100644 --- a/packages/kogito-serverless-operator/test/testdata/platform/services/preview/ephemeral-job-service/sonataflow/03-sonataflow_callbackstatetimeouts.sw.yaml +++ b/packages/kogito-serverless-operator/test/testdata/platform/services/preview/ephemeral-job-service/sonataflow/03-sonataflow_callbackstatetimeouts.sw.yaml @@ -1,16 +1,21 @@ -# Copyright 2024 Apache Software Foundation (ASF) # -# 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 +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# 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. # -# 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. apiVersion: sonataflow.org/v1alpha08 kind: SonataFlow diff --git a/packages/kogito-serverless-operator/test/testdata/platform/services/preview/ephemeral-with-workflow/02-sonataflow_platform.yaml b/packages/kogito-serverless-operator/test/testdata/platform/services/preview/ephemeral-with-workflow/02-sonataflow_platform.yaml index 52b7d11f715..b60109488b1 100644 --- a/packages/kogito-serverless-operator/test/testdata/platform/services/preview/ephemeral-with-workflow/02-sonataflow_platform.yaml +++ b/packages/kogito-serverless-operator/test/testdata/platform/services/preview/ephemeral-with-workflow/02-sonataflow_platform.yaml @@ -1,16 +1,21 @@ -# Copyright 2024 Apache Software Foundation (ASF) # -# 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 +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# 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. # -# 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. apiVersion: sonataflow.org/v1alpha08 kind: SonataFlowPlatform diff --git a/packages/kogito-serverless-operator/test/testdata/platform/services/preview/ephemeral-with-workflow/kustomization.yaml b/packages/kogito-serverless-operator/test/testdata/platform/services/preview/ephemeral-with-workflow/kustomization.yaml index c078452270e..74897df5a28 100644 --- a/packages/kogito-serverless-operator/test/testdata/platform/services/preview/ephemeral-with-workflow/kustomization.yaml +++ b/packages/kogito-serverless-operator/test/testdata/platform/services/preview/ephemeral-with-workflow/kustomization.yaml @@ -1,16 +1,21 @@ -# Copyright 2024 Apache Software Foundation (ASF) # -# 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 +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# 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. # -# 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. resources: - 02-sonataflow_platform.yaml diff --git a/packages/kogito-serverless-operator/test/testdata/platform/services/preview/ephemeral-with-workflow/sonataflow/03-sonataflow_callbackstatetimeouts.sw.yaml b/packages/kogito-serverless-operator/test/testdata/platform/services/preview/ephemeral-with-workflow/sonataflow/03-sonataflow_callbackstatetimeouts.sw.yaml index 0709fbe9bc8..5d1b6b329ce 100644 --- a/packages/kogito-serverless-operator/test/testdata/platform/services/preview/ephemeral-with-workflow/sonataflow/03-sonataflow_callbackstatetimeouts.sw.yaml +++ b/packages/kogito-serverless-operator/test/testdata/platform/services/preview/ephemeral-with-workflow/sonataflow/03-sonataflow_callbackstatetimeouts.sw.yaml @@ -1,16 +1,21 @@ -# Copyright 2024 Apache Software Foundation (ASF) # -# 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 +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# 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. # -# 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. apiVersion: sonataflow.org/v1alpha08 kind: SonataFlow diff --git a/packages/kogito-serverless-operator/test/testdata/platform/services/preview/ephemeral/02-sonataflow_platform.yaml b/packages/kogito-serverless-operator/test/testdata/platform/services/preview/ephemeral/02-sonataflow_platform.yaml index 52b7d11f715..b60109488b1 100644 --- a/packages/kogito-serverless-operator/test/testdata/platform/services/preview/ephemeral/02-sonataflow_platform.yaml +++ b/packages/kogito-serverless-operator/test/testdata/platform/services/preview/ephemeral/02-sonataflow_platform.yaml @@ -1,16 +1,21 @@ -# Copyright 2024 Apache Software Foundation (ASF) # -# 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 +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# 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. # -# 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. apiVersion: sonataflow.org/v1alpha08 kind: SonataFlowPlatform diff --git a/packages/kogito-serverless-operator/test/testdata/platform/services/preview/ephemeral/kustomization.yaml b/packages/kogito-serverless-operator/test/testdata/platform/services/preview/ephemeral/kustomization.yaml index 81eb1865fff..1df48b30ef4 100644 --- a/packages/kogito-serverless-operator/test/testdata/platform/services/preview/ephemeral/kustomization.yaml +++ b/packages/kogito-serverless-operator/test/testdata/platform/services/preview/ephemeral/kustomization.yaml @@ -1,16 +1,21 @@ -# Copyright 2024 Apache Software Foundation (ASF) # -# 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 +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# 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. # -# 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. resources: - 02-sonataflow_platform.yaml diff --git a/packages/kogito-serverless-operator/test/testdata/platform/services/preview/ephemeral/sonataflow/03-sonataflow_callbackstatetimeouts.sw.yaml b/packages/kogito-serverless-operator/test/testdata/platform/services/preview/ephemeral/sonataflow/03-sonataflow_callbackstatetimeouts.sw.yaml index ff075a4a329..ce97d8e35f9 100644 --- a/packages/kogito-serverless-operator/test/testdata/platform/services/preview/ephemeral/sonataflow/03-sonataflow_callbackstatetimeouts.sw.yaml +++ b/packages/kogito-serverless-operator/test/testdata/platform/services/preview/ephemeral/sonataflow/03-sonataflow_callbackstatetimeouts.sw.yaml @@ -1,17 +1,21 @@ -# Copyright 2024 Apache Software Foundation (ASF) # -# 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 +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# 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. # -# 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. - apiVersion: sonataflow.org/v1alpha08 kind: SonataFlow metadata: diff --git a/packages/kogito-serverless-operator/test/testdata/platform/services/preview/postgreSQL/01-postgres.yaml b/packages/kogito-serverless-operator/test/testdata/platform/services/preview/postgreSQL/01-postgres.yaml index be063351636..2365b93df6f 100644 --- a/packages/kogito-serverless-operator/test/testdata/platform/services/preview/postgreSQL/01-postgres.yaml +++ b/packages/kogito-serverless-operator/test/testdata/platform/services/preview/postgreSQL/01-postgres.yaml @@ -1,16 +1,21 @@ -# Copyright 2024 Apache Software Foundation (ASF) # -# 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 +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# 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. # -# 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. --- apiVersion: v1 diff --git a/packages/kogito-serverless-operator/test/testdata/platform/services/preview/postgreSQL/02-sonataflow_platform.yaml b/packages/kogito-serverless-operator/test/testdata/platform/services/preview/postgreSQL/02-sonataflow_platform.yaml index a6e02588c58..0caf3f60e8e 100644 --- a/packages/kogito-serverless-operator/test/testdata/platform/services/preview/postgreSQL/02-sonataflow_platform.yaml +++ b/packages/kogito-serverless-operator/test/testdata/platform/services/preview/postgreSQL/02-sonataflow_platform.yaml @@ -1,16 +1,21 @@ -# Copyright 2024 Apache Software Foundation (ASF) # -# 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 +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# 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. # -# 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. apiVersion: sonataflow.org/v1alpha08 kind: SonataFlowPlatform diff --git a/packages/kogito-serverless-operator/test/testdata/platform/services/preview/postgreSQL/kustomization.yaml b/packages/kogito-serverless-operator/test/testdata/platform/services/preview/postgreSQL/kustomization.yaml index fb6f456cee8..6bfae2974f0 100644 --- a/packages/kogito-serverless-operator/test/testdata/platform/services/preview/postgreSQL/kustomization.yaml +++ b/packages/kogito-serverless-operator/test/testdata/platform/services/preview/postgreSQL/kustomization.yaml @@ -1,16 +1,21 @@ -# Copyright 2024 Apache Software Foundation (ASF) # -# 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 +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# 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. # -# 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. resources: - 01-postgres.yaml diff --git a/packages/kogito-serverless-operator/test/testdata/platform/services/preview/postgreSQL/sonataflow/04-sonataflow_callbackstatetimeouts.sw.yaml b/packages/kogito-serverless-operator/test/testdata/platform/services/preview/postgreSQL/sonataflow/04-sonataflow_callbackstatetimeouts.sw.yaml index ff075a4a329..42358e641f9 100644 --- a/packages/kogito-serverless-operator/test/testdata/platform/services/preview/postgreSQL/sonataflow/04-sonataflow_callbackstatetimeouts.sw.yaml +++ b/packages/kogito-serverless-operator/test/testdata/platform/services/preview/postgreSQL/sonataflow/04-sonataflow_callbackstatetimeouts.sw.yaml @@ -1,16 +1,21 @@ -# Copyright 2024 Apache Software Foundation (ASF) # -# 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 +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# 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. # -# 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. apiVersion: sonataflow.org/v1alpha08 kind: SonataFlow diff --git a/packages/kogito-serverless-operator/test/testdata/sonataflow.org_v1alpha08_sonataflow-metainf.yaml b/packages/kogito-serverless-operator/test/testdata/sonataflow.org_v1alpha08_sonataflow-metainf.yaml index c77ed6b3bb1..5ce40a0cb63 100644 --- a/packages/kogito-serverless-operator/test/testdata/sonataflow.org_v1alpha08_sonataflow-metainf.yaml +++ b/packages/kogito-serverless-operator/test/testdata/sonataflow.org_v1alpha08_sonataflow-metainf.yaml @@ -1,16 +1,21 @@ -# Copyright 2023 Red Hat, Inc. and/or its affiliates # -# 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 +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# 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. # -# 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. apiVersion: sonataflow.org/v1alpha08 kind: SonataFlow diff --git a/packages/kogito-serverless-operator/test/testdata/sonataflow.org_v1alpha08_sonataflow-simpleops.yaml b/packages/kogito-serverless-operator/test/testdata/sonataflow.org_v1alpha08_sonataflow-simpleops.yaml index d55f427f168..b7fdf4b0629 100644 --- a/packages/kogito-serverless-operator/test/testdata/sonataflow.org_v1alpha08_sonataflow-simpleops.yaml +++ b/packages/kogito-serverless-operator/test/testdata/sonataflow.org_v1alpha08_sonataflow-simpleops.yaml @@ -1,16 +1,21 @@ -# Copyright 2023 Red Hat, Inc. and/or its affiliates # -# 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 +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# 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. # -# 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. apiVersion: sonataflow.org/v1alpha08 kind: SonataFlow diff --git a/packages/kogito-serverless-operator/test/testdata/sonataflow.org_v1alpha08_sonataflow.yaml b/packages/kogito-serverless-operator/test/testdata/sonataflow.org_v1alpha08_sonataflow.yaml index 57c3387fe57..77c8e2bfd9a 100644 --- a/packages/kogito-serverless-operator/test/testdata/sonataflow.org_v1alpha08_sonataflow.yaml +++ b/packages/kogito-serverless-operator/test/testdata/sonataflow.org_v1alpha08_sonataflow.yaml @@ -1,3 +1,4 @@ +# # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information @@ -6,7 +7,7 @@ # "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 +# 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 @@ -14,6 +15,7 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. +# apiVersion: sonataflow.org/v1alpha08 kind: SonataFlow diff --git a/packages/kogito-serverless-operator/test/testdata/sonataflow.org_v1alpha08_sonataflow_devmode.yaml b/packages/kogito-serverless-operator/test/testdata/sonataflow.org_v1alpha08_sonataflow_devmode.yaml index 591163fed57..0bac37270cc 100644 --- a/packages/kogito-serverless-operator/test/testdata/sonataflow.org_v1alpha08_sonataflow_devmode.yaml +++ b/packages/kogito-serverless-operator/test/testdata/sonataflow.org_v1alpha08_sonataflow_devmode.yaml @@ -1,3 +1,4 @@ +# # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information @@ -6,7 +7,7 @@ # "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 +# 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 @@ -14,6 +15,7 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. +# apiVersion: sonataflow.org/v1alpha08 kind: SonataFlow diff --git a/packages/kogito-serverless-operator/test/testdata/sonataflow.org_v1alpha08_sonataflow_devmode_events_http.yaml b/packages/kogito-serverless-operator/test/testdata/sonataflow.org_v1alpha08_sonataflow_devmode_events_http.yaml index 0813a0a1115..476107b8268 100644 --- a/packages/kogito-serverless-operator/test/testdata/sonataflow.org_v1alpha08_sonataflow_devmode_events_http.yaml +++ b/packages/kogito-serverless-operator/test/testdata/sonataflow.org_v1alpha08_sonataflow_devmode_events_http.yaml @@ -1,3 +1,4 @@ +# # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information @@ -6,7 +7,7 @@ # "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 +# 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 @@ -14,6 +15,7 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. +# apiVersion: sonataflow.org/v1alpha08 kind: SonataFlow diff --git a/packages/kogito-serverless-operator/test/testdata/sonataflow.org_v1alpha08_sonataflow_greetings_datainput.yaml b/packages/kogito-serverless-operator/test/testdata/sonataflow.org_v1alpha08_sonataflow_greetings_datainput.yaml index 7bc4c925f8a..ec4e8a03477 100644 --- a/packages/kogito-serverless-operator/test/testdata/sonataflow.org_v1alpha08_sonataflow_greetings_datainput.yaml +++ b/packages/kogito-serverless-operator/test/testdata/sonataflow.org_v1alpha08_sonataflow_greetings_datainput.yaml @@ -1,3 +1,4 @@ +# # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information @@ -6,7 +7,7 @@ # "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 +# 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 @@ -14,6 +15,7 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. +# apiVersion: sonataflow.org/v1alpha08 kind: SonataFlow diff --git a/packages/kogito-serverless-operator/test/testdata/sonataflow.org_v1alpha08_sonataflow_vet_event.yaml b/packages/kogito-serverless-operator/test/testdata/sonataflow.org_v1alpha08_sonataflow_vet_event.yaml index 05e3a5b422b..5f9dd4afeb5 100644 --- a/packages/kogito-serverless-operator/test/testdata/sonataflow.org_v1alpha08_sonataflow_vet_event.yaml +++ b/packages/kogito-serverless-operator/test/testdata/sonataflow.org_v1alpha08_sonataflow_vet_event.yaml @@ -1,3 +1,4 @@ +# # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information @@ -6,7 +7,7 @@ # "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 +# 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 @@ -14,6 +15,7 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. +# apiVersion: sonataflow.org/v1alpha08 kind: SonataFlow diff --git a/packages/kogito-serverless-operator/test/testdata/sonataflow.org_v1alpha08_sonataflowbuild.yaml b/packages/kogito-serverless-operator/test/testdata/sonataflow.org_v1alpha08_sonataflowbuild.yaml index 9b018ec72a1..019ad705f88 100644 --- a/packages/kogito-serverless-operator/test/testdata/sonataflow.org_v1alpha08_sonataflowbuild.yaml +++ b/packages/kogito-serverless-operator/test/testdata/sonataflow.org_v1alpha08_sonataflowbuild.yaml @@ -1,3 +1,4 @@ +# # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information @@ -6,7 +7,7 @@ # "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 +# 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 @@ -14,6 +15,7 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. +# apiVersion: sonataflow.org/v1alpha08 kind: SonataFlowBuild diff --git a/packages/kogito-serverless-operator/test/testdata/sonataflow.org_v1alpha08_sonataflowclusterplatform.yaml b/packages/kogito-serverless-operator/test/testdata/sonataflow.org_v1alpha08_sonataflowclusterplatform.yaml index 57e9735dbea..f0ba3b972e1 100644 --- a/packages/kogito-serverless-operator/test/testdata/sonataflow.org_v1alpha08_sonataflowclusterplatform.yaml +++ b/packages/kogito-serverless-operator/test/testdata/sonataflow.org_v1alpha08_sonataflowclusterplatform.yaml @@ -1,3 +1,4 @@ +# # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information @@ -6,7 +7,7 @@ # "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 +# 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 @@ -14,6 +15,7 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. +# apiVersion: sonataflow.org/v1alpha08 kind: SonataFlowClusterPlatform diff --git a/packages/kogito-serverless-operator/test/testdata/sonataflow.org_v1alpha08_sonataflowplatform.yaml b/packages/kogito-serverless-operator/test/testdata/sonataflow.org_v1alpha08_sonataflowplatform.yaml index 39c5f1c1448..3da2822a627 100644 --- a/packages/kogito-serverless-operator/test/testdata/sonataflow.org_v1alpha08_sonataflowplatform.yaml +++ b/packages/kogito-serverless-operator/test/testdata/sonataflow.org_v1alpha08_sonataflowplatform.yaml @@ -1,3 +1,4 @@ +# # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information @@ -6,7 +7,7 @@ # "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 +# 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 @@ -14,6 +15,7 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. +# apiVersion: sonataflow.org/v1alpha08 kind: SonataFlowPlatform diff --git a/packages/kogito-serverless-operator/test/testdata/sonataflow.org_v1alpha08_sonataflowplatform_openshift.yaml b/packages/kogito-serverless-operator/test/testdata/sonataflow.org_v1alpha08_sonataflowplatform_openshift.yaml index d0add9fb045..fdbce190c43 100644 --- a/packages/kogito-serverless-operator/test/testdata/sonataflow.org_v1alpha08_sonataflowplatform_openshift.yaml +++ b/packages/kogito-serverless-operator/test/testdata/sonataflow.org_v1alpha08_sonataflowplatform_openshift.yaml @@ -1,3 +1,4 @@ +# # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information @@ -6,7 +7,7 @@ # "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 +# 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 @@ -14,6 +15,7 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. +# apiVersion: sonataflow.org/v1alpha08 kind: SonataFlowPlatform diff --git a/packages/kogito-serverless-operator/test/testdata/sonataflow.org_v1alpha08_sonataflowplatform_withCache_minikube.yaml b/packages/kogito-serverless-operator/test/testdata/sonataflow.org_v1alpha08_sonataflowplatform_withCache_minikube.yaml index 76a1e026b2a..97e042a98dd 100644 --- a/packages/kogito-serverless-operator/test/testdata/sonataflow.org_v1alpha08_sonataflowplatform_withCache_minikube.yaml +++ b/packages/kogito-serverless-operator/test/testdata/sonataflow.org_v1alpha08_sonataflowplatform_withCache_minikube.yaml @@ -1,3 +1,4 @@ +# # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information @@ -6,7 +7,7 @@ # "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 +# 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 @@ -14,6 +15,7 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. +# apiVersion: sonataflow.org/v1alpha08 kind: SonataFlowPlatform diff --git a/packages/kogito-serverless-operator/test/testdata/v1_configmap_greetings_datainput.yaml b/packages/kogito-serverless-operator/test/testdata/v1_configmap_greetings_datainput.yaml index b11f0c4f2b0..fe8f40d5132 100644 --- a/packages/kogito-serverless-operator/test/testdata/v1_configmap_greetings_datainput.yaml +++ b/packages/kogito-serverless-operator/test/testdata/v1_configmap_greetings_datainput.yaml @@ -1,3 +1,4 @@ +# # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information @@ -6,7 +7,7 @@ # "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 +# 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 @@ -14,6 +15,7 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. +# kind: ConfigMap apiVersion: v1 diff --git a/packages/kogito-serverless-operator/test/testdata/v1_configmap_greetings_staticfiles.yaml b/packages/kogito-serverless-operator/test/testdata/v1_configmap_greetings_staticfiles.yaml index 418ef87af9b..4373e871c19 100644 --- a/packages/kogito-serverless-operator/test/testdata/v1_configmap_greetings_staticfiles.yaml +++ b/packages/kogito-serverless-operator/test/testdata/v1_configmap_greetings_staticfiles.yaml @@ -1,16 +1,21 @@ -# Copyright 2023 Red Hat, Inc. and/or its affiliates # -# 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 +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# 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. # -# 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. kind: ConfigMap apiVersion: v1 diff --git a/packages/kogito-serverless-operator/test/testdata/workflow/persistence/by_service/01-postgres.yaml b/packages/kogito-serverless-operator/test/testdata/workflow/persistence/by_service/01-postgres.yaml index be063351636..2365b93df6f 100644 --- a/packages/kogito-serverless-operator/test/testdata/workflow/persistence/by_service/01-postgres.yaml +++ b/packages/kogito-serverless-operator/test/testdata/workflow/persistence/by_service/01-postgres.yaml @@ -1,16 +1,21 @@ -# Copyright 2024 Apache Software Foundation (ASF) # -# 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 +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# 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. # -# 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. --- apiVersion: v1 diff --git a/packages/kogito-serverless-operator/test/testdata/workflow/persistence/by_service/02-sonataflow_platform.yaml b/packages/kogito-serverless-operator/test/testdata/workflow/persistence/by_service/02-sonataflow_platform.yaml index 84a94217910..9f8cd7aa903 100644 --- a/packages/kogito-serverless-operator/test/testdata/workflow/persistence/by_service/02-sonataflow_platform.yaml +++ b/packages/kogito-serverless-operator/test/testdata/workflow/persistence/by_service/02-sonataflow_platform.yaml @@ -1,16 +1,21 @@ -# Copyright 2024 Apache Software Foundation (ASF) # -# 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 +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# 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. # -# 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. apiVersion: sonataflow.org/v1alpha08 kind: SonataFlowPlatform diff --git a/packages/kogito-serverless-operator/test/testdata/workflow/persistence/by_service/03-sonataflow_callbackstatetimeouts.sw.yaml b/packages/kogito-serverless-operator/test/testdata/workflow/persistence/by_service/03-sonataflow_callbackstatetimeouts.sw.yaml index 157e4bd84d6..273805555bb 100644 --- a/packages/kogito-serverless-operator/test/testdata/workflow/persistence/by_service/03-sonataflow_callbackstatetimeouts.sw.yaml +++ b/packages/kogito-serverless-operator/test/testdata/workflow/persistence/by_service/03-sonataflow_callbackstatetimeouts.sw.yaml @@ -1,16 +1,21 @@ -# Copyright 2024 Apache Software Foundation (ASF) # -# 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 +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# 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. # -# 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. apiVersion: sonataflow.org/v1alpha08 kind: SonataFlow diff --git a/packages/kogito-serverless-operator/test/testdata/workflow/persistence/by_service/kustomization.yaml b/packages/kogito-serverless-operator/test/testdata/workflow/persistence/by_service/kustomization.yaml index 0a5a33a92b7..71306d66804 100644 --- a/packages/kogito-serverless-operator/test/testdata/workflow/persistence/by_service/kustomization.yaml +++ b/packages/kogito-serverless-operator/test/testdata/workflow/persistence/by_service/kustomization.yaml @@ -1,16 +1,21 @@ -# Copyright 2024 Apache Software Foundation (ASF) # -# 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 +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# 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. # -# 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. resources: - 01-postgres.yaml diff --git a/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_overwritten_by_service/01-postgres.yaml b/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_overwritten_by_service/01-postgres.yaml index be063351636..2365b93df6f 100644 --- a/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_overwritten_by_service/01-postgres.yaml +++ b/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_overwritten_by_service/01-postgres.yaml @@ -1,16 +1,21 @@ -# Copyright 2024 Apache Software Foundation (ASF) # -# 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 +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# 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. # -# 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. --- apiVersion: v1 diff --git a/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_overwritten_by_service/02-sonataflow_platform.yaml b/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_overwritten_by_service/02-sonataflow_platform.yaml index 5e692ea2447..8f6e24735c6 100644 --- a/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_overwritten_by_service/02-sonataflow_platform.yaml +++ b/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_overwritten_by_service/02-sonataflow_platform.yaml @@ -1,16 +1,21 @@ -# Copyright 2024 Apache Software Foundation (ASF) # -# 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 +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# 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. # -# 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. apiVersion: sonataflow.org/v1alpha08 kind: SonataFlowPlatform diff --git a/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_overwritten_by_service/03-sonataflow_callbackstatetimeouts.sw.yaml b/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_overwritten_by_service/03-sonataflow_callbackstatetimeouts.sw.yaml index 157e4bd84d6..273805555bb 100644 --- a/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_overwritten_by_service/03-sonataflow_callbackstatetimeouts.sw.yaml +++ b/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_overwritten_by_service/03-sonataflow_callbackstatetimeouts.sw.yaml @@ -1,16 +1,21 @@ -# Copyright 2024 Apache Software Foundation (ASF) # -# 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 +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# 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. # -# 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. apiVersion: sonataflow.org/v1alpha08 kind: SonataFlow diff --git a/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_overwritten_by_service/kustomization.yaml b/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_overwritten_by_service/kustomization.yaml index 0a5a33a92b7..71306d66804 100644 --- a/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_overwritten_by_service/kustomization.yaml +++ b/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_overwritten_by_service/kustomization.yaml @@ -1,16 +1,21 @@ -# Copyright 2024 Apache Software Foundation (ASF) # -# 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 +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# 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. # -# 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. resources: - 01-postgres.yaml diff --git a/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_with_di_and_js_services/01-postgres.yaml b/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_with_di_and_js_services/01-postgres.yaml index be063351636..2365b93df6f 100644 --- a/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_with_di_and_js_services/01-postgres.yaml +++ b/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_with_di_and_js_services/01-postgres.yaml @@ -1,16 +1,21 @@ -# Copyright 2024 Apache Software Foundation (ASF) # -# 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 +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# 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. # -# 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. --- apiVersion: v1 diff --git a/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_with_di_and_js_services/02-sonataflow_platform.yaml b/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_with_di_and_js_services/02-sonataflow_platform.yaml index 7d57abc851f..1c172e35b3f 100644 --- a/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_with_di_and_js_services/02-sonataflow_platform.yaml +++ b/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_with_di_and_js_services/02-sonataflow_platform.yaml @@ -1,16 +1,21 @@ -# Copyright 2024 Apache Software Foundation (ASF) # -# 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 +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# 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. # -# 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. apiVersion: sonataflow.org/v1alpha08 kind: SonataFlowPlatform diff --git a/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_with_di_and_js_services/03-sonataflow_callbackstatetimeouts.sw.yaml b/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_with_di_and_js_services/03-sonataflow_callbackstatetimeouts.sw.yaml index 2f9c7d51768..95de24b1ed5 100644 --- a/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_with_di_and_js_services/03-sonataflow_callbackstatetimeouts.sw.yaml +++ b/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_with_di_and_js_services/03-sonataflow_callbackstatetimeouts.sw.yaml @@ -1,16 +1,21 @@ -# Copyright 2024 Apache Software Foundation (ASF) # -# 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 +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# 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. # -# 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. apiVersion: sonataflow.org/v1alpha08 kind: SonataFlow diff --git a/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_with_di_and_js_services/kustomization.yaml b/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_with_di_and_js_services/kustomization.yaml index 0a5a33a92b7..71306d66804 100644 --- a/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_with_di_and_js_services/kustomization.yaml +++ b/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_with_di_and_js_services/kustomization.yaml @@ -1,16 +1,21 @@ -# Copyright 2024 Apache Software Foundation (ASF) # -# 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 +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# 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. # -# 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. resources: - 01-postgres.yaml diff --git a/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_with_no_persistence_required/01-postgres.yaml b/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_with_no_persistence_required/01-postgres.yaml index be063351636..2365b93df6f 100644 --- a/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_with_no_persistence_required/01-postgres.yaml +++ b/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_with_no_persistence_required/01-postgres.yaml @@ -1,16 +1,21 @@ -# Copyright 2024 Apache Software Foundation (ASF) # -# 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 +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# 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. # -# 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. --- apiVersion: v1 diff --git a/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_with_no_persistence_required/02-sonataflow_platform.yaml b/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_with_no_persistence_required/02-sonataflow_platform.yaml index 78dd85dc3d7..caeafe914d6 100644 --- a/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_with_no_persistence_required/02-sonataflow_platform.yaml +++ b/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_with_no_persistence_required/02-sonataflow_platform.yaml @@ -1,16 +1,21 @@ -# Copyright 2024 Apache Software Foundation (ASF) # -# 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 +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# 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. # -# 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. apiVersion: sonataflow.org/v1alpha08 kind: SonataFlowPlatform diff --git a/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_with_no_persistence_required/03-sonataflow_callbackstatetimeouts-no-persistence.sw.yaml b/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_with_no_persistence_required/03-sonataflow_callbackstatetimeouts-no-persistence.sw.yaml index f690120733b..ccab06e6cf3 100644 --- a/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_with_no_persistence_required/03-sonataflow_callbackstatetimeouts-no-persistence.sw.yaml +++ b/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_with_no_persistence_required/03-sonataflow_callbackstatetimeouts-no-persistence.sw.yaml @@ -1,16 +1,21 @@ -# Copyright 2024 Apache Software Foundation (ASF) # -# 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 +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# 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. # -# 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. apiVersion: sonataflow.org/v1alpha08 kind: SonataFlow diff --git a/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_with_no_persistence_required/kustomization.yaml b/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_with_no_persistence_required/kustomization.yaml index 91d6cec06a5..0876abe92a8 100644 --- a/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_with_no_persistence_required/kustomization.yaml +++ b/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_with_no_persistence_required/kustomization.yaml @@ -1,16 +1,21 @@ -# Copyright 2024 Apache Software Foundation (ASF) # -# 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 +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# 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. # -# 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. resources: - 01-postgres.yaml diff --git a/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_without_di_and_js_services/01-postgres.yaml b/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_without_di_and_js_services/01-postgres.yaml index be063351636..2365b93df6f 100644 --- a/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_without_di_and_js_services/01-postgres.yaml +++ b/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_without_di_and_js_services/01-postgres.yaml @@ -1,16 +1,21 @@ -# Copyright 2024 Apache Software Foundation (ASF) # -# 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 +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# 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. # -# 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. --- apiVersion: v1 diff --git a/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_without_di_and_js_services/02-sonataflow_platform.yaml b/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_without_di_and_js_services/02-sonataflow_platform.yaml index 78dd85dc3d7..caeafe914d6 100644 --- a/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_without_di_and_js_services/02-sonataflow_platform.yaml +++ b/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_without_di_and_js_services/02-sonataflow_platform.yaml @@ -1,16 +1,21 @@ -# Copyright 2024 Apache Software Foundation (ASF) # -# 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 +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# 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. # -# 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. apiVersion: sonataflow.org/v1alpha08 kind: SonataFlowPlatform diff --git a/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_without_di_and_js_services/03-sonataflow_callbackstatetimeouts.sw.yaml b/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_without_di_and_js_services/03-sonataflow_callbackstatetimeouts.sw.yaml index 2f9c7d51768..95de24b1ed5 100644 --- a/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_without_di_and_js_services/03-sonataflow_callbackstatetimeouts.sw.yaml +++ b/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_without_di_and_js_services/03-sonataflow_callbackstatetimeouts.sw.yaml @@ -1,16 +1,21 @@ -# Copyright 2024 Apache Software Foundation (ASF) # -# 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 +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# 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. # -# 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. apiVersion: sonataflow.org/v1alpha08 kind: SonataFlow diff --git a/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_without_di_and_js_services/kustomization.yaml b/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_without_di_and_js_services/kustomization.yaml index 0a5a33a92b7..71306d66804 100644 --- a/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_without_di_and_js_services/kustomization.yaml +++ b/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_without_di_and_js_services/kustomization.yaml @@ -1,16 +1,21 @@ -# Copyright 2024 Apache Software Foundation (ASF) # -# 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 +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# 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. # -# 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. resources: - 01-postgres.yaml diff --git a/packages/kogito-serverless-operator/testbdd/README.md b/packages/kogito-serverless-operator/testbdd/README.md index 956fa94123e..5c171d8b889 100644 --- a/packages/kogito-serverless-operator/testbdd/README.md +++ b/packages/kogito-serverless-operator/testbdd/README.md @@ -1,3 +1,20 @@ + + # BDD tests Tests in this module are a rewrite and enhancement of the end-to-end tests available in the `/test` directory. diff --git a/packages/kogito-serverless-operator/workflowproj/README.md b/packages/kogito-serverless-operator/workflowproj/README.md index b47092bd04f..3d63fe659f9 100644 --- a/packages/kogito-serverless-operator/workflowproj/README.md +++ b/packages/kogito-serverless-operator/workflowproj/README.md @@ -1,3 +1,20 @@ + + # Workflow Project Handler Handler to programmatically convert a local SonataFlow project into Kubernetes manifests to deploy with diff --git a/packages/kogito-serverless-operator/workflowproj/testdata/valid-asyncapi.yaml b/packages/kogito-serverless-operator/workflowproj/testdata/valid-asyncapi.yaml index 15b50aa5c50..bd622d70fbe 100644 --- a/packages/kogito-serverless-operator/workflowproj/testdata/valid-asyncapi.yaml +++ b/packages/kogito-serverless-operator/workflowproj/testdata/valid-asyncapi.yaml @@ -1,3 +1,4 @@ +# # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information @@ -6,7 +7,7 @@ # "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 +# 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 @@ -14,6 +15,7 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. +# asyncapi: "2.0.0" id: "urn:com:http:server" diff --git a/packages/kogito-serverless-operator/workflowproj/testdata/valid-camelroute.yaml b/packages/kogito-serverless-operator/workflowproj/testdata/valid-camelroute.yaml index 2b56189cd28..3b2bbadf4d1 100644 --- a/packages/kogito-serverless-operator/workflowproj/testdata/valid-camelroute.yaml +++ b/packages/kogito-serverless-operator/workflowproj/testdata/valid-camelroute.yaml @@ -1,3 +1,4 @@ +# # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information @@ -6,7 +7,7 @@ # "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 +# 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 @@ -14,6 +15,7 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. +# # Borrowed from https://github.com/apache/camel/tree/camel-3.20.5/dsl/camel-yaml-dsl/camel-yaml-dsl - rest: diff --git a/packages/kogito-serverless-operator/workflowproj/testdata/valid-openapi.yaml b/packages/kogito-serverless-operator/workflowproj/testdata/valid-openapi.yaml index 7480df277dd..ee794ad2337 100644 --- a/packages/kogito-serverless-operator/workflowproj/testdata/valid-openapi.yaml +++ b/packages/kogito-serverless-operator/workflowproj/testdata/valid-openapi.yaml @@ -1,3 +1,4 @@ +# # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information @@ -6,7 +7,7 @@ # "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 +# 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 @@ -14,6 +15,7 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. +# --- openapi: 3.0.3 diff --git a/packages/kogito-swf-builder/README.md b/packages/kogito-swf-builder/README.md index 98a43dac228..e826781e2a9 100644 --- a/packages/kogito-swf-builder/README.md +++ b/packages/kogito-swf-builder/README.md @@ -1,3 +1,20 @@ + + # kogito-swf-builder This package contains the `cekit` image descriptor (`kogito-swf-builder-image.yaml`) and modules needed to build the `kogito-swf-builder` diff --git a/packages/kogito-swf-common/README.md b/packages/kogito-swf-common/README.md index 1f2067bff57..50421ce096f 100644 --- a/packages/kogito-swf-common/README.md +++ b/packages/kogito-swf-common/README.md @@ -1,3 +1,20 @@ + + # kogito-swf-common This package contains the necessary resources to help other modules to build the `kogito-swf-{builder|devmode}` images. diff --git a/packages/kogito-swf-common/resources/scripts/README.md b/packages/kogito-swf-common/resources/scripts/README.md index f1680e20f9b..064e8d1e382 100644 --- a/packages/kogito-swf-common/resources/scripts/README.md +++ b/packages/kogito-swf-common/resources/scripts/README.md @@ -1,3 +1,36 @@ + + + # kogito-swf-common utility scripts This directory contains a set of python scripts used to help to perform some tasks during the build and configuration of the `kogito-swf` images: diff --git a/packages/kogito-swf-common/resources/tests/shell/README.md b/packages/kogito-swf-common/resources/tests/shell/README.md index a8e497bb5e3..fe3456caa8a 100644 --- a/packages/kogito-swf-common/resources/tests/shell/README.md +++ b/packages/kogito-swf-common/resources/tests/shell/README.md @@ -1,3 +1,20 @@ + + # Tests in Shell ## Running Tests With JBang diff --git a/packages/kogito-swf-devmode/README.md b/packages/kogito-swf-devmode/README.md index e29df97bfb1..ea2589f9983 100644 --- a/packages/kogito-swf-devmode/README.md +++ b/packages/kogito-swf-devmode/README.md @@ -1,3 +1,20 @@ + + # kogito-swf-devmode This package contains the `cekit` image descriptor (`kogito-swf-devmode-image.yaml`) and modules needed to build the `kogito-swf-devmode` diff --git a/packages/kogito-task-console/README.md b/packages/kogito-task-console/README.md index 74e41848901..61704941ffa 100644 --- a/packages/kogito-task-console/README.md +++ b/packages/kogito-task-console/README.md @@ -1,3 +1,20 @@ + + # kogito-task-console This package contains the `Containerfile/Dockerfile` and scripts to build a container image for Task Console. It also generated a JSON Schema for the `env.json` file, enabling it to be validated. diff --git a/packages/kogito-task-console/entrypoint.sh b/packages/kogito-task-console/entrypoint.sh index 757928498f3..a68f59c1593 100644 --- a/packages/kogito-task-console/entrypoint.sh +++ b/packages/kogito-task-console/entrypoint.sh @@ -1,4 +1,22 @@ #!/bin/bash +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# # Copying the Task Console assets here is essential for when the container is running with the readOnlyRootFilesystem flag. # But, just like any other directory modified during runtime, the /var/www/html must be a mounted volume in the container in this case. diff --git a/packages/maven-config-setup-helper/README.md b/packages/maven-config-setup-helper/README.md index ba2cc5f865b..943b86a772f 100644 --- a/packages/maven-config-setup-helper/README.md +++ b/packages/maven-config-setup-helper/README.md @@ -1,3 +1,20 @@ + + ## @kie-tools/maven-config-setup-helper This package helps to write `.mvn/maven.config` file idempotently without loosing its previous value. diff --git a/packages/monaco-editor/README.md b/packages/monaco-editor/README.md index 4b772649c28..89a5de559e7 100644 --- a/packages/monaco-editor/README.md +++ b/packages/monaco-editor/README.md @@ -1,3 +1,20 @@ + + # @kie-tools-core/monaco-editor Prebuilt, single file ES module containing CSS, fonts and worker scripts (javascript and typescript). diff --git a/packages/notifications/README.md b/packages/notifications/README.md index b71062a2a62..87d435d6fc1 100644 --- a/packages/notifications/README.md +++ b/packages/notifications/README.md @@ -1,3 +1,20 @@ + + # Apache KIE Tools Notifications This package provides a type-safe Notifications library for a Typescript project. diff --git a/packages/online-editor/README.md b/packages/online-editor/README.md index c639b401c3a..8922864d187 100644 --- a/packages/online-editor/README.md +++ b/packages/online-editor/README.md @@ -1,3 +1,20 @@ + + # End to End tests There is a set of cypress tests in `e2e-tests` folder. To run them, please refer to one option bellow. diff --git a/packages/online-editor/static/dev-deployments/kubernetes/cluster-config/kie-sandbox-dev-deployments-resources.yaml b/packages/online-editor/static/dev-deployments/kubernetes/cluster-config/kie-sandbox-dev-deployments-resources.yaml index e6d36a81dc3..840fc96d3a2 100644 --- a/packages/online-editor/static/dev-deployments/kubernetes/cluster-config/kie-sandbox-dev-deployments-resources.yaml +++ b/packages/online-editor/static/dev-deployments/kubernetes/cluster-config/kie-sandbox-dev-deployments-resources.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + apiVersion: v1 kind: Pod metadata: diff --git a/packages/online-editor/static/dev-deployments/kubernetes/cluster-config/kind-cluster-config.yaml b/packages/online-editor/static/dev-deployments/kubernetes/cluster-config/kind-cluster-config.yaml index ae351786297..87280c8d5ef 100644 --- a/packages/online-editor/static/dev-deployments/kubernetes/cluster-config/kind-cluster-config.yaml +++ b/packages/online-editor/static/dev-deployments/kubernetes/cluster-config/kind-cluster-config.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + kind: Cluster apiVersion: kind.x-k8s.io/v1alpha4 name: kie-sandbox-dev-cluster diff --git a/packages/online-editor/static/samples/Sample.bpmn b/packages/online-editor/static/samples/Sample.bpmn index 2d314da9e7c..4baf5b7864d 100644 --- a/packages/online-editor/static/samples/Sample.bpmn +++ b/packages/online-editor/static/samples/Sample.bpmn @@ -1,3 +1,22 @@ + + diff --git a/packages/online-editor/static/samples/Sample.dmn b/packages/online-editor/static/samples/Sample.dmn index 78274817030..9dfd14ac3c9 100644 --- a/packages/online-editor/static/samples/Sample.dmn +++ b/packages/online-editor/static/samples/Sample.dmn @@ -1,4 +1,22 @@ + diff --git a/packages/online-editor/static/samples/Sample.pmml b/packages/online-editor/static/samples/Sample.pmml index 2ddf4ba426c..5fa3cb4812d 100644 --- a/packages/online-editor/static/samples/Sample.pmml +++ b/packages/online-editor/static/samples/Sample.pmml @@ -1,3 +1,22 @@ + +
2010-11-10T08:17:10.8 diff --git a/packages/online-editor/tests/e2e/files/testFolder/testScoreCard.pmml b/packages/online-editor/tests/e2e/files/testFolder/testScoreCard.pmml index 126a1c50346..287e41aec91 100644 --- a/packages/online-editor/tests/e2e/files/testFolder/testScoreCard.pmml +++ b/packages/online-editor/tests/e2e/files/testFolder/testScoreCard.pmml @@ -1,3 +1,22 @@ + +
diff --git a/packages/online-editor/tests/e2e/files/testModel.dmn b/packages/online-editor/tests/e2e/files/testModel.dmn index a8660fe3124..972d5c4b520 100644 --- a/packages/online-editor/tests/e2e/files/testModel.dmn +++ b/packages/online-editor/tests/e2e/files/testModel.dmn @@ -1,3 +1,22 @@ + + This is test model. diff --git a/packages/online-editor/tests/e2e/files/testModelBroken.dmn b/packages/online-editor/tests/e2e/files/testModelBroken.dmn index 06bb498a537..2a5c2d0dade 100644 --- a/packages/online-editor/tests/e2e/files/testModelBroken.dmn +++ b/packages/online-editor/tests/e2e/files/testModelBroken.dmn @@ -1,3 +1,22 @@ + + This is an intentionally broken test model. diff --git a/packages/online-editor/tests/e2e/files/testModelDocumentation.dmn b/packages/online-editor/tests/e2e/files/testModelDocumentation.dmn index cfcb68258c6..49ab1fb12de 100644 --- a/packages/online-editor/tests/e2e/files/testModelDocumentation.dmn +++ b/packages/online-editor/tests/e2e/files/testModelDocumentation.dmn @@ -1,4 +1,22 @@ + This is test model. diff --git a/packages/online-editor/tests/e2e/files/testModelWithCustomDataType.dmn b/packages/online-editor/tests/e2e/files/testModelWithCustomDataType.dmn index 863e33d7cb1..51db319dca9 100644 --- a/packages/online-editor/tests/e2e/files/testModelWithCustomDataType.dmn +++ b/packages/online-editor/tests/e2e/files/testModelWithCustomDataType.dmn @@ -1,4 +1,22 @@ + diff --git a/packages/online-editor/tests/e2e/files/testModelWithoutLayout.dmn b/packages/online-editor/tests/e2e/files/testModelWithoutLayout.dmn index 7b3e53ace0b..66ca39e820a 100644 --- a/packages/online-editor/tests/e2e/files/testModelWithoutLayout.dmn +++ b/packages/online-editor/tests/e2e/files/testModelWithoutLayout.dmn @@ -1,3 +1,22 @@ + + This is test model without layout. diff --git a/packages/online-editor/tests/e2e/files/testProcess.bpmn b/packages/online-editor/tests/e2e/files/testProcess.bpmn index 9077798b703..1ea18556aeb 100644 --- a/packages/online-editor/tests/e2e/files/testProcess.bpmn +++ b/packages/online-editor/tests/e2e/files/testProcess.bpmn @@ -1,3 +1,22 @@ + + diff --git a/packages/online-editor/tests/e2e/files/testScoreCard.pmml b/packages/online-editor/tests/e2e/files/testScoreCard.pmml index 126a1c50346..287e41aec91 100644 --- a/packages/online-editor/tests/e2e/files/testScoreCard.pmml +++ b/packages/online-editor/tests/e2e/files/testScoreCard.pmml @@ -1,3 +1,22 @@ + +
diff --git a/packages/operating-system/README.md b/packages/operating-system/README.md index e8a8e7d88b5..1847366915a 100644 --- a/packages/operating-system/README.md +++ b/packages/operating-system/README.md @@ -1 +1,18 @@ + + ## Operating System diff --git a/packages/pmml-editor-marshaller/src/marshaller/model/README.md b/packages/pmml-editor-marshaller/src/marshaller/model/README.md index aa566ac6755..f8de9bb2baf 100644 --- a/packages/pmml-editor-marshaller/src/marshaller/model/README.md +++ b/packages/pmml-editor-marshaller/src/marshaller/model/README.md @@ -1,3 +1,20 @@ + + This file was generated from the PMML4.4 XSD. An example of how to accomplish this is available here: https://github.com/manstis/pmml-codegen diff --git a/packages/pmml-editor/README.md b/packages/pmml-editor/README.md index 8b4152d1401..7b2b516f40b 100644 --- a/packages/pmml-editor/README.md +++ b/packages/pmml-editor/README.md @@ -1,3 +1,20 @@ + + ## **THIS IS A WORK IN PROGRESS** The code within this package is for a PMML Scorecard editor. diff --git a/packages/pmml-editor/e2e-tests/fixtures/compound-predicate.pmml b/packages/pmml-editor/e2e-tests/fixtures/compound-predicate.pmml index 0959a2c79af..a8e86f71a11 100644 --- a/packages/pmml-editor/e2e-tests/fixtures/compound-predicate.pmml +++ b/packages/pmml-editor/e2e-tests/fixtures/compound-predicate.pmml @@ -1,4 +1,23 @@ - + + +PMML xmlns="http://www.dmg.org/PMML-4_4" version="4.4">
diff --git a/packages/pmml-editor/e2e-tests/fixtures/empty-characteristics-DD-defined-types.pmml b/packages/pmml-editor/e2e-tests/fixtures/empty-characteristics-DD-defined-types.pmml index 081b5a86cec..1e0c55a643c 100644 --- a/packages/pmml-editor/e2e-tests/fixtures/empty-characteristics-DD-defined-types.pmml +++ b/packages/pmml-editor/e2e-tests/fixtures/empty-characteristics-DD-defined-types.pmml @@ -1,3 +1,22 @@ + +
diff --git a/packages/pmml-editor/e2e-tests/fixtures/empty-characteristics-DD-defined.pmml b/packages/pmml-editor/e2e-tests/fixtures/empty-characteristics-DD-defined.pmml index 4bf107b5b96..adf196bf0ec 100644 --- a/packages/pmml-editor/e2e-tests/fixtures/empty-characteristics-DD-defined.pmml +++ b/packages/pmml-editor/e2e-tests/fixtures/empty-characteristics-DD-defined.pmml @@ -1,3 +1,22 @@ + +
diff --git a/packages/pmml-editor/e2e-tests/fixtures/simple-predicate.pmml b/packages/pmml-editor/e2e-tests/fixtures/simple-predicate.pmml index 390b84346b7..de593a6d312 100644 --- a/packages/pmml-editor/e2e-tests/fixtures/simple-predicate.pmml +++ b/packages/pmml-editor/e2e-tests/fixtures/simple-predicate.pmml @@ -1,3 +1,22 @@ + +
diff --git a/packages/pmml-vscode-extension/CHANGELOG.md b/packages/pmml-vscode-extension/CHANGELOG.md index d0213cf9c97..6393c585c07 100644 --- a/packages/pmml-vscode-extension/CHANGELOG.md +++ b/packages/pmml-vscode-extension/CHANGELOG.md @@ -1,3 +1,20 @@ + + # 0.32.0 (alpha) - _(No new features)_ diff --git a/packages/pmml-vscode-extension/README.md b/packages/pmml-vscode-extension/README.md index 42092914f7e..778bf7aa7e0 100644 --- a/packages/pmml-vscode-extension/README.md +++ b/packages/pmml-vscode-extension/README.md @@ -1,3 +1,20 @@ + + ## PMML Scorecard Editor ![vs-code-support](https://img.shields.io/badge/Visual%20Studio%20Code-1.67.0+-blue.svg) diff --git a/packages/python-venv/README.md b/packages/python-venv/README.md index 1a256845a93..a66fff7206b 100644 --- a/packages/python-venv/README.md +++ b/packages/python-venv/README.md @@ -1,3 +1,20 @@ + + # @kie-tools/python-venv This package manages the Python venv to be used by all other packages when running python scripts. diff --git a/packages/runtime-tools-management-console-webapp/README.md b/packages/runtime-tools-management-console-webapp/README.md index 356dcbaff77..26dfaad0b9a 100644 --- a/packages/runtime-tools-management-console-webapp/README.md +++ b/packages/runtime-tools-management-console-webapp/README.md @@ -1,3 +1,20 @@ + + # runtime-tools-management-console-webapp ## Working with Management Console features diff --git a/packages/runtime-tools-task-console-webapp/README.md b/packages/runtime-tools-task-console-webapp/README.md index 84e627aa8fc..2c7ef23dfa2 100644 --- a/packages/runtime-tools-task-console-webapp/README.md +++ b/packages/runtime-tools-task-console-webapp/README.md @@ -1,3 +1,20 @@ + + # runtime-tools-task-console-webapp ## Working with Task Console features diff --git a/packages/scesim-editor/README.md b/packages/scesim-editor/README.md index 28c1a949882..f3bae280d2c 100644 --- a/packages/scesim-editor/README.md +++ b/packages/scesim-editor/README.md @@ -1,3 +1,20 @@ + + # Test Scenario Editor This module will host the next generation of Test Scenario Editor (\*.scesim) files. diff --git a/packages/scesim-marshaller/tests-data--manual/OldEnoughTest.scesim b/packages/scesim-marshaller/tests-data--manual/OldEnoughTest.scesim index 96454197649..ba2543a98ec 100644 --- a/packages/scesim-marshaller/tests-data--manual/OldEnoughTest.scesim +++ b/packages/scesim-marshaller/tests-data--manual/OldEnoughTest.scesim @@ -1,3 +1,22 @@ + + diff --git a/packages/scesim-marshaller/tests-data--manual/TrafficViolationTest.scesim b/packages/scesim-marshaller/tests-data--manual/TrafficViolationTest.scesim index 32a5de9ac20..1ce37a055e8 100644 --- a/packages/scesim-marshaller/tests-data--manual/TrafficViolationTest.scesim +++ b/packages/scesim-marshaller/tests-data--manual/TrafficViolationTest.scesim @@ -1,4 +1,22 @@ - + + diff --git a/packages/scesim-marshaller/tests-data--manual/simple.scesim b/packages/scesim-marshaller/tests-data--manual/simple.scesim index 9b005cbdeb4..dcbd6ed94d4 100644 --- a/packages/scesim-marshaller/tests-data--manual/simple.scesim +++ b/packages/scesim-marshaller/tests-data--manual/simple.scesim @@ -1,4 +1,22 @@ + diff --git a/packages/serverless-logic-web-tools-swf-deployment-quarkus-app/src/main/resources/application.properties b/packages/serverless-logic-web-tools-swf-deployment-quarkus-app/src/main/resources/application.properties index e2454112466..0f6898b1b35 100644 --- a/packages/serverless-logic-web-tools-swf-deployment-quarkus-app/src/main/resources/application.properties +++ b/packages/serverless-logic-web-tools-swf-deployment-quarkus-app/src/main/resources/application.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + quarkus.swagger-ui.always-include=true quarkus.http.cors=true quarkus.http.cors.origins=* diff --git a/packages/serverless-logic-web-tools-swf-deployment-quarkus-app/src/test/resources/assets/invalid-openapi.yaml b/packages/serverless-logic-web-tools-swf-deployment-quarkus-app/src/test/resources/assets/invalid-openapi.yaml index 4dac0ec7086..2df20a6b80f 100644 --- a/packages/serverless-logic-web-tools-swf-deployment-quarkus-app/src/test/resources/assets/invalid-openapi.yaml +++ b/packages/serverless-logic-web-tools-swf-deployment-quarkus-app/src/test/resources/assets/invalid-openapi.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + --- openapi: 3.0.3 info: diff --git a/packages/serverless-logic-web-tools-swf-deployment-quarkus-app/src/test/resources/assets/invalid.properties b/packages/serverless-logic-web-tools-swf-deployment-quarkus-app/src/test/resources/assets/invalid.properties index 36f1af74c72..f1bddc39f38 100644 --- a/packages/serverless-logic-web-tools-swf-deployment-quarkus-app/src/test/resources/assets/invalid.properties +++ b/packages/serverless-logic-web-tools-swf-deployment-quarkus-app/src/test/resources/assets/invalid.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + key1=value1 key2=value2 noValue diff --git a/packages/serverless-logic-web-tools-swf-deployment-quarkus-app/src/test/resources/assets/valid-openapi.yaml b/packages/serverless-logic-web-tools-swf-deployment-quarkus-app/src/test/resources/assets/valid-openapi.yaml index caeae5e52c7..1839dc6cdd5 100644 --- a/packages/serverless-logic-web-tools-swf-deployment-quarkus-app/src/test/resources/assets/valid-openapi.yaml +++ b/packages/serverless-logic-web-tools-swf-deployment-quarkus-app/src/test/resources/assets/valid-openapi.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + --- openapi: 3.0.3 info: diff --git a/packages/serverless-logic-web-tools-swf-deployment-quarkus-app/src/test/resources/assets/valid.properties b/packages/serverless-logic-web-tools-swf-deployment-quarkus-app/src/test/resources/assets/valid.properties index 7f4f51a133f..3e6d104f322 100644 --- a/packages/serverless-logic-web-tools-swf-deployment-quarkus-app/src/test/resources/assets/valid.properties +++ b/packages/serverless-logic-web-tools-swf-deployment-quarkus-app/src/test/resources/assets/valid.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + key1=value1 key2=value2 key3=value3 diff --git a/packages/serverless-logic-web-tools/testing-resources/apicurio-local.yml b/packages/serverless-logic-web-tools/testing-resources/apicurio-local.yml index 684a430c9bd..8edf4763133 100644 --- a/packages/serverless-logic-web-tools/testing-resources/apicurio-local.yml +++ b/packages/serverless-logic-web-tools/testing-resources/apicurio-local.yml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + version: "3.1" services: diff --git a/packages/serverless-workflow-dev-ui-monitoring-webapp/src/MonitoringReport.dash.yml b/packages/serverless-workflow-dev-ui-monitoring-webapp/src/MonitoringReport.dash.yml index 204091b455c..7509f75985e 100644 --- a/packages/serverless-workflow-dev-ui-monitoring-webapp/src/MonitoringReport.dash.yml +++ b/packages/serverless-workflow-dev-ui-monitoring-webapp/src/MonitoringReport.dash.yml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + properties: dataIndexUrl: http://localhost:8180/graphql # seconds diff --git a/packages/serverless-workflow-dev-ui-monitoring-webapp/src/WorkflowDetails.dash.yml b/packages/serverless-workflow-dev-ui-monitoring-webapp/src/WorkflowDetails.dash.yml index 8ee44e6c49a..69f7f8e6e8d 100644 --- a/packages/serverless-workflow-dev-ui-monitoring-webapp/src/WorkflowDetails.dash.yml +++ b/packages/serverless-workflow-dev-ui-monitoring-webapp/src/WorkflowDetails.dash.yml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + properties: dataIndexUrl: http://localhost:8180/graphql # charts size diff --git a/packages/serverless-workflow-dev-ui-webapp/server/MockData/customDashboard/age.dash.yaml b/packages/serverless-workflow-dev-ui-webapp/server/MockData/customDashboard/age.dash.yaml index b6a5fe72784..011aff8684e 100644 --- a/packages/serverless-workflow-dev-ui-webapp/server/MockData/customDashboard/age.dash.yaml +++ b/packages/serverless-workflow-dev-ui-webapp/server/MockData/customDashboard/age.dash.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + datasets: - uuid: age content: >- diff --git a/packages/serverless-workflow-dev-ui-webapp/server/MockData/customDashboard/products.dash.yaml b/packages/serverless-workflow-dev-ui-webapp/server/MockData/customDashboard/products.dash.yaml index 88e26858b58..ea685a0b5c3 100644 --- a/packages/serverless-workflow-dev-ui-webapp/server/MockData/customDashboard/products.dash.yaml +++ b/packages/serverless-workflow-dev-ui-webapp/server/MockData/customDashboard/products.dash.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + datasets: - uuid: products content: >- diff --git a/packages/serverless-workflow-diagram-editor/.gitignore b/packages/serverless-workflow-diagram-editor/.gitignore index f927086434f..3eee3036a92 100644 --- a/packages/serverless-workflow-diagram-editor/.gitignore +++ b/packages/serverless-workflow-diagram-editor/.gitignore @@ -1,3 +1,21 @@ +### +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + lienzo-webapp/src/main/webapp/org.kie.lienzo.LienzoShowcase/ .idea sw-editor/sw-editor-kogito-app/src/main/webapp/org.kie.workbench.common.stunner.sw.KogitoSWEditor/ diff --git a/packages/serverless-workflow-diagram-editor/appformer-client-api/README.md b/packages/serverless-workflow-diagram-editor/appformer-client-api/README.md index 73ddf25bfe6..660420b139b 100644 --- a/packages/serverless-workflow-diagram-editor/appformer-client-api/README.md +++ b/packages/serverless-workflow-diagram-editor/appformer-client-api/README.md @@ -1,3 +1,20 @@ + + # Appformer Client API ## Introduction diff --git a/packages/serverless-workflow-diagram-editor/checkstyle-suppressions.xml b/packages/serverless-workflow-diagram-editor/checkstyle-suppressions.xml index 08b1e712327..9d12c1b7f42 100644 --- a/packages/serverless-workflow-diagram-editor/checkstyle-suppressions.xml +++ b/packages/serverless-workflow-diagram-editor/checkstyle-suppressions.xml @@ -1,4 +1,22 @@ - + + diff --git a/packages/serverless-workflow-diagram-editor/docs/live-reload-dmn-loader.md b/packages/serverless-workflow-diagram-editor/docs/live-reload-dmn-loader.md index 9fe3b85ad9b..41adfc2fd38 100644 --- a/packages/serverless-workflow-diagram-editor/docs/live-reload-dmn-loader.md +++ b/packages/serverless-workflow-diagram-editor/docs/live-reload-dmn-loader.md @@ -1,3 +1,20 @@ + + # How to enable live-reload on React apps inside the DMN Editor ### 1. Configure GWT web app on IntelliJ diff --git a/packages/serverless-workflow-diagram-editor/kie-wb-common-stunner/README.md b/packages/serverless-workflow-diagram-editor/kie-wb-common-stunner/README.md index d7034fa99f4..d634170bd5c 100644 --- a/packages/serverless-workflow-diagram-editor/kie-wb-common-stunner/README.md +++ b/packages/serverless-workflow-diagram-editor/kie-wb-common-stunner/README.md @@ -1,3 +1,20 @@ + + # Stunner Modelling Tool Stunner is a multi-purpose graph based modelling tool for the web. diff --git a/packages/serverless-workflow-diagram-editor/kie-wb-common-stunner/kie-wb-common-stunner-client/kie-wb-common-stunner-widgets/src/main/resources/org/kie/workbench/common/stunner/client/widgets/resources/i18n/StunnerWidgetsConstants.properties b/packages/serverless-workflow-diagram-editor/kie-wb-common-stunner/kie-wb-common-stunner-client/kie-wb-common-stunner-widgets/src/main/resources/org/kie/workbench/common/stunner/client/widgets/resources/i18n/StunnerWidgetsConstants.properties index 6685fdfecc4..e229c5dae4c 100644 --- a/packages/serverless-workflow-diagram-editor/kie-wb-common-stunner/kie-wb-common-stunner-client/kie-wb-common-stunner-widgets/src/main/resources/org/kie/workbench/common/stunner/client/widgets/resources/i18n/StunnerWidgetsConstants.properties +++ b/packages/serverless-workflow-diagram-editor/kie-wb-common-stunner/kie-wb-common-stunner-client/kie-wb-common-stunner-widgets/src/main/resources/org/kie/workbench/common/stunner/client/widgets/resources/i18n/StunnerWidgetsConstants.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + ConfirmationDialogImplView.Yes=Yes ConfirmationDialogImplView.No=No diff --git a/packages/serverless-workflow-diagram-editor/kie-wb-common-stunner/kie-wb-common-stunner-client/kie-wb-common-stunner-widgets/src/main/resources/org/kie/workbench/common/stunner/client/widgets/resources/i18n/StunnerWidgetsConstants_de.properties b/packages/serverless-workflow-diagram-editor/kie-wb-common-stunner/kie-wb-common-stunner-client/kie-wb-common-stunner-widgets/src/main/resources/org/kie/workbench/common/stunner/client/widgets/resources/i18n/StunnerWidgetsConstants_de.properties index bb56a619497..a3535fe7cb4 100644 --- a/packages/serverless-workflow-diagram-editor/kie-wb-common-stunner/kie-wb-common-stunner-client/kie-wb-common-stunner-widgets/src/main/resources/org/kie/workbench/common/stunner/client/widgets/resources/i18n/StunnerWidgetsConstants_de.properties +++ b/packages/serverless-workflow-diagram-editor/kie-wb-common-stunner/kie-wb-common-stunner-client/kie-wb-common-stunner-widgets/src/main/resources/org/kie/workbench/common/stunner/client/widgets/resources/i18n/StunnerWidgetsConstants_de.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + ConfirmationDialogImplView.Yes=Ja ConfirmationDialogImplView.No=Nein diff --git a/packages/serverless-workflow-diagram-editor/kie-wb-common-stunner/kie-wb-common-stunner-client/kie-wb-common-stunner-widgets/src/main/resources/org/kie/workbench/common/stunner/client/widgets/resources/i18n/StunnerWidgetsConstants_es.properties b/packages/serverless-workflow-diagram-editor/kie-wb-common-stunner/kie-wb-common-stunner-client/kie-wb-common-stunner-widgets/src/main/resources/org/kie/workbench/common/stunner/client/widgets/resources/i18n/StunnerWidgetsConstants_es.properties index 99fcc6ed060..5b2bee42517 100644 --- a/packages/serverless-workflow-diagram-editor/kie-wb-common-stunner/kie-wb-common-stunner-client/kie-wb-common-stunner-widgets/src/main/resources/org/kie/workbench/common/stunner/client/widgets/resources/i18n/StunnerWidgetsConstants_es.properties +++ b/packages/serverless-workflow-diagram-editor/kie-wb-common-stunner/kie-wb-common-stunner-client/kie-wb-common-stunner-widgets/src/main/resources/org/kie/workbench/common/stunner/client/widgets/resources/i18n/StunnerWidgetsConstants_es.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + ConfirmationDialogImplView.Yes=Sí ConfirmationDialogImplView.No=No diff --git a/packages/serverless-workflow-diagram-editor/kie-wb-common-stunner/kie-wb-common-stunner-client/kie-wb-common-stunner-widgets/src/main/resources/org/kie/workbench/common/stunner/client/widgets/resources/i18n/StunnerWidgetsConstants_fr.properties b/packages/serverless-workflow-diagram-editor/kie-wb-common-stunner/kie-wb-common-stunner-client/kie-wb-common-stunner-widgets/src/main/resources/org/kie/workbench/common/stunner/client/widgets/resources/i18n/StunnerWidgetsConstants_fr.properties index b03a3f48b40..41886318c9b 100644 --- a/packages/serverless-workflow-diagram-editor/kie-wb-common-stunner/kie-wb-common-stunner-client/kie-wb-common-stunner-widgets/src/main/resources/org/kie/workbench/common/stunner/client/widgets/resources/i18n/StunnerWidgetsConstants_fr.properties +++ b/packages/serverless-workflow-diagram-editor/kie-wb-common-stunner/kie-wb-common-stunner-client/kie-wb-common-stunner-widgets/src/main/resources/org/kie/workbench/common/stunner/client/widgets/resources/i18n/StunnerWidgetsConstants_fr.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + ConfirmationDialogImplView.Yes=Oui ConfirmationDialogImplView.No=Non diff --git a/packages/serverless-workflow-diagram-editor/kie-wb-common-stunner/kie-wb-common-stunner-client/kie-wb-common-stunner-widgets/src/main/resources/org/kie/workbench/common/stunner/client/widgets/resources/i18n/StunnerWidgetsConstants_ja.properties b/packages/serverless-workflow-diagram-editor/kie-wb-common-stunner/kie-wb-common-stunner-client/kie-wb-common-stunner-widgets/src/main/resources/org/kie/workbench/common/stunner/client/widgets/resources/i18n/StunnerWidgetsConstants_ja.properties index 72b0ff6ebba..a1aee848871 100644 --- a/packages/serverless-workflow-diagram-editor/kie-wb-common-stunner/kie-wb-common-stunner-client/kie-wb-common-stunner-widgets/src/main/resources/org/kie/workbench/common/stunner/client/widgets/resources/i18n/StunnerWidgetsConstants_ja.properties +++ b/packages/serverless-workflow-diagram-editor/kie-wb-common-stunner/kie-wb-common-stunner-client/kie-wb-common-stunner-widgets/src/main/resources/org/kie/workbench/common/stunner/client/widgets/resources/i18n/StunnerWidgetsConstants_ja.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + ConfirmationDialogImplView.Yes=はい ConfirmationDialogImplView.No=いいえ diff --git a/packages/serverless-workflow-diagram-editor/kie-wb-common-stunner/kie-wb-common-stunner-core/kie-wb-common-stunner-api/kie-wb-common-stunner-core-api/src/main/java/org/kie/workbench/common/stunner/core/graph/processing/traverse/content/README.md b/packages/serverless-workflow-diagram-editor/kie-wb-common-stunner/kie-wb-common-stunner-core/kie-wb-common-stunner-api/kie-wb-common-stunner-core-api/src/main/java/org/kie/workbench/common/stunner/core/graph/processing/traverse/content/README.md index 058e57de2bf..e4c0061eaba 100644 --- a/packages/serverless-workflow-diagram-editor/kie-wb-common-stunner/kie-wb-common-stunner-core/kie-wb-common-stunner-api/kie-wb-common-stunner-core-api/src/main/java/org/kie/workbench/common/stunner/core/graph/processing/traverse/content/README.md +++ b/packages/serverless-workflow-diagram-editor/kie-wb-common-stunner/kie-wb-common-stunner-core/kie-wb-common-stunner-api/kie-wb-common-stunner-core-api/src/main/java/org/kie/workbench/common/stunner/core/graph/processing/traverse/content/README.md @@ -1,3 +1,20 @@ + + This package contains graph processors that provide specific traversal for the different node/edge's content types. - View traversal processor -> Use it for performing a traversal over the graph nodes that has View content diff --git a/packages/serverless-workflow-diagram-editor/kie-wb-common-stunner/kie-wb-common-stunner-extensions/kie-wb-common-stunner-lienzo-extensions/README.md b/packages/serverless-workflow-diagram-editor/kie-wb-common-stunner/kie-wb-common-stunner-extensions/kie-wb-common-stunner-lienzo-extensions/README.md index f20a5cc1f25..15d31a9d475 100644 --- a/packages/serverless-workflow-diagram-editor/kie-wb-common-stunner/kie-wb-common-stunner-extensions/kie-wb-common-stunner-lienzo-extensions/README.md +++ b/packages/serverless-workflow-diagram-editor/kie-wb-common-stunner/kie-wb-common-stunner-extensions/kie-wb-common-stunner-lienzo-extensions/README.md @@ -1,3 +1,20 @@ + + # Lienzo extensions module This module provides some extensions for [Lienzo](https://github.com/ahome-it/). diff --git a/packages/serverless-workflow-diagram-editor/kie-wb-common-widgets/kie-wb-common-ui/pom.xml b/packages/serverless-workflow-diagram-editor/kie-wb-common-widgets/kie-wb-common-ui/pom.xml index c6402aa5d06..53d478536b3 100644 --- a/packages/serverless-workflow-diagram-editor/kie-wb-common-widgets/kie-wb-common-ui/pom.xml +++ b/packages/serverless-workflow-diagram-editor/kie-wb-common-widgets/kie-wb-common-ui/pom.xml @@ -1,4 +1,22 @@ + + + diff --git a/packages/serverless-workflow-diagram-editor/kie-wb-common-widgets/kie-wb-common-ui/src/test/resources/DataModelBackendExtendJavaTypeTest1/pom.xml b/packages/serverless-workflow-diagram-editor/kie-wb-common-widgets/kie-wb-common-ui/src/test/resources/DataModelBackendExtendJavaTypeTest1/pom.xml index 839b1b61d3c..255939fe437 100644 --- a/packages/serverless-workflow-diagram-editor/kie-wb-common-widgets/kie-wb-common-ui/src/test/resources/DataModelBackendExtendJavaTypeTest1/pom.xml +++ b/packages/serverless-workflow-diagram-editor/kie-wb-common-widgets/kie-wb-common-ui/src/test/resources/DataModelBackendExtendJavaTypeTest1/pom.xml @@ -1,3 +1,22 @@ + + + diff --git a/packages/serverless-workflow-diagram-editor/kie-wb-common-widgets/kie-wb-common-ui/src/test/resources/DataModelBackendExtendJavaTypeTest2/pom.xml b/packages/serverless-workflow-diagram-editor/kie-wb-common-widgets/kie-wb-common-ui/src/test/resources/DataModelBackendExtendJavaTypeTest2/pom.xml index f27510483b2..177f6625361 100644 --- a/packages/serverless-workflow-diagram-editor/kie-wb-common-widgets/kie-wb-common-ui/src/test/resources/DataModelBackendExtendJavaTypeTest2/pom.xml +++ b/packages/serverless-workflow-diagram-editor/kie-wb-common-widgets/kie-wb-common-ui/src/test/resources/DataModelBackendExtendJavaTypeTest2/pom.xml @@ -1,3 +1,22 @@ + + + diff --git a/packages/serverless-workflow-diagram-editor/kie-wb-common-widgets/kie-wb-common-ui/src/test/resources/DataModelBackendSuperTypesTest1/pom.xml b/packages/serverless-workflow-diagram-editor/kie-wb-common-widgets/kie-wb-common-ui/src/test/resources/DataModelBackendSuperTypesTest1/pom.xml index 9afecb44112..38e7240021c 100644 --- a/packages/serverless-workflow-diagram-editor/kie-wb-common-widgets/kie-wb-common-ui/src/test/resources/DataModelBackendSuperTypesTest1/pom.xml +++ b/packages/serverless-workflow-diagram-editor/kie-wb-common-widgets/kie-wb-common-ui/src/test/resources/DataModelBackendSuperTypesTest1/pom.xml @@ -1,3 +1,22 @@ + + + diff --git a/packages/serverless-workflow-diagram-editor/kie-wb-common-widgets/kie-wb-common-ui/src/test/resources/DataModelBackendTest1/pom.xml b/packages/serverless-workflow-diagram-editor/kie-wb-common-widgets/kie-wb-common-ui/src/test/resources/DataModelBackendTest1/pom.xml index 84cd453dc48..825febe5570 100644 --- a/packages/serverless-workflow-diagram-editor/kie-wb-common-widgets/kie-wb-common-ui/src/test/resources/DataModelBackendTest1/pom.xml +++ b/packages/serverless-workflow-diagram-editor/kie-wb-common-widgets/kie-wb-common-ui/src/test/resources/DataModelBackendTest1/pom.xml @@ -1,3 +1,22 @@ + + + diff --git a/packages/serverless-workflow-diagram-editor/kie-wb-common-widgets/kie-wb-common-ui/src/test/resources/DataModelBackendTest2/pom.xml b/packages/serverless-workflow-diagram-editor/kie-wb-common-widgets/kie-wb-common-ui/src/test/resources/DataModelBackendTest2/pom.xml index 54360da1c32..9f8322241b5 100644 --- a/packages/serverless-workflow-diagram-editor/kie-wb-common-widgets/kie-wb-common-ui/src/test/resources/DataModelBackendTest2/pom.xml +++ b/packages/serverless-workflow-diagram-editor/kie-wb-common-widgets/kie-wb-common-ui/src/test/resources/DataModelBackendTest2/pom.xml @@ -1,3 +1,22 @@ + + + diff --git a/packages/serverless-workflow-diagram-editor/kie-wb-common-widgets/pom.xml b/packages/serverless-workflow-diagram-editor/kie-wb-common-widgets/pom.xml index c0912a8b18e..b975b086c8b 100644 --- a/packages/serverless-workflow-diagram-editor/kie-wb-common-widgets/pom.xml +++ b/packages/serverless-workflow-diagram-editor/kie-wb-common-widgets/pom.xml @@ -1,4 +1,22 @@ + + # KIE - Lienzo core This is a forked repository from [Lienzo core](https://github.com/ahome-it/lienzo-core). diff --git a/packages/serverless-workflow-diagram-editor/lienzo-tests/README.md b/packages/serverless-workflow-diagram-editor/lienzo-tests/README.md index 1aecb4bc191..11f908ab4eb 100644 --- a/packages/serverless-workflow-diagram-editor/lienzo-tests/README.md +++ b/packages/serverless-workflow-diagram-editor/lienzo-tests/README.md @@ -1,3 +1,20 @@ + + # KIE - Lienzo tests This is a forked repository from [Lienzo tests](https://github.com/ahome-it/lienzo-tests). diff --git a/packages/serverless-workflow-diagram-editor/lienzo-tests/src/main/java/com/ait/lienzo/test/stub/README.md b/packages/serverless-workflow-diagram-editor/lienzo-tests/src/main/java/com/ait/lienzo/test/stub/README.md index ae819dda55d..13d03dcd539 100644 --- a/packages/serverless-workflow-diagram-editor/lienzo-tests/src/main/java/com/ait/lienzo/test/stub/README.md +++ b/packages/serverless-workflow-diagram-editor/lienzo-tests/src/main/java/com/ait/lienzo/test/stub/README.md @@ -1,3 +1,20 @@ + + # Out of the box Lienzo's testing doubles This package contain some testing doubles for overlay types, wrappers and other classes that are using native interfaces. diff --git a/packages/serverless-workflow-diagram-editor/sw-editor/README.md b/packages/serverless-workflow-diagram-editor/sw-editor/README.md index 6ef3e00713d..069656eb480 100644 --- a/packages/serverless-workflow-diagram-editor/sw-editor/README.md +++ b/packages/serverless-workflow-diagram-editor/sw-editor/README.md @@ -1,3 +1,20 @@ + + # Serverless Workflow Diagram Editor This is the parent module for the Serverless Workflow Diagram Editor. diff --git a/packages/serverless-workflow-diagram-editor/sw-editor/TODOs.md b/packages/serverless-workflow-diagram-editor/sw-editor/TODOs.md index 9c9561726a1..564b6f72329 100644 --- a/packages/serverless-workflow-diagram-editor/sw-editor/TODOs.md +++ b/packages/serverless-workflow-diagram-editor/sw-editor/TODOs.md @@ -1,3 +1,20 @@ + + # TODOs - Merge api-client-app modules into just a single one? diff --git a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-api/src/main/resources/org/kie/workbench/common/stunner/sw/resources/i18n/SWConstants.properties b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-api/src/main/resources/org/kie/workbench/common/stunner/sw/resources/i18n/SWConstants.properties index 0e4dedf9d44..ae999e019b8 100644 --- a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-api/src/main/resources/org/kie/workbench/common/stunner/sw/resources/i18n/SWConstants.properties +++ b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-api/src/main/resources/org/kie/workbench/common/stunner/sw/resources/i18n/SWConstants.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + org.kie.workbench.common.stunner.sw.SWDefinitionSet.description=Serverless Workflow # Categories -------------------------------------- diff --git a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/README.md b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/README.md index 9a558a7df8c..af65c4e22c1 100644 --- a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/README.md +++ b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/README.md @@ -1,3 +1,20 @@ + + # SWF Editor - Kogito Webapp The Serverless Workflow Diagram Editor's webapp bundle for all kogito channels. diff --git a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/AccumulateRoomReadingsExample.sw.yaml b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/AccumulateRoomReadingsExample.sw.yaml index 372f67f8ad3..6f791ff5232 100644 --- a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/AccumulateRoomReadingsExample.sw.yaml +++ b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/AccumulateRoomReadingsExample.sw.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + id: roomreadings version: "1.0" specVersion: "0.8" diff --git a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/ApplicantRequestDecisionExample.sw.yaml b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/ApplicantRequestDecisionExample.sw.yaml index 7ad7c9ebad7..13efbaf59d3 100644 --- a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/ApplicantRequestDecisionExample.sw.yaml +++ b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/ApplicantRequestDecisionExample.sw.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + id: applicantrequest version: "1.0" specVersion: "0.8" diff --git a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/AsyncFunctionInvocationExample.sw.yaml b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/AsyncFunctionInvocationExample.sw.yaml index c8dc2843cb5..9b66a156824 100644 --- a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/AsyncFunctionInvocationExample.sw.yaml +++ b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/AsyncFunctionInvocationExample.sw.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + id: sendcustomeremail version: "1.0" specVersion: "0.8" diff --git a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/AsyncSubFlowInvocationExample.sw.yaml b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/AsyncSubFlowInvocationExample.sw.yaml index 149773cc69b..edad478c78e 100644 --- a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/AsyncSubFlowInvocationExample.sw.yaml +++ b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/AsyncSubFlowInvocationExample.sw.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + id: onboardcustomer version: "1.0" specVersion: "0.8" diff --git a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/BookLendingExample.sw.yaml b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/BookLendingExample.sw.yaml index c2e859535f1..358cb2c9629 100644 --- a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/BookLendingExample.sw.yaml +++ b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/BookLendingExample.sw.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + id: booklending version: "1.0" specVersion: "0.8" diff --git a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/CarVitalsCheckExample.sw.yaml b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/CarVitalsCheckExample.sw.yaml index ac60fad2855..d0327ed2952 100644 --- a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/CarVitalsCheckExample.sw.yaml +++ b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/CarVitalsCheckExample.sw.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + id: checkcarvitals version: "1.0" specVersion: "0.8" diff --git a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/CheckInboxPeriodicallyExample.sw.yaml b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/CheckInboxPeriodicallyExample.sw.yaml index 9c4526c6424..59e82677a2e 100644 --- a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/CheckInboxPeriodicallyExample.sw.yaml +++ b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/CheckInboxPeriodicallyExample.sw.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + id: checkInbox version: "1.0" specVersion: "0.8" diff --git a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/CustomerCreditCheckExample.sw.yaml b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/CustomerCreditCheckExample.sw.yaml index 2fc8cb947f0..3f09ead0b50 100644 --- a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/CustomerCreditCheckExample.sw.yaml +++ b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/CustomerCreditCheckExample.sw.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + id: customercreditcheck version: "1.0" specVersion: "0.8" diff --git a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/EventBasedGreetingExample.sw.yaml b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/EventBasedGreetingExample.sw.yaml index 47b3b6a0a06..8028caaac8b 100644 --- a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/EventBasedGreetingExample.sw.yaml +++ b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/EventBasedGreetingExample.sw.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + id: eventbasedgreeting version: "1.0" specVersion: "0.8" diff --git a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/EventBasedServiceInvocationExample.sw.yaml b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/EventBasedServiceInvocationExample.sw.yaml index c29a441b39c..a991995ad72 100644 --- a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/EventBasedServiceInvocationExample.sw.yaml +++ b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/EventBasedServiceInvocationExample.sw.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + id: VetAppointmentWorkflow version: "1.0" specVersion: "0.8" diff --git a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/EventBasedSwitchStateExample.sw.yaml b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/EventBasedSwitchStateExample.sw.yaml index e69dd59d703..23427f33e7b 100644 --- a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/EventBasedSwitchStateExample.sw.yaml +++ b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/EventBasedSwitchStateExample.sw.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + id: eventbasedswitchstate version: "1.0" specVersion: "0.8" diff --git a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/FillGlassOfWaterExample.sw.yaml b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/FillGlassOfWaterExample.sw.yaml index c738529c2aa..ebf6c574583 100644 --- a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/FillGlassOfWaterExample.sw.yaml +++ b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/FillGlassOfWaterExample.sw.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + id: fillglassofwater version: "1.0" specVersion: "0.8" diff --git a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/FinalizeCollegeApplicationExample.sw.yaml b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/FinalizeCollegeApplicationExample.sw.yaml index 56756da2598..294e82610ae 100644 --- a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/FinalizeCollegeApplicationExample.sw.yaml +++ b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/FinalizeCollegeApplicationExample.sw.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + id: finalizeCollegeApplication version: "1.0" specVersion: "0.8" diff --git a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/HandleCarAuctionBidExample.sw.yaml b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/HandleCarAuctionBidExample.sw.yaml index 08441f89b05..be58d8b334d 100644 --- a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/HandleCarAuctionBidExample.sw.yaml +++ b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/HandleCarAuctionBidExample.sw.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + id: handleCarAuctionBid version: "1.0" specVersion: "0.8" diff --git a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/HelloWorldExample.sw.yaml b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/HelloWorldExample.sw.yaml index 5f5b88da694..839914aff3c 100644 --- a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/HelloWorldExample.sw.yaml +++ b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/HelloWorldExample.sw.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + id: helloworld version: "1.0" specVersion: "0.8" diff --git a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/JobMonitoringExample.sw.yaml b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/JobMonitoringExample.sw.yaml index db84b5b814d..f78fd2781f9 100644 --- a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/JobMonitoringExample.sw.yaml +++ b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/JobMonitoringExample.sw.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + id: jobmonitoring version: "1.0" specVersion: "0.8" diff --git a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/MonitorPatientVitalSignsExample.sw.yaml b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/MonitorPatientVitalSignsExample.sw.yaml index 099ba263f89..7bf8687471a 100644 --- a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/MonitorPatientVitalSignsExample.sw.yaml +++ b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/MonitorPatientVitalSignsExample.sw.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + id: patientVitalsWorkflow version: "1.0" specVersion: "0.8" diff --git a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/NewPatientOnboardingExample.sw.yaml b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/NewPatientOnboardingExample.sw.yaml index d8beebf15e0..6b7cb482c54 100644 --- a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/NewPatientOnboardingExample.sw.yaml +++ b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/NewPatientOnboardingExample.sw.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + id: patientonboarding version: "1.0" specVersion: "0.8" diff --git a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/NotifyCustomerWorkflowExample.sw.yaml b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/NotifyCustomerWorkflowExample.sw.yaml index d3aa95571f8..51f82e227fd 100644 --- a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/NotifyCustomerWorkflowExample.sw.yaml +++ b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/NotifyCustomerWorkflowExample.sw.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + id: notifycustomerworkflow version: "1.0" specVersion: "0.8" diff --git a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/ParallelExecutionExample.sw.yaml b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/ParallelExecutionExample.sw.yaml index 64ade8dda51..8b22154a6ea 100644 --- a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/ParallelExecutionExample.sw.yaml +++ b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/ParallelExecutionExample.sw.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + id: parallelexec version: "1.0" specVersion: "0.8" diff --git a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/ProcessTransactionsExample.sw.yaml b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/ProcessTransactionsExample.sw.yaml index 6d4a15e3e2c..5ff32ffd3fc 100644 --- a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/ProcessTransactionsExample.sw.yaml +++ b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/ProcessTransactionsExample.sw.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + id: customerbankingtransactions version: "1.0" specVersion: "0.8" diff --git a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/ProvisionOrdersExample.sw.yaml b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/ProvisionOrdersExample.sw.yaml index 8bd10dbeb76..58da00ad51b 100644 --- a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/ProvisionOrdersExample.sw.yaml +++ b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/ProvisionOrdersExample.sw.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + id: provisionorders version: "1.0" specVersion: "0.8" diff --git a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/PurchaseOrderDeadlineExample.sw.yaml b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/PurchaseOrderDeadlineExample.sw.yaml index e0abe3f9eed..259ac65ea50 100644 --- a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/PurchaseOrderDeadlineExample.sw.yaml +++ b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/PurchaseOrderDeadlineExample.sw.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + id: order version: "1.0" specVersion: "0.8" diff --git a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/SendCloudEventOnProvisionExample.sw.yaml b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/SendCloudEventOnProvisionExample.sw.yaml index 94de424e579..0cd7bbb144a 100644 --- a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/SendCloudEventOnProvisionExample.sw.yaml +++ b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/SendCloudEventOnProvisionExample.sw.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + id: sendcloudeventonprovision version: "1.0" specVersion: "0.8" diff --git a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/SolveMathProblemsExample.sw.yaml b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/SolveMathProblemsExample.sw.yaml index 9d356f0be95..f727e8095c0 100644 --- a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/SolveMathProblemsExample.sw.yaml +++ b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/SolveMathProblemsExample.sw.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + id: solvemathproblems version: "1.0" specVersion: "0.8" diff --git a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/main-workflow-definition.sw.yaml b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/main-workflow-definition.sw.yaml index 07e8048f0ea..9f6b5da4431 100644 --- a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/main-workflow-definition.sw.yaml +++ b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/test/resources/org/kie/workbench/common/stunner/sw/client/selenium/yaml/main-workflow-definition.sw.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + id: foodorderworkflow name: Food Order Workflow version: "1.0.0" diff --git a/packages/serverless-workflow-diagram-editor/third_party/errai/pom.xml b/packages/serverless-workflow-diagram-editor/third_party/errai/pom.xml index 338972c14c6..69f80f2cbde 100644 --- a/packages/serverless-workflow-diagram-editor/third_party/errai/pom.xml +++ b/packages/serverless-workflow-diagram-editor/third_party/errai/pom.xml @@ -1,4 +1,22 @@ + + + + diff --git a/packages/serverless-workflow-jq-expressions/README.md b/packages/serverless-workflow-jq-expressions/README.md index d20ef04a101..5bca88ddecd 100644 --- a/packages/serverless-workflow-jq-expressions/README.md +++ b/packages/serverless-workflow-jq-expressions/README.md @@ -1 +1,18 @@ + + jq-expressions diff --git a/packages/serverless-workflow-language-service/README.md b/packages/serverless-workflow-language-service/README.md index eed3c45c4ea..e19bbf0926b 100644 --- a/packages/serverless-workflow-language-service/README.md +++ b/packages/serverless-workflow-language-service/README.md @@ -1 +1,18 @@ + + ## Serverless Workflow Language Service diff --git a/packages/serverless-workflow-service-catalog/tests/channel/parsers/examples/greeting.yaml b/packages/serverless-workflow-service-catalog/tests/channel/parsers/examples/greeting.yaml index 616e522361f..32c9fbff542 100644 --- a/packages/serverless-workflow-service-catalog/tests/channel/parsers/examples/greeting.yaml +++ b/packages/serverless-workflow-service-catalog/tests/channel/parsers/examples/greeting.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + --- openapi: 3.0.3 info: diff --git a/packages/serverless-workflow-service-catalog/tests/channel/parsers/examples/hiring.yaml b/packages/serverless-workflow-service-catalog/tests/channel/parsers/examples/hiring.yaml index 25d61715c2a..3b3742f7544 100644 --- a/packages/serverless-workflow-service-catalog/tests/channel/parsers/examples/hiring.yaml +++ b/packages/serverless-workflow-service-catalog/tests/channel/parsers/examples/hiring.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + --- openapi: 3.0.3 info: diff --git a/packages/serverless-workflow-service-catalog/tests/channel/parsers/examples/http.yaml b/packages/serverless-workflow-service-catalog/tests/channel/parsers/examples/http.yaml index 2b6a5720d97..91e0aa5da88 100644 --- a/packages/serverless-workflow-service-catalog/tests/channel/parsers/examples/http.yaml +++ b/packages/serverless-workflow-service-catalog/tests/channel/parsers/examples/http.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + --- asyncapi: "2.0.0" id: "urn:com:http:server" diff --git a/packages/serverless-workflow-service-catalog/tests/channel/parsers/examples/message.yaml b/packages/serverless-workflow-service-catalog/tests/channel/parsers/examples/message.yaml index bceceecd4d0..c245046515d 100644 --- a/packages/serverless-workflow-service-catalog/tests/channel/parsers/examples/message.yaml +++ b/packages/serverless-workflow-service-catalog/tests/channel/parsers/examples/message.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + asyncapi: "2.0.0" id: "oneConsumer" info: diff --git a/packages/serverless-workflow-service-catalog/tests/channel/parsers/examples/multiplication.yaml b/packages/serverless-workflow-service-catalog/tests/channel/parsers/examples/multiplication.yaml index 61db17a5067..a1ceeef78d0 100644 --- a/packages/serverless-workflow-service-catalog/tests/channel/parsers/examples/multiplication.yaml +++ b/packages/serverless-workflow-service-catalog/tests/channel/parsers/examples/multiplication.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + --- openapi: 3.0.3 info: diff --git a/packages/serverless-workflow-service-catalog/tests/channel/parsers/examples/numberToWords.yaml b/packages/serverless-workflow-service-catalog/tests/channel/parsers/examples/numberToWords.yaml index 32429edf0b2..6ac83246e8e 100644 --- a/packages/serverless-workflow-service-catalog/tests/channel/parsers/examples/numberToWords.yaml +++ b/packages/serverless-workflow-service-catalog/tests/channel/parsers/examples/numberToWords.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + - from: uri: direct:numberToWords steps: diff --git a/packages/serverless-workflow-service-catalog/tests/channel/parsers/examples/sendMessage.yaml b/packages/serverless-workflow-service-catalog/tests/channel/parsers/examples/sendMessage.yaml index 9ba786c6032..cbdcf8b32a4 100644 --- a/packages/serverless-workflow-service-catalog/tests/channel/parsers/examples/sendMessage.yaml +++ b/packages/serverless-workflow-service-catalog/tests/channel/parsers/examples/sendMessage.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + - route: id: "foo" from: diff --git a/packages/serverless-workflow-standalone-editor/README.md b/packages/serverless-workflow-standalone-editor/README.md index a28e2e7777f..093b53cd105 100644 --- a/packages/serverless-workflow-standalone-editor/README.md +++ b/packages/serverless-workflow-standalone-editor/README.md @@ -1,3 +1,20 @@ + + ## Serverless Workflow Standalone Editors ### Description diff --git a/packages/serverless-workflow-vscode-extension/CHANGELOG.md b/packages/serverless-workflow-vscode-extension/CHANGELOG.md index f4d453f285f..158120ea986 100644 --- a/packages/serverless-workflow-vscode-extension/CHANGELOG.md +++ b/packages/serverless-workflow-vscode-extension/CHANGELOG.md @@ -1,3 +1,20 @@ + + # 0.32.0 (alpha) - [KOGITO-9668](https://issues.redhat.com/browse/KOGITO-9668) - SWF Editor - In VSCode the diagram reloads if a user clicks on any area of the canvas diff --git a/packages/serverless-workflow-vscode-extension/README.md b/packages/serverless-workflow-vscode-extension/README.md index 211a51bb72b..29de3224b84 100644 --- a/packages/serverless-workflow-vscode-extension/README.md +++ b/packages/serverless-workflow-vscode-extension/README.md @@ -1,3 +1,20 @@ + + ## Kogito Serverless Workflow Editor ![vs-code-support](https://img.shields.io/badge/Visual%20Studio%20Code-1.67.0+-blue.svg) diff --git a/packages/serverless-workflow-vscode-extension/e2e-tests/resources/autocompletion/specs/api.yaml b/packages/serverless-workflow-vscode-extension/e2e-tests/resources/autocompletion/specs/api.yaml index a6078225713..bb5b279a0aa 100644 --- a/packages/serverless-workflow-vscode-extension/e2e-tests/resources/autocompletion/specs/api.yaml +++ b/packages/serverless-workflow-vscode-extension/e2e-tests/resources/autocompletion/specs/api.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + --- openapi: 3.0.3 info: diff --git a/packages/serverless-workflow-vscode-extension/e2e-tests/resources/functions-events/routes/camel.yaml b/packages/serverless-workflow-vscode-extension/e2e-tests/resources/functions-events/routes/camel.yaml index c03f68fcd1b..03026f80738 100644 --- a/packages/serverless-workflow-vscode-extension/e2e-tests/resources/functions-events/routes/camel.yaml +++ b/packages/serverless-workflow-vscode-extension/e2e-tests/resources/functions-events/routes/camel.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + - route: id: "routeYaml" from: diff --git a/packages/serverless-workflow-vscode-extension/e2e-tests/resources/functions-events/specs/openapi.yaml b/packages/serverless-workflow-vscode-extension/e2e-tests/resources/functions-events/specs/openapi.yaml index df0337edf07..b0d88fbbc50 100644 --- a/packages/serverless-workflow-vscode-extension/e2e-tests/resources/functions-events/specs/openapi.yaml +++ b/packages/serverless-workflow-vscode-extension/e2e-tests/resources/functions-events/specs/openapi.yaml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + --- openapi: 3.1.0 info: diff --git a/packages/serverless-workflow-vscode-extension/e2e-tests/resources/greeting-flow/.gitignore b/packages/serverless-workflow-vscode-extension/e2e-tests/resources/greeting-flow/.gitignore index bdf57ce3b41..0ca8fe1471e 100644 --- a/packages/serverless-workflow-vscode-extension/e2e-tests/resources/greeting-flow/.gitignore +++ b/packages/serverless-workflow-vscode-extension/e2e-tests/resources/greeting-flow/.gitignore @@ -1,3 +1,21 @@ +### +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + #Maven target/ pom.xml.tag diff --git a/packages/serverless-workflow-vscode-extension/e2e-tests/resources/greeting-flow/pom.xml b/packages/serverless-workflow-vscode-extension/e2e-tests/resources/greeting-flow/pom.xml index 2dc1f12ad04..9173e98f8af 100644 --- a/packages/serverless-workflow-vscode-extension/e2e-tests/resources/greeting-flow/pom.xml +++ b/packages/serverless-workflow-vscode-extension/e2e-tests/resources/greeting-flow/pom.xml @@ -1,4 +1,22 @@ - + + + # SonataFlow Deployment Webapp This is the web application for SonataFlow Deployments. diff --git a/packages/sonataflow-quarkus-devui/pom.xml b/packages/sonataflow-quarkus-devui/pom.xml index b06db076419..c44bb98e129 100644 --- a/packages/sonataflow-quarkus-devui/pom.xml +++ b/packages/sonataflow-quarkus-devui/pom.xml @@ -1,23 +1,21 @@ + # Appformer Client API ## Introduction diff --git a/packages/stunner-editors/appformer-js-monaco/pom.xml b/packages/stunner-editors/appformer-js-monaco/pom.xml index c963ffb0b19..9ccfd0f643b 100644 --- a/packages/stunner-editors/appformer-js-monaco/pom.xml +++ b/packages/stunner-editors/appformer-js-monaco/pom.xml @@ -1,4 +1,22 @@ + + + diff --git a/packages/stunner-editors/docs/live-reload-dmn-loader.md b/packages/stunner-editors/docs/live-reload-dmn-loader.md index 9fe3b85ad9b..41adfc2fd38 100644 --- a/packages/stunner-editors/docs/live-reload-dmn-loader.md +++ b/packages/stunner-editors/docs/live-reload-dmn-loader.md @@ -1,3 +1,20 @@ + + # How to enable live-reload on React apps inside the DMN Editor ### 1. Configure GWT web app on IntelliJ diff --git a/packages/stunner-editors/drools-wb-screens/drools-wb-scenario-simulation-editor/drools-wb-scenario-simulation-editor-api/pom.xml b/packages/stunner-editors/drools-wb-screens/drools-wb-scenario-simulation-editor/drools-wb-scenario-simulation-editor-api/pom.xml index 42c5d34c412..48e0aed6210 100644 --- a/packages/stunner-editors/drools-wb-screens/drools-wb-scenario-simulation-editor/drools-wb-scenario-simulation-editor-api/pom.xml +++ b/packages/stunner-editors/drools-wb-screens/drools-wb-scenario-simulation-editor/drools-wb-scenario-simulation-editor-api/pom.xml @@ -1,4 +1,22 @@ + + # Details on Docks management inside ScenarioSimulationEditor _Docks_ is the term used to identify the panel to the left/right and bottom of the main view. They are managed by upper framework and are _ApplicationScoped_, diff --git a/packages/stunner-editors/drools-wb-screens/drools-wb-scenario-simulation-editor/drools-wb-scenario-simulation-editor-client/pom.xml b/packages/stunner-editors/drools-wb-screens/drools-wb-scenario-simulation-editor/drools-wb-scenario-simulation-editor-client/pom.xml index 265914f2a46..17b79e87da0 100644 --- a/packages/stunner-editors/drools-wb-screens/drools-wb-scenario-simulation-editor/drools-wb-scenario-simulation-editor-client/pom.xml +++ b/packages/stunner-editors/drools-wb-screens/drools-wb-scenario-simulation-editor/drools-wb-scenario-simulation-editor-client/pom.xml @@ -1,4 +1,22 @@ + + + # Kogito SCESIM Client Module This module scope is to provide the client layer (i.e. all the frontend view and presenter) diff --git a/packages/stunner-editors/drools-wb-screens/drools-wb-scenario-simulation-editor/drools-wb-scenario-simulation-editor-kogito-client/pom.xml b/packages/stunner-editors/drools-wb-screens/drools-wb-scenario-simulation-editor/drools-wb-scenario-simulation-editor-kogito-client/pom.xml index 2fd101d7b2f..897faf02765 100644 --- a/packages/stunner-editors/drools-wb-screens/drools-wb-scenario-simulation-editor/drools-wb-scenario-simulation-editor-kogito-client/pom.xml +++ b/packages/stunner-editors/drools-wb-screens/drools-wb-scenario-simulation-editor/drools-wb-scenario-simulation-editor-kogito-client/pom.xml @@ -1,4 +1,22 @@ + + # Kogito SCESIM Marshaller This module manages **marshalling** (i.e. converting from a XML file to a JSInterop file) diff --git a/packages/stunner-editors/drools-wb-screens/drools-wb-scenario-simulation-editor/drools-wb-scenario-simulation-editor-kogito-marshaller/pom.xml b/packages/stunner-editors/drools-wb-screens/drools-wb-scenario-simulation-editor/drools-wb-scenario-simulation-editor-kogito-marshaller/pom.xml index 25b9bbad4c2..d123defaa8f 100644 --- a/packages/stunner-editors/drools-wb-screens/drools-wb-scenario-simulation-editor/drools-wb-scenario-simulation-editor-kogito-marshaller/pom.xml +++ b/packages/stunner-editors/drools-wb-screens/drools-wb-scenario-simulation-editor/drools-wb-scenario-simulation-editor-kogito-marshaller/pom.xml @@ -1,4 +1,22 @@ + + # Kogito Runtime Webapp This webapp is meant as runtime environment. It **does not provides** methods and functions (ex. file retrieval) that should be provided by running environment (ex. vs code). diff --git a/packages/stunner-editors/drools-wb-screens/drools-wb-scenario-simulation-editor/drools-wb-scenario-simulation-editor-kogito-runtime/pom.xml b/packages/stunner-editors/drools-wb-screens/drools-wb-scenario-simulation-editor/drools-wb-scenario-simulation-editor-kogito-runtime/pom.xml index 2ad1f6f93d2..2b6173411cd 100644 --- a/packages/stunner-editors/drools-wb-screens/drools-wb-scenario-simulation-editor/drools-wb-scenario-simulation-editor-kogito-runtime/pom.xml +++ b/packages/stunner-editors/drools-wb-screens/drools-wb-scenario-simulation-editor/drools-wb-scenario-simulation-editor-kogito-runtime/pom.xml @@ -1,4 +1,22 @@ + + # Kogito Runtime Webapp This webapp is meant as runtime environment. It **does not provides** methods and functions (ex. file retrieval) that should be provided by running environment (ex. vs code). diff --git a/packages/stunner-editors/drools-wb-screens/drools-wb-scenario-simulation-editor/drools-wb-scenario-simulation-editor-kogito-testing/pom.xml b/packages/stunner-editors/drools-wb-screens/drools-wb-scenario-simulation-editor/drools-wb-scenario-simulation-editor-kogito-testing/pom.xml index 8508bea507a..746e70bfe44 100644 --- a/packages/stunner-editors/drools-wb-screens/drools-wb-scenario-simulation-editor/drools-wb-scenario-simulation-editor-kogito-testing/pom.xml +++ b/packages/stunner-editors/drools-wb-screens/drools-wb-scenario-simulation-editor/drools-wb-scenario-simulation-editor-kogito-testing/pom.xml @@ -1,4 +1,22 @@ + + + + + To release Errai-CDI, follow the release process for the base Errai project. diff --git a/packages/stunner-editors/errai-cdi/errai-cdi-client/pom.xml b/packages/stunner-editors/errai-cdi/errai-cdi-client/pom.xml index 4bbc1ca8845..e6afe7a6ab5 100644 --- a/packages/stunner-editors/errai-cdi/errai-cdi-client/pom.xml +++ b/packages/stunner-editors/errai-cdi/errai-cdi-client/pom.xml @@ -1,4 +1,22 @@ + + + + + + + + + + + + + diff --git a/packages/stunner-editors/errai-reflections/reflections/src/test/resources/META-INF/reflections/resource1-reflections.xml b/packages/stunner-editors/errai-reflections/reflections/src/test/resources/META-INF/reflections/resource1-reflections.xml index 0344f605824..e67a63d5f7e 100644 --- a/packages/stunner-editors/errai-reflections/reflections/src/test/resources/META-INF/reflections/resource1-reflections.xml +++ b/packages/stunner-editors/errai-reflections/reflections/src/test/resources/META-INF/reflections/resource1-reflections.xml @@ -1,4 +1,22 @@ + diff --git a/packages/stunner-editors/errai-ui/pom.xml b/packages/stunner-editors/errai-ui/pom.xml index d0a2e771d91..f8bab3cbf76 100644 --- a/packages/stunner-editors/errai-ui/pom.xml +++ b/packages/stunner-editors/errai-ui/pom.xml @@ -1,4 +1,22 @@ + + + # Graphical DMN modeling tool This module contains various children for different purposes. diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-api/src/main/resources/org/kie/workbench/common/dmn/api/resources/i18n/DMNAPIConstants.properties b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-api/src/main/resources/org/kie/workbench/common/dmn/api/resources/i18n/DMNAPIConstants.properties index 264253f507d..dec13ac6209 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-api/src/main/resources/org/kie/workbench/common/dmn/api/resources/i18n/DMNAPIConstants.properties +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-api/src/main/resources/org/kie/workbench/common/dmn/api/resources/i18n/DMNAPIConstants.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + ####################### # Definitions ####################### diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-api/src/main/resources/org/kie/workbench/common/dmn/api/resources/i18n/DMNAPIConstants_de.properties b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-api/src/main/resources/org/kie/workbench/common/dmn/api/resources/i18n/DMNAPIConstants_de.properties index 2ed75d0fefd..93621f9504e 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-api/src/main/resources/org/kie/workbench/common/dmn/api/resources/i18n/DMNAPIConstants_de.properties +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-api/src/main/resources/org/kie/workbench/common/dmn/api/resources/i18n/DMNAPIConstants_de.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + ####################### # Definitions ####################### diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-api/src/main/resources/org/kie/workbench/common/dmn/api/resources/i18n/DMNAPIConstants_es.properties b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-api/src/main/resources/org/kie/workbench/common/dmn/api/resources/i18n/DMNAPIConstants_es.properties index 60c94acf0a7..ce2f34c6d9f 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-api/src/main/resources/org/kie/workbench/common/dmn/api/resources/i18n/DMNAPIConstants_es.properties +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-api/src/main/resources/org/kie/workbench/common/dmn/api/resources/i18n/DMNAPIConstants_es.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + ####################### # Definitions ####################### diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-api/src/main/resources/org/kie/workbench/common/dmn/api/resources/i18n/DMNAPIConstants_fr.properties b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-api/src/main/resources/org/kie/workbench/common/dmn/api/resources/i18n/DMNAPIConstants_fr.properties index d3285e9891c..e37fa381743 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-api/src/main/resources/org/kie/workbench/common/dmn/api/resources/i18n/DMNAPIConstants_fr.properties +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-api/src/main/resources/org/kie/workbench/common/dmn/api/resources/i18n/DMNAPIConstants_fr.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + ####################### # Definitions ####################### diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-api/src/main/resources/org/kie/workbench/common/dmn/api/resources/i18n/DMNAPIConstants_ja.properties b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-api/src/main/resources/org/kie/workbench/common/dmn/api/resources/i18n/DMNAPIConstants_ja.properties index 3fe5ab8bf3c..108d5bd89f9 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-api/src/main/resources/org/kie/workbench/common/dmn/api/resources/i18n/DMNAPIConstants_ja.properties +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-api/src/main/resources/org/kie/workbench/common/dmn/api/resources/i18n/DMNAPIConstants_ja.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + ####################### # Definitions ####################### diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-client/src/main/resources/META-INF/ErraiApp.properties b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-client/src/main/resources/META-INF/ErraiApp.properties index 55f7f6861da..967823ae8ce 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-client/src/main/resources/META-INF/ErraiApp.properties +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-client/src/main/resources/META-INF/ErraiApp.properties @@ -16,7 +16,7 @@ # specific language governing permissions and limitations # under the License. # -# + # # ErraiApp.properties # diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-common/src/main/resources/META-INF/ErraiApp.properties b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-common/src/main/resources/META-INF/ErraiApp.properties index b08464deba6..450c483a436 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-common/src/main/resources/META-INF/ErraiApp.properties +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-common/src/main/resources/META-INF/ErraiApp.properties @@ -15,6 +15,8 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. +# + # # ErraiApp.properties # diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-common/src/main/resources/project-defaults.yml b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-common/src/main/resources/project-defaults.yml index 9da1a3d29d0..e800cdcf972 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-common/src/main/resources/project-defaults.yml +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-common/src/main/resources/project-defaults.yml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + # Sample Swarm config for KIE Drools Workbench swarm: management: diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/KogitoCommonWebappSwitch.md b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/KogitoCommonWebappSwitch.md index 0c13883ec5b..6b30e67da48 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/KogitoCommonWebappSwitch.md +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/KogitoCommonWebappSwitch.md @@ -1,3 +1,20 @@ + + # Modifications done to switch to kie-wb-common-kogito-webapp-base ## kie-wb-common-dmn-webapp-kogito-common diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/README.md b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/README.md index 4976e0bc28a..99375692330 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/README.md +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/README.md @@ -1,3 +1,20 @@ + + # Kogito DMN Editor - Webapp ## Building diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/main/resources/META-INF/ErraiApp.properties b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/main/resources/META-INF/ErraiApp.properties index 01f86b7a2ae..75a6a04b1a1 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/main/resources/META-INF/ErraiApp.properties +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/main/resources/META-INF/ErraiApp.properties @@ -16,7 +16,7 @@ # specific language governing permissions and limitations # under the License. # -# + # # ErraiApp.properties # diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/main/webapp/static/sample.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/main/webapp/static/sample.dmn index a439e58e3ee..d2a6769463d 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/main/webapp/static/sample.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/main/webapp/static/sample.dmn @@ -1,3 +1,22 @@ + + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11-expected/0001-filter.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11-expected/0001-filter.dmn index 7789dd9ca5a..815bb8395d7 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11-expected/0001-filter.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11-expected/0001-filter.dmn @@ -1,4 +1,22 @@ - + + + + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11-expected/0002-input-data-number.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11-expected/0002-input-data-number.dmn index e26097cd163..67cc5d22dcd 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11-expected/0002-input-data-number.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11-expected/0002-input-data-number.dmn @@ -1,4 +1,22 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0001-input-data-string.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0001-input-data-string.dmn index 5ff89c5d1a1..c29e02d1d87 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0001-input-data-string.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0001-input-data-string.dmn @@ -1,4 +1,22 @@ + + + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0003-input-data-string-allowed-values.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0003-input-data-string-allowed-values.dmn index d8d57548934..7e63cf9f3f0 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0003-input-data-string-allowed-values.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0003-input-data-string-allowed-values.dmn @@ -1,4 +1,22 @@ + + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0004-lending.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0004-lending.dmn index 43b93e1786a..2829a872464 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0004-lending.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0004-lending.dmn @@ -1,4 +1,22 @@ + feel:string diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0004-simpletable-U.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0004-simpletable-U.dmn index b392aa4e3cc..b126928f9f1 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0004-simpletable-U.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0004-simpletable-U.dmn @@ -1,4 +1,22 @@ + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0005-literal-invocation.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0005-literal-invocation.dmn index 4e452b8e836..23d170b158d 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0005-literal-invocation.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0005-literal-invocation.dmn @@ -1,4 +1,22 @@ + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0005-simpletable-A.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0005-simpletable-A.dmn index a04de870718..16121162237 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0005-simpletable-A.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0005-simpletable-A.dmn @@ -1,4 +1,22 @@ + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0006-join.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0006-join.dmn index 77cc776e807..cd003261966 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0006-join.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0006-join.dmn @@ -1,4 +1,22 @@ + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0006-simpletable-P1.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0006-simpletable-P1.dmn index d712792a396..b771adfe1c4 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0006-simpletable-P1.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0006-simpletable-P1.dmn @@ -1,4 +1,22 @@ + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0007-date-time.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0007-date-time.dmn index e0f5ad85de9..0f4bfcc85ca 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0007-date-time.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0007-date-time.dmn @@ -1,4 +1,22 @@ + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0007-simpletable-P2.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0007-simpletable-P2.dmn index 3cea85384ef..2e1dbb46be0 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0007-simpletable-P2.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0007-simpletable-P2.dmn @@ -1,4 +1,22 @@ + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0008-LX-arithmetic.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0008-LX-arithmetic.dmn index 076d99a8317..839ee4fa19d 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0008-LX-arithmetic.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0008-LX-arithmetic.dmn @@ -1,4 +1,22 @@ + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0008-listGen.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0008-listGen.dmn index 58ac4457bc6..5c5ed9b0391 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0008-listGen.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0008-listGen.dmn @@ -1,4 +1,22 @@ + feel:string diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0009-append-flatten.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0009-append-flatten.dmn index 4667423955a..2572976d5bc 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0009-append-flatten.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0009-append-flatten.dmn @@ -1,4 +1,22 @@ + feel:string diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0009-invocation-arithmetic.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0009-invocation-arithmetic.dmn index 1966639ca27..0771f580ebd 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0009-invocation-arithmetic.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0009-invocation-arithmetic.dmn @@ -1,4 +1,22 @@ + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0010-concatenate.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0010-concatenate.dmn index 5431b64e5e1..48be27903d9 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0010-concatenate.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0010-concatenate.dmn @@ -1,4 +1,22 @@ + feel:string diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0010-multi-output-U.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0010-multi-output-U.dmn index 7c3785da79f..98607e92228 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0010-multi-output-U.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0010-multi-output-U.dmn @@ -1,4 +1,22 @@ + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0011-insert-remove.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0011-insert-remove.dmn index a58b615d4e1..1b955c0f349 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0011-insert-remove.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0011-insert-remove.dmn @@ -1,4 +1,22 @@ + feel:string diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0012-list-functions.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0012-list-functions.dmn index 7347918cbde..68956aec3c0 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0012-list-functions.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0012-list-functions.dmn @@ -1,4 +1,22 @@ + feel:string diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0013-sort.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0013-sort.dmn index 048a2d1b461..a0e3fab633c 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0013-sort.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0013-sort.dmn @@ -1,4 +1,22 @@ + feel:number diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0014-loan-comparison.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0014-loan-comparison.dmn index 0537572e04f..39972ece3b8 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0014-loan-comparison.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0014-loan-comparison.dmn @@ -1,4 +1,22 @@ + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0015-all-any.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0015-all-any.dmn index 56a124dd8f4..be9adeed44d 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0015-all-any.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0015-all-any.dmn @@ -1,4 +1,22 @@ + feel:boolean diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0016-some-every.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0016-some-every.dmn index 70ba272164e..30e9085fe79 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0016-some-every.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0016-some-every.dmn @@ -1,4 +1,22 @@ + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0017-tableTests.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0017-tableTests.dmn index c2a9dab2dc0..d52f3b373aa 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0017-tableTests.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0017-tableTests.dmn @@ -1,4 +1,22 @@ + feel:number diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0019-flight-rebooking.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0019-flight-rebooking.dmn index 0c34b11a03d..1ca02c1e1a6 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0019-flight-rebooking.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn11/0019-flight-rebooking.dmn @@ -1,4 +1,22 @@ + + + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0001-input-data-string.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0001-input-data-string.dmn index 2274433093e..da114a877d4 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0001-input-data-string.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0001-input-data-string.dmn @@ -1,4 +1,22 @@ - + + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0002-input-data-number.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0002-input-data-number.dmn index 3783217d485..0a46f43a320 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0002-input-data-number.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0002-input-data-number.dmn @@ -1,4 +1,22 @@ - + + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0002-string-functions.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0002-string-functions.dmn index 9559b209767..98c91da1d57 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0002-string-functions.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0002-string-functions.dmn @@ -1,4 +1,22 @@ - + + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0003-input-data-string-allowed-values.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0003-input-data-string-allowed-values.dmn index 627553fa6df..83063d702f2 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0003-input-data-string-allowed-values.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0003-input-data-string-allowed-values.dmn @@ -1,4 +1,22 @@ - + + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0003-iteration.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0003-iteration.dmn index 87b444ce486..57da9afaf93 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0003-iteration.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0003-iteration.dmn @@ -1,4 +1,22 @@ - + + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0004-lending.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0004-lending.dmn index a467528cfe1..54bf9299eaf 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0004-lending.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0004-lending.dmn @@ -1,4 +1,22 @@ - + + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0004-simpletable-U.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0004-simpletable-U.dmn index 90aca412a58..888fcd07b5c 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0004-simpletable-U.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0004-simpletable-U.dmn @@ -1,4 +1,22 @@ - + + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0005-literal-invocation.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0005-literal-invocation.dmn index 9a67e470a7d..5057c7a1fed 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0005-literal-invocation.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0005-literal-invocation.dmn @@ -1,4 +1,22 @@ - + + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0005-simpletable-A.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0005-simpletable-A.dmn index 6131984d2ad..9fc79b88029 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0005-simpletable-A.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0005-simpletable-A.dmn @@ -1,4 +1,22 @@ - + + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0006-join.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0006-join.dmn index 1d70668f056..ade47fa3ce3 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0006-join.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0006-join.dmn @@ -1,4 +1,22 @@ - + + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0006-simpletable-P1.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0006-simpletable-P1.dmn index e5a7b96c2aa..12e928216a5 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0006-simpletable-P1.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0006-simpletable-P1.dmn @@ -1,4 +1,22 @@ - + + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0007-date-time.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0007-date-time.dmn index 6bdfa591a6f..01ec267c49d 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0007-date-time.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0007-date-time.dmn @@ -1,4 +1,22 @@ - + + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0007-simpletable-P2.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0007-simpletable-P2.dmn index 97c22881fff..d19abbf02c5 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0007-simpletable-P2.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0007-simpletable-P2.dmn @@ -1,4 +1,22 @@ - + + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0008-LX-arithmetic.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0008-LX-arithmetic.dmn index 4cd5d5c6910..6cbb757ce8c 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0008-LX-arithmetic.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0008-LX-arithmetic.dmn @@ -1,4 +1,22 @@ - + + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0008-listGen.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0008-listGen.dmn index f26b11573ac..6b8edaeec4f 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0008-listGen.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0008-listGen.dmn @@ -1,4 +1,22 @@ - + + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0009-append-flatten.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0009-append-flatten.dmn index 0166d731a16..b85c73f080d 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0009-append-flatten.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0009-append-flatten.dmn @@ -1,4 +1,22 @@ - + + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0009-invocation-arithmetic.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0009-invocation-arithmetic.dmn index 3c1b917e463..b9a9102c74f 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0009-invocation-arithmetic.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0009-invocation-arithmetic.dmn @@ -1,4 +1,22 @@ - + + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0010-concatenate.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0010-concatenate.dmn index 78d4bd7df5f..9f07eb90f0c 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0010-concatenate.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0010-concatenate.dmn @@ -1,4 +1,22 @@ - + + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0010-multi-output-U.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0010-multi-output-U.dmn index 6a427c21317..74f85fc4b1b 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0010-multi-output-U.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0010-multi-output-U.dmn @@ -1,4 +1,22 @@ - + + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0011-insert-remove.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0011-insert-remove.dmn index a7408ef66fd..20aa7e792a1 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0011-insert-remove.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0011-insert-remove.dmn @@ -1,4 +1,22 @@ - + + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0012-list-functions.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0012-list-functions.dmn index 6f6a6a76eff..058c5ece67a 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0012-list-functions.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0012-list-functions.dmn @@ -1,4 +1,22 @@ - + + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0013-sort.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0013-sort.dmn index 3a387b768bd..7b053aa0674 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0013-sort.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0013-sort.dmn @@ -1,4 +1,22 @@ - + + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0014-loan-comparison.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0014-loan-comparison.dmn index 29ebfc7a3f3..d26cbb3470f 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0014-loan-comparison.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0014-loan-comparison.dmn @@ -1,4 +1,22 @@ - + + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0016-some-every.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0016-some-every.dmn index 42e81c2156d..01e6f188a5d 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0016-some-every.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0016-some-every.dmn @@ -1,4 +1,22 @@ - + + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0017-tableTests.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0017-tableTests.dmn index edbe9beb849..e2f1bf840f5 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0017-tableTests.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0017-tableTests.dmn @@ -1,4 +1,22 @@ - + + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0020-vacation-days.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0020-vacation-days.dmn index 7df9d0aca2b..277821401c3 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0020-vacation-days.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0020-vacation-days.dmn @@ -1,4 +1,22 @@ - + + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0021-singleton-list.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0021-singleton-list.dmn index 25b76732e70..39f50354e40 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0021-singleton-list.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0021-singleton-list.dmn @@ -1,4 +1,22 @@ - + + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0030-user-defined-functions.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0030-user-defined-functions.dmn index c43109a349d..e526a7b9920 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0030-user-defined-functions.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0030-user-defined-functions.dmn @@ -1,4 +1,22 @@ - + + Tests definition of functions in a boxed expression and invocation of those. diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0031-user-defined-functions.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0031-user-defined-functions.dmn index 4f31b06e66e..beb9abcccdd 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0031-user-defined-functions.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0031-user-defined-functions.dmn @@ -1,4 +1,22 @@ - + + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0032-conditionals.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0032-conditionals.dmn index a8d352261e1..2c801b72a00 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0032-conditionals.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0032-conditionals.dmn @@ -1,4 +1,22 @@ - + + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0033-for-loops.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0033-for-loops.dmn index 7e7d7c96bb9..e77ec9639fd 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0033-for-loops.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0033-for-loops.dmn @@ -1,4 +1,22 @@ - + + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0034-drg-scopes.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0034-drg-scopes.dmn index 77b47c2dea1..9baffc557af 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0034-drg-scopes.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0034-drg-scopes.dmn @@ -1,4 +1,22 @@ - + + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0035-test-structure-output.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0035-test-structure-output.dmn index f26f876498b..9d665e47f44 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0035-test-structure-output.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0035-test-structure-output.dmn @@ -1,4 +1,22 @@ - + + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0036-dt-variable-input.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0036-dt-variable-input.dmn index 9343dc37fe0..69a30cbc78c 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0036-dt-variable-input.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0036-dt-variable-input.dmn @@ -1,4 +1,22 @@ - + + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0037-dt-on-bkm-implicit-params.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0037-dt-on-bkm-implicit-params.dmn index 840669fbb94..06bc3f519cb 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0037-dt-on-bkm-implicit-params.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0037-dt-on-bkm-implicit-params.dmn @@ -1,4 +1,22 @@ - + + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0038-dt-on-bkm-explicit-params.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0038-dt-on-bkm-explicit-params.dmn index 2dc5e125649..165a7637620 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0038-dt-on-bkm-explicit-params.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0038-dt-on-bkm-explicit-params.dmn @@ -1,4 +1,22 @@ - + + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0039-dt-list-semantics.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0039-dt-list-semantics.dmn index 425ebe3412d..13b8191a1f8 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0039-dt-list-semantics.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0039-dt-list-semantics.dmn @@ -1,4 +1,22 @@ - + + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0040-singlenestedcontext.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0040-singlenestedcontext.dmn index 07b069534cb..48ab1b0a988 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0040-singlenestedcontext.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0040-singlenestedcontext.dmn @@ -1,5 +1,22 @@ - - + + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0041-multiple-nestedcontext.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0041-multiple-nestedcontext.dmn index a7cb7dac877..db3133cfe38 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0041-multiple-nestedcontext.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0041-multiple-nestedcontext.dmn @@ -1,5 +1,22 @@ - - + + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0100-feel-constants.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0100-feel-constants.dmn index 983f3d7cac1..16c0a522a80 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0100-feel-constants.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0100-feel-constants.dmn @@ -1,4 +1,22 @@ - + + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0101-feel-constants.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0101-feel-constants.dmn index 69a4e318360..204df7b02d5 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0101-feel-constants.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0101-feel-constants.dmn @@ -1,4 +1,22 @@ - + + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0102-feel-constants.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0102-feel-constants.dmn index 048d400a3cc..d8c2a65f00b 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0102-feel-constants.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0102-feel-constants.dmn @@ -1,4 +1,22 @@ - + + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0105-feel-math.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0105-feel-math.dmn index a0ee942b366..92db35d6b03 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0105-feel-math.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0105-feel-math.dmn @@ -1,4 +1,22 @@ - + + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0106-feel-ternary-logic.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0106-feel-ternary-logic.dmn index 659a717dc08..f56d85ce2aa 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0106-feel-ternary-logic.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0106-feel-ternary-logic.dmn @@ -1,4 +1,22 @@ - + + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0107-feel-ternary-logic-not.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0107-feel-ternary-logic-not.dmn index 945f614aff3..0e161fc16ad 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0107-feel-ternary-logic-not.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0107-feel-ternary-logic-not.dmn @@ -1,4 +1,22 @@ - + + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0108-first-hitpolicy.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0108-first-hitpolicy.dmn index 2ab005ebf4f..7b9daa89c04 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0108-first-hitpolicy.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0108-first-hitpolicy.dmn @@ -1,4 +1,22 @@ - + + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0109-ruleOrder-hitpolicy.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0109-ruleOrder-hitpolicy.dmn index e586cbe0ac3..531af8d2436 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0109-ruleOrder-hitpolicy.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0109-ruleOrder-hitpolicy.dmn @@ -1,4 +1,22 @@ - + + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0110-outputOrder-hitpolicy.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0110-outputOrder-hitpolicy.dmn index 9bc099d36c3..ff379d3d3ad 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0110-outputOrder-hitpolicy.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0110-outputOrder-hitpolicy.dmn @@ -1,4 +1,22 @@ - + + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0111-first-hitpolicy-singleoutputcol.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0111-first-hitpolicy-singleoutputcol.dmn index 80563e3461f..ee25983643a 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0111-first-hitpolicy-singleoutputcol.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn12-expected/0111-first-hitpolicy-singleoutputcol.dmn @@ -1,4 +1,22 @@ - + + - diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0073-feel-comments.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0073-feel-comments.dmn index d2d479c5fa5..c8d82b236d3 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0073-feel-comments.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0073-feel-comments.dmn @@ -1,4 +1,22 @@ - + + FEEL in diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0074-feel-properties.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0074-feel-properties.dmn index 39eb2db0b83..93478b99861 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0074-feel-properties.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0074-feel-properties.dmn @@ -1,4 +1,22 @@ - + + FEEL properties diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0075-feel-exponent.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0075-feel-exponent.dmn index 187d26eabfe..ad2a260f4fc 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0075-feel-exponent.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0075-feel-exponent.dmn @@ -1,4 +1,22 @@ - + + FEEL properties diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0076-feel-external-java.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0076-feel-external-java.dmn index d5690ffabf3..07290197b00 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0076-feel-external-java.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0076-feel-external-java.dmn @@ -1,4 +1,22 @@ - + + FEEL external Java functions diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0077-feel-nan.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0077-feel-nan.dmn index ef55885fd4e..36c72ebd599 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0077-feel-nan.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0077-feel-nan.dmn @@ -1,4 +1,22 @@ - + + FEEL NaN diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0078-feel-infinity.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0078-feel-infinity.dmn index b35852f4817..427ac986b02 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0078-feel-infinity.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0078-feel-infinity.dmn @@ -1,4 +1,22 @@ - + + FEEL Infinity diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0080-feel-getvalue-function.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0080-feel-getvalue-function.dmn index c850450faff..bd51afe56ce 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0080-feel-getvalue-function.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0080-feel-getvalue-function.dmn @@ -1,4 +1,22 @@ - + + FEEL built-in function 'get value(m, key)' in unspecified category diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0081-feel-getentries-function.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0081-feel-getentries-function.dmn index ff624c87604..4fab7235a32 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0081-feel-getentries-function.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0081-feel-getentries-function.dmn @@ -1,4 +1,22 @@ - + + FEEL built-in function 'get entries(m)' in unspecified category diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0082-feel-coercion.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0082-feel-coercion.dmn index 97725fa9363..4a6b5a510dd 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0082-feel-coercion.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0082-feel-coercion.dmn @@ -1,4 +1,22 @@ + FEEL type conformance of DT and BKM results diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0083-feel-unicode.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0083-feel-unicode.dmn index 987bdae4028..6e3594e8780 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0083-feel-unicode.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0083-feel-unicode.dmn @@ -1,4 +1,22 @@ - + + FEEL unicode tests diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0084-feel-for-loops.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0084-feel-for-loops.dmn index 6510cb01467..352ee1c8a66 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0084-feel-for-loops.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0084-feel-for-loops.dmn @@ -1,4 +1,22 @@ - + + FEEL for loops diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0085-decision-services.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0085-decision-services.dmn index 12c7980198c..6f253929c75 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0085-decision-services.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0085-decision-services.dmn @@ -1,4 +1,22 @@ + Decision Services diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0086-import.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0086-import.dmn index 2c8a3980fb6..863c4d044db 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0086-import.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0086-import.dmn @@ -1,4 +1,22 @@ - + + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0087-chapter-11-example.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0087-chapter-11-example.dmn index 2a105a3330b..2ce16e05f3d 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0087-chapter-11-example.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0087-chapter-11-example.dmn @@ -1,4 +1,22 @@ + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0088-no-decision-logic.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0088-no-decision-logic.dmn index 2b5682d2a3e..588ef67c703 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0088-no-decision-logic.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0088-no-decision-logic.dmn @@ -1,4 +1,22 @@ + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0089-nested-inputdata-imports.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0089-nested-inputdata-imports.dmn index aa3abeafeb3..9e250aa4cf9 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0089-nested-inputdata-imports.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0089-nested-inputdata-imports.dmn @@ -1,4 +1,22 @@ - + + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0090-feel-paths.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0090-feel-paths.dmn index 1d588b9fe3e..7ee86fc4dfa 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0090-feel-paths.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0090-feel-paths.dmn @@ -1,4 +1,22 @@ - + + FEEL path and qualified names diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0100-feel-constants.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0100-feel-constants.dmn index 983f3d7cac1..16c0a522a80 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0100-feel-constants.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0100-feel-constants.dmn @@ -1,4 +1,22 @@ - + + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0101-feel-constants.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0101-feel-constants.dmn index 69a4e318360..204df7b02d5 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0101-feel-constants.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0101-feel-constants.dmn @@ -1,4 +1,22 @@ - + + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0102-feel-constants.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0102-feel-constants.dmn index 048d400a3cc..d8c2a65f00b 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0102-feel-constants.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0102-feel-constants.dmn @@ -1,4 +1,22 @@ - + + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0105-feel-math.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0105-feel-math.dmn index a0ee942b366..92db35d6b03 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0105-feel-math.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0105-feel-math.dmn @@ -1,4 +1,22 @@ - + + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0106-feel-ternary-logic.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0106-feel-ternary-logic.dmn index 659a717dc08..f56d85ce2aa 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0106-feel-ternary-logic.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0106-feel-ternary-logic.dmn @@ -1,4 +1,22 @@ - + + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0107-feel-ternary-logic-not.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0107-feel-ternary-logic-not.dmn index 945f614aff3..0e161fc16ad 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0107-feel-ternary-logic-not.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0107-feel-ternary-logic-not.dmn @@ -1,4 +1,22 @@ - + + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0108-first-hitpolicy.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0108-first-hitpolicy.dmn index 2ab005ebf4f..7b9daa89c04 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0108-first-hitpolicy.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0108-first-hitpolicy.dmn @@ -1,4 +1,22 @@ - + + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0109-ruleOrder-hitpolicy.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0109-ruleOrder-hitpolicy.dmn index e586cbe0ac3..531af8d2436 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0109-ruleOrder-hitpolicy.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0109-ruleOrder-hitpolicy.dmn @@ -1,4 +1,22 @@ - + + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0110-outputOrder-hitpolicy.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0110-outputOrder-hitpolicy.dmn index 9bc099d36c3..ff379d3d3ad 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0110-outputOrder-hitpolicy.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0110-outputOrder-hitpolicy.dmn @@ -1,4 +1,22 @@ - + + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0111-first-hitpolicy-singleoutputcol.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0111-first-hitpolicy-singleoutputcol.dmn index 80563e3461f..ee25983643a 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0111-first-hitpolicy-singleoutputcol.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13-expected/0111-first-hitpolicy-singleoutputcol.dmn @@ -1,4 +1,22 @@ - + + - diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0058-feel-number-function.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0058-feel-number-function.dmn index 614b77fbd7d..427a480b348 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0058-feel-number-function.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0058-feel-number-function.dmn @@ -1,4 +1,22 @@ + FEEL built-in function 'modulo(dividend,divisor)' in category numeric functions @@ -191,4 +209,3 @@ - diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0059-feel-all-function.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0059-feel-all-function.dmn index fe8c3cb864a..b54f975b164 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0059-feel-all-function.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0059-feel-all-function.dmn @@ -1,4 +1,22 @@ + FEEL built-in function 'all(list)' in category list functions @@ -183,4 +201,3 @@ - diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0060-feel-any-function.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0060-feel-any-function.dmn index facddbb8c9a..daf9ece3834 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0060-feel-any-function.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0060-feel-any-function.dmn @@ -1,4 +1,22 @@ + FEEL built-in function 'any(list)' in category list functions @@ -171,4 +189,3 @@ - diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0061-feel-median-function.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0061-feel-median-function.dmn index e4ef2ac238c..cc95e52236d 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0061-feel-median-function.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0061-feel-median-function.dmn @@ -1,4 +1,22 @@ + FEEL built-in function 'median(list)' in category list functions @@ -143,4 +161,3 @@ - diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0062-feel-mode-function.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0062-feel-mode-function.dmn index 877dab60a68..00ea9ec8220 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0062-feel-mode-function.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0062-feel-mode-function.dmn @@ -1,4 +1,22 @@ + FEEL built-in function 'mode(list)' in category list functions @@ -150,4 +168,3 @@ - diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0063-feel-stddev-function.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0063-feel-stddev-function.dmn index c71e91dda0a..3efdc55256a 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0063-feel-stddev-function.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0063-feel-stddev-function.dmn @@ -1,4 +1,22 @@ + FEEL built-in function 'stddev(list)' in category list functions @@ -149,4 +167,3 @@ - diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0064-feel-conjunction.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0064-feel-conjunction.dmn index 73bfb6f5fe4..4968f534f32 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0064-feel-conjunction.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0064-feel-conjunction.dmn @@ -1,4 +1,22 @@ + Semantics of conjunction @@ -173,4 +191,3 @@ - diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0065-feel-disjunction.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0065-feel-disjunction.dmn index f52bb5c1bff..d6154499135 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0065-feel-disjunction.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0065-feel-disjunction.dmn @@ -1,4 +1,22 @@ + Semantics of conjunction @@ -173,4 +191,3 @@ - diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0066-feel-negation.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0066-feel-negation.dmn index ae79edd3f32..825177b2ba3 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0066-feel-negation.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0066-feel-negation.dmn @@ -1,4 +1,22 @@ + Semantics of negation @@ -62,4 +80,3 @@ - diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0067-feel-split-function.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0067-feel-split-function.dmn index 545905d9011..b667fc9eed9 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0067-feel-split-function.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0067-feel-split-function.dmn @@ -1,4 +1,22 @@ + FEEL built-in function 'split(string,delimiter)' in category string functions @@ -107,4 +125,3 @@ - diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0068-feel-equality.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0068-feel-equality.dmn index 22e88c8d4df..0f32450aca4 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0068-feel-equality.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0068-feel-equality.dmn @@ -1,4 +1,22 @@ + FEEL equality @@ -964,4 +982,3 @@ --> - diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0069-feel-list.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0069-feel-list.dmn index 6268aa50eff..7c9e7d9a8e6 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0069-feel-list.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0069-feel-list.dmn @@ -1,4 +1,22 @@ + FEEL lists @@ -192,4 +210,3 @@ - diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0070-feel-instance-of.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0070-feel-instance-of.dmn index 2f3ee5e1039..2bcd7633df4 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0070-feel-instance-of.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0070-feel-instance-of.dmn @@ -1,4 +1,22 @@ + FEEL instance of @@ -1021,4 +1039,3 @@ - diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0071-feel-between.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0071-feel-between.dmn index 173d969993b..d7db57f85b5 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0071-feel-between.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0071-feel-between.dmn @@ -1,4 +1,22 @@ + FEEL instance of @@ -250,4 +268,3 @@ - diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0072-feel-in.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0072-feel-in.dmn index c45e4d8aceb..9c564670515 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0072-feel-in.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0072-feel-in.dmn @@ -1,4 +1,22 @@ + FEEL in @@ -2025,4 +2043,3 @@ - diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0073-feel-comments.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0073-feel-comments.dmn index 88524cd215d..a85ee26d532 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0073-feel-comments.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0073-feel-comments.dmn @@ -1,4 +1,22 @@ + FEEL in @@ -32,4 +50,3 @@ - diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0074-feel-properties.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0074-feel-properties.dmn index ee44e0585bc..05386c2bdf4 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0074-feel-properties.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0074-feel-properties.dmn @@ -1,4 +1,22 @@ + FEEL properties diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0075-feel-exponent.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0075-feel-exponent.dmn index 623a79cc230..3106e339900 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0075-feel-exponent.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0075-feel-exponent.dmn @@ -1,4 +1,22 @@ + FEEL properties diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0076-feel-external-java.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0076-feel-external-java.dmn index 7ccc2329c24..7ecafff3b8c 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0076-feel-external-java.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0076-feel-external-java.dmn @@ -1,4 +1,22 @@ + FEEL external Java functions diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0077-feel-nan.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0077-feel-nan.dmn index f96f75327e7..be76f7e568f 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0077-feel-nan.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0077-feel-nan.dmn @@ -1,4 +1,22 @@ + FEEL NaN diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0078-feel-infinity.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0078-feel-infinity.dmn index 0b9cf370a72..fac30a129d8 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0078-feel-infinity.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0078-feel-infinity.dmn @@ -1,4 +1,22 @@ + FEEL Infinity diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0080-feel-getvalue-function.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0080-feel-getvalue-function.dmn index aaa9c1eeb8e..193c4befcd1 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0080-feel-getvalue-function.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0080-feel-getvalue-function.dmn @@ -1,4 +1,22 @@ + FEEL built-in function 'get value(m, key)' in unspecified category @@ -127,4 +145,3 @@ - diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0081-feel-getentries-function.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0081-feel-getentries-function.dmn index 685306aee99..27bbc2a00db 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0081-feel-getentries-function.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0081-feel-getentries-function.dmn @@ -1,4 +1,22 @@ + FEEL built-in function 'get entries(m)' in unspecified category @@ -97,4 +115,3 @@ - diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0082-feel-coercion.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0082-feel-coercion.dmn index 31dded55970..275dde2fcfb 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0082-feel-coercion.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0082-feel-coercion.dmn @@ -1,4 +1,22 @@ + FEEL type conformance of DT and BKM results diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0083-feel-unicode.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0083-feel-unicode.dmn index c1ef2a0d915..c8327258f7a 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0083-feel-unicode.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0083-feel-unicode.dmn @@ -1,4 +1,22 @@ + FEEL unicode tests @@ -130,4 +148,3 @@ - diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0084-feel-for-loops.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0084-feel-for-loops.dmn index 03f4930c174..b2a2d55f905 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0084-feel-for-loops.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0084-feel-for-loops.dmn @@ -1,4 +1,22 @@ + FEEL for loops diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0085-decision-services.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0085-decision-services.dmn index d784a320939..eb9ae5a9784 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0085-decision-services.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0085-decision-services.dmn @@ -1,4 +1,22 @@ + + + + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0089-nested-inputdata-imports.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0089-nested-inputdata-imports.dmn index 7315d1c82c5..df21d0ccbd3 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0089-nested-inputdata-imports.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0089-nested-inputdata-imports.dmn @@ -1,4 +1,22 @@ + + FEEL path and qualified names @@ -43,4 +61,3 @@ - diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0100-feel-constants.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0100-feel-constants.dmn index 323eb403c96..61c5addfa59 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0100-feel-constants.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0100-feel-constants.dmn @@ -1,4 +1,22 @@ + @@ -23,4 +41,3 @@ - diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0101-feel-constants.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0101-feel-constants.dmn index 083641bca76..610d97e3696 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0101-feel-constants.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0101-feel-constants.dmn @@ -1,4 +1,22 @@ + @@ -59,4 +77,3 @@ - diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0102-feel-constants.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0102-feel-constants.dmn index 28902ff2111..df2ca47108f 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0102-feel-constants.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0102-feel-constants.dmn @@ -1,4 +1,22 @@ + @@ -41,4 +59,3 @@ - diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0105-feel-math.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0105-feel-math.dmn index 2383a7cf2e3..73539c89fab 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0105-feel-math.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0105-feel-math.dmn @@ -1,4 +1,22 @@ + @@ -302,4 +320,3 @@ - diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0106-feel-ternary-logic.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0106-feel-ternary-logic.dmn index e374d150155..565b691314f 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0106-feel-ternary-logic.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0106-feel-ternary-logic.dmn @@ -1,4 +1,22 @@ + @@ -64,4 +82,3 @@ - diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0107-feel-ternary-logic-not.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0107-feel-ternary-logic-not.dmn index d298fa377a1..6376ad67127 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0107-feel-ternary-logic-not.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0107-feel-ternary-logic-not.dmn @@ -1,4 +1,22 @@ + @@ -28,4 +46,3 @@ - diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0108-first-hitpolicy.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0108-first-hitpolicy.dmn index 21716a3ad03..a63ddb5b073 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0108-first-hitpolicy.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0108-first-hitpolicy.dmn @@ -1,4 +1,22 @@ + @@ -147,4 +165,3 @@ - diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0109-ruleOrder-hitpolicy.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0109-ruleOrder-hitpolicy.dmn index 50ef747441d..51215cb7df1 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0109-ruleOrder-hitpolicy.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0109-ruleOrder-hitpolicy.dmn @@ -1,4 +1,22 @@ + @@ -149,4 +167,3 @@ - diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0110-outputOrder-hitpolicy.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0110-outputOrder-hitpolicy.dmn index 8778262189f..5d460e2dfe4 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0110-outputOrder-hitpolicy.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0110-outputOrder-hitpolicy.dmn @@ -1,4 +1,22 @@ + @@ -140,4 +158,3 @@ - diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0111-first-hitpolicy-singleoutputcol.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0111-first-hitpolicy-singleoutputcol.dmn index 8b9810fbefc..e61234ea036 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0111-first-hitpolicy-singleoutputcol.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0111-first-hitpolicy-singleoutputcol.dmn @@ -1,4 +1,22 @@ + - diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0112-ruleOrder-hitpolicy-singleinoutcol.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0112-ruleOrder-hitpolicy-singleinoutcol.dmn index a747cb26839..8f545b289d4 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0112-ruleOrder-hitpolicy-singleinoutcol.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0112-ruleOrder-hitpolicy-singleinoutcol.dmn @@ -1,4 +1,22 @@ + @@ -69,4 +87,3 @@ - diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0113-outputOrder-hitpolicy-singleinoutcol.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0113-outputOrder-hitpolicy-singleinoutcol.dmn index 86d93c1c606..8a772bbf08a 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0113-outputOrder-hitpolicy-singleinoutcol.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0113-outputOrder-hitpolicy-singleinoutcol.dmn @@ -1,4 +1,22 @@ + @@ -79,4 +97,3 @@ - diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0114-min-collect-hitpolicy.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0114-min-collect-hitpolicy.dmn index 35fe7e1d838..909f6e250fb 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0114-min-collect-hitpolicy.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0114-min-collect-hitpolicy.dmn @@ -1,4 +1,22 @@ + @@ -66,4 +84,3 @@ - diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0115-sum-collect-hitpolicy.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0115-sum-collect-hitpolicy.dmn index e302e18559d..236bec0ab51 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0115-sum-collect-hitpolicy.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0115-sum-collect-hitpolicy.dmn @@ -1,4 +1,22 @@ + @@ -66,4 +84,3 @@ - diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0116-count-collect-hitpolicy.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0116-count-collect-hitpolicy.dmn index ec303f17a56..6161e908c41 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0116-count-collect-hitpolicy.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0116-count-collect-hitpolicy.dmn @@ -1,4 +1,22 @@ + @@ -66,4 +84,3 @@ - diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0117-multi-any-hitpolicy.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0117-multi-any-hitpolicy.dmn index 8a7b372e69e..6cda8d20a33 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0117-multi-any-hitpolicy.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0117-multi-any-hitpolicy.dmn @@ -1,4 +1,22 @@ + @@ -198,4 +216,3 @@ - diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0118-multi-priority-hitpolicy.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0118-multi-priority-hitpolicy.dmn index 3c49371e47d..ee5bdded6d5 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0118-multi-priority-hitpolicy.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0118-multi-priority-hitpolicy.dmn @@ -1,4 +1,22 @@ + @@ -140,4 +158,3 @@ - diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0119-multi-collect-hitpolicy.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0119-multi-collect-hitpolicy.dmn index 35d28e8e466..73a07221681 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0119-multi-collect-hitpolicy.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/0119-multi-collect-hitpolicy.dmn @@ -1,4 +1,22 @@ + @@ -140,4 +158,3 @@ - diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/1100-feel-decimal-function.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/1100-feel-decimal-function.dmn index d995fbe8296..199166babb0 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/1100-feel-decimal-function.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/1100-feel-decimal-function.dmn @@ -1,4 +1,22 @@ + FEEL built-in function 'decimal(n, scale)' in category numeric functions @@ -160,4 +178,3 @@ - diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/1101-feel-floor-function.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/1101-feel-floor-function.dmn index e2aa40f0c6a..8f51c72cdb7 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/1101-feel-floor-function.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/1101-feel-floor-function.dmn @@ -1,4 +1,22 @@ + FEEL built-in function 'floor(n)' in category numeric functions @@ -100,4 +118,3 @@ - diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/1102-feel-ceiling-function.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/1102-feel-ceiling-function.dmn index a1a662cdbbc..568a28efb02 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/1102-feel-ceiling-function.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/1102-feel-ceiling-function.dmn @@ -1,4 +1,22 @@ + FEEL built-in function 'ceiling(n)' in category numeric functions @@ -100,4 +118,3 @@ - diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/1103-feel-substring-function.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/1103-feel-substring-function.dmn index a5e1bc5c449..9184a8c4abe 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/1103-feel-substring-function.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/1103-feel-substring-function.dmn @@ -1,4 +1,22 @@ + FEEL built-in function 'substring(string, start, position, length?) in category string functions @@ -175,4 +193,3 @@ - diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/1104-feel-string-length-function.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/1104-feel-string-length-function.dmn index fb480043a15..9eac70f16f8 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/1104-feel-string-length-function.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/1104-feel-string-length-function.dmn @@ -1,4 +1,22 @@ + FEEL built-in function 'string length(string)' in category string functions @@ -100,4 +118,3 @@ - diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/1105-feel-upper-case-function.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/1105-feel-upper-case-function.dmn index 5eb420595c5..17865ebba82 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/1105-feel-upper-case-function.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/1105-feel-upper-case-function.dmn @@ -1,4 +1,22 @@ + FEEL built-in function 'upper case(string) in category string functions @@ -130,4 +148,3 @@ - diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/1106-feel-lower-case-function.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/1106-feel-lower-case-function.dmn index f41613c4e1d..b2f28b5929b 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/1106-feel-lower-case-function.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/1106-feel-lower-case-function.dmn @@ -1,4 +1,22 @@ + FEEL built-in function 'lower case(string)' in category string functions @@ -145,4 +163,3 @@ - diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/1107-feel-substring-before-function.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/1107-feel-substring-before-function.dmn index 281ae63d385..95b3896a89c 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/1107-feel-substring-before-function.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/1107-feel-substring-before-function.dmn @@ -1,4 +1,22 @@ + FEEL built-in function 'substring before(string, match) in category string functions @@ -145,4 +163,3 @@ - diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/1108-feel-substring-after-function.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/1108-feel-substring-after-function.dmn index 80b65957dbc..45600cf10e9 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/1108-feel-substring-after-function.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/1108-feel-substring-after-function.dmn @@ -1,4 +1,22 @@ + FEEL built-in function 'substring after(string, match) in category string functions @@ -160,4 +178,3 @@ - diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/1109-feel-replace-function.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/1109-feel-replace-function.dmn index a3defee7703..a6002b4850a 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/1109-feel-replace-function.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/1109-feel-replace-function.dmn @@ -1,4 +1,22 @@ + FEEL built-in function 'replace(input, pattern, replacement, flags?)' in category string functions @@ -430,4 +448,3 @@ - diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/1110-feel-contains-function.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/1110-feel-contains-function.dmn index 9d59b1e5bcd..e06052a6209 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/1110-feel-contains-function.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/1110-feel-contains-function.dmn @@ -1,4 +1,22 @@ + FEEL built-in function 'contains(string, match)' in category string functions @@ -160,4 +178,3 @@ - diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/1115-feel-date-function.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/1115-feel-date-function.dmn index ca4e1778cd2..168ab820cb4 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/1115-feel-date-function.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/1115-feel-date-function.dmn @@ -1,4 +1,22 @@ + FEEL built-in function 'date(from [string])', 'date(from [date and time])' and 'date(year,month,day)' in category conversion functions @@ -790,4 +808,3 @@ - diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/1116-feel-time-function.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/1116-feel-time-function.dmn index 68374479bee..9575645ab8a 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/1116-feel-time-function.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/1116-feel-time-function.dmn @@ -1,4 +1,22 @@ + FEEL built-in function 'time(from [string])', 'time(from [time, date and time])' and 'time(hour,minute,second,offset)' in category conversion functions @@ -1255,4 +1273,3 @@ - diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/1117-feel-date-and-time-function.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/1117-feel-date-and-time-function.dmn index 69c6dc63b29..357507c0229 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/1117-feel-date-and-time-function.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/1117-feel-date-and-time-function.dmn @@ -1,4 +1,22 @@ + FEEL built-in function 'date and time(from [string])' and 'date and time(date, time)' in category conversion functions @@ -1330,4 +1348,3 @@ - diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/1120-feel-duration-function.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/1120-feel-duration-function.dmn index fce6474ba52..93d5c95cebe 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/1120-feel-duration-function.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/1120-feel-duration-function.dmn @@ -1,4 +1,22 @@ + FEEL built-in function 'duration(from [String])' in category conversion functions @@ -736,4 +754,3 @@ - diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/1121-feel-years-and-months-duration-function.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/1121-feel-years-and-months-duration-function.dmn index 1b6544f4a7b..90ab0d11420 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/1121-feel-years-and-months-duration-function.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/1121-feel-years-and-months-duration-function.dmn @@ -1,4 +1,22 @@ + FEEL built-in function 'years and months duration(from [date and time], to [date and time])' in category conversion functions @@ -550,4 +568,3 @@ - diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/Imported_Model.dmn b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/Imported_Model.dmn index b7fc59ff0d1..95e729589d0 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/Imported_Model.dmn +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-webapp-kogito-runtime/src/test/resources/org/kie/workbench/common/dmn/showcase/client/backward/compatibility/dmn13/Imported_Model.dmn @@ -1,4 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + # Kogito Webapp-base This module is meant as base to be _used_ (declared as dependency) by Kogito' running and testing webapps and/or extended by diff --git a/packages/stunner-editors/kie-wb-common-kogito/kie-wb-common-kogito-webapp-base/pom.xml b/packages/stunner-editors/kie-wb-common-kogito/kie-wb-common-kogito-webapp-base/pom.xml index b2680a9ddcd..2e6cd62b85e 100644 --- a/packages/stunner-editors/kie-wb-common-kogito/kie-wb-common-kogito-webapp-base/pom.xml +++ b/packages/stunner-editors/kie-wb-common-kogito/kie-wb-common-kogito-webapp-base/pom.xml @@ -1,4 +1,22 @@ + + # Stunner Modelling Tool Stunner is a multi-purpose graph based modelling tool for the web. diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-client/kie-wb-common-stunner-widgets/src/main/resources/org/kie/workbench/common/stunner/client/widgets/resources/i18n/StunnerWidgetsConstants.properties b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-client/kie-wb-common-stunner-widgets/src/main/resources/org/kie/workbench/common/stunner/client/widgets/resources/i18n/StunnerWidgetsConstants.properties index 6685fdfecc4..e229c5dae4c 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-client/kie-wb-common-stunner-widgets/src/main/resources/org/kie/workbench/common/stunner/client/widgets/resources/i18n/StunnerWidgetsConstants.properties +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-client/kie-wb-common-stunner-widgets/src/main/resources/org/kie/workbench/common/stunner/client/widgets/resources/i18n/StunnerWidgetsConstants.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + ConfirmationDialogImplView.Yes=Yes ConfirmationDialogImplView.No=No diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-client/kie-wb-common-stunner-widgets/src/main/resources/org/kie/workbench/common/stunner/client/widgets/resources/i18n/StunnerWidgetsConstants_de.properties b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-client/kie-wb-common-stunner-widgets/src/main/resources/org/kie/workbench/common/stunner/client/widgets/resources/i18n/StunnerWidgetsConstants_de.properties index c2988cefb79..2f6f66d8fc7 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-client/kie-wb-common-stunner-widgets/src/main/resources/org/kie/workbench/common/stunner/client/widgets/resources/i18n/StunnerWidgetsConstants_de.properties +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-client/kie-wb-common-stunner-widgets/src/main/resources/org/kie/workbench/common/stunner/client/widgets/resources/i18n/StunnerWidgetsConstants_de.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + ConfirmationDialogImplView.Yes=Ja ConfirmationDialogImplView.No=Nein diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-client/kie-wb-common-stunner-widgets/src/main/resources/org/kie/workbench/common/stunner/client/widgets/resources/i18n/StunnerWidgetsConstants_es.properties b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-client/kie-wb-common-stunner-widgets/src/main/resources/org/kie/workbench/common/stunner/client/widgets/resources/i18n/StunnerWidgetsConstants_es.properties index 99fcc6ed060..5b2bee42517 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-client/kie-wb-common-stunner-widgets/src/main/resources/org/kie/workbench/common/stunner/client/widgets/resources/i18n/StunnerWidgetsConstants_es.properties +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-client/kie-wb-common-stunner-widgets/src/main/resources/org/kie/workbench/common/stunner/client/widgets/resources/i18n/StunnerWidgetsConstants_es.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + ConfirmationDialogImplView.Yes=Sí ConfirmationDialogImplView.No=No diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-client/kie-wb-common-stunner-widgets/src/main/resources/org/kie/workbench/common/stunner/client/widgets/resources/i18n/StunnerWidgetsConstants_fr.properties b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-client/kie-wb-common-stunner-widgets/src/main/resources/org/kie/workbench/common/stunner/client/widgets/resources/i18n/StunnerWidgetsConstants_fr.properties index b03a3f48b40..41886318c9b 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-client/kie-wb-common-stunner-widgets/src/main/resources/org/kie/workbench/common/stunner/client/widgets/resources/i18n/StunnerWidgetsConstants_fr.properties +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-client/kie-wb-common-stunner-widgets/src/main/resources/org/kie/workbench/common/stunner/client/widgets/resources/i18n/StunnerWidgetsConstants_fr.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + ConfirmationDialogImplView.Yes=Oui ConfirmationDialogImplView.No=Non diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-client/kie-wb-common-stunner-widgets/src/main/resources/org/kie/workbench/common/stunner/client/widgets/resources/i18n/StunnerWidgetsConstants_ja.properties b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-client/kie-wb-common-stunner-widgets/src/main/resources/org/kie/workbench/common/stunner/client/widgets/resources/i18n/StunnerWidgetsConstants_ja.properties index 72b0ff6ebba..a1aee848871 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-client/kie-wb-common-stunner-widgets/src/main/resources/org/kie/workbench/common/stunner/client/widgets/resources/i18n/StunnerWidgetsConstants_ja.properties +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-client/kie-wb-common-stunner-widgets/src/main/resources/org/kie/workbench/common/stunner/client/widgets/resources/i18n/StunnerWidgetsConstants_ja.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + ConfirmationDialogImplView.Yes=はい ConfirmationDialogImplView.No=いいえ diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-core/kie-wb-common-stunner-api/kie-wb-common-stunner-core-api/src/main/java/org/kie/workbench/common/stunner/core/graph/processing/traverse/content/README.md b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-core/kie-wb-common-stunner-api/kie-wb-common-stunner-core-api/src/main/java/org/kie/workbench/common/stunner/core/graph/processing/traverse/content/README.md index 058e57de2bf..e4c0061eaba 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-core/kie-wb-common-stunner-api/kie-wb-common-stunner-core-api/src/main/java/org/kie/workbench/common/stunner/core/graph/processing/traverse/content/README.md +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-core/kie-wb-common-stunner-api/kie-wb-common-stunner-core-api/src/main/java/org/kie/workbench/common/stunner/core/graph/processing/traverse/content/README.md @@ -1,3 +1,20 @@ + + This package contains graph processors that provide specific traversal for the different node/edge's content types. - View traversal processor -> Use it for performing a traversal over the graph nodes that has View content diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-extensions/kie-wb-common-stunner-forms/README.md b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-extensions/kie-wb-common-stunner-forms/README.md index c9fa09b125e..927a94bda93 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-extensions/kie-wb-common-stunner-forms/README.md +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-extensions/kie-wb-common-stunner-forms/README.md @@ -1,3 +1,20 @@ + + # Stunner forms extensions module This module provides some extensions for [KIE Workbench Common Forms](../../../kie-wb-common-forms/) that are being used only in Stunner. diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-extensions/kie-wb-common-stunner-forms/kie-wb-common-stunner-forms-client/src/main/resources/org/kie/workbench/common/stunner/forms/client/resources/i18n/FormsClientConstants.properties b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-extensions/kie-wb-common-stunner-forms/kie-wb-common-stunner-forms-client/src/main/resources/org/kie/workbench/common/stunner/forms/client/resources/i18n/FormsClientConstants.properties index 131cc58f605..f36571817f6 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-extensions/kie-wb-common-stunner-forms/kie-wb-common-stunner-forms-client/src/main/resources/org/kie/workbench/common/stunner/forms/client/resources/i18n/FormsClientConstants.properties +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-extensions/kie-wb-common-stunner-forms/kie-wb-common-stunner-forms-client/src/main/resources/org/kie/workbench/common/stunner/forms/client/resources/i18n/FormsClientConstants.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + forms.notificationTitle=[{0}] Form Generation forms.noItemsSelectedForGeneration=Cannot generate forms, there are no elements selected or the selected ones have nothing to do with forms forms.generationSuccess=Forms generation completed successfully for [{0}] diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-extensions/kie-wb-common-stunner-forms/kie-wb-common-stunner-forms-client/src/main/resources/org/kie/workbench/common/stunner/forms/client/resources/i18n/FormsClientConstants_de.properties b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-extensions/kie-wb-common-stunner-forms/kie-wb-common-stunner-forms-client/src/main/resources/org/kie/workbench/common/stunner/forms/client/resources/i18n/FormsClientConstants_de.properties index 3b4455eee06..bf8c9a11848 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-extensions/kie-wb-common-stunner-forms/kie-wb-common-stunner-forms-client/src/main/resources/org/kie/workbench/common/stunner/forms/client/resources/i18n/FormsClientConstants_de.properties +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-extensions/kie-wb-common-stunner-forms/kie-wb-common-stunner-forms-client/src/main/resources/org/kie/workbench/common/stunner/forms/client/resources/i18n/FormsClientConstants_de.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + forms.notificationTitle=[{0}] Formularerstellung forms.noItemsSelectedForGeneration=Kann keine Formulare generieren, da keine Elemente ausgewählt sind oder die ausgewählten Elemente nichts mit Formularen zu tun haben forms.generationSuccess=Formulargenerierung erfolgreich abgeschlossen für [{0}] diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-extensions/kie-wb-common-stunner-forms/kie-wb-common-stunner-forms-client/src/main/resources/org/kie/workbench/common/stunner/forms/client/resources/i18n/FormsClientConstants_es.properties b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-extensions/kie-wb-common-stunner-forms/kie-wb-common-stunner-forms-client/src/main/resources/org/kie/workbench/common/stunner/forms/client/resources/i18n/FormsClientConstants_es.properties index da958c56b57..0f6e7a1320c 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-extensions/kie-wb-common-stunner-forms/kie-wb-common-stunner-forms-client/src/main/resources/org/kie/workbench/common/stunner/forms/client/resources/i18n/FormsClientConstants_es.properties +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-extensions/kie-wb-common-stunner-forms/kie-wb-common-stunner-forms-client/src/main/resources/org/kie/workbench/common/stunner/forms/client/resources/i18n/FormsClientConstants_es.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + forms.notificationTitle=[{0}] Generación de formularios forms.noItemsSelectedForGeneration=No puede generar formularios, no hay elementos seleccionados o los elementos seleccionados no se relacionan con los formularios forms.generationSuccess=La generación de los formularios se realizó correctamente para [{0}] diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-extensions/kie-wb-common-stunner-forms/kie-wb-common-stunner-forms-client/src/main/resources/org/kie/workbench/common/stunner/forms/client/resources/i18n/FormsClientConstants_fr.properties b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-extensions/kie-wb-common-stunner-forms/kie-wb-common-stunner-forms-client/src/main/resources/org/kie/workbench/common/stunner/forms/client/resources/i18n/FormsClientConstants_fr.properties index a38bd9f0610..adc0cf064aa 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-extensions/kie-wb-common-stunner-forms/kie-wb-common-stunner-forms-client/src/main/resources/org/kie/workbench/common/stunner/forms/client/resources/i18n/FormsClientConstants_fr.properties +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-extensions/kie-wb-common-stunner-forms/kie-wb-common-stunner-forms-client/src/main/resources/org/kie/workbench/common/stunner/forms/client/resources/i18n/FormsClientConstants_fr.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + forms.notificationTitle=[{0}] Génération de formulaires forms.noItemsSelectedForGeneration=Impossible de générer des formulaires, aucun élément n''est sélectionné ou les éléments sélectionnés n''ont aucun rapport avec les formulaires forms.generationSuccess=Génération des formulaires effectuée pour [{0}]] diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-extensions/kie-wb-common-stunner-forms/kie-wb-common-stunner-forms-client/src/main/resources/org/kie/workbench/common/stunner/forms/client/resources/i18n/FormsClientConstants_ja.properties b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-extensions/kie-wb-common-stunner-forms/kie-wb-common-stunner-forms-client/src/main/resources/org/kie/workbench/common/stunner/forms/client/resources/i18n/FormsClientConstants_ja.properties index 74989363e03..6a0b4802e24 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-extensions/kie-wb-common-stunner-forms/kie-wb-common-stunner-forms-client/src/main/resources/org/kie/workbench/common/stunner/forms/client/resources/i18n/FormsClientConstants_ja.properties +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-extensions/kie-wb-common-stunner-forms/kie-wb-common-stunner-forms-client/src/main/resources/org/kie/workbench/common/stunner/forms/client/resources/i18n/FormsClientConstants_ja.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + forms.notificationTitle=[{0}] フォーム生成 forms.noItemsSelectedForGeneration=フォームを生成できません。要素が選択されていない、またはフォームと関係の無い要素です forms.generationSuccess=[{0}] のフォーム生成が完了しました diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-extensions/kie-wb-common-stunner-kogito/README.md b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-extensions/kie-wb-common-stunner-kogito/README.md index 93384ba71e2..4300787a1a8 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-extensions/kie-wb-common-stunner-kogito/README.md +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-extensions/kie-wb-common-stunner-kogito/README.md @@ -1,3 +1,20 @@ + + # Stunner - Kogito integration modules These children modules provide the different assets and services to achieve the Stunner integration with Kogito. diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-extensions/kie-wb-common-stunner-lienzo-extensions/README.md b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-extensions/kie-wb-common-stunner-lienzo-extensions/README.md index f20a5cc1f25..15d31a9d475 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-extensions/kie-wb-common-stunner-lienzo-extensions/README.md +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-extensions/kie-wb-common-stunner-lienzo-extensions/README.md @@ -1,3 +1,20 @@ + + # Lienzo extensions module This module provides some extensions for [Lienzo](https://github.com/ahome-it/). diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-extensions/kie-wb-common-stunner-svg/kie-wb-common-stunner-svg-gen/README.md b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-extensions/kie-wb-common-stunner-svg/kie-wb-common-stunner-svg-gen/README.md index a313e21a3a4..c6430be63a1 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-extensions/kie-wb-common-stunner-svg/kie-wb-common-stunner-svg-gen/README.md +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-extensions/kie-wb-common-stunner-svg/kie-wb-common-stunner-svg-gen/README.md @@ -1,3 +1,20 @@ + + # Stunner - SVG View Generation This module allows to use SVG image files in order to declare Stunner's shape views. diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-api/src/main/resources/org/kie/workbench/common/stunner/bpmn/resources/i18n/StunnerBPMNConstants.properties b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-api/src/main/resources/org/kie/workbench/common/stunner/bpmn/resources/i18n/StunnerBPMNConstants.properties index e5a9048fe09..3a554041a67 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-api/src/main/resources/org/kie/workbench/common/stunner/bpmn/resources/i18n/StunnerBPMNConstants.properties +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-api/src/main/resources/org/kie/workbench/common/stunner/bpmn/resources/i18n/StunnerBPMNConstants.properties @@ -1,4 +1,22 @@ -####################### +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + ####################### # DefinitionSet ####################### diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-api/src/main/resources/org/kie/workbench/common/stunner/bpmn/resources/i18n/StunnerBPMNConstants_es.properties b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-api/src/main/resources/org/kie/workbench/common/stunner/bpmn/resources/i18n/StunnerBPMNConstants_es.properties index 54de1d5682b..15574c6f772 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-api/src/main/resources/org/kie/workbench/common/stunner/bpmn/resources/i18n/StunnerBPMNConstants_es.properties +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-api/src/main/resources/org/kie/workbench/common/stunner/bpmn/resources/i18n/StunnerBPMNConstants_es.properties @@ -1,4 +1,22 @@ -####################### +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + ####################### # DefinitionSet ####################### diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-api/src/main/resources/org/kie/workbench/common/stunner/bpmn/resources/i18n/StunnerBPMNConstants_fr.properties b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-api/src/main/resources/org/kie/workbench/common/stunner/bpmn/resources/i18n/StunnerBPMNConstants_fr.properties index 494a2c5c790..1a9736e2a12 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-api/src/main/resources/org/kie/workbench/common/stunner/bpmn/resources/i18n/StunnerBPMNConstants_fr.properties +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-api/src/main/resources/org/kie/workbench/common/stunner/bpmn/resources/i18n/StunnerBPMNConstants_fr.properties @@ -1,4 +1,22 @@ -####################### +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + ####################### # DefinitionSet ####################### diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-api/src/main/resources/org/kie/workbench/common/stunner/bpmn/resources/i18n/StunnerBPMNConstants_ja.properties b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-api/src/main/resources/org/kie/workbench/common/stunner/bpmn/resources/i18n/StunnerBPMNConstants_ja.properties index dc0be489e09..96dde6c9675 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-api/src/main/resources/org/kie/workbench/common/stunner/bpmn/resources/i18n/StunnerBPMNConstants_ja.properties +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-api/src/main/resources/org/kie/workbench/common/stunner/bpmn/resources/i18n/StunnerBPMNConstants_ja.properties @@ -1,4 +1,22 @@ -####################### +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + ####################### # DefinitionSet ####################### diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/forms/fields/i18n/StunnerFormsClientFieldsConstants_de.properties b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/forms/fields/i18n/StunnerFormsClientFieldsConstants_de.properties index b76a8e14d46..3e1a26ac4b8 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/forms/fields/i18n/StunnerFormsClientFieldsConstants_de.properties +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/forms/fields/i18n/StunnerFormsClientFieldsConstants_de.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + # translation auto-copied from project KIE Workbench - Common, version 6.0.0, document org.kie.workbench.screens/kie-wb-common-project-imports-editor-client/org/kie/workbench/common/screens/projectimportsscreen/client/resources/i18n/ProjectConfigScreenConstants, author jdimanos Add=Hinzufügen # translation auto-copied from project jbpm-designer, version 6.0.0, document org.jbpm/jbpm-designer-client/org/jbpm/designer/client/resources/i18n/DesignerEditorConstants, author jdimanos diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/forms/fields/i18n/StunnerFormsClientFieldsConstants_pt_BR.properties b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/forms/fields/i18n/StunnerFormsClientFieldsConstants_pt_BR.properties index 28511eacbac..4a7d88dab90 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/forms/fields/i18n/StunnerFormsClientFieldsConstants_pt_BR.properties +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/forms/fields/i18n/StunnerFormsClientFieldsConstants_pt_BR.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + # translation auto-copied from project KIE Workbench - Common, version 6.0.0, document org.kie.workbench.screens/kie-wb-common-project-imports-editor-client/org/kie/workbench/common/screens/projectimportsscreen/client/resources/i18n/ProjectConfigScreenConstants, author ldelima@redhat.com Add=Adicionar # translation auto-copied from project jbpm-designer, version 6.0.0, document org.jbpm/jbpm-designer-client/org/jbpm/designer/client/resources/i18n/DesignerEditorConstants, author ldelima@redhat.com diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/forms/fields/i18n/StunnerFormsClientFieldsConstants_zh_CN.properties b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/forms/fields/i18n/StunnerFormsClientFieldsConstants_zh_CN.properties index 5dbb837be24..11f54f5082b 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/forms/fields/i18n/StunnerFormsClientFieldsConstants_zh_CN.properties +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/forms/fields/i18n/StunnerFormsClientFieldsConstants_zh_CN.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + # translation auto-copied from project KIE Workbench - Common, version 6.0.0, document org.kie.workbench.screens/kie-wb-common-project-imports-editor-client/org/kie/workbench/common/screens/projectimportsscreen/client/resources/i18n/ProjectConfigScreenConstants, author xi.huang Add=添加 # translation auto-copied from project jbpm-designer, version 6.0.0, document org.jbpm/jbpm-designer-client/org/jbpm/designer/client/resources/i18n/DesignerEditorConstants, author xi.huang diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/README.md b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/README.md index 7be23ef06bf..c7a8a667f80 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/README.md +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/README.md @@ -1,3 +1,20 @@ + + # BPMN Icons sprite - Icons must be 16x16 PNG diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-emf/README.md b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-emf/README.md index 9011cad52b9..2dced7e5469 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-emf/README.md +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-emf/README.md @@ -1,3 +1,20 @@ + + # Stunner - GWT support for BPMN2/EMF/XMI ## Introduction diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-emf/src/main/resources/org/eclipse/emf/emul/README.md b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-emf/src/main/resources/org/eclipse/emf/emul/README.md index 9a98ddf2b51..139e2e0dbf2 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-emf/src/main/resources/org/eclipse/emf/emul/README.md +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-emf/src/main/resources/org/eclipse/emf/emul/README.md @@ -1,3 +1,20 @@ + + This package contains the _Emulation_ GWT module descriptor because: - It's main goal is override the default one from org.eclipselabs:org.eclipse.emf.gwt.common diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-kogito-runtime/README.md b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-kogito-runtime/README.md index 5831c5d6bb6..5ef40c8bbb7 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-kogito-runtime/README.md +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-kogito-runtime/README.md @@ -1,3 +1,20 @@ + + # BPMN Editor - Kogito webapp The BPMN editor's webapp bundle for all kogito channels. diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-kogito-runtime/src/main/resources/META-INF/ErraiApp.properties b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-kogito-runtime/src/main/resources/META-INF/ErraiApp.properties index 7ffdf39f5f9..8302ac21465 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-kogito-runtime/src/main/resources/META-INF/ErraiApp.properties +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-kogito-runtime/src/main/resources/META-INF/ErraiApp.properties @@ -14,7 +14,9 @@ # "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. +# under the License. +# + # # ErraiApp.properties # diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-kogito-runtime/src/test/resources/org/kie/workbench/common/stunner/kogito/client/selenium/basic-process.bpmn2 b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-kogito-runtime/src/test/resources/org/kie/workbench/common/stunner/kogito/client/selenium/basic-process.bpmn2 index eed7e83e722..8f36b4a7ef6 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-kogito-runtime/src/test/resources/org/kie/workbench/common/stunner/kogito/client/selenium/basic-process.bpmn2 +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-kogito-runtime/src/test/resources/org/kie/workbench/common/stunner/kogito/client/selenium/basic-process.bpmn2 @@ -1,4 +1,22 @@ + diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-kogito-runtime/src/test/resources/org/kie/workbench/common/stunner/kogito/client/selenium/new-diagram.bpmn2 b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-kogito-runtime/src/test/resources/org/kie/workbench/common/stunner/kogito/client/selenium/new-diagram.bpmn2 index 2544c631698..8ee60f6fd13 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-kogito-runtime/src/test/resources/org/kie/workbench/common/stunner/kogito/client/selenium/new-diagram.bpmn2 +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-kogito-runtime/src/test/resources/org/kie/workbench/common/stunner/kogito/client/selenium/new-diagram.bpmn2 @@ -1,4 +1,22 @@ + diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-marshalling/README.md b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-marshalling/README.md index 197fe79e483..8269933c3c2 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-marshalling/README.md +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-marshalling/README.md @@ -1,3 +1,20 @@ + + # Stunner - BPMN - Client side marshalling ## Introduction diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-marshalling/src/test/resources/org/kie/workbench/common/stunner/bpmn/client/marshall/testFlight.bpmn b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-marshalling/src/test/resources/org/kie/workbench/common/stunner/bpmn/client/marshall/testFlight.bpmn index 361dda72bc8..16780b016d6 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-marshalling/src/test/resources/org/kie/workbench/common/stunner/bpmn/client/marshall/testFlight.bpmn +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-marshalling/src/test/resources/org/kie/workbench/common/stunner/bpmn/client/marshall/testFlight.bpmn @@ -1,4 +1,22 @@ + + + + diff --git a/packages/stunner-editors/kie-wb-common-widgets/kie-wb-common-ui/src/test/resources/DataModelBackendExtendJavaTypeTest1/pom.xml b/packages/stunner-editors/kie-wb-common-widgets/kie-wb-common-ui/src/test/resources/DataModelBackendExtendJavaTypeTest1/pom.xml index 839b1b61d3c..255939fe437 100644 --- a/packages/stunner-editors/kie-wb-common-widgets/kie-wb-common-ui/src/test/resources/DataModelBackendExtendJavaTypeTest1/pom.xml +++ b/packages/stunner-editors/kie-wb-common-widgets/kie-wb-common-ui/src/test/resources/DataModelBackendExtendJavaTypeTest1/pom.xml @@ -1,3 +1,22 @@ + + + diff --git a/packages/stunner-editors/kie-wb-common-widgets/kie-wb-common-ui/src/test/resources/DataModelBackendExtendJavaTypeTest2/pom.xml b/packages/stunner-editors/kie-wb-common-widgets/kie-wb-common-ui/src/test/resources/DataModelBackendExtendJavaTypeTest2/pom.xml index f27510483b2..177f6625361 100644 --- a/packages/stunner-editors/kie-wb-common-widgets/kie-wb-common-ui/src/test/resources/DataModelBackendExtendJavaTypeTest2/pom.xml +++ b/packages/stunner-editors/kie-wb-common-widgets/kie-wb-common-ui/src/test/resources/DataModelBackendExtendJavaTypeTest2/pom.xml @@ -1,3 +1,22 @@ + + + diff --git a/packages/stunner-editors/kie-wb-common-widgets/kie-wb-common-ui/src/test/resources/DataModelBackendSuperTypesTest1/pom.xml b/packages/stunner-editors/kie-wb-common-widgets/kie-wb-common-ui/src/test/resources/DataModelBackendSuperTypesTest1/pom.xml index 9afecb44112..38e7240021c 100644 --- a/packages/stunner-editors/kie-wb-common-widgets/kie-wb-common-ui/src/test/resources/DataModelBackendSuperTypesTest1/pom.xml +++ b/packages/stunner-editors/kie-wb-common-widgets/kie-wb-common-ui/src/test/resources/DataModelBackendSuperTypesTest1/pom.xml @@ -1,3 +1,22 @@ + + + diff --git a/packages/stunner-editors/kie-wb-common-widgets/kie-wb-common-ui/src/test/resources/DataModelBackendTest1/pom.xml b/packages/stunner-editors/kie-wb-common-widgets/kie-wb-common-ui/src/test/resources/DataModelBackendTest1/pom.xml index 84cd453dc48..825febe5570 100644 --- a/packages/stunner-editors/kie-wb-common-widgets/kie-wb-common-ui/src/test/resources/DataModelBackendTest1/pom.xml +++ b/packages/stunner-editors/kie-wb-common-widgets/kie-wb-common-ui/src/test/resources/DataModelBackendTest1/pom.xml @@ -1,3 +1,22 @@ + + + diff --git a/packages/stunner-editors/kie-wb-common-widgets/kie-wb-common-ui/src/test/resources/DataModelBackendTest2/pom.xml b/packages/stunner-editors/kie-wb-common-widgets/kie-wb-common-ui/src/test/resources/DataModelBackendTest2/pom.xml index 54360da1c32..9f8322241b5 100644 --- a/packages/stunner-editors/kie-wb-common-widgets/kie-wb-common-ui/src/test/resources/DataModelBackendTest2/pom.xml +++ b/packages/stunner-editors/kie-wb-common-widgets/kie-wb-common-ui/src/test/resources/DataModelBackendTest2/pom.xml @@ -1,3 +1,22 @@ + + + diff --git a/packages/stunner-editors/kie-wb-common-widgets/pom.xml b/packages/stunner-editors/kie-wb-common-widgets/pom.xml index 8d6d3b55e75..72f0c9eb23b 100644 --- a/packages/stunner-editors/kie-wb-common-widgets/pom.xml +++ b/packages/stunner-editors/kie-wb-common-widgets/pom.xml @@ -1,4 +1,22 @@ + + # KIE - Lienzo core This is a forked repository from [Lienzo core](https://github.com/ahome-it/lienzo-core). diff --git a/packages/stunner-editors/lienzo-tests/README.md b/packages/stunner-editors/lienzo-tests/README.md index 1aecb4bc191..11f908ab4eb 100644 --- a/packages/stunner-editors/lienzo-tests/README.md +++ b/packages/stunner-editors/lienzo-tests/README.md @@ -1,3 +1,20 @@ + + # KIE - Lienzo tests This is a forked repository from [Lienzo tests](https://github.com/ahome-it/lienzo-tests). diff --git a/packages/stunner-editors/lienzo-tests/src/main/java/com/ait/lienzo/test/stub/README.md b/packages/stunner-editors/lienzo-tests/src/main/java/com/ait/lienzo/test/stub/README.md index ae819dda55d..13d03dcd539 100644 --- a/packages/stunner-editors/lienzo-tests/src/main/java/com/ait/lienzo/test/stub/README.md +++ b/packages/stunner-editors/lienzo-tests/src/main/java/com/ait/lienzo/test/stub/README.md @@ -1,3 +1,20 @@ + + # Out of the box Lienzo's testing doubles This package contain some testing doubles for overlay types, wrappers and other classes that are using native interfaces. diff --git a/packages/stunner-editors/lienzo-webapp/README.md b/packages/stunner-editors/lienzo-webapp/README.md index 0ad1e19b230..20ec2a208b8 100644 --- a/packages/stunner-editors/lienzo-webapp/README.md +++ b/packages/stunner-editors/lienzo-webapp/README.md @@ -1,3 +1,20 @@ + + # lienzo-webapp Building: diff --git a/packages/stunner-editors/lienzo-webapp/j2cl-usage.md b/packages/stunner-editors/lienzo-webapp/j2cl-usage.md index 159bc4ea871..8e6f51cdb44 100644 --- a/packages/stunner-editors/lienzo-webapp/j2cl-usage.md +++ b/packages/stunner-editors/lienzo-webapp/j2cl-usage.md @@ -1,3 +1,20 @@ + + // Webapp URLs file:////home/roger/development/romartin/lienzo-webapp/target/lienzo-webapp-7.48.0-SNAPSHOT/LienzoShowcase.html http://localhost/lienzo-webapp-7.48.0-SNAPSHOT/LienzoShowcase.html diff --git a/packages/stunner-editors/lienzo-webapp/links.md b/packages/stunner-editors/lienzo-webapp/links.md index 30d5f465d95..0b91fe5ae8e 100644 --- a/packages/stunner-editors/lienzo-webapp/links.md +++ b/packages/stunner-editors/lienzo-webapp/links.md @@ -1,2 +1,19 @@ + + - https://www.quirksmode.org/mobile/viewports.html - https://javascript.info/coordinates diff --git a/packages/stunner-editors/lienzo-webapp/src/main/webapp/WEB-INF/web.xml b/packages/stunner-editors/lienzo-webapp/src/main/webapp/WEB-INF/web.xml index a4eef374833..0e8a1235a03 100644 --- a/packages/stunner-editors/lienzo-webapp/src/main/webapp/WEB-INF/web.xml +++ b/packages/stunner-editors/lienzo-webapp/src/main/webapp/WEB-INF/web.xml @@ -1,4 +1,22 @@ + + # wires wires canvas diff --git a/packages/stunner-editors/uberfire-extensions/uberfire-wires/uberfire-wires-core/uberfire-wires-core-grids/pom.xml b/packages/stunner-editors/uberfire-extensions/uberfire-wires/uberfire-wires-core/uberfire-wires-core-grids/pom.xml index 7178d923e3e..b8ffcff0d5e 100644 --- a/packages/stunner-editors/uberfire-extensions/uberfire-wires/uberfire-wires-core/uberfire-wires-core-grids/pom.xml +++ b/packages/stunner-editors/uberfire-extensions/uberfire-wires/uberfire-wires-core/uberfire-wires-core-grids/pom.xml @@ -1,4 +1,22 @@ + diff --git a/packages/switch-expression-ts/README.md b/packages/switch-expression-ts/README.md index 484e7a10cae..55b44564f1c 100644 --- a/packages/switch-expression-ts/README.md +++ b/packages/switch-expression-ts/README.md @@ -1,3 +1,20 @@ + + ## @kie-tools-core/switch-expression-ts A switch expression implementation in TypeScript diff --git a/packages/uniforms-bootstrap4-codegen/README.md b/packages/uniforms-bootstrap4-codegen/README.md index 9e0c0e4dfc0..23f1e378ae0 100644 --- a/packages/uniforms-bootstrap4-codegen/README.md +++ b/packages/uniforms-bootstrap4-codegen/README.md @@ -1,3 +1,20 @@ + + ## Uniforms Bootstrap 4 Codegen This module contains the [Uniforms](https://uniforms.tools) theme contain to generate Bootstrap 4 forms for the `@kie-tools/form-generation-tool`. diff --git a/packages/uniforms-patternfly-codegen/README.md b/packages/uniforms-patternfly-codegen/README.md index 88774d4c498..8180cd3ab5d 100644 --- a/packages/uniforms-patternfly-codegen/README.md +++ b/packages/uniforms-patternfly-codegen/README.md @@ -1,3 +1,20 @@ + + ## Uniforms Patternfly Codegen This module contains the [Uniforms](https://uniforms.tools) theme contain to generate Patternfly forms for the `@kie-tools/form-generation-tool`. diff --git a/packages/uniforms-patternfly/README.md b/packages/uniforms-patternfly/README.md index 3d4f5ad446d..b2bef0fae5d 100644 --- a/packages/uniforms-patternfly/README.md +++ b/packages/uniforms-patternfly/README.md @@ -1,3 +1,20 @@ + + # Basic usage `uniforms` is a plugin for React to be able to create dynamic forms with built-in state management and form validation. diff --git a/packages/vscode-extension-common-test-helpers/README.md b/packages/vscode-extension-common-test-helpers/README.md index 71c5b645673..404540d5b14 100644 --- a/packages/vscode-extension-common-test-helpers/README.md +++ b/packages/vscode-extension-common-test-helpers/README.md @@ -1,3 +1,20 @@ + + ## VSCode extension common test helpers Common test helper methods for Kie Tools editors VSCode extensions. diff --git a/packages/vscode-extension-dashbuilder-editor/CHANGELOG.md b/packages/vscode-extension-dashbuilder-editor/CHANGELOG.md index d24ac31be57..31e79d667eb 100644 --- a/packages/vscode-extension-dashbuilder-editor/CHANGELOG.md +++ b/packages/vscode-extension-dashbuilder-editor/CHANGELOG.md @@ -1,3 +1,20 @@ + + # 0.32.0 (alpha) - _(No new features)_ diff --git a/packages/vscode-extension-dashbuilder-editor/README.md b/packages/vscode-extension-dashbuilder-editor/README.md index 861390cfc70..37823e9a89a 100644 --- a/packages/vscode-extension-dashbuilder-editor/README.md +++ b/packages/vscode-extension-dashbuilder-editor/README.md @@ -1,3 +1,20 @@ + + ## Kogito Dashbuilder Editor ![vs-code-support](https://img.shields.io/badge/Visual%20Studio%20Code-1.67.0+-blue.svg) diff --git a/packages/vscode-extension-dashbuilder-editor/e2e-tests/resources/smoke-test/simple-dashbuilder-example.dash.yml b/packages/vscode-extension-dashbuilder-editor/e2e-tests/resources/smoke-test/simple-dashbuilder-example.dash.yml index 8fd276383ba..a873834c8bd 100644 --- a/packages/vscode-extension-dashbuilder-editor/e2e-tests/resources/smoke-test/simple-dashbuilder-example.dash.yml +++ b/packages/vscode-extension-dashbuilder-editor/e2e-tests/resources/smoke-test/simple-dashbuilder-example.dash.yml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + datasets: - uuid: products content: >- diff --git a/packages/vscode-extension-kie-ba-bundle/CHANGELOG.md b/packages/vscode-extension-kie-ba-bundle/CHANGELOG.md index 5bf2704c15b..149769b4bee 100644 --- a/packages/vscode-extension-kie-ba-bundle/CHANGELOG.md +++ b/packages/vscode-extension-kie-ba-bundle/CHANGELOG.md @@ -1,3 +1,20 @@ + + # 0.32.0 (alpha) - NO-ISSUE - Improved localization for Stunner BPMN Editor diff --git a/packages/vscode-extension-kie-ba-bundle/README.md b/packages/vscode-extension-kie-ba-bundle/README.md index 31c55b76a6c..df492192d32 100644 --- a/packages/vscode-extension-kie-ba-bundle/README.md +++ b/packages/vscode-extension-kie-ba-bundle/README.md @@ -1,3 +1,20 @@ + + ## KIE Business Automation Bundle ![vs-code-support](https://img.shields.io/badge/Visual%20Studio%20Code-1.67.0+-blue.svg) diff --git a/packages/vscode-extension-kogito-bundle/CHANGELOG.md b/packages/vscode-extension-kogito-bundle/CHANGELOG.md index fdc552c0774..14144524ce6 100644 --- a/packages/vscode-extension-kogito-bundle/CHANGELOG.md +++ b/packages/vscode-extension-kogito-bundle/CHANGELOG.md @@ -1,3 +1,20 @@ + + # 0.32.0 (alpha) - NO-ISSUE - Improved localization for Stunner BPMN Editor diff --git a/packages/vscode-extension-kogito-bundle/README.md b/packages/vscode-extension-kogito-bundle/README.md index eb48bd58eef..e3070af5443 100644 --- a/packages/vscode-extension-kogito-bundle/README.md +++ b/packages/vscode-extension-kogito-bundle/README.md @@ -1,3 +1,20 @@ + + ## Kogito Bundle ![vs-code-support](https://img.shields.io/badge/Visual%20Studio%20Code-1.67.0+-blue.svg) diff --git a/packages/vscode-extension/README.md b/packages/vscode-extension/README.md index 7cffb2cbe32..fe838371e26 100644 --- a/packages/vscode-extension/README.md +++ b/packages/vscode-extension/README.md @@ -1 +1,18 @@ + + ## Visual Studio Code extension library diff --git a/packages/vscode-java-code-completion-extension-plugin/README.md b/packages/vscode-java-code-completion-extension-plugin/README.md index 1a762f541c1..95f796450e2 100644 --- a/packages/vscode-java-code-completion-extension-plugin/README.md +++ b/packages/vscode-java-code-completion-extension-plugin/README.md @@ -1,3 +1,20 @@ + + # VS Code Java Code Completion Extension Plugin ## Installation diff --git a/packages/vscode-java-code-completion-extension-plugin/vscode-java-code-completion-extension-plugin-core/pom.xml b/packages/vscode-java-code-completion-extension-plugin/vscode-java-code-completion-extension-plugin-core/pom.xml index 381b4aed8a4..39260a52c85 100644 --- a/packages/vscode-java-code-completion-extension-plugin/vscode-java-code-completion-extension-plugin-core/pom.xml +++ b/packages/vscode-java-code-completion-extension-plugin/vscode-java-code-completion-extension-plugin-core/pom.xml @@ -1,4 +1,22 @@ + + # Apache KIE Tools Java Code Completion This package provides a type-safe Java Code Completion library for a Typescript project. diff --git a/packages/workspace/README.md b/packages/workspace/README.md index 53fd2110a62..630a7b83daf 100644 --- a/packages/workspace/README.md +++ b/packages/workspace/README.md @@ -1 +1,18 @@ + + ## Apache KIE Tools Workspace diff --git a/packages/xml-parser-ts-codegen/README.md b/packages/xml-parser-ts-codegen/README.md index ea16c2f9647..52bc2f242bd 100644 --- a/packages/xml-parser-ts-codegen/README.md +++ b/packages/xml-parser-ts-codegen/README.md @@ -1,3 +1,20 @@ + + # @kie-tools/xml-parser-ts-codegen This package provides a Node.js script that generates TypeScript types and metadata from XSD file(s) to parse/build XML strings from/to JSON using `@kie-tools/xml-parser-ts`. It doesn't implement the entire XSD specification, so there might be bugs when attempting to use it with an arbitrary XSD file. diff --git a/packages/xml-parser-ts/README.md b/packages/xml-parser-ts/README.md index cbd0ccc5ba2..5b07d9d8bb3 100644 --- a/packages/xml-parser-ts/README.md +++ b/packages/xml-parser-ts/README.md @@ -1,3 +1,20 @@ + + # @kie-tools/xml-parser-ts This lets you parse/build XML strings from/to JSON using types and metadata generated with `@kie-tools/xml-parser-ts-codegen`. It uses DOMParser or `jsdom` to parse the XMLs and guarantees that: diff --git a/packages/yaml-language-server/README.md b/packages/yaml-language-server/README.md index a9934af093b..cd5a548a72b 100644 --- a/packages/yaml-language-server/README.md +++ b/packages/yaml-language-server/README.md @@ -1,3 +1,20 @@ + + ## YAML Language Server Esbuild package to wrap [YAML Language Server](https://github.com/redhat-developer/yaml-language-server) and allow the use in Webpack. diff --git a/packages/yard-editor/README.md b/packages/yard-editor/README.md index 0ebaf066937..6fc368e8a64 100644 --- a/packages/yard-editor/README.md +++ b/packages/yard-editor/README.md @@ -1,3 +1,20 @@ + + ## YARD editor ###### An editor to manage YARD (Yet Another Rule Definition) assets, part of serverless logic for Red Hat OpenShift diff --git a/packages/yard-language-service/README.md b/packages/yard-language-service/README.md index be590de463f..dbf74785e9f 100644 --- a/packages/yard-language-service/README.md +++ b/packages/yard-language-service/README.md @@ -1 +1,18 @@ + + ## YaRD Language Service diff --git a/packages/yard-validator-worker/README.md b/packages/yard-validator-worker/README.md index fb332661efd..9e858167bf5 100644 --- a/packages/yard-validator-worker/README.md +++ b/packages/yard-validator-worker/README.md @@ -1,3 +1,20 @@ + + ## YARD validator ###### Module for YARD (Yet Another Rule Definition) validation. diff --git a/packages/yard-validator-worker/src/test/java/org/yard/validator/YardValidatorTest.java b/packages/yard-validator-worker/src/test/java/org/yard/validator/YardValidatorTest.java index 7a68e1b1d84..a7af592e945 100644 --- a/packages/yard-validator-worker/src/test/java/org/yard/validator/YardValidatorTest.java +++ b/packages/yard-validator-worker/src/test/java/org/yard/validator/YardValidatorTest.java @@ -136,8 +136,8 @@ public void checkCorrectIssueRowsWhenThen() throws FileNotFoundException { assertIssue(issue, "Redundancy found. If both rows return the same result, the other can be removed. If they return different results, the table fails to return a value.", 1, 2); final RowLocation first = (RowLocation) issue.getLocations()[0]; final RowLocation second = (RowLocation) issue.getLocations()[1]; - assertEquals(22, first.getActualRowNumberInFile()); - assertEquals(24, second.getActualRowNumberInFile()); + assertEquals(41, first.getActualRowNumberInFile()); + assertEquals(43, second.getActualRowNumberInFile()); } @Test diff --git a/packages/yard-validator-worker/src/test/resources/org/yard/validator/package-prices.yml b/packages/yard-validator-worker/src/test/resources/org/yard/validator/package-prices.yml index d29bafd2f08..b5c9bd51e55 100644 --- a/packages/yard-validator-worker/src/test/resources/org/yard/validator/package-prices.yml +++ b/packages/yard-validator-worker/src/test/resources/org/yard/validator/package-prices.yml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + specVersion: alpha kind: YaRD name: "Traffic Violation" diff --git a/packages/yard-validator-worker/src/test/resources/org/yard/validator/redundancy.yml b/packages/yard-validator-worker/src/test/resources/org/yard/validator/redundancy.yml index ac98c5e21be..50fca41c62e 100644 --- a/packages/yard-validator-worker/src/test/resources/org/yard/validator/redundancy.yml +++ b/packages/yard-validator-worker/src/test/resources/org/yard/validator/redundancy.yml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + specVersion: alpha kind: YaRD name: "Traffic Violation" diff --git a/packages/yard-validator-worker/src/test/resources/org/yard/validator/service-price.yml b/packages/yard-validator-worker/src/test/resources/org/yard/validator/service-price.yml index bd00ac3d73b..082130513de 100644 --- a/packages/yard-validator-worker/src/test/resources/org/yard/validator/service-price.yml +++ b/packages/yard-validator-worker/src/test/resources/org/yard/validator/service-price.yml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + specVersion: alpha kind: YaRD name: "BasePrice" diff --git a/packages/yard-validator-worker/src/test/resources/org/yard/validator/subsumption-the-other-way.yml b/packages/yard-validator-worker/src/test/resources/org/yard/validator/subsumption-the-other-way.yml index 38edae6a809..e6939ffe487 100644 --- a/packages/yard-validator-worker/src/test/resources/org/yard/validator/subsumption-the-other-way.yml +++ b/packages/yard-validator-worker/src/test/resources/org/yard/validator/subsumption-the-other-way.yml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + specVersion: alpha kind: YaRD name: "Traffic Violation" diff --git a/packages/yard-validator-worker/src/test/resources/org/yard/validator/subsumption.yml b/packages/yard-validator-worker/src/test/resources/org/yard/validator/subsumption.yml index 0eb20657f70..f491d20a501 100644 --- a/packages/yard-validator-worker/src/test/resources/org/yard/validator/subsumption.yml +++ b/packages/yard-validator-worker/src/test/resources/org/yard/validator/subsumption.yml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + specVersion: alpha kind: YaRD name: "Traffic Violation" diff --git a/packages/yard-validator-worker/src/test/resources/org/yard/validator/traffic-violation-empty-row.yml b/packages/yard-validator-worker/src/test/resources/org/yard/validator/traffic-violation-empty-row.yml index 0eb20657f70..f491d20a501 100644 --- a/packages/yard-validator-worker/src/test/resources/org/yard/validator/traffic-violation-empty-row.yml +++ b/packages/yard-validator-worker/src/test/resources/org/yard/validator/traffic-violation-empty-row.yml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + specVersion: alpha kind: YaRD name: "Traffic Violation" diff --git a/packages/yard-validator-worker/src/test/resources/org/yard/validator/traffic-violation.yml b/packages/yard-validator-worker/src/test/resources/org/yard/validator/traffic-violation.yml index 452ff7505f4..271d472e110 100644 --- a/packages/yard-validator-worker/src/test/resources/org/yard/validator/traffic-violation.yml +++ b/packages/yard-validator-worker/src/test/resources/org/yard/validator/traffic-violation.yml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + specVersion: alpha kind: YaRD name: "Traffic Violation" diff --git a/packages/yard-validator-worker/src/test/resources/org/yard/validator/when-then-redundancy.yml b/packages/yard-validator-worker/src/test/resources/org/yard/validator/when-then-redundancy.yml index 85116ec7ebc..9669e10f32f 100644 --- a/packages/yard-validator-worker/src/test/resources/org/yard/validator/when-then-redundancy.yml +++ b/packages/yard-validator-worker/src/test/resources/org/yard/validator/when-then-redundancy.yml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + specVersion: alpha kind: YaRD name: "Traffic Violation" diff --git a/packages/yard-validator/README.md b/packages/yard-validator/README.md index 5ecc889f2cb..868e3b2d373 100644 --- a/packages/yard-validator/README.md +++ b/packages/yard-validator/README.md @@ -1,3 +1,20 @@ + + ## YARD validator ###### Module for YARD (Yet Another Rule Definition) validation. diff --git a/packages/yard-vscode-extension/CHANGELOG.md b/packages/yard-vscode-extension/CHANGELOG.md index 207cbd038a5..3c5e4fbaa39 100644 --- a/packages/yard-vscode-extension/CHANGELOG.md +++ b/packages/yard-vscode-extension/CHANGELOG.md @@ -1,3 +1,20 @@ + + # 0.?.0 (alpha) - [KOGITO-7089](https://issues.redhat.com/browse/KOGITO-7089) - [yard Editor] Create VSCode Extension for yard diff --git a/packages/yard-vscode-extension/README.md b/packages/yard-vscode-extension/README.md index 0de58d9b6bb..06b2eb61794 100644 --- a/packages/yard-vscode-extension/README.md +++ b/packages/yard-vscode-extension/README.md @@ -1,3 +1,20 @@ + + ## Kogito yard Editor ![vs-code-support](https://img.shields.io/badge/Visual%20Studio%20Code-1.67.0+-blue.svg) diff --git a/repo/README.md b/repo/README.md index ee39502b8b7..27195b6d740 100644 --- a/repo/README.md +++ b/repo/README.md @@ -1,3 +1,20 @@ + + #### Repo dependencies version The related `build-dependencies-version.json` contains a centralized view of all required tools to correctly diff --git a/scripts/build-env/README.md b/scripts/build-env/README.md index 456c9be0d46..d6c43115afb 100644 --- a/scripts/build-env/README.md +++ b/scripts/build-env/README.md @@ -1,3 +1,20 @@ + + ## @kie-tools-scripts/build-env Helps packages inside a monorepo to define environment variables and consume them easily. diff --git a/scripts/check-junit-report-results/tests/reports/junit-report__from-cypress.xml b/scripts/check-junit-report-results/tests/reports/junit-report__from-cypress.xml index e49d467263a..ba5acedd49b 100644 --- a/scripts/check-junit-report-results/tests/reports/junit-report__from-cypress.xml +++ b/scripts/check-junit-report-results/tests/reports/junit-report__from-cypress.xml @@ -1,4 +1,22 @@ + diff --git a/scripts/check-junit-report-results/tests/reports/junit-report__from-jest.xml b/scripts/check-junit-report-results/tests/reports/junit-report__from-jest.xml index 9c3d57bc835..97594032afe 100644 --- a/scripts/check-junit-report-results/tests/reports/junit-report__from-jest.xml +++ b/scripts/check-junit-report-results/tests/reports/junit-report__from-jest.xml @@ -1,4 +1,22 @@ + diff --git a/scripts/check-junit-report-results/tests/reports/junit-report__from-surefire.xml b/scripts/check-junit-report-results/tests/reports/junit-report__from-surefire.xml index 308c24abb13..be567381b26 100644 --- a/scripts/check-junit-report-results/tests/reports/junit-report__from-surefire.xml +++ b/scripts/check-junit-report-results/tests/reports/junit-report__from-surefire.xml @@ -1,4 +1,22 @@ + + # KIE Tools :: Sparse checkout Sparse checkout lets you partially clone the KIE Tools monorepo. Doing a sparse checkout will help you save time and disk space, while also reducing the amount of code you need to deal with when developing. diff --git a/scripts/sparse-checkout/run.sh b/scripts/sparse-checkout/run.sh index 327aaadfd8a..0d0c9ab4c86 100755 --- a/scripts/sparse-checkout/run.sh +++ b/scripts/sparse-checkout/run.sh @@ -1,4 +1,22 @@ #!/bin/sh +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# ARGV=("$@") KIE_TOOLS_ORG=$1 From 4f10bc555613457e6fe9c2c47d053cd32de401b1 Mon Sep 17 00:00:00 2001 From: Yeser Amer Date: Mon, 13 May 2024 09:53:36 +0200 Subject: [PATCH 08/90] NO-ISSUE: Fix Test in `chrome-extension-serverless-workflow-editor` (#2317) --- .../e2e-tests/samples/chrome_sample.sw.yaml | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/packages/chrome-extension-serverless-workflow-editor/e2e-tests/samples/chrome_sample.sw.yaml b/packages/chrome-extension-serverless-workflow-editor/e2e-tests/samples/chrome_sample.sw.yaml index fc9813d1519..3812443df07 100644 --- a/packages/chrome-extension-serverless-workflow-editor/e2e-tests/samples/chrome_sample.sw.yaml +++ b/packages/chrome-extension-serverless-workflow-editor/e2e-tests/samples/chrome_sample.sw.yaml @@ -1,22 +1,3 @@ -# -# Licensed to the Apache Software Foundation (ASF) under one -# or more contributor license agreements. See the NOTICE file -# distributed with this work for additional information -# regarding copyright ownership. The ASF licenses this file -# to you under the Apache License, Version 2.0 (the -# "License"); you may not use this file except in compliance -# with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, -# software distributed under the License is distributed on an -# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -# KIND, either express or implied. See the License for the -# specific language governing permissions and limitations -# under the License. -# - id: "chrome_extension_sample_yaml" version: "1.0" specVersion: "0.8" From cac3970b9df751e6a95a89b340fd38618f70a7a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luiz=20Jo=C3=A3o=20Motta?= Date: Mon, 13 May 2024 09:15:16 -0300 Subject: [PATCH 09/90] kie-issues#407: KIE Sandbox Accelerators break the current workspace if they fail to initialize (#2309) --- .../src/accelerators/AcceleratorsHooks.tsx | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/packages/online-editor/src/accelerators/AcceleratorsHooks.tsx b/packages/online-editor/src/accelerators/AcceleratorsHooks.tsx index 534a2749c96..8998ed4d89d 100644 --- a/packages/online-editor/src/accelerators/AcceleratorsHooks.tsx +++ b/packages/online-editor/src/accelerators/AcceleratorsHooks.tsx @@ -159,11 +159,16 @@ export function useAcceleratorsDispatch(workspace: ActiveWorkspace) { } const workspaceFiles = await workspaces.getFiles({ workspaceId }); - - // Create new temporary branch with current files, but stay on current branch + // Create a backup branch with the current files, but stay on main await workspaces.branch({ workspaceId, name: BACKUP_BRANCH_NAME, checkout: false }); - // Commit files to backup branch (this commit will never be pushed, as this branch will be deleted) + // Adds all files to the staging area + await workspaces.stageFile({ + workspaceId, + relativePath: ".", + }); + + // Commit staged changes to the backup branch await workspaces.commit({ workspaceId, commitMessage: `${env.KIE_SANDBOX_APP_NAME}: Backup files before applying ${accelerator.name} Accelerator`, From 9448c7252c961c7812833dcb8e33a83798da837e Mon Sep 17 00:00:00 2001 From: Jan Stastny Date: Tue, 14 May 2024 09:50:52 +0200 Subject: [PATCH 10/90] kie-issues#1123:unify maven projects configuration (#2270) Co-authored-by: jstastny-cz --- packages/maven-base/pom.xml | 45 ++++++++++++++++++++++++++++++++----- 1 file changed, 39 insertions(+), 6 deletions(-) diff --git a/packages/maven-base/pom.xml b/packages/maven-base/pom.xml index 09190759322..0002e804396 100644 --- a/packages/maven-base/pom.xml +++ b/packages/maven-base/pom.xml @@ -52,9 +52,9 @@ - scm:git:git@github.com:apache/incubator-kie-tools.git - scm:git:git@github.com:apache/incubator-kie-tools.git - scm:git:git@github.com:apache/incubator-kie-tools.git + scm:git:https://github.com/apache/incubator-kie-tools.git + scm:git:https://github.com/apache/incubator-kie-tools.git + https://github.com/apache/incubator-kie-tools HEAD @@ -63,6 +63,39 @@ https://github.com/apache/incubator-kie-issues/issues + + + The Apache KIE Team + dev@kie.apache.org + https://kie.apache.org + Apache Software Foundation + http://apache.org/ + + + + + Development List + dev-subscribe@kie.apache.org + dev-unsubscribe@kie.apache.org + dev@kie.apache.org + https://lists.apache.org/list.html?dev@kie.apache.org + + + User List + users-subscribe@kie.apache.org + users-unsubscribe@kie.apache.org + users@kie.apache.org + https://lists.apache.org/list.html?users@kie.apache.org + + + Commits List + commits-subscribe@kie.apache.org + commits-unsubscribe@kie.apache.org + commits@kie.apache.org + https://lists.apache.org/list.html?commits@kie.apache.org + + + 2024-01-12T00:00:00Z 3.4.1 @@ -114,9 +147,9 @@ import - org.kie.kogito - kogito-quarkus-test-utils - ${version.org.kie.kogito} + org.kie.kogito + kogito-quarkus-test-utils + ${version.org.kie.kogito} From 7e96e5e7ad81075294c5bca0f93236d800222fbe Mon Sep 17 00:00:00 2001 From: Tiago Bento <1584568+tiagobento@users.noreply.github.com> Date: Tue, 14 May 2024 19:55:25 -0400 Subject: [PATCH 11/90] Upgrade Kogito to `999-20240509-SNAPSHOT` and Quarkus to `3.8.4` on `kogito-serverless-operator` tests (#2325) --- .../noservices/preview/ephemeral/02-sonataflow_platform.yaml | 2 +- .../platform/services/dev/ephemeral/02-sonataflow_platform.yaml | 2 +- .../services/dev/postgreSQL/02-sonataflow_platform.yaml | 2 +- .../preview/cluster-wide-ephemeral/02-sonataflow_platform.yaml | 2 +- .../preview/ephemeral-data-index/02-sonataflow_platform.yaml | 2 +- .../preview/ephemeral-job-service/02-sonataflow_platform.yaml | 2 +- .../workflow/persistence/by_service/02-sonataflow_platform.yaml | 2 +- .../02-sonataflow_platform.yaml | 2 +- .../02-sonataflow_platform.yaml | 2 +- .../02-sonataflow_platform.yaml | 2 +- .../02-sonataflow_platform.yaml | 2 +- packages/kogito-swf-common/resources/tests/shell/README.md | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/packages/kogito-serverless-operator/test/testdata/platform/noservices/preview/ephemeral/02-sonataflow_platform.yaml b/packages/kogito-serverless-operator/test/testdata/platform/noservices/preview/ephemeral/02-sonataflow_platform.yaml index 0fcd3b9d712..4dbeaea91fe 100644 --- a/packages/kogito-serverless-operator/test/testdata/platform/noservices/preview/ephemeral/02-sonataflow_platform.yaml +++ b/packages/kogito-serverless-operator/test/testdata/platform/noservices/preview/ephemeral/02-sonataflow_platform.yaml @@ -26,7 +26,7 @@ spec: template: buildArgs: - name: QUARKUS_EXTENSION - value: org.kie.kogito:kogito-addons-quarkus-jobs-knative-eventing:999-SNAPSHOT + value: org.kie.kogito:kogito-addons-quarkus-jobs-knative-eventing:999-20240509-SNAPSHOT config: strategyOptions: KanikoBuildCacheEnabled: "true" diff --git a/packages/kogito-serverless-operator/test/testdata/platform/services/dev/ephemeral/02-sonataflow_platform.yaml b/packages/kogito-serverless-operator/test/testdata/platform/services/dev/ephemeral/02-sonataflow_platform.yaml index 32aab2cc905..fb9b5f8a87a 100644 --- a/packages/kogito-serverless-operator/test/testdata/platform/services/dev/ephemeral/02-sonataflow_platform.yaml +++ b/packages/kogito-serverless-operator/test/testdata/platform/services/dev/ephemeral/02-sonataflow_platform.yaml @@ -26,7 +26,7 @@ spec: template: buildArgs: - name: QUARKUS_EXTENSION - value: org.kie.kogito:kogito-addons-quarkus-jobs-knative-eventing:999-SNAPSHOT + value: org.kie.kogito:kogito-addons-quarkus-jobs-knative-eventing:999-20240509-SNAPSHOT config: strategyOptions: KanikoBuildCacheEnabled: "true" diff --git a/packages/kogito-serverless-operator/test/testdata/platform/services/dev/postgreSQL/02-sonataflow_platform.yaml b/packages/kogito-serverless-operator/test/testdata/platform/services/dev/postgreSQL/02-sonataflow_platform.yaml index 830267031d5..f141fbc35a7 100644 --- a/packages/kogito-serverless-operator/test/testdata/platform/services/dev/postgreSQL/02-sonataflow_platform.yaml +++ b/packages/kogito-serverless-operator/test/testdata/platform/services/dev/postgreSQL/02-sonataflow_platform.yaml @@ -26,7 +26,7 @@ spec: template: buildArgs: - name: QUARKUS_EXTENSIONS - value: org.kie.kogito:kogito-addons-quarkus-jobs-knative-eventing:999-SNAPSHOT + value: org.kie.kogito:kogito-addons-quarkus-jobs-knative-eventing:999-20240509-SNAPSHOT services: dataIndex: enabled: false diff --git a/packages/kogito-serverless-operator/test/testdata/platform/services/preview/cluster-wide-ephemeral/02-sonataflow_platform.yaml b/packages/kogito-serverless-operator/test/testdata/platform/services/preview/cluster-wide-ephemeral/02-sonataflow_platform.yaml index 67d92d71921..f9b1262adfe 100644 --- a/packages/kogito-serverless-operator/test/testdata/platform/services/preview/cluster-wide-ephemeral/02-sonataflow_platform.yaml +++ b/packages/kogito-serverless-operator/test/testdata/platform/services/preview/cluster-wide-ephemeral/02-sonataflow_platform.yaml @@ -26,7 +26,7 @@ spec: template: buildArgs: - name: QUARKUS_EXTENSION - value: org.kie.kogito:kogito-addons-quarkus-jobs-knative-eventing:999-SNAPSHOT + value: org.kie.kogito:kogito-addons-quarkus-jobs-knative-eventing:999-20240509-SNAPSHOT config: strategyOptions: KanikoBuildCacheEnabled: "true" diff --git a/packages/kogito-serverless-operator/test/testdata/platform/services/preview/ephemeral-data-index/02-sonataflow_platform.yaml b/packages/kogito-serverless-operator/test/testdata/platform/services/preview/ephemeral-data-index/02-sonataflow_platform.yaml index 701648c2bdf..df031f38298 100644 --- a/packages/kogito-serverless-operator/test/testdata/platform/services/preview/ephemeral-data-index/02-sonataflow_platform.yaml +++ b/packages/kogito-serverless-operator/test/testdata/platform/services/preview/ephemeral-data-index/02-sonataflow_platform.yaml @@ -26,7 +26,7 @@ spec: template: buildArgs: - name: QUARKUS_EXTENSION - value: org.kie.kogito:kogito-addons-quarkus-jobs-knative-eventing:999-SNAPSHOT + value: org.kie.kogito:kogito-addons-quarkus-jobs-knative-eventing:999-20240509-SNAPSHOT config: strategyOptions: KanikoBuildCacheEnabled: "true" diff --git a/packages/kogito-serverless-operator/test/testdata/platform/services/preview/ephemeral-job-service/02-sonataflow_platform.yaml b/packages/kogito-serverless-operator/test/testdata/platform/services/preview/ephemeral-job-service/02-sonataflow_platform.yaml index e9f6ae05aa2..a53c938061a 100644 --- a/packages/kogito-serverless-operator/test/testdata/platform/services/preview/ephemeral-job-service/02-sonataflow_platform.yaml +++ b/packages/kogito-serverless-operator/test/testdata/platform/services/preview/ephemeral-job-service/02-sonataflow_platform.yaml @@ -25,7 +25,7 @@ spec: template: buildArgs: - name: QUARKUS_EXTENSION - value: org.kie.kogito:kogito-addons-quarkus-jobs-knative-eventing:999-SNAPSHOT + value: org.kie.kogito:kogito-addons-quarkus-jobs-knative-eventing:999-20240509-SNAPSHOT config: strategyOptions: KanikoBuildCacheEnabled: "true" diff --git a/packages/kogito-serverless-operator/test/testdata/workflow/persistence/by_service/02-sonataflow_platform.yaml b/packages/kogito-serverless-operator/test/testdata/workflow/persistence/by_service/02-sonataflow_platform.yaml index 9f8cd7aa903..e631f8151f2 100644 --- a/packages/kogito-serverless-operator/test/testdata/workflow/persistence/by_service/02-sonataflow_platform.yaml +++ b/packages/kogito-serverless-operator/test/testdata/workflow/persistence/by_service/02-sonataflow_platform.yaml @@ -26,7 +26,7 @@ spec: template: buildArgs: - name: QUARKUS_EXTENSIONS - value: org.kie:kie-addons-quarkus-persistence-jdbc:999-SNAPSHOT,io.quarkus:quarkus-jdbc-postgresql:3.2.9.Final,io.quarkus:quarkus-agroal:3.2.9.Final + value: org.kie:kie-addons-quarkus-persistence-jdbc:999-20240509-SNAPSHOT,io.quarkus:quarkus-jdbc-postgresql:3.8.4,io.quarkus:quarkus-agroal:3.8.4 config: strategyOptions: KanikoBuildCacheEnabled: "true" diff --git a/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_overwritten_by_service/02-sonataflow_platform.yaml b/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_overwritten_by_service/02-sonataflow_platform.yaml index 8f6e24735c6..5f7840d6923 100644 --- a/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_overwritten_by_service/02-sonataflow_platform.yaml +++ b/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_overwritten_by_service/02-sonataflow_platform.yaml @@ -36,7 +36,7 @@ spec: template: buildArgs: - name: QUARKUS_EXTENSIONS - value: org.kie:kie-addons-quarkus-persistence-jdbc:999-SNAPSHOT,io.quarkus:quarkus-jdbc-postgresql:3.2.9.Final,io.quarkus:quarkus-agroal:3.2.9.Final + value: org.kie:kie-addons-quarkus-persistence-jdbc:999-20240509-SNAPSHOT,io.quarkus:quarkus-jdbc-postgresql:3.8.4,io.quarkus:quarkus-agroal:3.8.4 config: strategyOptions: KanikoBuildCacheEnabled: "true" diff --git a/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_with_di_and_js_services/02-sonataflow_platform.yaml b/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_with_di_and_js_services/02-sonataflow_platform.yaml index 1c172e35b3f..1c7b2cb2cb0 100644 --- a/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_with_di_and_js_services/02-sonataflow_platform.yaml +++ b/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_with_di_and_js_services/02-sonataflow_platform.yaml @@ -36,7 +36,7 @@ spec: template: buildArgs: - name: QUARKUS_EXTENSIONS - value: org.kie:kie-addons-quarkus-persistence-jdbc:999-SNAPSHOT,io.quarkus:quarkus-jdbc-postgresql:3.2.9.Final,io.quarkus:quarkus-agroal:3.2.9.Final + value: org.kie:kie-addons-quarkus-persistence-jdbc:999-20240509-SNAPSHOT,io.quarkus:quarkus-jdbc-postgresql:3.8.4,io.quarkus:quarkus-agroal:3.8.4 config: strategyOptions: KanikoBuildCacheEnabled: "true" diff --git a/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_with_no_persistence_required/02-sonataflow_platform.yaml b/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_with_no_persistence_required/02-sonataflow_platform.yaml index caeafe914d6..e78f0c9788d 100644 --- a/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_with_no_persistence_required/02-sonataflow_platform.yaml +++ b/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_with_no_persistence_required/02-sonataflow_platform.yaml @@ -36,7 +36,7 @@ spec: template: buildArgs: - name: QUARKUS_EXTENSIONS - value: org.kie:kie-addons-quarkus-persistence-jdbc:999-SNAPSHOT,io.quarkus:quarkus-jdbc-postgresql:3.2.9.Final,io.quarkus:quarkus-agroal:3.2.9.Final + value: org.kie:kie-addons-quarkus-persistence-jdbc:999-20240509-SNAPSHOT,io.quarkus:quarkus-jdbc-postgresql:3.8.4,io.quarkus:quarkus-agroal:3.8.4 config: strategyOptions: KanikoBuildCacheEnabled: "true" diff --git a/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_without_di_and_js_services/02-sonataflow_platform.yaml b/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_without_di_and_js_services/02-sonataflow_platform.yaml index caeafe914d6..e78f0c9788d 100644 --- a/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_without_di_and_js_services/02-sonataflow_platform.yaml +++ b/packages/kogito-serverless-operator/test/testdata/workflow/persistence/from_platform_without_di_and_js_services/02-sonataflow_platform.yaml @@ -36,7 +36,7 @@ spec: template: buildArgs: - name: QUARKUS_EXTENSIONS - value: org.kie:kie-addons-quarkus-persistence-jdbc:999-SNAPSHOT,io.quarkus:quarkus-jdbc-postgresql:3.2.9.Final,io.quarkus:quarkus-agroal:3.2.9.Final + value: org.kie:kie-addons-quarkus-persistence-jdbc:999-20240509-SNAPSHOT,io.quarkus:quarkus-jdbc-postgresql:3.8.4,io.quarkus:quarkus-agroal:3.8.4 config: strategyOptions: KanikoBuildCacheEnabled: "true" diff --git a/packages/kogito-swf-common/resources/tests/shell/README.md b/packages/kogito-swf-common/resources/tests/shell/README.md index fe3456caa8a..a9e27f5af43 100644 --- a/packages/kogito-swf-common/resources/tests/shell/README.md +++ b/packages/kogito-swf-common/resources/tests/shell/README.md @@ -26,7 +26,7 @@ The `run.sh` should be used to run the tests since it must set a few env vars. To run from your terminal, try: ```shell -tests/shell/run.sh kogito-swf-devmode quay.io/kiegroup/kogito-swf-devmode:999-SNAPSHOT +tests/shell/run.sh kogito-swf-devmode quay.io/kiegroup/kogito-swf-devmode:999-20240509-SNAPSHOT ``` The first argument is the test case to run and the second, the image. From 7532f9aadfa6c1272cab3549dc5a2ce4a8593ee8 Mon Sep 17 00:00:00 2001 From: Tiago Bento <1584568+tiagobento@users.noreply.github.com> Date: Wed, 15 May 2024 08:10:05 -0400 Subject: [PATCH 12/90] NO-ISSUE: Script for updating Kogito version (#2318) --- KOGITO_UPGRADE_PROCESS.md | 12 +-- package.json | 2 + packages/root-env/env/index.js | 2 + .../env/index.js | 2 + .../env/index.js | 2 + pnpm-lock.yaml | 5 + repo/graph.dot | 2 + repo/graph.json | 3 + scripts/update-kogito-version/package.json | 9 ++ .../update_kogito_version.js | 99 +++++++++++++++++++ 10 files changed, 127 insertions(+), 11 deletions(-) create mode 100644 scripts/update-kogito-version/package.json create mode 100755 scripts/update-kogito-version/update_kogito_version.js diff --git a/KOGITO_UPGRADE_PROCESS.md b/KOGITO_UPGRADE_PROCESS.md index 0f4efb887de..a76f7e57fae 100644 --- a/KOGITO_UPGRADE_PROCESS.md +++ b/KOGITO_UPGRADE_PROCESS.md @@ -73,7 +73,6 @@ You can find an example of the Java / Maven versions upgrade in [this PR](https: The Quarkus version is present in the following file categories: -- `install.js` files - `root-env/env/index.js` file - go test files @@ -87,16 +86,7 @@ You can find an example of the Quarkus upgrade in [this PR](https://github.com/a # Upgrading Kogito -The Kogito version is present in the following file categories: - -- `install.js` files -- `root-env/env/index.js` file -- `package.json` files (eg. jit-executor reference in `extended-service`) - -The best (and fastest) way to catch all the Kogito versions is to perform a search a grep (or the IDE integrated search) and replace it with the new version. So, as a key, you can use: - -- The version number: `X.Y.Z` or `X.Y.Z-YYYYMMDD-SNAPSHOT` format (eg. `10.0.0` or `10.1.0-20240424-SNAPSHOT`); -- Images references: `main-YYYY-MM-DD` (Daily builds) or `X.Y.Z-YYYYMMDD` (Weekly builds) format (eg. `main-2024-04-24` or `10.1.0-20240424` in case of snapshot version) +In the root directory, run `pnpm update-kogito-version-to --maven [version] --images-tag [tag]`. Of course, a new Kogito version may lead to incompatibilities in the code and with other dependencies. In such a case, an investigation and evetually a fix is required to complete the process. diff --git a/package.json b/package.json index bbf4be36980..e58f97fbc34 100644 --- a/package.json +++ b/package.json @@ -10,6 +10,7 @@ "format": "prettier --write . '**/*.xml'", "format:check": "prettier --check . '**/*.xml'", "prepare": "husky install", + "update-kogito-version-to": "kie-tools--update-kogito-version-to", "update-version-to": "kie-tools--update-version-to" }, "devDependencies": { @@ -18,6 +19,7 @@ "@kie-tools-scripts/check-junit-report-results": "workspace:*", "@kie-tools-scripts/run-script-if": "workspace:*", "@kie-tools-scripts/sparse-checkout": "workspace:*", + "@kie-tools-scripts/update-kogito-version": "workspace:*", "@kie-tools-scripts/update-version": "workspace:*", "@nice-move/prettier-plugin-package-json": "^0.6.1", "@prettier/plugin-xml": "^2", diff --git a/packages/root-env/env/index.js b/packages/root-env/env/index.js index 3820ed0360d..3ea99d71378 100644 --- a/packages/root-env/env/index.js +++ b/packages/root-env/env/index.js @@ -54,10 +54,12 @@ module.exports = composeEnv([], { default: "3.8.4", description: "Quarkus version to be used on dependency declaration.", }, + /* (begin) This part of the file is referenced in `scripts/update-kogito-version` */ KOGITO_RUNTIME_version: { default: "999-20240509-SNAPSHOT", description: "Kogito version to be used on dependency declaration.", }, + /* (end) */ }), get env() { return { diff --git a/packages/serverless-logic-web-tools-base-builder-image/env/index.js b/packages/serverless-logic-web-tools-base-builder-image/env/index.js index 7d0cae43134..15b5baa8aea 100644 --- a/packages/serverless-logic-web-tools-base-builder-image/env/index.js +++ b/packages/serverless-logic-web-tools-base-builder-image/env/index.js @@ -31,10 +31,12 @@ module.exports = composeEnv( default: "v1.27.3", description: "", }, + /* (begin) This part of the file is referenced in `scripts/update-kogito-version` */ SERVERLESS_LOGIC_WEB_TOOLS__baseBuilderKogitoImageTag: { default: "999-20240509", description: "", }, + /* end */ }), get env() { return { diff --git a/packages/serverless-logic-web-tools-swf-dev-mode-image/env/index.js b/packages/serverless-logic-web-tools-swf-dev-mode-image/env/index.js index dad8f3a2bff..8737a5dfe6f 100644 --- a/packages/serverless-logic-web-tools-swf-dev-mode-image/env/index.js +++ b/packages/serverless-logic-web-tools-swf-dev-mode-image/env/index.js @@ -27,10 +27,12 @@ module.exports = composeEnv( default: "latest", description: "", }, + /* (begin) This part of the file is referenced in `scripts/update-kogito-version` */ SERVERLESS_LOGIC_WEB_TOOLS_DEVMODE_IMAGE__kogitoBaseBuilderImageTag: { default: "999-20240509", description: "", }, + /* end */ }), get env() { return { diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index d565a163f47..c256fca5a2a 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -45,6 +45,9 @@ importers: "@kie-tools-scripts/sparse-checkout": specifier: workspace:* version: link:scripts/sparse-checkout + "@kie-tools-scripts/update-kogito-version": + specifier: workspace:* + version: link:scripts/update-kogito-version "@kie-tools-scripts/update-version": specifier: workspace:* version: link:scripts/update-version @@ -13461,6 +13464,8 @@ importers: specifier: ^2.0.0 version: 2.0.0 + scripts/update-kogito-version: {} + scripts/update-version: {} packages: diff --git a/repo/graph.dot b/repo/graph.dot index 513f225e54c..ae1cd64f8f6 100644 --- a/repo/graph.dot +++ b/repo/graph.dot @@ -7,6 +7,7 @@ digraph G { "@kie-tools-scripts/check-junit-report-results" [ color = "black", fontcolor = "black", style = "dashed, rounded" ]; "@kie-tools-scripts/run-script-if" [ color = "blue", fontcolor = "blue", style = "rounded" ]; "@kie-tools-scripts/sparse-checkout" [ color = "black", fontcolor = "black", style = "dashed, rounded" ]; + "@kie-tools-scripts/update-kogito-version" [ color = "black", fontcolor = "black", style = "dashed, rounded" ]; "@kie-tools-scripts/update-version" [ color = "black", fontcolor = "black", style = "dashed, rounded" ]; "@kie-tools-examples/base64png-editor" [ color = "orange", fontcolor = "orange", style = "dashed, rounded" ]; "@kie-tools-core/editor" [ color = "purple", fontcolor = "purple", style = "rounded" ]; @@ -189,6 +190,7 @@ digraph G { "kie-tools-root" -> "@kie-tools-scripts/check-junit-report-results" [ style = "dashed", color = "black" ]; "kie-tools-root" -> "@kie-tools-scripts/run-script-if" [ style = "dashed", color = "black" ]; "kie-tools-root" -> "@kie-tools-scripts/sparse-checkout" [ style = "dashed", color = "black" ]; + "kie-tools-root" -> "@kie-tools-scripts/update-kogito-version" [ style = "dashed", color = "black" ]; "kie-tools-root" -> "@kie-tools-scripts/update-version" [ style = "dashed", color = "black" ]; "@kie-tools-examples/base64png-editor" -> "@kie-tools-core/editor" [ style = "solid", color = "orange" ]; "@kie-tools-examples/base64png-editor-chrome-extension" -> "@kie-tools-core/chrome-extension" [ style = "solid", color = "orange" ]; diff --git a/repo/graph.json b/repo/graph.json index 8b2a7156a20..aee365cf0b3 100644 --- a/repo/graph.json +++ b/repo/graph.json @@ -6,6 +6,7 @@ { "id": "@kie-tools-scripts/check-junit-report-results" }, { "id": "@kie-tools-scripts/run-script-if" }, { "id": "@kie-tools-scripts/sparse-checkout" }, + { "id": "@kie-tools-scripts/update-kogito-version" }, { "id": "@kie-tools-scripts/update-version" }, { "id": "@kie-tools-scripts/build-env" }, { "id": "@kie-tools-examples/base64png-editor" }, @@ -190,6 +191,7 @@ { "source": "kie-tools-root", "target": "@kie-tools-scripts/check-junit-report-results", "weight": 1 }, { "source": "kie-tools-root", "target": "@kie-tools-scripts/run-script-if", "weight": 1 }, { "source": "kie-tools-root", "target": "@kie-tools-scripts/sparse-checkout", "weight": 1 }, + { "source": "kie-tools-root", "target": "@kie-tools-scripts/update-kogito-version", "weight": 1 }, { "source": "kie-tools-root", "target": "@kie-tools-scripts/update-version", "weight": 1 }, { "source": "@kie-tools-scripts/bootstrap", "target": "@kie-tools-scripts/build-env", "weight": 1 }, { "source": "@kie-tools-examples/base64png-editor", "target": "@kie-tools-core/editor", "weight": 1 }, @@ -1383,6 +1385,7 @@ ["@kie-tools-scripts/check-junit-report-results", "scripts/check-junit-report-results"], ["@kie-tools-scripts/run-script-if", "scripts/run-script-if"], ["@kie-tools-scripts/sparse-checkout", "scripts/sparse-checkout"], + ["@kie-tools-scripts/update-kogito-version", "scripts/update-kogito-version"], ["@kie-tools-scripts/update-version", "scripts/update-version"] ] } diff --git a/scripts/update-kogito-version/package.json b/scripts/update-kogito-version/package.json new file mode 100644 index 00000000000..9f9bed85dc5 --- /dev/null +++ b/scripts/update-kogito-version/package.json @@ -0,0 +1,9 @@ +{ + "private": true, + "name": "@kie-tools-scripts/update-kogito-version", + "version": "0.0.0", + "keywords": [], + "bin": { + "kie-tools--update-kogito-version-to": "update_kogito_version.js" + } +} \ No newline at end of file diff --git a/scripts/update-kogito-version/update_kogito_version.js b/scripts/update-kogito-version/update_kogito_version.js new file mode 100755 index 00000000000..a3a462a279a --- /dev/null +++ b/scripts/update-kogito-version/update_kogito_version.js @@ -0,0 +1,99 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +const fs = require("fs"); +const path = require("path"); +const execSync = require("child_process").execSync; + +const newMavenVersion = process.argv[3]; +const newImagesTag = process.argv[5]; +if (!newMavenVersion) { + console.error("Usage 'node update_kogito_version.js --maven [version] --images-tag [tag]'"); + return 1; +} + +if (process.argv[2] !== "--maven" || process.argv[4] !== "--images-tag") { + console.error("Arguments need to be passed in the correct order."); + console.error(`Argv: ${process.argv.join(", ")}`); + console.error("Usage 'node update_kogito_version.js --maven [version] --images-tag [tag]'"); + process.exit(1); +} + +const execOpts = { stdio: "inherit" }; + +try { + console.info("[update-kogito-version] Updating 'packages/root-env/env/index.js'..."); + const rootEnvPath = path.resolve(__dirname, "../../packages/root-env/env/index.js"); + fs.writeFileSync( + rootEnvPath, + fs + .readFileSync(rootEnvPath, "utf-8") + .replace( + /KOGITO_RUNTIME_version:[\s\n]*{[\s\n]*default:[\s\n]*".*"/, + `KOGITO_RUNTIME_version: {\n default: "${newMavenVersion}"` + ) + ); + + console.info("[update-kogito-version] Updating 'serverless-logic-web-tools-base-builder-image/env/index.js'..."); + const serverlessLogicWebToolsBaseBuilderImageEnvPath = path.resolve( + __dirname, + "../../packages/serverless-logic-web-tools-base-builder-image/env/index.js" + ); + fs.writeFileSync( + serverlessLogicWebToolsBaseBuilderImageEnvPath, + fs + .readFileSync(serverlessLogicWebToolsBaseBuilderImageEnvPath, "utf-8") + .replace( + /SERVERLESS_LOGIC_WEB_TOOLS__baseBuilderKogitoImageTag:[\s\n]*{[\s\n]*default:[\s\n]*".*"/, + `SERVERLESS_LOGIC_WEB_TOOLS__baseBuilderKogitoImageTag: {\n default: "${newImagesTag}"` + ) + ); + + console.info( + "[update-kogito-version] Updating 'packages/serverless-logic-web-tools-swf-dev-mode-image/env/index.js'..." + ); + const serverlessLogicWebToolsSwfDevModeImageEnvPath = path.resolve( + __dirname, + "../../packages/serverless-logic-web-tools-swf-dev-mode-image/env/index.js" + ); + fs.writeFileSync( + serverlessLogicWebToolsSwfDevModeImageEnvPath, + fs + .readFileSync(serverlessLogicWebToolsSwfDevModeImageEnvPath, "utf-8") + .replace( + /SERVERLESS_LOGIC_WEB_TOOLS_DEVMODE_IMAGE__kogitoBaseBuilderImageTag:[\s\n]*{[\s\n]*default:[\s\n]*".*"/, + `SERVERLESS_LOGIC_WEB_TOOLS_DEVMODE_IMAGE__kogitoBaseBuilderImageTag: {\n default: "${newImagesTag}"` + ) + ); + + console.info(`[update-kogito-version] Bootstrapping with updated Kogito version...`); + execSync(`pnpm bootstrap`, execOpts); + + console.info(`[update-kogito-version] Formatting files...`); + execSync(`pnpm pretty-quick`, execOpts); + + console.info( + `[update-kogito-version] Updated Kogito to '${newMavenVersion}' (Maven) and '${newImagesTag}' (Images tag).` + ); + console.info(`[update-kogito-version] Done.`); +} catch (error) { + console.error(error); + console.error(""); + console.error(`[update-kogito-version] Error updating Kogito version. There might be undesired unstaged changes.`); +} From 0f7af5972dd0db475f9fd3cb8fe714361a30a2a1 Mon Sep 17 00:00:00 2001 From: Yeser Amer Date: Wed, 15 May 2024 14:28:21 +0200 Subject: [PATCH 13/90] kie-issues#1163: incubator-kie-tools missing header files (Part IV) (#2320) --- docs/kie.svg | 39 +- .../kie_icon_rgb_fullcolor_default.svg | 36 +- .../META-INF/processSVG/approvals.svg | 184 +- .../kie_icon_rgb_fullcolor_default.svg | 36 +- .../kie_icon_rgb_fullcolor_default.svg | 36 +- .../dev-webapp/sample.svg | 249 +- .../static/images/card-icon-default.svg | 20 +- .../static/images/card-icon-scorecard.svg | 36 +- .../static/favicon.svg | 36 +- .../resources/META-INF/ErraiApp.properties | 19 + .../resources/META-INF/ErraiApp.properties | 19 + .../resources/META-INF/ErraiApp.properties | 19 + .../resources/META-INF/ErraiApp.properties | 19 + .../resources/META-INF/ErraiApp.properties | 19 + .../resources/META-INF/ErraiApp.properties | 19 + .../resources/META-INF/ErraiApp.properties | 19 + .../resources/META-INF/ErraiApp.properties | 19 + .../resources/META-INF/ErraiApp.properties | 19 + .../resources/META-INF/ErraiApp.properties | 19 + .../resources/META-INF/ErraiApp.properties | 19 + .../resources/META-INF/ErraiApp.properties | 19 + .../resources/META-INF/ErraiApp.properties | 19 + .../images/BusinessModeler_Logo_38x38.svg | 63 +- .../images/app_logo_rgb_fullcolor_reverse.svg | 62 +- .../images/app_logo_rgb_fullcolor_reverse.svg | 62 +- .../static/favicon.svg | 36 +- .../images/app_logo_rgb_fullcolor_reverse.svg | 62 +- .../showcase/static/feel_kogito_logo.svg | 108 +- packages/online-editor/static/favicon.svg | 36 +- .../images/app_logo_rgb_fullcolor_default.svg | 62 +- .../images/app_logo_rgb_fullcolor_reverse.svg | 62 +- .../static/images/bitbucket-logo.svg | 34 +- .../static/images/gitlab-logo.svg | 32 +- .../static/images/kubernetes-logo.svg | 134 +- .../static/images/openshift-logo.svg | 24 +- .../static/images/vscode-alt.svg | 128 +- .../online-editor/static/images/vscode.svg | 96 +- .../static/images/card-icon-default.svg | 20 +- .../static/images/card-icon-scorecard.svg | 36 +- .../src/common/static/avatar.svg | 76 +- .../src/static/avatar.svg | 76 +- .../dev/server/static/flightBooking.svg | 133 +- .../dev/server/static/hotelBooking.svg | 133 +- .../dev/server/static/travels.svg | 756 +++- .../src/static/managementConsoleLogo.svg | 175 +- .../server/static/flightBooking.svg | 133 +- .../server/static/hotelBooking.svg | 133 +- .../server/static/travels.svg | 756 +++- .../src/static/managementConsoleLogo.svg | 175 +- .../src/static/taskConsoleLogo.svg | 64 +- .../static/favicon.svg | 36 +- .../kie_horizontal_rgb_fullcolor_default.svg | 39 +- .../kie_horizontal_rgb_fullcolor_reverse.svg | 39 +- .../static/images/vscode-alt.svg | 128 +- .../static/images/vscode.svg | 96 +- .../server/static/flightBooking.svg | 133 +- .../server/static/hotelBooking.svg | 133 +- .../server/static/travels.svg | 756 +++- .../src/static/managementConsoleLogo.svg | 175 +- .../src/test/resources/images/svg.svg | 32 +- .../resources/images/icons/transition.svg | 49 +- .../fonts/glyphicons-halflings-regular.svg | 592 +-- .../fonts/OpenSans-BoldItalic-webfont.svg | 3676 ++++++++-------- .../fonts/OpenSans-ExtraBold-webfont.svg | 3676 ++++++++-------- .../OpenSans-ExtraBoldItalic-webfont.svg | 3676 ++++++++-------- .../webapp/fonts/OpenSans-Italic-webfont.svg | 3676 ++++++++-------- .../webapp/fonts/OpenSans-Light-webfont.svg | 3678 ++++++++-------- .../fonts/OpenSans-LightItalic-webfont.svg | 3686 +++++++++-------- .../fonts/OpenSans-SemiboldItalic-webfont.svg | 3676 ++++++++-------- .../webapp/fonts/PatternFlyIcons-webfont.svg | 202 +- .../main/webapp/fonts/fontawesome-webfont.svg | 1386 ++++--- .../fonts/glyphicons-halflings-regular.svg | 592 +-- .../fonts/glyphicons-halflings-regular.svg | 592 +-- .../static/favicon.svg | 36 +- packages/storybook-base/static/logo.svg | 40 +- .../resources/META-INF/ErraiApp.properties | 19 + .../resources/META-INF/ErraiApp.properties | 19 + .../resources/META-INF/ErraiApp.properties | 19 + .../resources/META-INF/ErraiApp.properties | 19 + .../resources/images/logos/drools-logo.svg | 81 +- .../business-knowledge-model-palette.svg | 33 +- .../shapes/business-knowledge-model.svg | 26 +- .../images/shapes/decision-palette.svg | 33 +- .../shapes/decision-service-palette.svg | 33 +- .../images/shapes/decision-service.svg | 26 +- .../resources/images/shapes/decision.svg | 26 +- .../resources/images/shapes/diagram.svg | 152 +- .../images/shapes/input-data-palette.svg | 33 +- .../resources/images/shapes/input-data.svg | 25 +- .../shapes/knowledge-source-palette.svg | 33 +- .../images/shapes/knowledge-source.svg | 27 +- .../images/shapes/text-annotation-palette.svg | 33 +- .../images/shapes/text-annotation.svg | 36 +- .../i18n/KogitoClientConstants_es.properties | 18 + .../i18n/KogitoClientConstants_fr.properties | 18 + .../i18n/KogitoClientConstants_ja.properties | 18 + .../src/test/resources/images/svg.svg | 32 +- .../common/stunner/svg/gen/cancel.svg | 30 +- .../svg/gen/svg-elements-test-errors.svg | 61 +- .../stunner/svg/gen/svg-elements-test.svg | 44 +- .../resources/images/categories/activity.svg | 50 +- .../resources/images/categories/artifacts.svg | 58 +- .../resources/images/categories/container.svg | 50 +- .../images/categories/end-events.svg | 50 +- .../resources/images/categories/event.svg | 163 +- .../resources/images/categories/gateway.svg | 50 +- .../images/categories/intermediate-events.svg | 50 +- .../resources/images/categories/library.svg | 287 +- .../resources/images/categories/sequence.svg | 47 +- .../images/categories/service-tasks.svg | 50 +- .../images/categories/start-events.svg | 52 +- .../images/categories/sub-process.svg | 52 +- .../images/icons/connectors/sequence.svg | 169 +- .../images/icons/event/event-end-error.svg | 174 +- .../images/icons/event/event-end-message.svg | 170 +- .../images/icons/event/event-end-none.svg | 50 +- .../images/icons/event/event-end-signal.svg | 166 +- .../icons/event/event-end-terminate.svg | 43 +- .../icons/event/event-intermediate-error.svg | 172 +- .../event-intermediate-link-throwing.svg | 49 +- .../icons/event/event-intermediate-link.svg | 49 +- .../event-intermediate-message-throwing.svg | 172 +- .../event/event-intermediate-message.svg | 170 +- .../event-intermediate-signal-throwing.svg | 174 +- .../icons/event/event-intermediate-signal.svg | 166 +- .../icons/event/event-intermediate-timer.svg | 166 +- .../images/icons/event/event-start-error.svg | 172 +- .../icons/event/event-start-message.svg | 171 +- .../images/icons/event/event-start-none.svg | 50 +- .../images/icons/event/event-start-signal.svg | 166 +- .../images/icons/event/event-start-timer.svg | 166 +- .../images/icons/gateway/complex.svg | 168 +- .../resources/images/icons/gateway/event.svg | 180 +- .../images/icons/gateway/exclusive.svg | 187 +- .../images/icons/gateway/inclusive.svg | 170 +- .../images/icons/gateway/parallel-event.svg | 171 +- .../icons/gateway/parallel-multiple.svg | 57 +- .../resources/images/icons/lane_icon.svg | 181 +- .../icons/subprocess/subprocess-adhoc.svg | 169 +- .../subprocess/subprocess-embedded-icon.svg | 48 +- .../icons/subprocess/subprocess-embedded.svg | 165 +- .../icons/subprocess/subprocess-event.svg | 54 +- .../subprocess-multiple-instance.svg | 53 +- .../icons/subprocess/subprocess-reusable.svg | 59 +- .../images/icons/subprocess/subprocess.svg | 91 +- .../images/icons/task/task-business-rule.svg | 49 +- .../icons/task/task-generic-service.svg | 59 +- .../images/icons/task/task-manual.svg | 186 +- .../images/icons/task/task-script.svg | 203 +- .../images/icons/task/task-service.svg | 172 +- .../resources/images/icons/task/task-user.svg | 43 +- .../resources/images/icons/task/task.svg | 57 +- .../icons/textannotation/data-object.svg | 91 +- .../icons/textannotation/text-annotation.svg | 33 +- .../client/resources/images/misc/circle.svg | 153 +- .../resources/images/shapes/data-object.svg | 47 +- .../resources/images/shapes/event-all.svg | 226 +- .../resources/images/shapes/gateway.svg | 122 +- .../client/resources/images/shapes/lane.svg | 44 +- .../resources/images/shapes/rectangle.svg | 36 +- .../images/shapes/subprocess-adhoc.svg | 88 +- .../images/shapes/subprocess-event.svg | 64 +- .../shapes/subprocess-multiple-instance.svg | 56 +- .../resources/images/shapes/subprocess.svg | 112 +- .../client/resources/images/shapes/task.svg | 136 +- .../images/shapes/text-annotation.svg | 36 +- .../resources/META-INF/ErraiApp.properties | 19 + 167 files changed, 24432 insertions(+), 19207 deletions(-) diff --git a/docs/kie.svg b/docs/kie.svg index dba5a247bd4..4259d92dc97 100644 --- a/docs/kie.svg +++ b/docs/kie.svg @@ -1 +1,38 @@ -kie_horizontal_rgb_fullcolor_default \ No newline at end of file + + + + + + + kie_horizontal_rgb_fullcolor_default + + + + + + + + + + + + diff --git a/examples/base64png-editor-chrome-extension/static/resources/kie_icon_rgb_fullcolor_default.svg b/examples/base64png-editor-chrome-extension/static/resources/kie_icon_rgb_fullcolor_default.svg index 4cef559984a..e0c8c45f283 100644 --- a/examples/base64png-editor-chrome-extension/static/resources/kie_icon_rgb_fullcolor_default.svg +++ b/examples/base64png-editor-chrome-extension/static/resources/kie_icon_rgb_fullcolor_default.svg @@ -1 +1,35 @@ -kie_icon_rgb_fullcolor_default \ No newline at end of file + + + + + + + kie_icon_rgb_fullcolor_default + + + + + + + + + diff --git a/examples/drools-process-usertasks-quarkus-example/src/main/resources/META-INF/processSVG/approvals.svg b/examples/drools-process-usertasks-quarkus-example/src/main/resources/META-INF/processSVG/approvals.svg index b5ce19ebbca..9284cb85b2d 100644 --- a/examples/drools-process-usertasks-quarkus-example/src/main/resources/META-INF/processSVG/approvals.svg +++ b/examples/drools-process-usertasks-quarkus-example/src/main/resources/META-INF/processSVG/approvals.svg @@ -1 +1,183 @@ -EndStartProcessSecond Line Approval First Line Approval \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + End + + + + + + + + + + + + + + + + + + + + + + + StartProcess + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Second Line + + + Approval + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + First Line + + + Approval + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/chrome-extension-pack-kogito-kie-editors/static/resources/kie_icon_rgb_fullcolor_default.svg b/packages/chrome-extension-pack-kogito-kie-editors/static/resources/kie_icon_rgb_fullcolor_default.svg index 4cef559984a..e0c8c45f283 100644 --- a/packages/chrome-extension-pack-kogito-kie-editors/static/resources/kie_icon_rgb_fullcolor_default.svg +++ b/packages/chrome-extension-pack-kogito-kie-editors/static/resources/kie_icon_rgb_fullcolor_default.svg @@ -1 +1,35 @@ -kie_icon_rgb_fullcolor_default \ No newline at end of file + + + + + + + kie_icon_rgb_fullcolor_default + + + + + + + + + diff --git a/packages/chrome-extension-serverless-workflow-editor/static/resources/kie_icon_rgb_fullcolor_default.svg b/packages/chrome-extension-serverless-workflow-editor/static/resources/kie_icon_rgb_fullcolor_default.svg index 4cef559984a..e0c8c45f283 100644 --- a/packages/chrome-extension-serverless-workflow-editor/static/resources/kie_icon_rgb_fullcolor_default.svg +++ b/packages/chrome-extension-serverless-workflow-editor/static/resources/kie_icon_rgb_fullcolor_default.svg @@ -1 +1,35 @@ -kie_icon_rgb_fullcolor_default \ No newline at end of file + + + + + + + kie_icon_rgb_fullcolor_default + + + + + + + + + diff --git a/packages/dashbuilder-component-svg-heatmap/dev-webapp/sample.svg b/packages/dashbuilder-component-svg-heatmap/dev-webapp/sample.svg index 1c95a8803d7..1de25948695 100644 --- a/packages/dashbuilder-component-svg-heatmap/dev-webapp/sample.svg +++ b/packages/dashbuilder-component-svg-heatmap/dev-webapp/sample.svg @@ -1 +1,248 @@ -
{{ $.[?(@.language == 'English')] }}
{{ $.[?(@.language == 'Spanish')] }}
default
ChooseOnLanguage
type = Switch State
Condition type = data-based
GreetInEnglish
type = Inject State
GreetInSpanish
type = Inject State
GreetPerson
type = Operation State
Action mode = sequential
Num. of actions = 1
\ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+
+
+
+ + + + + +
+ + {{ $.[?(@.language == 'English')] }} + +
+
+
+
+ + + + + +
+ + {{ $.[?(@.language == 'Spanish')] }} + +
+
+
+
+ + + + + +
+ + default + +
+
+
+
+ + + + + +
+ + +
+
+
+
+ + + + + +
+ + +
+
+
+
+ + + + + +
+ + +
+
+
+
+
+ + + + + + + + +
+ + ChooseOnLanguage + +
+
+ +
+ + type = Switch State +
+ Condition type = data-based +
+
+
+
+
+ + + + + + + + + + + +
+ + GreetInEnglish + +
+
+ +
+ + type = Inject State + +
+
+
+
+ + + + + + + +
+ + GreetInSpanish + +
+
+ +
+ + type = Inject State + +
+
+
+
+ + + + + + + +
+ + GreetPerson + +
+
+ +
+ + type = Operation State +
+ Action mode = sequential +
+ Num. of actions = 1 +
+
+
+
+
+ + + + + + +
+
+
+
+
diff --git a/packages/dashbuilder-editor/static/images/card-icon-default.svg b/packages/dashbuilder-editor/static/images/card-icon-default.svg index d1bb1b88a99..72c1488b02c 100644 --- a/packages/dashbuilder-editor/static/images/card-icon-default.svg +++ b/packages/dashbuilder-editor/static/images/card-icon-default.svg @@ -1,3 +1,21 @@ - + + diff --git a/packages/dashbuilder-editor/static/images/card-icon-scorecard.svg b/packages/dashbuilder-editor/static/images/card-icon-scorecard.svg index f94345584e2..d5284ba1abc 100644 --- a/packages/dashbuilder-editor/static/images/card-icon-scorecard.svg +++ b/packages/dashbuilder-editor/static/images/card-icon-scorecard.svg @@ -1,11 +1,29 @@ - - - - - - - - - + + + + + + + + + + diff --git a/packages/dashbuilder-viewer-deployment-webapp/static/favicon.svg b/packages/dashbuilder-viewer-deployment-webapp/static/favicon.svg index 4cef559984a..e0c8c45f283 100644 --- a/packages/dashbuilder-viewer-deployment-webapp/static/favicon.svg +++ b/packages/dashbuilder-viewer-deployment-webapp/static/favicon.svg @@ -1 +1,35 @@ -kie_icon_rgb_fullcolor_default \ No newline at end of file + + + + + + + kie_icon_rgb_fullcolor_default + + + + + + + + + diff --git a/packages/dashbuilder/dashbuilder-client/dashbuilder-common-client/src/main/resources/META-INF/ErraiApp.properties b/packages/dashbuilder/dashbuilder-client/dashbuilder-common-client/src/main/resources/META-INF/ErraiApp.properties index 401489d0233..fa687aab54a 100644 --- a/packages/dashbuilder/dashbuilder-client/dashbuilder-common-client/src/main/resources/META-INF/ErraiApp.properties +++ b/packages/dashbuilder/dashbuilder-client/dashbuilder-common-client/src/main/resources/META-INF/ErraiApp.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + # # ErraiApp.properties # diff --git a/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/META-INF/ErraiApp.properties b/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/META-INF/ErraiApp.properties index 7765a670d6e..c9de3c1625f 100644 --- a/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/META-INF/ErraiApp.properties +++ b/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/resources/META-INF/ErraiApp.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + # # ErraiApp.properties # diff --git a/packages/dashbuilder/dashbuilder-client/dashbuilder-displayer-client/src/main/resources/META-INF/ErraiApp.properties b/packages/dashbuilder/dashbuilder-client/dashbuilder-displayer-client/src/main/resources/META-INF/ErraiApp.properties index 7765a670d6e..c9de3c1625f 100644 --- a/packages/dashbuilder/dashbuilder-client/dashbuilder-displayer-client/src/main/resources/META-INF/ErraiApp.properties +++ b/packages/dashbuilder/dashbuilder-client/dashbuilder-displayer-client/src/main/resources/META-INF/ErraiApp.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + # # ErraiApp.properties # diff --git a/packages/dashbuilder/dashbuilder-client/dashbuilder-displayer-editor/src/main/resources/META-INF/ErraiApp.properties b/packages/dashbuilder/dashbuilder-client/dashbuilder-displayer-editor/src/main/resources/META-INF/ErraiApp.properties index 7765a670d6e..c9de3c1625f 100644 --- a/packages/dashbuilder/dashbuilder-client/dashbuilder-displayer-editor/src/main/resources/META-INF/ErraiApp.properties +++ b/packages/dashbuilder/dashbuilder-client/dashbuilder-displayer-editor/src/main/resources/META-INF/ErraiApp.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + # # ErraiApp.properties # diff --git a/packages/dashbuilder/dashbuilder-client/dashbuilder-navigation-client/src/main/resources/META-INF/ErraiApp.properties b/packages/dashbuilder/dashbuilder-client/dashbuilder-navigation-client/src/main/resources/META-INF/ErraiApp.properties index 7765a670d6e..c9de3c1625f 100644 --- a/packages/dashbuilder/dashbuilder-client/dashbuilder-navigation-client/src/main/resources/META-INF/ErraiApp.properties +++ b/packages/dashbuilder/dashbuilder-client/dashbuilder-navigation-client/src/main/resources/META-INF/ErraiApp.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + # # ErraiApp.properties # diff --git a/packages/dashbuilder/dashbuilder-client/dashbuilder-renderers/dashbuilder-renderer-c3/src/main/resources/META-INF/ErraiApp.properties b/packages/dashbuilder/dashbuilder-client/dashbuilder-renderers/dashbuilder-renderer-c3/src/main/resources/META-INF/ErraiApp.properties index 7765a670d6e..c9de3c1625f 100644 --- a/packages/dashbuilder/dashbuilder-client/dashbuilder-renderers/dashbuilder-renderer-c3/src/main/resources/META-INF/ErraiApp.properties +++ b/packages/dashbuilder/dashbuilder-client/dashbuilder-renderers/dashbuilder-renderer-c3/src/main/resources/META-INF/ErraiApp.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + # # ErraiApp.properties # diff --git a/packages/dashbuilder/dashbuilder-client/dashbuilder-renderers/dashbuilder-renderer-default/src/main/resources/META-INF/ErraiApp.properties b/packages/dashbuilder/dashbuilder-client/dashbuilder-renderers/dashbuilder-renderer-default/src/main/resources/META-INF/ErraiApp.properties index 7765a670d6e..c9de3c1625f 100644 --- a/packages/dashbuilder/dashbuilder-client/dashbuilder-renderers/dashbuilder-renderer-default/src/main/resources/META-INF/ErraiApp.properties +++ b/packages/dashbuilder/dashbuilder-client/dashbuilder-renderers/dashbuilder-renderer-default/src/main/resources/META-INF/ErraiApp.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + # # ErraiApp.properties # diff --git a/packages/dashbuilder/dashbuilder-client/dashbuilder-renderers/dashbuilder-renderer-echarts/src/main/resources/META-INF/ErraiApp.properties b/packages/dashbuilder/dashbuilder-client/dashbuilder-renderers/dashbuilder-renderer-echarts/src/main/resources/META-INF/ErraiApp.properties index 7765a670d6e..c9de3c1625f 100644 --- a/packages/dashbuilder/dashbuilder-client/dashbuilder-renderers/dashbuilder-renderer-echarts/src/main/resources/META-INF/ErraiApp.properties +++ b/packages/dashbuilder/dashbuilder-client/dashbuilder-renderers/dashbuilder-renderer-echarts/src/main/resources/META-INF/ErraiApp.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + # # ErraiApp.properties # diff --git a/packages/dashbuilder/dashbuilder-shared/dashbuilder-displayer-api/src/main/resources/META-INF/ErraiApp.properties b/packages/dashbuilder/dashbuilder-shared/dashbuilder-displayer-api/src/main/resources/META-INF/ErraiApp.properties index 7765a670d6e..c9de3c1625f 100644 --- a/packages/dashbuilder/dashbuilder-shared/dashbuilder-displayer-api/src/main/resources/META-INF/ErraiApp.properties +++ b/packages/dashbuilder/dashbuilder-shared/dashbuilder-displayer-api/src/main/resources/META-INF/ErraiApp.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + # # ErraiApp.properties # diff --git a/packages/dashbuilder/dashbuilder-shared/dashbuilder-navigation-api/src/main/resources/META-INF/ErraiApp.properties b/packages/dashbuilder/dashbuilder-shared/dashbuilder-navigation-api/src/main/resources/META-INF/ErraiApp.properties index 140bd5616d1..92b3b405bbf 100644 --- a/packages/dashbuilder/dashbuilder-shared/dashbuilder-navigation-api/src/main/resources/META-INF/ErraiApp.properties +++ b/packages/dashbuilder/dashbuilder-shared/dashbuilder-navigation-api/src/main/resources/META-INF/ErraiApp.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + # # ErraiApp.properties # diff --git a/packages/dashbuilder/dashbuilder-shared/dashbuilder-services-api/src/main/resources/META-INF/ErraiApp.properties b/packages/dashbuilder/dashbuilder-shared/dashbuilder-services-api/src/main/resources/META-INF/ErraiApp.properties index 7765a670d6e..c9de3c1625f 100644 --- a/packages/dashbuilder/dashbuilder-shared/dashbuilder-services-api/src/main/resources/META-INF/ErraiApp.properties +++ b/packages/dashbuilder/dashbuilder-shared/dashbuilder-services-api/src/main/resources/META-INF/ErraiApp.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + # # ErraiApp.properties # diff --git a/packages/dashbuilder/kie-soup-dataset/kie-soup-dataset-shared/src/main/resources/META-INF/ErraiApp.properties b/packages/dashbuilder/kie-soup-dataset/kie-soup-dataset-shared/src/main/resources/META-INF/ErraiApp.properties index 7765a670d6e..c9de3c1625f 100644 --- a/packages/dashbuilder/kie-soup-dataset/kie-soup-dataset-shared/src/main/resources/META-INF/ErraiApp.properties +++ b/packages/dashbuilder/kie-soup-dataset/kie-soup-dataset-shared/src/main/resources/META-INF/ErraiApp.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + # # ErraiApp.properties # diff --git a/packages/dashbuilder/kie-soup-dataset/kie-soup-json/src/main/resources/META-INF/ErraiApp.properties b/packages/dashbuilder/kie-soup-dataset/kie-soup-json/src/main/resources/META-INF/ErraiApp.properties index 7765a670d6e..c9de3c1625f 100644 --- a/packages/dashbuilder/kie-soup-dataset/kie-soup-json/src/main/resources/META-INF/ErraiApp.properties +++ b/packages/dashbuilder/kie-soup-dataset/kie-soup-json/src/main/resources/META-INF/ErraiApp.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + # # ErraiApp.properties # diff --git a/packages/dev-deployment-dmn-form-webapp/dev-webapp/quarkus-app/src/main/resources/META-INF/resources/images/BusinessModeler_Logo_38x38.svg b/packages/dev-deployment-dmn-form-webapp/dev-webapp/quarkus-app/src/main/resources/META-INF/resources/images/BusinessModeler_Logo_38x38.svg index a6368c7f698..0514647292f 100644 --- a/packages/dev-deployment-dmn-form-webapp/dev-webapp/quarkus-app/src/main/resources/META-INF/resources/images/BusinessModeler_Logo_38x38.svg +++ b/packages/dev-deployment-dmn-form-webapp/dev-webapp/quarkus-app/src/main/resources/META-INF/resources/images/BusinessModeler_Logo_38x38.svg @@ -1,25 +1,50 @@ - - - -Automation -Created with Sketch. -Automation -Created with Sketch. - + + + + + + Automation + + + Created with Sketch. + + + Automation + + + Created with Sketch. + - - - - + + + + + + - diff --git a/packages/dev-deployment-dmn-form-webapp/dev-webapp/quarkus-app/src/main/resources/META-INF/resources/images/app_logo_rgb_fullcolor_reverse.svg b/packages/dev-deployment-dmn-form-webapp/dev-webapp/quarkus-app/src/main/resources/META-INF/resources/images/app_logo_rgb_fullcolor_reverse.svg index 84ad27ea0d7..2cd885c3761 100644 --- a/packages/dev-deployment-dmn-form-webapp/dev-webapp/quarkus-app/src/main/resources/META-INF/resources/images/app_logo_rgb_fullcolor_reverse.svg +++ b/packages/dev-deployment-dmn-form-webapp/dev-webapp/quarkus-app/src/main/resources/META-INF/resources/images/app_logo_rgb_fullcolor_reverse.svg @@ -1,23 +1,43 @@ - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/dev-deployment-dmn-form-webapp/dev-webapp/webapp/static/images/app_logo_rgb_fullcolor_reverse.svg b/packages/dev-deployment-dmn-form-webapp/dev-webapp/webapp/static/images/app_logo_rgb_fullcolor_reverse.svg index 84ad27ea0d7..2cd885c3761 100644 --- a/packages/dev-deployment-dmn-form-webapp/dev-webapp/webapp/static/images/app_logo_rgb_fullcolor_reverse.svg +++ b/packages/dev-deployment-dmn-form-webapp/dev-webapp/webapp/static/images/app_logo_rgb_fullcolor_reverse.svg @@ -1,23 +1,43 @@ - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/dev-deployment-dmn-form-webapp/static/favicon.svg b/packages/dev-deployment-dmn-form-webapp/static/favicon.svg index 4cef559984a..e0c8c45f283 100644 --- a/packages/dev-deployment-dmn-form-webapp/static/favicon.svg +++ b/packages/dev-deployment-dmn-form-webapp/static/favicon.svg @@ -1 +1,35 @@ -kie_icon_rgb_fullcolor_default \ No newline at end of file + + + + + + + kie_icon_rgb_fullcolor_default + + + + + + + + + diff --git a/packages/dev-deployment-dmn-form-webapp/static/images/app_logo_rgb_fullcolor_reverse.svg b/packages/dev-deployment-dmn-form-webapp/static/images/app_logo_rgb_fullcolor_reverse.svg index 84ad27ea0d7..2cd885c3761 100644 --- a/packages/dev-deployment-dmn-form-webapp/static/images/app_logo_rgb_fullcolor_reverse.svg +++ b/packages/dev-deployment-dmn-form-webapp/static/images/app_logo_rgb_fullcolor_reverse.svg @@ -1,23 +1,43 @@ - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/feel-input-component/showcase/static/feel_kogito_logo.svg b/packages/feel-input-component/showcase/static/feel_kogito_logo.svg index 4c39690f944..4a1dadcac5e 100644 --- a/packages/feel-input-component/showcase/static/feel_kogito_logo.svg +++ b/packages/feel-input-component/showcase/static/feel_kogito_logo.svg @@ -1,45 +1,71 @@ - - - F - E - E - L - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + F + + + E + + + E + + + L + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/online-editor/static/favicon.svg b/packages/online-editor/static/favicon.svg index 4cef559984a..e0c8c45f283 100644 --- a/packages/online-editor/static/favicon.svg +++ b/packages/online-editor/static/favicon.svg @@ -1 +1,35 @@ -kie_icon_rgb_fullcolor_default \ No newline at end of file + + + + + + + kie_icon_rgb_fullcolor_default + + + + + + + + + diff --git a/packages/online-editor/static/images/app_logo_rgb_fullcolor_default.svg b/packages/online-editor/static/images/app_logo_rgb_fullcolor_default.svg index 0d0e82dc10c..28ad7d598d5 100644 --- a/packages/online-editor/static/images/app_logo_rgb_fullcolor_default.svg +++ b/packages/online-editor/static/images/app_logo_rgb_fullcolor_default.svg @@ -1,23 +1,43 @@ - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/online-editor/static/images/app_logo_rgb_fullcolor_reverse.svg b/packages/online-editor/static/images/app_logo_rgb_fullcolor_reverse.svg index 84ad27ea0d7..2cd885c3761 100644 --- a/packages/online-editor/static/images/app_logo_rgb_fullcolor_reverse.svg +++ b/packages/online-editor/static/images/app_logo_rgb_fullcolor_reverse.svg @@ -1,23 +1,43 @@ - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/online-editor/static/images/bitbucket-logo.svg b/packages/online-editor/static/images/bitbucket-logo.svg index 76d2659874a..028fba7c95d 100644 --- a/packages/online-editor/static/images/bitbucket-logo.svg +++ b/packages/online-editor/static/images/bitbucket-logo.svg @@ -1,10 +1,28 @@ - - - - - - - - + + + + + + + + + diff --git a/packages/online-editor/static/images/gitlab-logo.svg b/packages/online-editor/static/images/gitlab-logo.svg index b57f282b945..6ab4c4632f6 100644 --- a/packages/online-editor/static/images/gitlab-logo.svg +++ b/packages/online-editor/static/images/gitlab-logo.svg @@ -1 +1,31 @@ - \ No newline at end of file + + + + + + + diff --git a/packages/online-editor/static/images/kubernetes-logo.svg b/packages/online-editor/static/images/kubernetes-logo.svg index 9a61c190a09..0b086f0d4de 100644 --- a/packages/online-editor/static/images/kubernetes-logo.svg +++ b/packages/online-editor/static/images/kubernetes-logo.svg @@ -1,91 +1,49 @@ - - - Kubernetes logo with no border - - - - - - image/svg+xml - - Kubernetes logo with no border - "kubectl" is pronounced "kyoob kuttel" - - - - - - - - - + + + + Kubernetes logo with no border + + + + + + + + image/svg+xml + + + + Kubernetes logo with no border + + + "kubectl" is pronounced "kyoob kuttel" + + + + + + + + + + diff --git a/packages/online-editor/static/images/openshift-logo.svg b/packages/online-editor/static/images/openshift-logo.svg index 237de0ed0f5..886aeab1eac 100644 --- a/packages/online-editor/static/images/openshift-logo.svg +++ b/packages/online-editor/static/images/openshift-logo.svg @@ -1 +1,23 @@ - \ No newline at end of file + + + + + + diff --git a/packages/online-editor/static/images/vscode-alt.svg b/packages/online-editor/static/images/vscode-alt.svg index 66699157dde..064ec4ec7a4 100644 --- a/packages/online-editor/static/images/vscode-alt.svg +++ b/packages/online-editor/static/images/vscode-alt.svg @@ -1,57 +1,75 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/online-editor/static/images/vscode.svg b/packages/online-editor/static/images/vscode.svg index c453e633f34..e76df3697f8 100644 --- a/packages/online-editor/static/images/vscode.svg +++ b/packages/online-editor/static/images/vscode.svg @@ -1,41 +1,59 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/pmml-editor/static/images/card-icon-default.svg b/packages/pmml-editor/static/images/card-icon-default.svg index d1bb1b88a99..8baffaad335 100644 --- a/packages/pmml-editor/static/images/card-icon-default.svg +++ b/packages/pmml-editor/static/images/card-icon-default.svg @@ -1,3 +1,21 @@ - + + diff --git a/packages/pmml-editor/static/images/card-icon-scorecard.svg b/packages/pmml-editor/static/images/card-icon-scorecard.svg index f94345584e2..d5284ba1abc 100644 --- a/packages/pmml-editor/static/images/card-icon-scorecard.svg +++ b/packages/pmml-editor/static/images/card-icon-scorecard.svg @@ -1,11 +1,29 @@ - - - - - - - - - + + + + + + + + + + diff --git a/packages/runtime-tools-components/src/common/static/avatar.svg b/packages/runtime-tools-components/src/common/static/avatar.svg index 11c80b85ff6..56843d6861b 100644 --- a/packages/runtime-tools-components/src/common/static/avatar.svg +++ b/packages/runtime-tools-components/src/common/static/avatar.svg @@ -1,33 +1,51 @@ - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/runtime-tools-components/src/static/avatar.svg b/packages/runtime-tools-components/src/static/avatar.svg index 11c80b85ff6..56843d6861b 100644 --- a/packages/runtime-tools-components/src/static/avatar.svg +++ b/packages/runtime-tools-components/src/static/avatar.svg @@ -1,33 +1,51 @@ - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/runtime-tools-management-console-webapp/dev/server/static/flightBooking.svg b/packages/runtime-tools-management-console-webapp/dev/server/static/flightBooking.svg index adb9ad15e8a..ae6cef900a4 100644 --- a/packages/runtime-tools-management-console-webapp/dev/server/static/flightBooking.svg +++ b/packages/runtime-tools-management-console-webapp/dev/server/static/flightBooking.svg @@ -1 +1,132 @@ -Flight BookedBook flight StartProcess \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Flight Booked + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Book + + + flight + + + + + + + + + + + + + + + + + + + + + + StartProcess + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/runtime-tools-management-console-webapp/dev/server/static/hotelBooking.svg b/packages/runtime-tools-management-console-webapp/dev/server/static/hotelBooking.svg index 358a1152133..3ab9c43fee8 100644 --- a/packages/runtime-tools-management-console-webapp/dev/server/static/hotelBooking.svg +++ b/packages/runtime-tools-management-console-webapp/dev/server/static/hotelBooking.svg @@ -1 +1,132 @@ -Hotel BookedBook hotel StartProcess \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Hotel Booked + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Book + + + hotel + + + + + + + + + + + + + + + + + + + + + + StartProcess + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/runtime-tools-management-console-webapp/dev/server/static/travels.svg b/packages/runtime-tools-management-console-webapp/dev/server/static/travels.svg index ee4bda93f71..4c307aff606 100644 --- a/packages/runtime-tools-management-console-webapp/dev/server/static/travels.svg +++ b/packages/runtime-tools-management-console-webapp/dev/server/static/travels.svg @@ -1 +1,755 @@ -Book HotelStartProcessis visa requiredwait for visa decisionTravel ConfirmedVisa RejectedBook Flight Email rejection notice Confirm travel Apply for visa Visa checkvisasapprovedvisasrejectedBookSend visa applicationno need for visa visa required \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Book Hotel + + + + + + + + + + + + + + + + + + + + + + StartProcess + + + + + + + + + + + + + + + + + + + + + + + + + + + + + is visa required + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + wait for visa decision + + + + + + + + + + + + + + + + + + + + + + Travel Confirmed + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Visa Rejected + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Book Flight + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Email + + + rejection + + + notice + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Confirm + + + travel + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Apply + + + for visa + + + + + + + + + + + + + + + + + + + + + + + Visa + + + check + + + + + + + + + + + + + + + + + + + + + + + + + + + + + visasapproved + + + + + + + + + + + + + + + + + + + + + + + + + + + + + visasrejected + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Book + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Send visa application + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + no need for visa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + visa + + + required + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/runtime-tools-management-console-webapp/src/static/managementConsoleLogo.svg b/packages/runtime-tools-management-console-webapp/src/static/managementConsoleLogo.svg index e6ff4c9af8c..3cbdc97faad 100644 --- a/packages/runtime-tools-management-console-webapp/src/static/managementConsoleLogo.svg +++ b/packages/runtime-tools-management-console-webapp/src/static/managementConsoleLogo.svg @@ -1,123 +1,142 @@ - - - -Management_Console_Logo2 - - + + + + Management_Console_Logo2 + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - - + + - - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - - - - + + + + + + + + + + - + - + c0.9-0.2,1.8-0.3,2.7-0.4c0-0.9,0.3-1.7,0.9-2.3c-0.2,0.7-0.2,1.5,0,2.2c1.2-0.1,2.3-0.1,3.5,0L25.5,40.5z" /> + diff --git a/packages/runtime-tools-process-dev-ui-webapp/server/static/flightBooking.svg b/packages/runtime-tools-process-dev-ui-webapp/server/static/flightBooking.svg index adb9ad15e8a..ae6cef900a4 100644 --- a/packages/runtime-tools-process-dev-ui-webapp/server/static/flightBooking.svg +++ b/packages/runtime-tools-process-dev-ui-webapp/server/static/flightBooking.svg @@ -1 +1,132 @@ -Flight BookedBook flight StartProcess \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Flight Booked + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Book + + + flight + + + + + + + + + + + + + + + + + + + + + + StartProcess + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/runtime-tools-process-dev-ui-webapp/server/static/hotelBooking.svg b/packages/runtime-tools-process-dev-ui-webapp/server/static/hotelBooking.svg index 358a1152133..3ab9c43fee8 100644 --- a/packages/runtime-tools-process-dev-ui-webapp/server/static/hotelBooking.svg +++ b/packages/runtime-tools-process-dev-ui-webapp/server/static/hotelBooking.svg @@ -1 +1,132 @@ -Hotel BookedBook hotel StartProcess \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Hotel Booked + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Book + + + hotel + + + + + + + + + + + + + + + + + + + + + + StartProcess + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/runtime-tools-process-dev-ui-webapp/server/static/travels.svg b/packages/runtime-tools-process-dev-ui-webapp/server/static/travels.svg index ee4bda93f71..4c307aff606 100644 --- a/packages/runtime-tools-process-dev-ui-webapp/server/static/travels.svg +++ b/packages/runtime-tools-process-dev-ui-webapp/server/static/travels.svg @@ -1 +1,755 @@ -Book HotelStartProcessis visa requiredwait for visa decisionTravel ConfirmedVisa RejectedBook Flight Email rejection notice Confirm travel Apply for visa Visa checkvisasapprovedvisasrejectedBookSend visa applicationno need for visa visa required \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Book Hotel + + + + + + + + + + + + + + + + + + + + + + StartProcess + + + + + + + + + + + + + + + + + + + + + + + + + + + + + is visa required + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + wait for visa decision + + + + + + + + + + + + + + + + + + + + + + Travel Confirmed + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Visa Rejected + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Book Flight + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Email + + + rejection + + + notice + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Confirm + + + travel + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Apply + + + for visa + + + + + + + + + + + + + + + + + + + + + + + Visa + + + check + + + + + + + + + + + + + + + + + + + + + + + + + + + + + visasapproved + + + + + + + + + + + + + + + + + + + + + + + + + + + + + visasrejected + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Book + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Send visa application + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + no need for visa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + visa + + + required + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/runtime-tools-process-dev-ui-webapp/src/static/managementConsoleLogo.svg b/packages/runtime-tools-process-dev-ui-webapp/src/static/managementConsoleLogo.svg index e6ff4c9af8c..3cbdc97faad 100644 --- a/packages/runtime-tools-process-dev-ui-webapp/src/static/managementConsoleLogo.svg +++ b/packages/runtime-tools-process-dev-ui-webapp/src/static/managementConsoleLogo.svg @@ -1,123 +1,142 @@ - - - -Management_Console_Logo2 - - + + + + Management_Console_Logo2 + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - - + + - - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - - - - + + + + + + + + + + - + - + c0.9-0.2,1.8-0.3,2.7-0.4c0-0.9,0.3-1.7,0.9-2.3c-0.2,0.7-0.2,1.5,0,2.2c1.2-0.1,2.3-0.1,3.5,0L25.5,40.5z" /> + diff --git a/packages/runtime-tools-task-console-webapp/src/static/taskConsoleLogo.svg b/packages/runtime-tools-task-console-webapp/src/static/taskConsoleLogo.svg index cb6c8a7743e..16ebf1547ba 100644 --- a/packages/runtime-tools-task-console-webapp/src/static/taskConsoleLogo.svg +++ b/packages/runtime-tools-task-console-webapp/src/static/taskConsoleLogo.svg @@ -1 +1,63 @@ -Task_Console_Logo_60x370 \ No newline at end of file + + + + + + + Task_Console_Logo_60x370 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/serverless-logic-web-tools/static/favicon.svg b/packages/serverless-logic-web-tools/static/favicon.svg index 4cef559984a..e0c8c45f283 100644 --- a/packages/serverless-logic-web-tools/static/favicon.svg +++ b/packages/serverless-logic-web-tools/static/favicon.svg @@ -1 +1,35 @@ -kie_icon_rgb_fullcolor_default \ No newline at end of file + + + + + + + kie_icon_rgb_fullcolor_default + + + + + + + + + diff --git a/packages/serverless-logic-web-tools/static/images/kie_horizontal_rgb_fullcolor_default.svg b/packages/serverless-logic-web-tools/static/images/kie_horizontal_rgb_fullcolor_default.svg index dba5a247bd4..4259d92dc97 100644 --- a/packages/serverless-logic-web-tools/static/images/kie_horizontal_rgb_fullcolor_default.svg +++ b/packages/serverless-logic-web-tools/static/images/kie_horizontal_rgb_fullcolor_default.svg @@ -1 +1,38 @@ -kie_horizontal_rgb_fullcolor_default \ No newline at end of file + + + + + + + kie_horizontal_rgb_fullcolor_default + + + + + + + + + + + + diff --git a/packages/serverless-logic-web-tools/static/images/kie_horizontal_rgb_fullcolor_reverse.svg b/packages/serverless-logic-web-tools/static/images/kie_horizontal_rgb_fullcolor_reverse.svg index 71b51be9148..d4d94c0ca4b 100644 --- a/packages/serverless-logic-web-tools/static/images/kie_horizontal_rgb_fullcolor_reverse.svg +++ b/packages/serverless-logic-web-tools/static/images/kie_horizontal_rgb_fullcolor_reverse.svg @@ -1 +1,38 @@ -kie_horizontal_rgb_fullcolor_reverse \ No newline at end of file + + + + + + + kie_horizontal_rgb_fullcolor_reverse + + + + + + + + + + + + diff --git a/packages/serverless-logic-web-tools/static/images/vscode-alt.svg b/packages/serverless-logic-web-tools/static/images/vscode-alt.svg index 66699157dde..1a536bb93ce 100644 --- a/packages/serverless-logic-web-tools/static/images/vscode-alt.svg +++ b/packages/serverless-logic-web-tools/static/images/vscode-alt.svg @@ -1,57 +1,75 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/serverless-logic-web-tools/static/images/vscode.svg b/packages/serverless-logic-web-tools/static/images/vscode.svg index c453e633f34..e76df3697f8 100644 --- a/packages/serverless-logic-web-tools/static/images/vscode.svg +++ b/packages/serverless-logic-web-tools/static/images/vscode.svg @@ -1,41 +1,59 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/serverless-workflow-dev-ui-webapp/server/static/flightBooking.svg b/packages/serverless-workflow-dev-ui-webapp/server/static/flightBooking.svg index adb9ad15e8a..ae6cef900a4 100644 --- a/packages/serverless-workflow-dev-ui-webapp/server/static/flightBooking.svg +++ b/packages/serverless-workflow-dev-ui-webapp/server/static/flightBooking.svg @@ -1 +1,132 @@ -Flight BookedBook flight StartProcess \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Flight Booked + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Book + + + flight + + + + + + + + + + + + + + + + + + + + + + StartProcess + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/serverless-workflow-dev-ui-webapp/server/static/hotelBooking.svg b/packages/serverless-workflow-dev-ui-webapp/server/static/hotelBooking.svg index 358a1152133..3ab9c43fee8 100644 --- a/packages/serverless-workflow-dev-ui-webapp/server/static/hotelBooking.svg +++ b/packages/serverless-workflow-dev-ui-webapp/server/static/hotelBooking.svg @@ -1 +1,132 @@ -Hotel BookedBook hotel StartProcess \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Hotel Booked + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Book + + + hotel + + + + + + + + + + + + + + + + + + + + + + StartProcess + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/serverless-workflow-dev-ui-webapp/server/static/travels.svg b/packages/serverless-workflow-dev-ui-webapp/server/static/travels.svg index ee4bda93f71..4c307aff606 100644 --- a/packages/serverless-workflow-dev-ui-webapp/server/static/travels.svg +++ b/packages/serverless-workflow-dev-ui-webapp/server/static/travels.svg @@ -1 +1,755 @@ -Book HotelStartProcessis visa requiredwait for visa decisionTravel ConfirmedVisa RejectedBook Flight Email rejection notice Confirm travel Apply for visa Visa checkvisasapprovedvisasrejectedBookSend visa applicationno need for visa visa required \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Book Hotel + + + + + + + + + + + + + + + + + + + + + + StartProcess + + + + + + + + + + + + + + + + + + + + + + + + + + + + + is visa required + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + wait for visa decision + + + + + + + + + + + + + + + + + + + + + + Travel Confirmed + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Visa Rejected + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Book Flight + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Email + + + rejection + + + notice + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Confirm + + + travel + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Apply + + + for visa + + + + + + + + + + + + + + + + + + + + + + + Visa + + + check + + + + + + + + + + + + + + + + + + + + + + + + + + + + + visasapproved + + + + + + + + + + + + + + + + + + + + + + + + + + + + + visasrejected + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Book + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Send visa application + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + no need for visa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + visa + + + required + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/serverless-workflow-dev-ui-webapp/src/static/managementConsoleLogo.svg b/packages/serverless-workflow-dev-ui-webapp/src/static/managementConsoleLogo.svg index e6ff4c9af8c..3cbdc97faad 100644 --- a/packages/serverless-workflow-dev-ui-webapp/src/static/managementConsoleLogo.svg +++ b/packages/serverless-workflow-dev-ui-webapp/src/static/managementConsoleLogo.svg @@ -1,123 +1,142 @@ - - - -Management_Console_Logo2 - - + + + + Management_Console_Logo2 + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - - + + - - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - - - - + + + + + + + + + + - + - + c0.9-0.2,1.8-0.3,2.7-0.4c0-0.9,0.3-1.7,0.9-2.3c-0.2,0.7-0.2,1.5,0,2.2c1.2-0.1,2.3-0.1,3.5,0L25.5,40.5z" /> + diff --git a/packages/serverless-workflow-diagram-editor/kie-wb-common-stunner/kie-wb-common-stunner-client/kie-wb-common-stunner-widgets/src/test/resources/images/svg.svg b/packages/serverless-workflow-diagram-editor/kie-wb-common-stunner/kie-wb-common-stunner-client/kie-wb-common-stunner-widgets/src/test/resources/images/svg.svg index ee8d7d0e29c..00bc815c102 100644 --- a/packages/serverless-workflow-diagram-editor/kie-wb-common-stunner/kie-wb-common-stunner-client/kie-wb-common-stunner-widgets/src/test/resources/images/svg.svg +++ b/packages/serverless-workflow-diagram-editor/kie-wb-common-stunner/kie-wb-common-stunner-client/kie-wb-common-stunner-widgets/src/test/resources/images/svg.svg @@ -1,11 +1,27 @@ - - - - - + + + + + S29,32,40,32h336c11,0,20.4,3.9,28.2,11.8S416,61,416,72z" /> diff --git a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-client/src/main/resources/org/kie/workbench/common/stunner/sw/client/resources/images/icons/transition.svg b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-client/src/main/resources/org/kie/workbench/common/stunner/sw/client/resources/images/icons/transition.svg index 0a07313c394..c9d420eb9d6 100644 --- a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-client/src/main/resources/org/kie/workbench/common/stunner/sw/client/resources/images/icons/transition.svg +++ b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-client/src/main/resources/org/kie/workbench/common/stunner/sw/client/resources/images/icons/transition.svg @@ -1,31 +1,30 @@ - - - - + + + + C231.1,132.9,227.3,131.3,222.8,131.3L222.8,131.3z" /> diff --git a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/main/resources/org/kie/workbench/common/stunner/sw/resources/public/fonts/glyphicons-halflings-regular.svg b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/main/resources/org/kie/workbench/common/stunner/sw/resources/public/fonts/glyphicons-halflings-regular.svg index 94fb5490a2e..9e9afc9ade5 100644 --- a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/main/resources/org/kie/workbench/common/stunner/sw/resources/public/fonts/glyphicons-halflings-regular.svg +++ b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/main/resources/org/kie/workbench/common/stunner/sw/resources/public/fonts/glyphicons-halflings-regular.svg @@ -1,288 +1,308 @@ - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/main/webapp/fonts/OpenSans-BoldItalic-webfont.svg b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/main/webapp/fonts/OpenSans-BoldItalic-webfont.svg index 6a2607b9daf..1b0dfb1d3d5 100644 --- a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/main/webapp/fonts/OpenSans-BoldItalic-webfont.svg +++ b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/main/webapp/fonts/OpenSans-BoldItalic-webfont.svg @@ -1,1830 +1,1850 @@ - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/main/webapp/fonts/OpenSans-ExtraBold-webfont.svg b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/main/webapp/fonts/OpenSans-ExtraBold-webfont.svg index 27800505a57..eb8baff72a5 100644 --- a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/main/webapp/fonts/OpenSans-ExtraBold-webfont.svg +++ b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/main/webapp/fonts/OpenSans-ExtraBold-webfont.svg @@ -1,1830 +1,1850 @@ - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/main/webapp/fonts/OpenSans-ExtraBoldItalic-webfont.svg b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/main/webapp/fonts/OpenSans-ExtraBoldItalic-webfont.svg index 8f080c1e5eb..8d029795f1b 100644 --- a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/main/webapp/fonts/OpenSans-ExtraBoldItalic-webfont.svg +++ b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/main/webapp/fonts/OpenSans-ExtraBoldItalic-webfont.svg @@ -1,1830 +1,1850 @@ - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/main/webapp/fonts/OpenSans-Italic-webfont.svg b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/main/webapp/fonts/OpenSans-Italic-webfont.svg index e1075dcc246..ac5e7c5e151 100644 --- a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/main/webapp/fonts/OpenSans-Italic-webfont.svg +++ b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/main/webapp/fonts/OpenSans-Italic-webfont.svg @@ -1,1830 +1,1850 @@ - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/main/webapp/fonts/OpenSans-Light-webfont.svg b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/main/webapp/fonts/OpenSans-Light-webfont.svg index 11a472ca8a5..64292a5fed3 100644 --- a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/main/webapp/fonts/OpenSans-Light-webfont.svg +++ b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/main/webapp/fonts/OpenSans-Light-webfont.svg @@ -1,1831 +1,1851 @@ - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/main/webapp/fonts/OpenSans-LightItalic-webfont.svg b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/main/webapp/fonts/OpenSans-LightItalic-webfont.svg index 431d7e35463..d4c137542dd 100644 --- a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/main/webapp/fonts/OpenSans-LightItalic-webfont.svg +++ b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/main/webapp/fonts/OpenSans-LightItalic-webfont.svg @@ -1,1835 +1,1855 @@ - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/main/webapp/fonts/OpenSans-SemiboldItalic-webfont.svg b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/main/webapp/fonts/OpenSans-SemiboldItalic-webfont.svg index 7166ec1b909..c552bb72a95 100644 --- a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/main/webapp/fonts/OpenSans-SemiboldItalic-webfont.svg +++ b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/main/webapp/fonts/OpenSans-SemiboldItalic-webfont.svg @@ -1,1830 +1,1850 @@ - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/main/webapp/fonts/PatternFlyIcons-webfont.svg b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/main/webapp/fonts/PatternFlyIcons-webfont.svg index b8fc87bb575..4237fb7d210 100644 --- a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/main/webapp/fonts/PatternFlyIcons-webfont.svg +++ b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/main/webapp/fonts/PatternFlyIcons-webfont.svg @@ -1,93 +1,113 @@ - + - - - -{ - "fontFamily": "PatternFlyIcons-webfont", - "fontURL": "https://www.patternfly.org", - "designer": "Red Hat", - "designerURL": "", - "license": "Apache 2.0", - "licenseURL": "http://www.apache.org/licenses/LICENSE-2.0.html", - "majorVersion": 3, - "minorVersion": 0, - "version": "Version 3.0", - "fontId": "PatternFlyIcons-webfont", - "psName": "PatternFlyIcons-webfont", - "subFamily": "Regular", - "fullName": "PatternFlyIcons-webfont", - "description": "Font generated by IcoMoon." -} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/main/webapp/fonts/fontawesome-webfont.svg b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/main/webapp/fonts/fontawesome-webfont.svg index 8b66187fe06..17f12939e6b 100644 --- a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/main/webapp/fonts/fontawesome-webfont.svg +++ b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/main/webapp/fonts/fontawesome-webfont.svg @@ -1,685 +1,705 @@ - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/main/webapp/fonts/glyphicons-halflings-regular.svg b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/main/webapp/fonts/glyphicons-halflings-regular.svg index 94fb5490a2e..9e9afc9ade5 100644 --- a/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/main/webapp/fonts/glyphicons-halflings-regular.svg +++ b/packages/serverless-workflow-diagram-editor/sw-editor/sw-editor-kogito-app/src/main/webapp/fonts/glyphicons-halflings-regular.svg @@ -1,288 +1,308 @@ - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/serverless-workflow-diagram-editor/third_party/gwtbootstrap3/core/src/main/resources/org/gwtbootstrap3/client/resource/fonts/glyphicons-halflings-regular.svg b/packages/serverless-workflow-diagram-editor/third_party/gwtbootstrap3/core/src/main/resources/org/gwtbootstrap3/client/resource/fonts/glyphicons-halflings-regular.svg index 94fb5490a2e..9e9afc9ade5 100644 --- a/packages/serverless-workflow-diagram-editor/third_party/gwtbootstrap3/core/src/main/resources/org/gwtbootstrap3/client/resource/fonts/glyphicons-halflings-regular.svg +++ b/packages/serverless-workflow-diagram-editor/third_party/gwtbootstrap3/core/src/main/resources/org/gwtbootstrap3/client/resource/fonts/glyphicons-halflings-regular.svg @@ -1,288 +1,308 @@ - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/sonataflow-deployment-webapp/static/favicon.svg b/packages/sonataflow-deployment-webapp/static/favicon.svg index 4cef559984a..e0c8c45f283 100644 --- a/packages/sonataflow-deployment-webapp/static/favicon.svg +++ b/packages/sonataflow-deployment-webapp/static/favicon.svg @@ -1 +1,35 @@ -kie_icon_rgb_fullcolor_default \ No newline at end of file + + + + + + + kie_icon_rgb_fullcolor_default + + + + + + + + + diff --git a/packages/storybook-base/static/logo.svg b/packages/storybook-base/static/logo.svg index e1dd5df4016..c37d9017e08 100644 --- a/packages/storybook-base/static/logo.svg +++ b/packages/storybook-base/static/logo.svg @@ -1,13 +1,31 @@ - - - - - - - - - - - \ No newline at end of file + + + + + + + + + + + + diff --git a/packages/stunner-editors/errai-cdi/errai-cdi-client/src/main/resources/META-INF/ErraiApp.properties b/packages/stunner-editors/errai-cdi/errai-cdi-client/src/main/resources/META-INF/ErraiApp.properties index 7765a670d6e..c9de3c1625f 100644 --- a/packages/stunner-editors/errai-cdi/errai-cdi-client/src/main/resources/META-INF/ErraiApp.properties +++ b/packages/stunner-editors/errai-cdi/errai-cdi-client/src/main/resources/META-INF/ErraiApp.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + # # ErraiApp.properties # diff --git a/packages/stunner-editors/errai-ioc/src/main/resources/META-INF/ErraiApp.properties b/packages/stunner-editors/errai-ioc/src/main/resources/META-INF/ErraiApp.properties index 7765a670d6e..c9de3c1625f 100644 --- a/packages/stunner-editors/errai-ioc/src/main/resources/META-INF/ErraiApp.properties +++ b/packages/stunner-editors/errai-ioc/src/main/resources/META-INF/ErraiApp.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + # # ErraiApp.properties # diff --git a/packages/stunner-editors/errai-ui/src/main/resources/META-INF/ErraiApp.properties b/packages/stunner-editors/errai-ui/src/main/resources/META-INF/ErraiApp.properties index 7765a670d6e..c9de3c1625f 100644 --- a/packages/stunner-editors/errai-ui/src/main/resources/META-INF/ErraiApp.properties +++ b/packages/stunner-editors/errai-ui/src/main/resources/META-INF/ErraiApp.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + # # ErraiApp.properties # diff --git a/packages/stunner-editors/errai-ui/src/test/resources/META-INF/ErraiApp.properties b/packages/stunner-editors/errai-ui/src/test/resources/META-INF/ErraiApp.properties index 7765a670d6e..c9de3c1625f 100644 --- a/packages/stunner-editors/errai-ui/src/test/resources/META-INF/ErraiApp.properties +++ b/packages/stunner-editors/errai-ui/src/test/resources/META-INF/ErraiApp.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + # # ErraiApp.properties # diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-client/src/main/resources/org/kie/workbench/common/dmn/client/resources/images/logos/drools-logo.svg b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-client/src/main/resources/org/kie/workbench/common/dmn/client/resources/images/logos/drools-logo.svg index 5978ca10210..b5026b3bb6a 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-client/src/main/resources/org/kie/workbench/common/dmn/client/resources/images/logos/drools-logo.svg +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-client/src/main/resources/org/kie/workbench/common/dmn/client/resources/images/logos/drools-logo.svg @@ -1,53 +1,70 @@ - - - - - - + + + + + - - + + - - + + - + - + - + - - + + + z" /> + - diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-client/src/main/resources/org/kie/workbench/common/dmn/client/resources/images/shapes/business-knowledge-model-palette.svg b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-client/src/main/resources/org/kie/workbench/common/dmn/client/resources/images/shapes/business-knowledge-model-palette.svg index e062f387afb..27d33e5010e 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-client/src/main/resources/org/kie/workbench/common/dmn/client/resources/images/shapes/business-knowledge-model-palette.svg +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-client/src/main/resources/org/kie/workbench/common/dmn/client/resources/images/shapes/business-knowledge-model-palette.svg @@ -1,11 +1,28 @@ - - - - + + + + C420,89,411,80,400,80L400,80z" /> diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-client/src/main/resources/org/kie/workbench/common/dmn/client/resources/images/shapes/business-knowledge-model.svg b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-client/src/main/resources/org/kie/workbench/common/dmn/client/resources/images/shapes/business-knowledge-model.svg index 4823ae20583..28b0c6cf8a5 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-client/src/main/resources/org/kie/workbench/common/dmn/client/resources/images/shapes/business-knowledge-model.svg +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-client/src/main/resources/org/kie/workbench/common/dmn/client/resources/images/shapes/business-knowledge-model.svg @@ -1,7 +1,23 @@ - - - + + + + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-client/src/main/resources/org/kie/workbench/common/dmn/client/resources/images/shapes/decision-palette.svg b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-client/src/main/resources/org/kie/workbench/common/dmn/client/resources/images/shapes/decision-palette.svg index 16c8fc8256f..e87863dcc1d 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-client/src/main/resources/org/kie/workbench/common/dmn/client/resources/images/shapes/decision-palette.svg +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-client/src/main/resources/org/kie/workbench/common/dmn/client/resources/images/shapes/decision-palette.svg @@ -1,10 +1,27 @@ - - - - + + + + + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-client/src/main/resources/org/kie/workbench/common/dmn/client/resources/images/shapes/decision-service-palette.svg b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-client/src/main/resources/org/kie/workbench/common/dmn/client/resources/images/shapes/decision-service-palette.svg index 0deb122435d..c03ccae6623 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-client/src/main/resources/org/kie/workbench/common/dmn/client/resources/images/shapes/decision-service-palette.svg +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-client/src/main/resources/org/kie/workbench/common/dmn/client/resources/images/shapes/decision-service-palette.svg @@ -1,11 +1,28 @@ - - - - + + + + c-21,0-38-17-38-38V220h340v41.9C380,282.9,363,299.9,342,299.9z" /> diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-client/src/main/resources/org/kie/workbench/common/dmn/client/resources/images/shapes/decision-service.svg b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-client/src/main/resources/org/kie/workbench/common/dmn/client/resources/images/shapes/decision-service.svg index 7998d58c88d..f0b1c554488 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-client/src/main/resources/org/kie/workbench/common/dmn/client/resources/images/shapes/decision-service.svg +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-client/src/main/resources/org/kie/workbench/common/dmn/client/resources/images/shapes/decision-service.svg @@ -1,7 +1,23 @@ - - - + + + + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-client/src/main/resources/org/kie/workbench/common/dmn/client/resources/images/shapes/decision.svg b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-client/src/main/resources/org/kie/workbench/common/dmn/client/resources/images/shapes/decision.svg index 771784bdd16..5b913a400ac 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-client/src/main/resources/org/kie/workbench/common/dmn/client/resources/images/shapes/decision.svg +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-client/src/main/resources/org/kie/workbench/common/dmn/client/resources/images/shapes/decision.svg @@ -1,7 +1,23 @@ - - - + + + + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-client/src/main/resources/org/kie/workbench/common/dmn/client/resources/images/shapes/diagram.svg b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-client/src/main/resources/org/kie/workbench/common/dmn/client/resources/images/shapes/diagram.svg index eab21ce79b1..960c1f62e85 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-client/src/main/resources/org/kie/workbench/common/dmn/client/resources/images/shapes/diagram.svg +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-client/src/main/resources/org/kie/workbench/common/dmn/client/resources/images/shapes/diagram.svg @@ -1,71 +1,87 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-client/src/main/resources/org/kie/workbench/common/dmn/client/resources/images/shapes/input-data-palette.svg b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-client/src/main/resources/org/kie/workbench/common/dmn/client/resources/images/shapes/input-data-palette.svg index 411c296d0fe..81fb5018b96 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-client/src/main/resources/org/kie/workbench/common/dmn/client/resources/images/shapes/input-data-palette.svg +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-client/src/main/resources/org/kie/workbench/common/dmn/client/resources/images/shapes/input-data-palette.svg @@ -1,11 +1,28 @@ - - - - + + + + C420,137.3,362.7,80,292,80L292,80z" /> diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-client/src/main/resources/org/kie/workbench/common/dmn/client/resources/images/shapes/input-data.svg b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-client/src/main/resources/org/kie/workbench/common/dmn/client/resources/images/shapes/input-data.svg index 2dd181f9cda..58f17a29757 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-client/src/main/resources/org/kie/workbench/common/dmn/client/resources/images/shapes/input-data.svg +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-client/src/main/resources/org/kie/workbench/common/dmn/client/resources/images/shapes/input-data.svg @@ -1,6 +1,23 @@ - - - + + + + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-client/src/main/resources/org/kie/workbench/common/dmn/client/resources/images/shapes/knowledge-source-palette.svg b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-client/src/main/resources/org/kie/workbench/common/dmn/client/resources/images/shapes/knowledge-source-palette.svg index c409a24f1ae..b1e2df8ac86 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-client/src/main/resources/org/kie/workbench/common/dmn/client/resources/images/shapes/knowledge-source-palette.svg +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-client/src/main/resources/org/kie/workbench/common/dmn/client/resources/images/shapes/knowledge-source-palette.svg @@ -1,12 +1,29 @@ - - - - + + + + c0.9,0.6,1.9,0.9,2.9,0.9c2.6,0,5-2.1,5-5V100.1C420.3,89,411.3,80.1,400.3,80.1L400.3,80.1z" /> diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-client/src/main/resources/org/kie/workbench/common/dmn/client/resources/images/shapes/knowledge-source.svg b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-client/src/main/resources/org/kie/workbench/common/dmn/client/resources/images/shapes/knowledge-source.svg index faced06a71a..7fb4d9d0a66 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-client/src/main/resources/org/kie/workbench/common/dmn/client/resources/images/shapes/knowledge-source.svg +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-client/src/main/resources/org/kie/workbench/common/dmn/client/resources/images/shapes/knowledge-source.svg @@ -1,8 +1,23 @@ - - - + + + + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-client/src/main/resources/org/kie/workbench/common/dmn/client/resources/images/shapes/text-annotation-palette.svg b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-client/src/main/resources/org/kie/workbench/common/dmn/client/resources/images/shapes/text-annotation-palette.svg index d33f370786a..1f6d2aaf577 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-client/src/main/resources/org/kie/workbench/common/dmn/client/resources/images/shapes/text-annotation-palette.svg +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-client/src/main/resources/org/kie/workbench/common/dmn/client/resources/images/shapes/text-annotation-palette.svg @@ -1,10 +1,27 @@ - - - - + + + + + diff --git a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-client/src/main/resources/org/kie/workbench/common/dmn/client/resources/images/shapes/text-annotation.svg b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-client/src/main/resources/org/kie/workbench/common/dmn/client/resources/images/shapes/text-annotation.svg index ef49ef94db7..9653d7d8087 100644 --- a/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-client/src/main/resources/org/kie/workbench/common/dmn/client/resources/images/shapes/text-annotation.svg +++ b/packages/stunner-editors/kie-wb-common-dmn/kie-wb-common-dmn-client/src/main/resources/org/kie/workbench/common/dmn/client/resources/images/shapes/text-annotation.svg @@ -1,12 +1,26 @@ - - - - - - - - - \ No newline at end of file + + + + + + + + diff --git a/packages/stunner-editors/kie-wb-common-kogito/kie-wb-common-kogito-webapp-base/src/main/resources/org/kie/workbench/common/kogito/webapp/base/client/resources/i18n/KogitoClientConstants_es.properties b/packages/stunner-editors/kie-wb-common-kogito/kie-wb-common-kogito-webapp-base/src/main/resources/org/kie/workbench/common/kogito/webapp/base/client/resources/i18n/KogitoClientConstants_es.properties index e69de29bb2d..5fb255256df 100644 --- a/packages/stunner-editors/kie-wb-common-kogito/kie-wb-common-kogito-webapp-base/src/main/resources/org/kie/workbench/common/kogito/webapp/base/client/resources/i18n/KogitoClientConstants_es.properties +++ b/packages/stunner-editors/kie-wb-common-kogito/kie-wb-common-kogito-webapp-base/src/main/resources/org/kie/workbench/common/kogito/webapp/base/client/resources/i18n/KogitoClientConstants_es.properties @@ -0,0 +1,18 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# \ No newline at end of file diff --git a/packages/stunner-editors/kie-wb-common-kogito/kie-wb-common-kogito-webapp-base/src/main/resources/org/kie/workbench/common/kogito/webapp/base/client/resources/i18n/KogitoClientConstants_fr.properties b/packages/stunner-editors/kie-wb-common-kogito/kie-wb-common-kogito-webapp-base/src/main/resources/org/kie/workbench/common/kogito/webapp/base/client/resources/i18n/KogitoClientConstants_fr.properties index e69de29bb2d..5fb255256df 100644 --- a/packages/stunner-editors/kie-wb-common-kogito/kie-wb-common-kogito-webapp-base/src/main/resources/org/kie/workbench/common/kogito/webapp/base/client/resources/i18n/KogitoClientConstants_fr.properties +++ b/packages/stunner-editors/kie-wb-common-kogito/kie-wb-common-kogito-webapp-base/src/main/resources/org/kie/workbench/common/kogito/webapp/base/client/resources/i18n/KogitoClientConstants_fr.properties @@ -0,0 +1,18 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# \ No newline at end of file diff --git a/packages/stunner-editors/kie-wb-common-kogito/kie-wb-common-kogito-webapp-base/src/main/resources/org/kie/workbench/common/kogito/webapp/base/client/resources/i18n/KogitoClientConstants_ja.properties b/packages/stunner-editors/kie-wb-common-kogito/kie-wb-common-kogito-webapp-base/src/main/resources/org/kie/workbench/common/kogito/webapp/base/client/resources/i18n/KogitoClientConstants_ja.properties index e69de29bb2d..5fb255256df 100644 --- a/packages/stunner-editors/kie-wb-common-kogito/kie-wb-common-kogito-webapp-base/src/main/resources/org/kie/workbench/common/kogito/webapp/base/client/resources/i18n/KogitoClientConstants_ja.properties +++ b/packages/stunner-editors/kie-wb-common-kogito/kie-wb-common-kogito-webapp-base/src/main/resources/org/kie/workbench/common/kogito/webapp/base/client/resources/i18n/KogitoClientConstants_ja.properties @@ -0,0 +1,18 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# \ No newline at end of file diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-client/kie-wb-common-stunner-widgets/src/test/resources/images/svg.svg b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-client/kie-wb-common-stunner-widgets/src/test/resources/images/svg.svg index ee8d7d0e29c..00bc815c102 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-client/kie-wb-common-stunner-widgets/src/test/resources/images/svg.svg +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-client/kie-wb-common-stunner-widgets/src/test/resources/images/svg.svg @@ -1,11 +1,27 @@ - - - - - + + + + + S29,32,40,32h336c11,0,20.4,3.9,28.2,11.8S416,61,416,72z" /> diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-extensions/kie-wb-common-stunner-svg/kie-wb-common-stunner-svg-gen/src/test/resources/org/kie/workbench/common/stunner/svg/gen/cancel.svg b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-extensions/kie-wb-common-stunner-svg/kie-wb-common-stunner-svg-gen/src/test/resources/org/kie/workbench/common/stunner/svg/gen/cancel.svg index 6bccd3b564f..0112a13f782 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-extensions/kie-wb-common-stunner-svg/kie-wb-common-stunner-svg-gen/src/test/resources/org/kie/workbench/common/stunner/svg/gen/cancel.svg +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-extensions/kie-wb-common-stunner-svg/kie-wb-common-stunner-svg-gen/src/test/resources/org/kie/workbench/common/stunner/svg/gen/cancel.svg @@ -1,10 +1,28 @@ - -circle-intermediate-3 - + + + circle-intermediate-3 + + + s-2.3,12.3-7,17L292,224l73.5,73.5C370.2,302.2,372.5,307.8,372.5,314.5z" /> diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-extensions/kie-wb-common-stunner-svg/kie-wb-common-stunner-svg-gen/src/test/resources/org/kie/workbench/common/stunner/svg/gen/svg-elements-test-errors.svg b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-extensions/kie-wb-common-stunner-svg/kie-wb-common-stunner-svg-gen/src/test/resources/org/kie/workbench/common/stunner/svg/gen/svg-elements-test-errors.svg index e5d8cf0fad1..a722e2f61a9 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-extensions/kie-wb-common-stunner-svg/kie-wb-common-stunner-svg-gen/src/test/resources/org/kie/workbench/common/stunner/svg/gen/svg-elements-test-errors.svg +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-extensions/kie-wb-common-stunner-svg/kie-wb-common-stunner-svg-gen/src/test/resources/org/kie/workbench/common/stunner/svg/gen/svg-elements-test-errors.svg @@ -1,35 +1,30 @@ - - - -svg-elements-test-title - - - - - - + + + + svg-elements-test-title + + + + + + + diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-extensions/kie-wb-common-stunner-svg/kie-wb-common-stunner-svg-gen/src/test/resources/org/kie/workbench/common/stunner/svg/gen/svg-elements-test.svg b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-extensions/kie-wb-common-stunner-svg/kie-wb-common-stunner-svg-gen/src/test/resources/org/kie/workbench/common/stunner/svg/gen/svg-elements-test.svg index d90858a2d44..ff72bd45df9 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-extensions/kie-wb-common-stunner-svg/kie-wb-common-stunner-svg-gen/src/test/resources/org/kie/workbench/common/stunner/svg/gen/svg-elements-test.svg +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-extensions/kie-wb-common-stunner-svg/kie-wb-common-stunner-svg-gen/src/test/resources/org/kie/workbench/common/stunner/svg/gen/svg-elements-test.svg @@ -1,18 +1,30 @@ - -svg-elements-test-title - - - - - - + + + + svg-elements-test-title + + + + + + + diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/categories/activity.svg b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/categories/activity.svg index da77033b62f..471c0a44832 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/categories/activity.svg +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/categories/activity.svg @@ -1,28 +1,26 @@ - - - - - + + + + diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/categories/artifacts.svg b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/categories/artifacts.svg index a1310db60b4..792e8da35ea 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/categories/artifacts.svg +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/categories/artifacts.svg @@ -1,27 +1,43 @@ - - - + + + + - - + + - - - - - + + + + + - diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/categories/container.svg b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/categories/container.svg index 6da9229fb2b..a14679733c9 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/categories/container.svg +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/categories/container.svg @@ -1,29 +1,27 @@ - - - - - + + + + M200,240h140v60H200V240z" /> diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/categories/end-events.svg b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/categories/end-events.svg index 6a187e6fb9f..35a41f21653 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/categories/end-events.svg +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/categories/end-events.svg @@ -1,29 +1,27 @@ - - - - - + + + + S97,257.9,97,224s13.2-65.8,37.2-89.8S190.1,97,224,97" /> diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/categories/event.svg b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/categories/event.svg index c0067d2d041..bc72bc0a3ed 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/categories/event.svg +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/categories/event.svg @@ -1,76 +1,95 @@ - - - - - circle-intermediate-3 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + circle-intermediate-3 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - + diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/categories/gateway.svg b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/categories/gateway.svg index 20f24186bde..b0929a396e2 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/categories/gateway.svg +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/categories/gateway.svg @@ -1,30 +1,28 @@ - - - - - + + + + L240.7,12.7C232.2,4.2,221.1,0,210,0L210,0z" /> diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/categories/intermediate-events.svg b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/categories/intermediate-events.svg index 309e6f4ceea..f2f179cdcb1 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/categories/intermediate-events.svg +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/categories/intermediate-events.svg @@ -1,32 +1,30 @@ - - - - - + + + + S186,120,210,120s46.6,9.4,63.6,26.4S300,186,300,210S290.6,256.6,273.6,273.6z" /> diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/categories/library.svg b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/categories/library.svg index 2ee36b6d813..1329d155d62 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/categories/library.svg +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/categories/library.svg @@ -1,149 +1,166 @@ - - - - - circle-intermediate-3 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + circle-intermediate-3 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + - - - - - - - - - - + + + + - - - - + c0,0,192,0,224,0c48,0,64-48,64-80s0-210,0-240C384,73.6,400,32,400,32L400,32z" /> + + + + + + + + + - - - - + + + - - - - - - - - + + + - - - + + + - + - - - - - - - - - - - - - - - - + c0,0-112,0-320,0c-143,65,160,448,72,448c-21,0-30,0-30,0s199.7,0,283,0c32,0,58-30.9,58-63c0-56-182-352-63.9-352L384-1L384-1z" /> + + + + + + + + + + + + + + + + + - - - + + c-32,0-74.4,0-96,0c-36.6,0-32,32-32,32v256H64z" /> diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/categories/sequence.svg b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/categories/sequence.svg index c4b0fd51ae1..4937c24b0fe 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/categories/sequence.svg +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/categories/sequence.svg @@ -1,18 +1,38 @@ - + + + .st0{display:none;} + .st1{display:inline;} + .st2{opacity:0.3;fill:none;stroke:#449FDB;enable-background:new ;} + .st3{fill:none;stroke:#449FDB;} + .st4{fill:#FFFFFF;} + .st5{fill:#FFFFFF;stroke:#000000;stroke-width:32;stroke-miterlimit:10;} + .st6{display:inline;fill:none;stroke:#000000;stroke-width:16;stroke-linecap:round;stroke-miterlimit:10;} + .st7{fill:none;stroke:#000000;stroke-width:16;stroke-linecap:round;stroke-miterlimit:10;} + - circle-intermediate-3 + + circle-intermediate-3 + @@ -71,7 +91,8 @@ - + + - \ No newline at end of file + diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/categories/service-tasks.svg b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/categories/service-tasks.svg index ac76491bea9..fba483181de 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/categories/service-tasks.svg +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/categories/service-tasks.svg @@ -1,29 +1,27 @@ - - - - - + + + + c0.7,0,10.3,5.4,29.1,16.4c0.7,0.5,0.9,1,0.9,1.7c0,3.9-3.9,14.7-12,32.4c2.6,3.6,5,7.7,7,12.2C428.4,69,440,71.5,440,74z" /> diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/categories/start-events.svg b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/categories/start-events.svg index fc3f85ab464..fed85dfc773 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/categories/start-events.svg +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/categories/start-events.svg @@ -1,29 +1,27 @@ - - - - - + + + - \ No newline at end of file + S380,164.6,380,210S362.3,298.1,330.2,330.2z" /> + diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/categories/sub-process.svg b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/categories/sub-process.svg index cd13c455f3c..6716096c8f8 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/categories/sub-process.svg +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/categories/sub-process.svg @@ -1,28 +1,26 @@ - - - - - - \ No newline at end of file + + + + + diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/connectors/sequence.svg b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/connectors/sequence.svg index fbf887af4ef..171e5f2457f 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/connectors/sequence.svg +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/connectors/sequence.svg @@ -1,90 +1,87 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + l11.3,11.3c6.2,6.2,16.4,6.2,22.6,0l68.2-68.2l11.3-11.3C417.6,228.6,417.6,218.4,411.3,212.2z" /> diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/event/event-end-error.svg b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/event/event-end-error.svg index d8ff37c88d0..50e70eea1e1 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/event/event-end-error.svg +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/event/event-end-error.svg @@ -1,91 +1,89 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - \ No newline at end of file + c3.9-8.1,4.8-11.2,11.4-13.6c6.3-2.3,11.2,0.4,16.8,5.7S288,209.7,288,209.7z" /> + diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/event/event-end-message.svg b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/event/event-end-message.svg index cbe56ae5848..6e491091551 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/event/event-end-message.svg +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/event/event-end-message.svg @@ -1,90 +1,88 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + S448,93,448,104z" /> diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/event/event-end-none.svg b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/event/event-end-none.svg index 4f8a9645f2d..43be4353130 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/event/event-end-none.svg +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/event/event-end-none.svg @@ -1,29 +1,27 @@ - - - - - + + + + S97,257.9,97,224s13.2-65.8,37.2-89.8S190.1,97,224,97" /> diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/event/event-end-signal.svg b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/event/event-end-signal.svg index 5ff19dede9d..cc7168942ac 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/event/event-end-signal.svg +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/event/event-end-signal.svg @@ -1,88 +1,86 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + c6.2-10.5,6.3-21,0.5-31.5l-191.8-352c-2.8-5.2-6.7-9.2-11.7-12.2C236,1.5,230.6,0,224.7,0L224.7,0z" /> diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/event/event-end-terminate.svg b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/event/event-end-terminate.svg index c2ebedfd239..7b3910cda0e 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/event/event-end-terminate.svg +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/event/event-end-terminate.svg @@ -1,25 +1,22 @@ - - - - + + + diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/event/event-intermediate-error.svg b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/event/event-intermediate-error.svg index e0366ec8972..7025a09d9a8 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/event/event-intermediate-error.svg +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/event/event-intermediate-error.svg @@ -1,94 +1,92 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + C130.7,50.6,126.9,48,122.6,48L122.6,48z" /> diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/event/event-intermediate-link-throwing.svg b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/event/event-intermediate-link-throwing.svg index 1b837214b9d..c198759107d 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/event/event-intermediate-link-throwing.svg +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/event/event-intermediate-link-throwing.svg @@ -1,29 +1,28 @@ - - - - + + + + c3.1-3.1,4.6-6.9,4.6-11.4c0-4.6-1.5-8.3-4.6-11.2l-81.4-81.3C231.1,132.9,227.3,131.3,222.8,131.3L222.8,131.3z" /> diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/event/event-intermediate-link.svg b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/event/event-intermediate-link.svg index e7ee1d94a12..0bb62f70c02 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/event/event-intermediate-link.svg +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/event/event-intermediate-link.svg @@ -1,31 +1,30 @@ - - - - + + + + C231.1,132.9,227.3,131.3,222.8,131.3L222.8,131.3z" /> diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/event/event-intermediate-message-throwing.svg b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/event/event-intermediate-message-throwing.svg index 472de1ae6ae..ca4c474205d 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/event/event-intermediate-message-throwing.svg +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/event/event-intermediate-message-throwing.svg @@ -1,96 +1,94 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + c10.8,0,20.2,3.9,28.1,11.8S448,93,448,104z" /> diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/event/event-intermediate-message.svg b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/event/event-intermediate-message.svg index afd5502c3b7..1aaaa1578df 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/event/event-intermediate-message.svg +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/event/event-intermediate-message.svg @@ -1,90 +1,88 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + S448,93,448,104z" /> diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/event/event-intermediate-signal-throwing.svg b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/event/event-intermediate-signal-throwing.svg index f4a1edec314..f4a4c2bdf4f 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/event/event-intermediate-signal-throwing.svg +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/event/event-intermediate-signal-throwing.svg @@ -1,92 +1,90 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + s11.2,1.5,16.2,4.5C246,7.5,249.9,11.6,252.7,16.8z" /> diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/event/event-intermediate-signal.svg b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/event/event-intermediate-signal.svg index 60a2649b6d3..c28bd428e1b 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/event/event-intermediate-signal.svg +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/event/event-intermediate-signal.svg @@ -1,88 +1,86 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + c6.2-10.5,6.3-21,0.5-31.5l-191.8-352c-2.8-5.2-6.7-9.2-11.7-12.2C236,1.5,230.6,0,224.7,0L224.7,0z" /> diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/event/event-intermediate-timer.svg b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/event/event-intermediate-timer.svg index 65490530250..d9fd32c2d4b 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/event/event-intermediate-timer.svg +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/event/event-intermediate-timer.svg @@ -1,92 +1,90 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + s67,8.6,96.4,25.8s52.7,40.5,69.9,69.9S416,189.2,416,224z" /> diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/event/event-start-error.svg b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/event/event-start-error.svg index 5a21407fecf..4a073c8da6f 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/event/event-start-error.svg +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/event/event-start-error.svg @@ -1,94 +1,92 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + C130.7,50.6,126.9,48,122.6,48L122.6,48z" /> diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/event/event-start-message.svg b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/event/event-start-message.svg index 53e835cf2e6..f97b0c266b8 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/event/event-start-message.svg +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/event/event-start-message.svg @@ -1,91 +1,88 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + S448,93,448,104z" /> diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/event/event-start-none.svg b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/event/event-start-none.svg index 4914b4cb2fd..323d52bef01 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/event/event-start-none.svg +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/event/event-start-none.svg @@ -1,29 +1,27 @@ - - - - - + + + + S380,164.6,380,210S362.3,298.1,330.2,330.2z" /> diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/event/event-start-signal.svg b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/event/event-start-signal.svg index fa319b32134..9b06a81e037 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/event/event-start-signal.svg +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/event/event-start-signal.svg @@ -1,88 +1,86 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + c6.2-10.5,6.3-21,0.5-31.5l-191.8-352c-2.8-5.2-6.7-9.2-11.7-12.2C236,1.5,230.6,0,224.7,0L224.7,0z" /> diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/event/event-start-timer.svg b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/event/event-start-timer.svg index 386c2a96676..e61dc6516f1 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/event/event-start-timer.svg +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/event/event-start-timer.svg @@ -1,92 +1,90 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + s67,8.6,96.4,25.8s52.7,40.5,69.9,69.9S416,189.2,416,224z" /> diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/gateway/complex.svg b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/gateway/complex.svg index 0d365a02a5e..dd56c1c04ad 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/gateway/complex.svg +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/gateway/complex.svg @@ -1,93 +1,91 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + c0-6.7-2.4-12.3-7.1-17L301.3,257H384c6.7,0,12.3-2.3,17-7s7-10.3,7-17v-16C408,210.3,405.7,204.7,401,200z" /> diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/gateway/event.svg b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/gateway/event.svg index 9fb6419ced0..3bb6ad75536 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/gateway/event.svg +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/gateway/event.svg @@ -1,100 +1,98 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - + + - - + + - + c-2.2-0.3-4.2-1.8-5.2-3.8l-41-83.1C229,66.1,226.5,64.8,224,64.8L224,64.8z" /> + diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/gateway/exclusive.svg b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/gateway/exclusive.svg index 3397d794828..3f2fa4f8cbb 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/gateway/exclusive.svg +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/gateway/exclusive.svg @@ -1,98 +1,97 @@ - - - - -circle-intermediate-3 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + circle-intermediate-3 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - + + + - - \ No newline at end of file + s-2.3,12.3-7,17L292,224l73.5,73.5C370.2,302.2,372.5,307.8,372.5,314.5z" /> + + diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/gateway/inclusive.svg b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/gateway/inclusive.svg index 9d77d5862d7..05ec8de83e6 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/gateway/inclusive.svg +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/gateway/inclusive.svg @@ -1,91 +1,89 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + L224-0.1z" /> diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/gateway/parallel-event.svg b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/gateway/parallel-event.svg index 1cc409534a0..d459b70e4d7 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/gateway/parallel-event.svg +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/gateway/parallel-event.svg @@ -1,92 +1,89 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + c6.7,0,12.3,2.3,17,7s7,10.3,7,17v16C368,238.7,365.7,244.3,361,249z" /> diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/gateway/parallel-multiple.svg b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/gateway/parallel-multiple.svg index 2a99634d610..5e72e4d814e 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/gateway/parallel-multiple.svg +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/gateway/parallel-multiple.svg @@ -1,33 +1,30 @@ - - - - - - - + + + + + + s10.3-7,17-7h48c6.7,0,12.3,2.3,17,7s7,10.3,7,17v104h104c6.7,0,12.3,2.3,17,7S352,177.3,352,184z" /> diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/lane_icon.svg b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/lane_icon.svg index ff20d205113..45a82df3e5e 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/lane_icon.svg +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/lane_icon.svg @@ -1,95 +1,94 @@ - - - - - - circle-intermediate-3 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + circle-intermediate-3 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - + diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/subprocess/subprocess-adhoc.svg b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/subprocess/subprocess-adhoc.svg index c5e79c144eb..e8e01b881f2 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/subprocess/subprocess-adhoc.svg +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/subprocess/subprocess-adhoc.svg @@ -1,94 +1,91 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + c24.6,0,46.9-8.5,66.5-25.3c14-12,26.4-28.3,36.7-48.3c16.5-31.9,22.7-63.6,22.9-65C450.3,179.6,438.9,162.8,421.5,159.5z" /> diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/subprocess/subprocess-embedded-icon.svg b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/subprocess/subprocess-embedded-icon.svg index dd347b4bb29..bd4f2f2f5ba 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/subprocess/subprocess-embedded-icon.svg +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/subprocess/subprocess-embedded-icon.svg @@ -1,29 +1,29 @@ - - - - - + + + + + diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/subprocess/subprocess-embedded.svg b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/subprocess/subprocess-embedded.svg index 33954ef1d1e..d557bc29f31 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/subprocess/subprocess-embedded.svg +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/subprocess/subprocess-embedded.svg @@ -1,87 +1,84 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/subprocess/subprocess-event.svg b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/subprocess/subprocess-event.svg index ce104d0676c..c9374bd912a 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/subprocess/subprocess-event.svg +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/subprocess/subprocess-event.svg @@ -1,31 +1,30 @@ - - - + + @@ -33,8 +32,5 @@ - - + diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/subprocess/subprocess-multiple-instance.svg b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/subprocess/subprocess-multiple-instance.svg index 5e856cd572d..7ecba7723ee 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/subprocess/subprocess-multiple-instance.svg +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/subprocess/subprocess-multiple-instance.svg @@ -1,30 +1,27 @@ - - - - - + + + - \ No newline at end of file + h-32c-6.6,0-12-5.4-12-12V44c0-6.6,5.4-12,12-12h32C406.6,32,412,37.4,412,44z" /> + diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/subprocess/subprocess-reusable.svg b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/subprocess/subprocess-reusable.svg index 4345a1c8fd6..3ca31f11c09 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/subprocess/subprocess-reusable.svg +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/subprocess/subprocess-reusable.svg @@ -1,33 +1,30 @@ - - - - - - - - + + + + + + - \ No newline at end of file + s10.3-7,17-7h48c6.7,0,12.3,2.3,17,7s7,10.3,7,17v104h104c6.7,0,12.3,2.3,17,7S352,177.3,352,184z" /> + diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/subprocess/subprocess.svg b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/subprocess/subprocess.svg index 0fe17c8785e..49777112e11 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/subprocess/subprocess.svg +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/subprocess/subprocess.svg @@ -1,51 +1,48 @@ - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/task/task-business-rule.svg b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/task/task-business-rule.svg index 32a888d4735..3de739db7cb 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/task/task-business-rule.svg +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/task/task-business-rule.svg @@ -1,29 +1,26 @@ - - - - - - + + + + + S29,32,40,32h336c11,0,20.4,3.9,28.2,11.8S416,61,416,72z" /> diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/task/task-generic-service.svg b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/task/task-generic-service.svg index 92cfcfc4d9d..be0d41a0ea2 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/task/task-generic-service.svg +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/task/task-generic-service.svg @@ -1,34 +1,29 @@ - - - - - - - + + + + + + diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/task/task-manual.svg b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/task/task-manual.svg index 90e236dfaf9..af9959741f7 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/task/task-manual.svg +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/task/task-manual.svg @@ -1,90 +1,108 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + circle-intermediate-3 + - circle-intermediate-3 - - + c0,3.8-0.3,7.3-1,10.5c10.2,5.2,18.2,12.5,24.1,22.1S448,248.7,448,260z" /> diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/task/task-script.svg b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/task/task-script.svg index e3d8024a983..92af76a0d5a 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/task/task-script.svg +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/task/task-script.svg @@ -1,102 +1,119 @@ - - - - - circle-intermediate-3 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + circle-intermediate-3 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - + + + c0,0.3,0,0.6,0,0.9C352,94.8,352,96,352,96v64V336z" /> diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/task/task-service.svg b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/task/task-service.svg index 540446060ee..15c6348dfbd 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/task/task-service.svg +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/task/task-service.svg @@ -1,91 +1,89 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + c0.7,0.5,1,1.1,1,1.8c0,4.2-4.2,15.7-12.8,34.5c2.8,3.8,5.3,8.2,7.5,13C467.6,73.2,480,75.8,480,78.5z" /> diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/task/task-user.svg b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/task/task-user.svg index 01f0cf4d765..eb661d905eb 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/task/task-user.svg +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/task/task-user.svg @@ -1,25 +1,22 @@ - - - - + + + diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/task/task.svg b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/task/task.svg index fc794a863e5..188514e8b07 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/task/task.svg +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/task/task.svg @@ -1,32 +1,29 @@ - - - - - - - - - - + + + + + + + + + + diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/textannotation/data-object.svg b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/textannotation/data-object.svg index 1edc10aa938..317d5cf3406 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/textannotation/data-object.svg +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/textannotation/data-object.svg @@ -1,55 +1,38 @@ - - -image/svg+xml - - - \ No newline at end of file + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/textannotation/text-annotation.svg b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/textannotation/text-annotation.svg index d33f370786a..1f6d2aaf577 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/textannotation/text-annotation.svg +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/icons/textannotation/text-annotation.svg @@ -1,10 +1,27 @@ - - - - + + + + + diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/misc/circle.svg b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/misc/circle.svg index 839ed31840e..eda064888bc 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/misc/circle.svg +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/misc/circle.svg @@ -1,73 +1,88 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + S416,189.2,416,224z" /> diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/shapes/data-object.svg b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/shapes/data-object.svg index 164706c04ce..e28edb21bb2 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/shapes/data-object.svg +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/shapes/data-object.svg @@ -1,25 +1,24 @@ - - - - - - - - - \ No newline at end of file + + + + + + diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/shapes/event-all.svg b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/shapes/event-all.svg index d7f5fbd6c33..e56a0ea7c88 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/shapes/event-all.svg +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/shapes/event-all.svg @@ -1,39 +1,36 @@ - - - - + + + - - - - + --> + - - - - - + --> + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - + C297.3,259.8,298.5,262.6,298.5,266z" /> + + + + + + + + + + + + + + diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/shapes/gateway.svg b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/shapes/gateway.svg index cca8aeadcbc..5572994c5e6 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/shapes/gateway.svg +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/shapes/gateway.svg @@ -1,60 +1,55 @@ - - - - + + + - - + + - - - + + + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - + C316,216.6,314.9,213.8,312.5,211.5z" /> + + + + + + + + + + + + + + diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/shapes/lane.svg b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/shapes/lane.svg index 3c74cc4359e..8c2cfd3656e 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/shapes/lane.svg +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/shapes/lane.svg @@ -1,25 +1,23 @@ - - - - + + + + diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/shapes/rectangle.svg b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/shapes/rectangle.svg index 733a7d7e593..101cf6f4beb 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/shapes/rectangle.svg +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/shapes/rectangle.svg @@ -1,23 +1,23 @@ - + diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/shapes/subprocess-adhoc.svg b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/shapes/subprocess-adhoc.svg index 45dbc7527aa..9d53af8a6dc 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/shapes/subprocess-adhoc.svg +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/shapes/subprocess-adhoc.svg @@ -1,58 +1,46 @@ - - - - - - - - - + + + + + - - - - - - - - - - - - - - - - - - - + c24.6,0,46.9-8.5,66.5-25.3c14-12,26.4-28.3,36.7-48.3c16.5-31.9,22.7-63.6,22.9-65C450.3,179.6,438.9,162.8,421.5,159.5z" /> + + + + + + + + + + + + + + diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/shapes/subprocess-event.svg b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/shapes/subprocess-event.svg index f96a8c66593..078cc6d023c 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/shapes/subprocess-event.svg +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/shapes/subprocess-event.svg @@ -1,33 +1,26 @@ - - - - - - - + + + + + c24.6,0,46.9-8.5,66.5-25.3c14-12,26.4-28.3,36.7-48.3c16.5-31.9,22.7-63.6,22.9-65C450.3,179.6,438.9,162.8,421.5,159.5z" /> - - - - - + + - - + + - - diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/shapes/subprocess-multiple-instance.svg b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/shapes/subprocess-multiple-instance.svg index 1b311a279e2..448ee1d580d 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/shapes/subprocess-multiple-instance.svg +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/shapes/subprocess-multiple-instance.svg @@ -1,33 +1,29 @@ - - - - - - - - + + + + + - - + h-32c-6.6,0-12-5.4-12-12V44c0-6.6,5.4-12,12-12h32C406.6,32,412,37.4,412,44z" /> + + diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/shapes/subprocess.svg b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/shapes/subprocess.svg index 60afbbf8cf5..800e95cd8cb 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/shapes/subprocess.svg +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/shapes/subprocess.svg @@ -1,71 +1,51 @@ - - - - - - - - - - + + + + + + - - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - + s10.3-7,17-7h48c6.7,0,12.3,2.3,17,7s7,10.3,7,17v104h104c6.7,0,12.3,2.3,17,7S352,177.3,352,184z" /> + + + + + + + + + + + + + + + + diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/shapes/task.svg b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/shapes/task.svg index a3cd7cb4944..b81a223a7ea 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/shapes/task.svg +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/shapes/task.svg @@ -1,60 +1,51 @@ - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + - - - - - - - - + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - + S29,32,40,32h336c11,0,20.4,3.9,28.2,11.8S416,61,416,72z" /> + + + + + + + + + + + + + + + + + diff --git a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/shapes/text-annotation.svg b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/shapes/text-annotation.svg index e8dd9fa26df..8f513b3bcba 100644 --- a/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/shapes/text-annotation.svg +++ b/packages/stunner-editors/kie-wb-common-stunner/kie-wb-common-stunner-sets/kie-wb-common-stunner-bpmn/kie-wb-common-stunner-bpmn-client/src/main/resources/org/kie/workbench/common/stunner/bpmn/client/resources/images/shapes/text-annotation.svg @@ -1,12 +1,26 @@ - - - - - - - - - \ No newline at end of file + + + + + + + + diff --git a/packages/stunner-editors/uberfire-extensions/uberfire-wires/uberfire-wires-core/uberfire-wires-core-grids/src/main/resources/META-INF/ErraiApp.properties b/packages/stunner-editors/uberfire-extensions/uberfire-wires/uberfire-wires-core/uberfire-wires-core-grids/src/main/resources/META-INF/ErraiApp.properties index 7765a670d6e..c9de3c1625f 100644 --- a/packages/stunner-editors/uberfire-extensions/uberfire-wires/uberfire-wires-core/uberfire-wires-core-grids/src/main/resources/META-INF/ErraiApp.properties +++ b/packages/stunner-editors/uberfire-extensions/uberfire-wires/uberfire-wires-core/uberfire-wires-core-grids/src/main/resources/META-INF/ErraiApp.properties @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + # # ErraiApp.properties # From 3967c9341422e8a7505b20180bf69750520c4688 Mon Sep 17 00:00:00 2001 From: Tiago Bento <1584568+tiagobento@users.noreply.github.com> Date: Wed, 15 May 2024 11:26:56 -0400 Subject: [PATCH 14/90] kie-issues#1208: Make NPM packages compliant with Apache Incubator guidelines (Part 1) (#2324) --- .../README.md | 30 ++++++++++++ .../README.md | 30 ++++++++++++ examples/base64png-editor/README.md | 30 ++++++++++++ .../README.md | 30 ++++++++++++ .../README.md | 30 ++++++++++++ examples/ping-pong-view-angular/README.md | 30 ++++++++++++ examples/ping-pong-view-react/README.md | 30 ++++++++++++ examples/ping-pong-view/README.md | 30 ++++++++++++ .../README.md | 30 ++++++++++++ .../todo-list-view-vscode-extension/README.md | 30 ++++++++++++ examples/todo-list-view/README.md | 30 ++++++++++++ examples/uniforms-patternfly/README.md | 48 +++++++++++++++++++ examples/webapp/README.md | 30 ++++++++++++ packages/backend/README.md | 30 ++++++++++++ packages/boxed-expression-component/README.md | 30 ++++++++++++ packages/bpmn-marshaller/README.md | 48 +++++++++++++++++++ packages/bpmn-vscode-extension/README.md | 30 ++++++++++++ .../README.md | 48 +++++++++++++++++++ .../README.md | 48 +++++++++++++++++++ .../chrome-extension-test-helper/README.md | 48 +++++++++++++++++++ packages/chrome-extension/README.md | 30 ++++++++++++ packages/cors-proxy-api/README.md | 48 +++++++++++++++++++ packages/cors-proxy-image/README.md | 30 ++++++++++++ packages/cors-proxy/README.md | 30 ++++++++++++ packages/dashbuilder-client/README.md | 48 +++++++++++++++++++ packages/dashbuilder-component-api/README.md | 48 +++++++++++++++++++ .../dashbuilder-component-assembler/README.md | 48 +++++++++++++++++++ packages/dashbuilder-component-dev/README.md | 48 +++++++++++++++++++ .../README.md | 48 +++++++++++++++++++ .../dashbuilder-component-echarts/README.md | 48 +++++++++++++++++++ packages/dashbuilder-component-map/README.md | 48 +++++++++++++++++++ .../README.md | 48 +++++++++++++++++++ .../dashbuilder-component-table/README.md | 48 +++++++++++++++++++ .../README.md | 48 +++++++++++++++++++ .../dashbuilder-component-uniforms/README.md | 48 +++++++++++++++++++ .../README.md | 48 +++++++++++++++++++ packages/dashbuilder-editor/README.md | 30 ++++++++++++ .../dashbuilder-language-service/README.md | 30 ++++++++++++ .../README.md | 48 +++++++++++++++++++ .../README.md | 48 +++++++++++++++++++ .../dashbuilder-viewer-image-env/README.md | 48 +++++++++++++++++++ packages/dashbuilder-viewer-image/README.md | 48 +++++++++++++++++++ packages/dashbuilder-viewer/README.md | 30 ++++++++++++ packages/dashbuilder/README.md | 30 ++++++++++++ packages/dev-deployment-base-image/README.md | 30 ++++++++++++ .../README.md | 48 +++++++++++++++++++ .../dev-deployment-dmn-form-webapp/README.md | 48 +++++++++++++++++++ .../README.md | 30 ++++++++++++ .../README.md | 48 +++++++++++++++++++ .../dev-deployment-upload-service/README.md | 30 ++++++++++++ packages/dmn-editor-envelope/README.md | 30 ++++++++++++ packages/dmn-editor/README.md | 48 +++++++++++++++++++ packages/dmn-feel-antlr4-parser/README.md | 48 +++++++++++++++++++ packages/dmn-language-service/README.md | 48 +++++++++++++++++++ .../README.md | 30 ++++++++++++ packages/dmn-marshaller/README.md | 48 +++++++++++++++++++ packages/dmn-runner/README.md | 48 +++++++++++++++++++ packages/dmn-testing-models/README.md | 30 ++++++++++++ packages/dmn-vscode-extension/README.md | 30 ++++++++++++ packages/editor/README.md | 30 ++++++++++++ packages/envelope-bus/README.md | 30 ++++++++++++ packages/envelope/README.md | 30 ++++++++++++ packages/eslint/README.md | 48 +++++++++++++++++++ packages/extended-services-api/README.md | 48 +++++++++++++++++++ packages/extended-services-java/README.md | 30 ++++++++++++ packages/extended-services/README.md | 30 ++++++++++++ packages/feel-input-component/README.md | 48 +++++++++++++++++++ packages/form-dmn/README.md | 48 +++++++++++++++++++ packages/form-generation-tool/README.md | 30 ++++++++++++ packages/form/README.md | 48 +++++++++++++++++++ packages/i18n-common-dictionary/README.md | 29 +++++++++++ packages/i18n/README.md | 30 ++++++++++++ packages/image-builder/package.json | 1 + packages/image-env-to-json/README.md | 30 ++++++++++++ .../import-java-classes-component/README.md | 30 ++++++++++++ packages/jbpm-quarkus-devui/README.md | 48 +++++++++++++++++++ packages/json-yaml-language-service/README.md | 30 ++++++++++++ .../k8s-yaml-to-apiserver-requests/README.md | 30 ++++++++++++ packages/keyboard-shortcuts/README.md | 30 ++++++++++++ packages/kie-bc-editors/README.md | 30 ++++++++++++ .../README.md | 30 ++++++++++++ packages/kie-editors-standalone/README.md | 30 ++++++++++++ packages/kie-sandbox-distribution/README.md | 30 ++++++++++++ .../README.md | 30 ++++++++++++ packages/kie-sandbox-fs/README.md | 30 ++++++++++++ packages/kie-sandbox-image/README.md | 30 ++++++++++++ packages/kn-plugin-workflow/README.md | 30 ++++++++++++ packages/kogito-management-console/README.md | 30 ++++++++++++ packages/kogito-serverless-operator/README.md | 30 ++++++++++++ packages/kogito-swf-builder/README.md | 30 ++++++++++++ packages/kogito-swf-common/README.md | 28 +++++++++++ packages/kogito-swf-devmode/README.md | 30 ++++++++++++ packages/kogito-task-console/README.md | 30 ++++++++++++ packages/kubernetes-bridge/README.md | 48 +++++++++++++++++++ packages/maven-base/README.md | 48 +++++++++++++++++++ packages/maven-config-setup-helper/README.md | 30 ++++++++++++ packages/monaco-editor/README.md | 30 ++++++++++++ packages/notifications/README.md | 30 ++++++++++++ packages/online-editor/README.md | 30 ++++++++++++ packages/operating-system/README.md | 30 ++++++++++++ packages/patternfly-base/README.md | 48 +++++++++++++++++++ packages/playwright-base/README.md | 48 +++++++++++++++++++ packages/pmml-editor-marshaller/README.md | 48 +++++++++++++++++++ packages/pmml-editor/README.md | 30 ++++++++++++ packages/pmml-vscode-extension/README.md | 30 ++++++++++++ packages/python-venv/README.md | 30 ++++++++++++ packages/react-hooks/README.md | 48 +++++++++++++++++++ packages/root-env/README.md | 48 +++++++++++++++++++ packages/runtime-tools-components/README.md | 48 +++++++++++++++++++ .../README.md | 30 ++++++++++++ .../README.md | 48 +++++++++++++++++++ .../README.md | 48 +++++++++++++++++++ .../README.md | 48 +++++++++++++++++++ .../README.md | 48 +++++++++++++++++++ .../README.md | 48 +++++++++++++++++++ .../README.md | 48 +++++++++++++++++++ .../README.md | 48 +++++++++++++++++++ .../README.md | 48 +++++++++++++++++++ .../runtime-tools-swf-gateway-api/README.md | 48 +++++++++++++++++++ .../README.md | 48 +++++++++++++++++++ .../README.md | 30 ++++++++++++ packages/scesim-editor/README.md | 30 ++++++++++++ packages/scesim-marshaller/README.md | 48 +++++++++++++++++++ .../README.md | 48 +++++++++++++++++++ .../README.md | 48 +++++++++++++++++++ .../README.md | 48 +++++++++++++++++++ .../README.md | 48 +++++++++++++++++++ .../README.md | 48 +++++++++++++++++++ .../README.md | 48 +++++++++++++++++++ .../README.md | 48 +++++++++++++++++++ packages/serverless-logic-web-tools/README.md | 48 +++++++++++++++++++ .../README.md | 48 +++++++++++++++++++ .../README.md | 48 +++++++++++++++++++ .../README.md | 48 +++++++++++++++++++ .../README.md | 48 +++++++++++++++++++ .../README.md | 48 +++++++++++++++++++ .../README.md | 48 +++++++++++++++++++ .../README.md | 30 ++++++++++++ .../README.md | 30 ++++++++++++ .../README.md | 48 +++++++++++++++++++ .../README.md | 30 ++++++++++++ .../serverless-workflow-text-editor/README.md | 48 +++++++++++++++++++ .../README.md | 30 ++++++++++++ .../sonataflow-deployment-webapp/README.md | 30 ++++++++++++ packages/sonataflow-quarkus-devui/README.md | 48 +++++++++++++++++++ packages/storybook-base/README.md | 48 +++++++++++++++++++ packages/stunner-editors-dmn-loader/README.md | 48 +++++++++++++++++++ packages/stunner-editors/README.md | 48 +++++++++++++++++++ packages/switch-expression-ts/README.md | 30 ++++++++++++ packages/text-editor/README.md | 48 +++++++++++++++++++ packages/tsconfig/README.md | 48 +++++++++++++++++++ .../uniforms-bootstrap4-codegen/README.md | 30 ++++++++++++ .../uniforms-patternfly-codegen/README.md | 30 ++++++++++++ packages/uniforms-patternfly/README.md | 30 ++++++++++++ packages/unitables-dmn/README.md | 48 +++++++++++++++++++ packages/unitables/README.md | 48 +++++++++++++++++++ .../README.md | 30 ++++++++++++ .../README.md | 30 ++++++++++++ .../vscode-extension-kie-ba-bundle/README.md | 30 ++++++++++++ .../vscode-extension-kogito-bundle/README.md | 30 ++++++++++++ packages/vscode-extension/README.md | 30 ++++++++++++ .../README.md | 30 ++++++++++++ .../vscode-java-code-completion/README.md | 30 ++++++++++++ packages/webpack-base/README.md | 48 +++++++++++++++++++ packages/workspace/README.md | 30 ++++++++++++ packages/workspaces-git-fs/README.md | 48 +++++++++++++++++++ packages/xml-parser-ts-codegen/README.md | 30 ++++++++++++ packages/xml-parser-ts/README.md | 30 ++++++++++++ packages/yaml-language-server/README.md | 30 ++++++++++++ packages/yard-editor/README.md | 30 ++++++++++++ packages/yard-language-service/README.md | 30 ++++++++++++ packages/yard-model/README.md | 48 +++++++++++++++++++ packages/yard-validator-worker/README.md | 30 ++++++++++++ packages/yard-validator/README.md | 30 ++++++++++++ packages/yard-vscode-extension/README.md | 30 ++++++++++++ repo/graph.dot | 6 +-- scripts/bootstrap/README.md | 48 +++++++++++++++++++ scripts/build-env/README.md | 30 ++++++++++++ scripts/check-junit-report-results/README.md | 48 +++++++++++++++++++ scripts/run-script-if/package.json | 1 + scripts/sparse-checkout/README.md | 30 ++++++++++++ scripts/update-version/README.md | 48 +++++++++++++++++++ 182 files changed, 6902 insertions(+), 3 deletions(-) create mode 100644 examples/uniforms-patternfly/README.md create mode 100644 packages/bpmn-marshaller/README.md create mode 100644 packages/chrome-extension-pack-kogito-kie-editors/README.md create mode 100644 packages/chrome-extension-serverless-workflow-editor/README.md create mode 100644 packages/chrome-extension-test-helper/README.md create mode 100644 packages/cors-proxy-api/README.md create mode 100644 packages/dashbuilder-client/README.md create mode 100644 packages/dashbuilder-component-api/README.md create mode 100644 packages/dashbuilder-component-assembler/README.md create mode 100644 packages/dashbuilder-component-dev/README.md create mode 100644 packages/dashbuilder-component-echarts-base/README.md create mode 100644 packages/dashbuilder-component-echarts/README.md create mode 100644 packages/dashbuilder-component-map/README.md create mode 100644 packages/dashbuilder-component-svg-heatmap/README.md create mode 100644 packages/dashbuilder-component-table/README.md create mode 100644 packages/dashbuilder-component-timeseries/README.md create mode 100644 packages/dashbuilder-component-uniforms/README.md create mode 100644 packages/dashbuilder-component-victory-charts/README.md create mode 100644 packages/dashbuilder-swf-monitoring-dashboard/README.md create mode 100644 packages/dashbuilder-viewer-deployment-webapp/README.md create mode 100644 packages/dashbuilder-viewer-image-env/README.md create mode 100644 packages/dashbuilder-viewer-image/README.md create mode 100644 packages/dev-deployment-dmn-form-webapp-image/README.md create mode 100644 packages/dev-deployment-dmn-form-webapp/README.md create mode 100644 packages/dev-deployment-kogito-quarkus-blank-app/README.md create mode 100644 packages/dmn-editor/README.md create mode 100644 packages/dmn-feel-antlr4-parser/README.md create mode 100644 packages/dmn-language-service/README.md create mode 100644 packages/dmn-marshaller/README.md create mode 100644 packages/dmn-runner/README.md create mode 100644 packages/eslint/README.md create mode 100644 packages/extended-services-api/README.md create mode 100644 packages/feel-input-component/README.md create mode 100644 packages/form-dmn/README.md create mode 100644 packages/form/README.md create mode 100644 packages/jbpm-quarkus-devui/README.md create mode 100644 packages/kubernetes-bridge/README.md create mode 100644 packages/maven-base/README.md create mode 100644 packages/patternfly-base/README.md create mode 100644 packages/playwright-base/README.md create mode 100644 packages/pmml-editor-marshaller/README.md create mode 100644 packages/react-hooks/README.md create mode 100644 packages/root-env/README.md create mode 100644 packages/runtime-tools-components/README.md create mode 100644 packages/runtime-tools-process-dev-ui-webapp/README.md create mode 100644 packages/runtime-tools-process-enveloped-components/README.md create mode 100644 packages/runtime-tools-process-gateway-api/README.md create mode 100644 packages/runtime-tools-process-webapp-components/README.md create mode 100644 packages/runtime-tools-shared-enveloped-components/README.md create mode 100644 packages/runtime-tools-shared-gateway-api/README.md create mode 100644 packages/runtime-tools-shared-webapp-components/README.md create mode 100644 packages/runtime-tools-swf-enveloped-components/README.md create mode 100644 packages/runtime-tools-swf-gateway-api/README.md create mode 100644 packages/runtime-tools-swf-webapp-components/README.md create mode 100644 packages/scesim-marshaller/README.md create mode 100644 packages/serverless-logic-web-tools-base-builder-image-env/README.md create mode 100644 packages/serverless-logic-web-tools-base-builder-image/README.md create mode 100644 packages/serverless-logic-web-tools-swf-builder-image-env/README.md create mode 100644 packages/serverless-logic-web-tools-swf-builder-image/README.md create mode 100644 packages/serverless-logic-web-tools-swf-deployment-quarkus-app/README.md create mode 100644 packages/serverless-logic-web-tools-swf-dev-mode-image-env/README.md create mode 100644 packages/serverless-logic-web-tools-swf-dev-mode-image/README.md create mode 100644 packages/serverless-logic-web-tools/README.md create mode 100644 packages/serverless-workflow-combined-editor/README.md create mode 100644 packages/serverless-workflow-dev-ui-monitoring-webapp/README.md create mode 100644 packages/serverless-workflow-dev-ui-webapp/README.md create mode 100644 packages/serverless-workflow-diagram-editor-assets/README.md create mode 100644 packages/serverless-workflow-diagram-editor-envelope/README.md create mode 100644 packages/serverless-workflow-diagram-editor/README.md create mode 100644 packages/serverless-workflow-service-catalog/README.md create mode 100644 packages/serverless-workflow-text-editor/README.md create mode 100644 packages/sonataflow-quarkus-devui/README.md create mode 100644 packages/storybook-base/README.md create mode 100644 packages/stunner-editors-dmn-loader/README.md create mode 100644 packages/stunner-editors/README.md create mode 100644 packages/text-editor/README.md create mode 100644 packages/tsconfig/README.md create mode 100644 packages/unitables-dmn/README.md create mode 100644 packages/unitables/README.md create mode 100644 packages/webpack-base/README.md create mode 100644 packages/workspaces-git-fs/README.md create mode 100644 packages/yard-model/README.md create mode 100644 scripts/bootstrap/README.md create mode 100644 scripts/check-junit-report-results/README.md create mode 100644 scripts/update-version/README.md diff --git a/examples/base64png-editor-chrome-extension/README.md b/examples/base64png-editor-chrome-extension/README.md index 2451cb3fbf8..c9662c6b32e 100644 --- a/examples/base64png-editor-chrome-extension/README.md +++ b/examples/base64png-editor-chrome-extension/README.md @@ -40,3 +40,33 @@ pnpm serve-envelope It will run a server exposing your `dist/` folder on the `localhost:9000`. It's necessary to access your `localhost:9000`, and enable access to it. This step is required, so the extension can access the envelope located on `dist/envelope/index.html`. + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/examples/base64png-editor-vscode-extension/README.md b/examples/base64png-editor-vscode-extension/README.md index f7d18b085aa..ef8dd0ce8ab 100644 --- a/examples/base64png-editor-vscode-extension/README.md +++ b/examples/base64png-editor-vscode-extension/README.md @@ -45,3 +45,33 @@ code . - Installing VSIX The `pnpm build:prod` generate a vsix file on the `/dist` folder. Open your VS Code, and install it. + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/examples/base64png-editor/README.md b/examples/base64png-editor/README.md index a2a32529a51..62b44924c7c 100644 --- a/examples/base64png-editor/README.md +++ b/examples/base64png-editor/README.md @@ -22,3 +22,33 @@ You can read [here](https://blog.kie.org/2020/10/kogito-tooling-examples%e2%80%8 This package is a Custom Editor made with React, which enables you to edit a `.base64png` file. A `.base64png` file is a PNG image converted to base64 without its headers (e.g. data:image/png;base64). + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/examples/commit-message-validation-service/README.md b/examples/commit-message-validation-service/README.md index b44b746c34f..8f074021ab4 100644 --- a/examples/commit-message-validation-service/README.md +++ b/examples/commit-message-validation-service/README.md @@ -46,3 +46,33 @@ Provides a simple service to check for patterns in a commit message. "reasons": []string | undefined } ``` + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/examples/drools-process-usertasks-quarkus-example/README.md b/examples/drools-process-usertasks-quarkus-example/README.md index a1bb4766e26..f7e844ad2ba 100644 --- a/examples/drools-process-usertasks-quarkus-example/README.md +++ b/examples/drools-process-usertasks-quarkus-example/README.md @@ -230,3 +230,33 @@ You should see a similar message after performing the second line approval after } } ``` + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/examples/ping-pong-view-angular/README.md b/examples/ping-pong-view-angular/README.md index 784c8f424cf..eaed70e262d 100644 --- a/examples/ping-pong-view-angular/README.md +++ b/examples/ping-pong-view-angular/README.md @@ -26,3 +26,33 @@ It's build into 3 projects: - An Angular application that can run in an iFrame; - A Web Component from the angular components that can be rendered into any page; - A lib used to help render the Web Component in a container. + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/examples/ping-pong-view-react/README.md b/examples/ping-pong-view-react/README.md index 778db3be501..8dee412811b 100644 --- a/examples/ping-pong-view-react/README.md +++ b/examples/ping-pong-view-react/README.md @@ -22,3 +22,33 @@ You can read [here](https://blog.kie.org/2020/10/kogito-tooling-examples-how-to- The Ping-Pong View is an interface that components can implement to be used inside a Ping-Pong View Envelope. Ths package provides a Ping-Pong View implementation as a React component. + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/examples/ping-pong-view/README.md b/examples/ping-pong-view/README.md index 8b60bc90ec2..beaa755ff48 100644 --- a/examples/ping-pong-view/README.md +++ b/examples/ping-pong-view/README.md @@ -80,3 +80,33 @@ It's divided into the following submodules: } ``` - **pingPongViewFactory** should be an instance of the factory class created in step _1_; + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/examples/sonataflow-greeting-quarkus-example/README.md b/examples/sonataflow-greeting-quarkus-example/README.md index 9588481375e..f6ad33cc050 100644 --- a/examples/sonataflow-greeting-quarkus-example/README.md +++ b/examples/sonataflow-greeting-quarkus-example/README.md @@ -167,3 +167,33 @@ You can also change the language parameter value to "Spanish" to get the greetin ## Deploying with Kogito Operator In the [`operator`](operator) directory you'll find the custom resources needed to deploy this example on OpenShift with the [Kogito Operator](https://docs.jboss.org/kogito/release/latest/html_single/#chap_kogito-deploying-on-openshift). + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/examples/todo-list-view-vscode-extension/README.md b/examples/todo-list-view-vscode-extension/README.md index 6ead6821595..61b35e68e5f 100644 --- a/examples/todo-list-view-vscode-extension/README.md +++ b/examples/todo-list-view-vscode-extension/README.md @@ -37,3 +37,33 @@ This extensions has the following commands: ## Building Run `pnpm build:prod`. A `.vsix` file will be on the `dist` folder. + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/examples/todo-list-view/README.md b/examples/todo-list-view/README.md index 631111ab9c7..1784914df28 100644 --- a/examples/todo-list-view/README.md +++ b/examples/todo-list-view/README.md @@ -31,3 +31,33 @@ It's divided in the following submodules: - Provides the necessary class for a Channel to create a 'To do' list Envelope. 1. `vscode` - Provides a convenience class to create a Webview inside a VS Code Extension. + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/examples/uniforms-patternfly/README.md b/examples/uniforms-patternfly/README.md new file mode 100644 index 00000000000..e134e8a5b71 --- /dev/null +++ b/examples/uniforms-patternfly/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools-examples/uniforms-patternfly + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/examples/webapp/README.md b/examples/webapp/README.md index a7cb5979ad6..5c9f54cf72a 100644 --- a/examples/webapp/README.md +++ b/examples/webapp/README.md @@ -60,3 +60,33 @@ To start the webapp execute the following command on the root folder of the proj ```shell script pnpm -F @kie-tools-examples/webapp start ``` + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/backend/README.md b/packages/backend/README.md index b589661b9a0..f40e7e8f5fd 100644 --- a/packages/backend/README.md +++ b/packages/backend/README.md @@ -16,3 +16,33 @@ --> Apache KIE Tools Backend API + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/boxed-expression-component/README.md b/packages/boxed-expression-component/README.md index c329bec4b4d..07ff0b92702 100644 --- a/packages/boxed-expression-component/README.md +++ b/packages/boxed-expression-component/README.md @@ -75,3 +75,33 @@ pnpm test:e2e # To update the PlayWright Snapshot files, used for the regression: pnpm test:e2e:run -u ``` + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/bpmn-marshaller/README.md b/packages/bpmn-marshaller/README.md new file mode 100644 index 00000000000..7361b1baca2 --- /dev/null +++ b/packages/bpmn-marshaller/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools/bpmn-marshaller + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/bpmn-vscode-extension/README.md b/packages/bpmn-vscode-extension/README.md index 0310ad18171..1b1569e7b49 100644 --- a/packages/bpmn-vscode-extension/README.md +++ b/packages/bpmn-vscode-extension/README.md @@ -49,3 +49,33 @@ The `kogito.bpmn.svgFilenameTemplate` and `kogito.bpmn.svgFilePath` settings acc | **${fileExtname}** | `.ext` | | **${fileBasename}** | `file.ext` | | **${fileBasenameNoExtension}** | `file` | + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/chrome-extension-pack-kogito-kie-editors/README.md b/packages/chrome-extension-pack-kogito-kie-editors/README.md new file mode 100644 index 00000000000..d22eaf52a03 --- /dev/null +++ b/packages/chrome-extension-pack-kogito-kie-editors/README.md @@ -0,0 +1,48 @@ + + +## chrome-extension-pack-kogito-kie-editors + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/chrome-extension-serverless-workflow-editor/README.md b/packages/chrome-extension-serverless-workflow-editor/README.md new file mode 100644 index 00000000000..ac227fe34bf --- /dev/null +++ b/packages/chrome-extension-serverless-workflow-editor/README.md @@ -0,0 +1,48 @@ + + +## chrome-extension-serverless-workflow-editor + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/chrome-extension-test-helper/README.md b/packages/chrome-extension-test-helper/README.md new file mode 100644 index 00000000000..20331435647 --- /dev/null +++ b/packages/chrome-extension-test-helper/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools/chrome-extension-test-helper + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/chrome-extension/README.md b/packages/chrome-extension/README.md index 26348a2097b..662063234f0 100644 --- a/packages/chrome-extension/README.md +++ b/packages/chrome-extension/README.md @@ -16,3 +16,33 @@ --> ## Apache KIE Tools GitHub Chrome extension library + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/cors-proxy-api/README.md b/packages/cors-proxy-api/README.md new file mode 100644 index 00000000000..4acb689e32f --- /dev/null +++ b/packages/cors-proxy-api/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools/cors-proxy-api + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/cors-proxy-image/README.md b/packages/cors-proxy-image/README.md index 93b66396030..b0f2f80ac8f 100644 --- a/packages/cors-proxy-image/README.md +++ b/packages/cors-proxy-image/README.md @@ -78,3 +78,33 @@ $ podman run -p 8080:8080 -i --rm quay.io/kie-tools/cors-proxy-image:latest ``` The service will be up at http://localhost:8080 + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/cors-proxy/README.md b/packages/cors-proxy/README.md index 71b1f1af777..1443ebf1ddd 100644 --- a/packages/cors-proxy/README.md +++ b/packages/cors-proxy/README.md @@ -64,3 +64,33 @@ $ export CORS_PROXY__verbose=false ``` Default values can be found [here](./env/index.js). + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/dashbuilder-client/README.md b/packages/dashbuilder-client/README.md new file mode 100644 index 00000000000..5d1e080d505 --- /dev/null +++ b/packages/dashbuilder-client/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools/dashbuilder-client + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/dashbuilder-component-api/README.md b/packages/dashbuilder-component-api/README.md new file mode 100644 index 00000000000..f2370cdf22d --- /dev/null +++ b/packages/dashbuilder-component-api/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools/dashbuilder-component-api + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/dashbuilder-component-assembler/README.md b/packages/dashbuilder-component-assembler/README.md new file mode 100644 index 00000000000..fe54a28147c --- /dev/null +++ b/packages/dashbuilder-component-assembler/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools/dashbuilder-component-assembler + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/dashbuilder-component-dev/README.md b/packages/dashbuilder-component-dev/README.md new file mode 100644 index 00000000000..6d164e979c2 --- /dev/null +++ b/packages/dashbuilder-component-dev/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools/dashbuilder-component-dev + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/dashbuilder-component-echarts-base/README.md b/packages/dashbuilder-component-echarts-base/README.md new file mode 100644 index 00000000000..0a0f42b8554 --- /dev/null +++ b/packages/dashbuilder-component-echarts-base/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools/dashbuilder-component-echarts-base + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/dashbuilder-component-echarts/README.md b/packages/dashbuilder-component-echarts/README.md new file mode 100644 index 00000000000..d8248edd4cb --- /dev/null +++ b/packages/dashbuilder-component-echarts/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools/dashbuilder-component-echarts + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/dashbuilder-component-map/README.md b/packages/dashbuilder-component-map/README.md new file mode 100644 index 00000000000..4fdaf79ccfd --- /dev/null +++ b/packages/dashbuilder-component-map/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools/dashbuilder-component-map + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/dashbuilder-component-svg-heatmap/README.md b/packages/dashbuilder-component-svg-heatmap/README.md new file mode 100644 index 00000000000..ecacde35823 --- /dev/null +++ b/packages/dashbuilder-component-svg-heatmap/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools/dashbuilder-component-svg-heatmap + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/dashbuilder-component-table/README.md b/packages/dashbuilder-component-table/README.md new file mode 100644 index 00000000000..68aaa94cadb --- /dev/null +++ b/packages/dashbuilder-component-table/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools/dashbuilder-component-table + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/dashbuilder-component-timeseries/README.md b/packages/dashbuilder-component-timeseries/README.md new file mode 100644 index 00000000000..9d0dba3ab71 --- /dev/null +++ b/packages/dashbuilder-component-timeseries/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools/dashbuilder-component-timeseries + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/dashbuilder-component-uniforms/README.md b/packages/dashbuilder-component-uniforms/README.md new file mode 100644 index 00000000000..101ed843f47 --- /dev/null +++ b/packages/dashbuilder-component-uniforms/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools/dashbuilder-component-uniforms + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/dashbuilder-component-victory-charts/README.md b/packages/dashbuilder-component-victory-charts/README.md new file mode 100644 index 00000000000..11f35faa094 --- /dev/null +++ b/packages/dashbuilder-component-victory-charts/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools/dashbuilder-component-victory-charts + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/dashbuilder-editor/README.md b/packages/dashbuilder-editor/README.md index 04202c12acf..8823a40e313 100644 --- a/packages/dashbuilder-editor/README.md +++ b/packages/dashbuilder-editor/README.md @@ -18,3 +18,33 @@ In order to run the development webapp: `pnpm start` + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/dashbuilder-language-service/README.md b/packages/dashbuilder-language-service/README.md index 1ca58d5f43e..56bd4f10a80 100644 --- a/packages/dashbuilder-language-service/README.md +++ b/packages/dashbuilder-language-service/README.md @@ -16,3 +16,33 @@ --> ## Dashbuilder Language Service + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/dashbuilder-swf-monitoring-dashboard/README.md b/packages/dashbuilder-swf-monitoring-dashboard/README.md new file mode 100644 index 00000000000..b71ff219027 --- /dev/null +++ b/packages/dashbuilder-swf-monitoring-dashboard/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools/dashbuilder-swf-monitoring-dashboard + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/dashbuilder-viewer-deployment-webapp/README.md b/packages/dashbuilder-viewer-deployment-webapp/README.md new file mode 100644 index 00000000000..073038afec9 --- /dev/null +++ b/packages/dashbuilder-viewer-deployment-webapp/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools/dashbuilder-viewer-deployment-webapp + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/dashbuilder-viewer-image-env/README.md b/packages/dashbuilder-viewer-image-env/README.md new file mode 100644 index 00000000000..088fc2beaef --- /dev/null +++ b/packages/dashbuilder-viewer-image-env/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools/dashbuilder-viewer-image-env + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/dashbuilder-viewer-image/README.md b/packages/dashbuilder-viewer-image/README.md new file mode 100644 index 00000000000..84501b048f1 --- /dev/null +++ b/packages/dashbuilder-viewer-image/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools/dashbuilder-viewer-image + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/dashbuilder-viewer/README.md b/packages/dashbuilder-viewer/README.md index 04202c12acf..8823a40e313 100644 --- a/packages/dashbuilder-viewer/README.md +++ b/packages/dashbuilder-viewer/README.md @@ -18,3 +18,33 @@ In order to run the development webapp: `pnpm start` + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/dashbuilder/README.md b/packages/dashbuilder/README.md index 9053fa57aee..6e8e57d345e 100644 --- a/packages/dashbuilder/README.md +++ b/packages/dashbuilder/README.md @@ -39,3 +39,33 @@ For further information, please visit the project web site Uberfire, a framework for building rich workbench styled apps on the web. - Cloud-native Runtime environment. + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/dev-deployment-base-image/README.md b/packages/dev-deployment-base-image/README.md index 28c1e4277a1..b0715b85732 100644 --- a/packages/dev-deployment-base-image/README.md +++ b/packages/dev-deployment-base-image/README.md @@ -50,3 +50,33 @@ Run the image with: Then upload a zip file containing the resources (full Java project) - `curl -X POST -H "Content-Type: multipart/form-data" -F "myFile=@" 'http://localhost:8080/upload?apiKey=123'` + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/dev-deployment-dmn-form-webapp-image/README.md b/packages/dev-deployment-dmn-form-webapp-image/README.md new file mode 100644 index 00000000000..aef5577ed7a --- /dev/null +++ b/packages/dev-deployment-dmn-form-webapp-image/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools/dev-deployment-dmn-form-webapp-image + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/dev-deployment-dmn-form-webapp/README.md b/packages/dev-deployment-dmn-form-webapp/README.md new file mode 100644 index 00000000000..34d9cbaaa95 --- /dev/null +++ b/packages/dev-deployment-dmn-form-webapp/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools/dev-deployment-dmn-form-webapp + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/dev-deployment-kogito-quarkus-blank-app-image/README.md b/packages/dev-deployment-kogito-quarkus-blank-app-image/README.md index 995bd572de6..5e9893fbfc0 100644 --- a/packages/dev-deployment-kogito-quarkus-blank-app-image/README.md +++ b/packages/dev-deployment-kogito-quarkus-blank-app-image/README.md @@ -50,3 +50,33 @@ Run the image with: Then upload a zip file containing the resources (DMN, BPMN, etc) - `curl -X POST -H "Content-Type: multipart/form-data" -F "myFile=@" 'http://localhost:8080/upload?apiKey=123'` + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/dev-deployment-kogito-quarkus-blank-app/README.md b/packages/dev-deployment-kogito-quarkus-blank-app/README.md new file mode 100644 index 00000000000..1275ffe34b0 --- /dev/null +++ b/packages/dev-deployment-kogito-quarkus-blank-app/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools/dev-deployment-kogito-quarkus-blank-app + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/dev-deployment-upload-service/README.md b/packages/dev-deployment-upload-service/README.md index 1d28a442118..a18df1de15f 100644 --- a/packages/dev-deployment-upload-service/README.md +++ b/packages/dev-deployment-upload-service/README.md @@ -107,3 +107,33 @@ DEV_DEPLOYMENT__UPLOAD_SERVICE_API_KEY='dev' \ DEV_DEPLOYMENT__UPLOAD_SERVICE_ROOT_PATH='/' \ pnpm start ``` + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/dmn-editor-envelope/README.md b/packages/dmn-editor-envelope/README.md index 4fc58fedf16..952659bf561 100644 --- a/packages/dmn-editor-envelope/README.md +++ b/packages/dmn-editor-envelope/README.md @@ -18,3 +18,33 @@ ## DMN Editor Envelope Package responsible for creating the necessary pumbling for `dmn-editor` to be used inside an Envelope. + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/dmn-editor/README.md b/packages/dmn-editor/README.md new file mode 100644 index 00000000000..94d05a410f9 --- /dev/null +++ b/packages/dmn-editor/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools/dmn-editor + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/dmn-feel-antlr4-parser/README.md b/packages/dmn-feel-antlr4-parser/README.md new file mode 100644 index 00000000000..d841e5671c4 --- /dev/null +++ b/packages/dmn-feel-antlr4-parser/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools/dmn-feel-antlr4-parser + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/dmn-language-service/README.md b/packages/dmn-language-service/README.md new file mode 100644 index 00000000000..b2e15d4bf9b --- /dev/null +++ b/packages/dmn-language-service/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools/dmn-language-service + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/dmn-marshaller-backend-compatibility-tester/README.md b/packages/dmn-marshaller-backend-compatibility-tester/README.md index 2a01f904205..3f3ab3ef439 100644 --- a/packages/dmn-marshaller-backend-compatibility-tester/README.md +++ b/packages/dmn-marshaller-backend-compatibility-tester/README.md @@ -51,3 +51,33 @@ To execute a specific JBang script present in this module you must: - Import the required function (eg.`executeDMNValidation` or `executeDMNSemanticComparison`) in your JS/TS file; - Call one of the above function passing its required parameters. - For the precise args list, please check inside the Java Class Script of your interest and take note of all `@Option` annotated fields. + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/dmn-marshaller/README.md b/packages/dmn-marshaller/README.md new file mode 100644 index 00000000000..13a336b0232 --- /dev/null +++ b/packages/dmn-marshaller/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools/dmn-marshaller + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/dmn-runner/README.md b/packages/dmn-runner/README.md new file mode 100644 index 00000000000..d0db1b86dd2 --- /dev/null +++ b/packages/dmn-runner/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools/dmn-runner + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/dmn-testing-models/README.md b/packages/dmn-testing-models/README.md index 7dccea74c0f..e2d6b73adb8 100644 --- a/packages/dmn-testing-models/README.md +++ b/packages/dmn-testing-models/README.md @@ -35,3 +35,33 @@ To make them available for testing purpose: 2. `pnpm bootstrap` on the root directory 3. cd dmn-testing-models 4. `pnpm build:dev` or `pnpm build:prod` (they behave the same way - this executes `mvn clean verify`) + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/dmn-vscode-extension/README.md b/packages/dmn-vscode-extension/README.md index 4e7d9cf914d..40194c73332 100644 --- a/packages/dmn-vscode-extension/README.md +++ b/packages/dmn-vscode-extension/README.md @@ -58,3 +58,33 @@ The `kogito.dmn.svgFilenameTemplate` and `kogito.dmn.svgFilePath` settings accep | **${fileExtname}** | `.ext` | | **${fileBasename}** | `file.ext` | | **${fileBasenameNoExtension}** | `file` | + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/editor/README.md b/packages/editor/README.md index 6ac4b20583a..c2a031a3e2d 100644 --- a/packages/editor/README.md +++ b/packages/editor/README.md @@ -18,3 +18,33 @@ ## Apache KIE Tools Editor API Interfaces to define Editors. + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/envelope-bus/README.md b/packages/envelope-bus/README.md index d4a22a79f0e..ad2e861e73d 100644 --- a/packages/envelope-bus/README.md +++ b/packages/envelope-bus/README.md @@ -16,3 +16,33 @@ --> ## Envelope Bus + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/envelope/README.md b/packages/envelope/README.md index d4981062a32..9004f402e9a 100644 --- a/packages/envelope/README.md +++ b/packages/envelope/README.md @@ -1 +1,31 @@ ## Envelope + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/eslint/README.md b/packages/eslint/README.md new file mode 100644 index 00000000000..9a4ac69c323 --- /dev/null +++ b/packages/eslint/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools/eslint + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/extended-services-api/README.md b/packages/extended-services-api/README.md new file mode 100644 index 00000000000..ecbbdf77e73 --- /dev/null +++ b/packages/extended-services-api/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools/extended-services-api + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/extended-services-java/README.md b/packages/extended-services-java/README.md index bf1832503d6..aa1c241aed6 100644 --- a/packages/extended-services-java/README.md +++ b/packages/extended-services-java/README.md @@ -47,3 +47,33 @@ The root route is a proxy and will forward your requests to the autogenerated po "started": true } ``` + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/extended-services/README.md b/packages/extended-services/README.md index 9ec1bd8caf7..e5afc13a727 100644 --- a/packages/extended-services/README.md +++ b/packages/extended-services/README.md @@ -70,3 +70,33 @@ The root route is a proxy and will forward your requests to the autogenerated po ### Next Steps - Limit GraalVM Heap Size + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/feel-input-component/README.md b/packages/feel-input-component/README.md new file mode 100644 index 00000000000..1b3703b7b2b --- /dev/null +++ b/packages/feel-input-component/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools/feel-input-component + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/form-dmn/README.md b/packages/form-dmn/README.md new file mode 100644 index 00000000000..8c5ba0c1ba2 --- /dev/null +++ b/packages/form-dmn/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools/form-dmn + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/form-generation-tool/README.md b/packages/form-generation-tool/README.md index e2ebbe6aea9..291d6a088c8 100644 --- a/packages/form-generation-tool/README.md +++ b/packages/form-generation-tool/README.md @@ -111,3 +111,33 @@ mvn clean quarkus:dev ``` For more information on how to setup the **Runtime Tools Quarkus Extension** in your project look at the oficial Kogito [documentation](https://docs.kogito.kie.org/latest/html_single/#con-runtime-tools-dev-ui_kogito-developing-process-services). + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/form/README.md b/packages/form/README.md new file mode 100644 index 00000000000..cec8f538d50 --- /dev/null +++ b/packages/form/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools/form + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/i18n-common-dictionary/README.md b/packages/i18n-common-dictionary/README.md index e69de29bb2d..49a608ec817 100644 --- a/packages/i18n-common-dictionary/README.md +++ b/packages/i18n-common-dictionary/README.md @@ -0,0 +1,29 @@ +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/i18n/README.md b/packages/i18n/README.md index 5f385761d49..df67f2ccd21 100644 --- a/packages/i18n/README.md +++ b/packages/i18n/README.md @@ -120,3 +120,33 @@ interface I18nContextType> { i18n: D; // Dictionary } ``` + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/image-builder/package.json b/packages/image-builder/package.json index dbadf8ddb91..b954e491e1c 100644 --- a/packages/image-builder/package.json +++ b/packages/image-builder/package.json @@ -1,4 +1,5 @@ { + "private": true, "name": "@kie-tools/image-builder", "version": "0.0.0", "description": "", diff --git a/packages/image-env-to-json/README.md b/packages/image-env-to-json/README.md index ad316f39a35..bec99809370 100644 --- a/packages/image-env-to-json/README.md +++ b/packages/image-env-to-json/README.md @@ -68,3 +68,33 @@ The following JSON content will be written to `/my/directory/env.json`: ``` **Note**: Only existing environment variables will be written to the file. + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/import-java-classes-component/README.md b/packages/import-java-classes-component/README.md index 961bc58a6cb..18a9cae8c53 100644 --- a/packages/import-java-classes-component/README.md +++ b/packages/import-java-classes-component/README.md @@ -60,3 +60,33 @@ pnpm start # Compiles a production ready showcase application pnpm build ``` + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/jbpm-quarkus-devui/README.md b/packages/jbpm-quarkus-devui/README.md new file mode 100644 index 00000000000..7bf419daa02 --- /dev/null +++ b/packages/jbpm-quarkus-devui/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools/jbpm-quarkus-devui + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/json-yaml-language-service/README.md b/packages/json-yaml-language-service/README.md index 727c6e69607..0308553e327 100644 --- a/packages/json-yaml-language-service/README.md +++ b/packages/json-yaml-language-service/README.md @@ -32,3 +32,33 @@ JSON and YAML language service to be reused in VSCode and Monaco editor. - indentText() Indent a text. - matchNodeWithLocation() Check if a Node is in Location. - nodeUpUntilType() From a node goes up to levels until a certain node type. + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/k8s-yaml-to-apiserver-requests/README.md b/packages/k8s-yaml-to-apiserver-requests/README.md index 091794ddeec..17bf8607254 100644 --- a/packages/k8s-yaml-to-apiserver-requests/README.md +++ b/packages/k8s-yaml-to-apiserver-requests/README.md @@ -45,3 +45,33 @@ to test changes made to this libray. ```bash pnpm start https://api.to.my.openshift.cluster.com:6443 my-project sha256~MGnPXMPsi1YJkCV6kr970gQYI6KtQWztIObm3jQxUJI ../myDeployment.yaml ``` + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/keyboard-shortcuts/README.md b/packages/keyboard-shortcuts/README.md index b214bc46a69..82ce314e11b 100644 --- a/packages/keyboard-shortcuts/README.md +++ b/packages/keyboard-shortcuts/README.md @@ -16,3 +16,33 @@ --> ## Keyboard Shortcuts + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/kie-bc-editors/README.md b/packages/kie-bc-editors/README.md index 60fa673b0f8..addbf1c133b 100644 --- a/packages/kie-bc-editors/README.md +++ b/packages/kie-bc-editors/README.md @@ -18,3 +18,33 @@ ## Apache KIE Tools GWT Editors Defines `AppFormer.Editor` class for GWT editors (BPMN and DMN). + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/kie-editors-dev-vscode-extension/README.md b/packages/kie-editors-dev-vscode-extension/README.md index 47d28be34f5..554fae7d4f3 100644 --- a/packages/kie-editors-dev-vscode-extension/README.md +++ b/packages/kie-editors-dev-vscode-extension/README.md @@ -16,3 +16,33 @@ --> This is a development distribution. To download the production version, refer to https://marketplace.visualstudio.com/items?itemName=kie-group.vscode-extension-kogito-bundle + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/kie-editors-standalone/README.md b/packages/kie-editors-standalone/README.md index fe2b7d14c2d..3e200c8fce3 100644 --- a/packages/kie-editors-standalone/README.md +++ b/packages/kie-editors-standalone/README.md @@ -92,3 +92,33 @@ The returned object will contain the methods needed to manipulate the Editor: - `getDimensions(uuid: string): Promise`: Returns a Promise containing the dimensions of a node with provided UUID. - `applyState(uuid: string, state: string): Promise`: Applies state to a node given the UUID [None, Selected, Highlight, Invalid]. - `centerNode(uuid: string): Promise`: Centers node on viewable Canvas. + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/kie-sandbox-distribution/README.md b/packages/kie-sandbox-distribution/README.md index fbc5fa9e321..d7c62290b88 100644 --- a/packages/kie-sandbox-distribution/README.md +++ b/packages/kie-sandbox-distribution/README.md @@ -78,3 +78,33 @@ This package contains the `docker-compose` file to run KIE Sandbox and all relat ```bash docker compose --env-file .env up ``` + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/kie-sandbox-extended-services-image/README.md b/packages/kie-sandbox-extended-services-image/README.md index a33de9c5ad3..9072c256693 100644 --- a/packages/kie-sandbox-extended-services-image/README.md +++ b/packages/kie-sandbox-extended-services-image/README.md @@ -76,3 +76,33 @@ $ podman run -p 21345:21345 -i --rm quay.io/kie-tools/kie-sandbox-extended-servi ``` The service will be up at http://localhost:21345 + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/kie-sandbox-fs/README.md b/packages/kie-sandbox-fs/README.md index 4548f6581f8..2cca9f99ab1 100644 --- a/packages/kie-sandbox-fs/README.md +++ b/packages/kie-sandbox-fs/README.md @@ -305,3 +305,33 @@ interface IBackend { ## License MIT + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/kie-sandbox-image/README.md b/packages/kie-sandbox-image/README.md index b9347614bfc..3b43c045fb5 100644 --- a/packages/kie-sandbox-image/README.md +++ b/packages/kie-sandbox-image/README.md @@ -373,3 +373,33 @@ ENV KIE_SANDBOX_DEV_DEPLOYMENT_BASE_IMAGE_URL="quay.io/kie-tools/dev-deployment- ENV KIE_SANDBOX_DEV_DEPLOYMENT_KOGITO_QUARKUS_BLANK_APP_IMAGE_URL="quay.io/kie-tools/dev-deployment-kogito-quarkus-blank-app-image:latest" ENV KIE_SANDBOX_DEV_DEPLOYMENT_DMN_FORM_WEBAPP_IMAGE_URL="quay.io/kie-tools/dev-deployment-dmn-form-webapp-image:latest" ``` + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/kn-plugin-workflow/README.md b/packages/kn-plugin-workflow/README.md index 9eaa0a4baaf..bb9efd70fdb 100644 --- a/packages/kn-plugin-workflow/README.md +++ b/packages/kn-plugin-workflow/README.md @@ -64,3 +64,33 @@ To build the `kn-plugin-workflow` and run end-to-end tests, use the following co - `export KIE_TOOLS_BUILD__runEndToEndTests=true` - `pnpm -r -F "@kie-tools/kn-plugin-workflow..." build:prod` + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/kogito-management-console/README.md b/packages/kogito-management-console/README.md index 19258fbaad4..7ccfc20b7d8 100644 --- a/packages/kogito-management-console/README.md +++ b/packages/kogito-management-console/README.md @@ -120,3 +120,33 @@ This package contains the `Containerfile/Dockerfile` and scripts to build a cont The port used internally on the container can be changed: When building, set the `KOGITO_MANAGEMENT_CONSOLE__port` environment variable to any port you want, and the Containerfile will be built using that port. + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/kogito-serverless-operator/README.md b/packages/kogito-serverless-operator/README.md index ec6f9680815..f16da2c9b60 100644 --- a/packages/kogito-serverless-operator/README.md +++ b/packages/kogito-serverless-operator/README.md @@ -69,3 +69,33 @@ Please see the module's [README file](workflowproj/README.md). ## Development and Contributions Contributing is easy, just take a look at our [contributors](docs/CONTRIBUTING.md)'guide. + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/kogito-swf-builder/README.md b/packages/kogito-swf-builder/README.md index e826781e2a9..0bbeaebec4a 100644 --- a/packages/kogito-swf-builder/README.md +++ b/packages/kogito-swf-builder/README.md @@ -82,3 +82,33 @@ image along with the modules and scripts provided in `@kie-tools/kogito-swf-comm | `KOGITO_SWF_BUILDER_IMAGE__account` | Account where image will be stored. | "kiegroup" | | `KOGITO_SWF_BUILDER_IMAGE__name` | SWF Builder Image name. | "kogito-swf-builder" | | `KOGITO_SWF_BUILDER_IMAGE__buildTag` | Tag to use . | "latest" | + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/kogito-swf-common/README.md b/packages/kogito-swf-common/README.md index 50421ce096f..b3b7a53fcdd 100644 --- a/packages/kogito-swf-common/README.md +++ b/packages/kogito-swf-common/README.md @@ -53,4 +53,32 @@ To build and tests the images the package provides a convenient `Makefile` that ## Building images.. - Copy your image descriptor and modules along with the contents of the `resources` into a separate folder (eg: `/tmp/build`) +- *** + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header - + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/kogito-swf-devmode/README.md b/packages/kogito-swf-devmode/README.md index ea2589f9983..cd77a70887d 100644 --- a/packages/kogito-swf-devmode/README.md +++ b/packages/kogito-swf-devmode/README.md @@ -82,3 +82,33 @@ image along with the modules and scripts provided in `@kie-tools/kogito-swf-comm | `KOGITO_SWF_DEVMODE_IMAGE__account` | Account where image will be stored. | "kiegroup" | | `KOGITO_SWF_DEVMODE_IMAGE__name` | SWF DevMode Image name. | "kogito-swf-devmode" | | `KOGITO_SWF_DEVMODE_IMAGE__buildTag` | Tag to use . | "latest" | + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/kogito-task-console/README.md b/packages/kogito-task-console/README.md index 61704941ffa..fda8778eb0f 100644 --- a/packages/kogito-task-console/README.md +++ b/packages/kogito-task-console/README.md @@ -122,3 +122,33 @@ This package contains the `Containerfile/Dockerfile` and scripts to build a cont The port used internally on the container can be changed: When building, set the `KOGITO_TASK_CONSOLE__port` environment variable to any port you want, and the Containerfile will be built using that port. + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/kubernetes-bridge/README.md b/packages/kubernetes-bridge/README.md new file mode 100644 index 00000000000..18801e7c838 --- /dev/null +++ b/packages/kubernetes-bridge/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools-core/kubernetes-bridge + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/maven-base/README.md b/packages/maven-base/README.md new file mode 100644 index 00000000000..46d1354bd49 --- /dev/null +++ b/packages/maven-base/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools/maven-base + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/maven-config-setup-helper/README.md b/packages/maven-config-setup-helper/README.md index 943b86a772f..abc94ea5b77 100644 --- a/packages/maven-config-setup-helper/README.md +++ b/packages/maven-config-setup-helper/README.md @@ -20,3 +20,33 @@ This package helps to write `.mvn/maven.config` file idempotently without loosing its previous value. It achieves that by creating a copy of the original file at `.mvn/maven.config.original`, so when writing to `.mvn/maven.config`, it combines the original file with the new contents. + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/monaco-editor/README.md b/packages/monaco-editor/README.md index 89a5de559e7..b49a2de67d6 100644 --- a/packages/monaco-editor/README.md +++ b/packages/monaco-editor/README.md @@ -23,3 +23,33 @@ Forked from @peterschussheim/monaco-editor. ## Installation `pnpm add @kie-tools-core/monaco-editor` + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/notifications/README.md b/packages/notifications/README.md index 87d435d6fc1..0cde45bfb8e 100644 --- a/packages/notifications/README.md +++ b/packages/notifications/README.md @@ -63,3 +63,33 @@ In both cases path is mandatory and it will let the user to open the file where - `PROBLEM`, the supported severities are `"INFO" | "WARNING" | "ERROR" | "SUCCESS" | "HINT"`. `SUCCESS` converts to `INFO` which is the default severity. - `ALERT`, the supported severities are `"ERROR" | "WARNING" | "INFO"`. Any other types defaults to `INFO` + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/online-editor/README.md b/packages/online-editor/README.md index 8922864d187..20ce98851fb 100644 --- a/packages/online-editor/README.md +++ b/packages/online-editor/README.md @@ -176,3 +176,33 @@ These tokens can be referenced in the YAML resource using the following notation - `${{ devDeployment.kubernetes.namespace }}` **\*Obs.:** It's important to note that if you're defining a resource YAML in a `.js`/`.ts` file you'll need to escape the `$` character, so a variable would become `\${{ varPath.varName}}`.\* + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/operating-system/README.md b/packages/operating-system/README.md index 1847366915a..5f2152ef50d 100644 --- a/packages/operating-system/README.md +++ b/packages/operating-system/README.md @@ -16,3 +16,33 @@ --> ## Operating System + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/patternfly-base/README.md b/packages/patternfly-base/README.md new file mode 100644 index 00000000000..3f49e9a88ff --- /dev/null +++ b/packages/patternfly-base/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools-core/patternfly-base + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/playwright-base/README.md b/packages/playwright-base/README.md new file mode 100644 index 00000000000..e6c7c22f3f7 --- /dev/null +++ b/packages/playwright-base/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools/playwright-base + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/pmml-editor-marshaller/README.md b/packages/pmml-editor-marshaller/README.md new file mode 100644 index 00000000000..1ec1d3cb533 --- /dev/null +++ b/packages/pmml-editor-marshaller/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools/pmml-editor-marshaller + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/pmml-editor/README.md b/packages/pmml-editor/README.md index 7b2b516f40b..651b14e9f0c 100644 --- a/packages/pmml-editor/README.md +++ b/packages/pmml-editor/README.md @@ -28,3 +28,33 @@ Nothing should be considered concrete at this point. In order to run the development webapp: `pnpm start` + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/pmml-vscode-extension/README.md b/packages/pmml-vscode-extension/README.md index 778bf7aa7e0..6454cd1f76d 100644 --- a/packages/pmml-vscode-extension/README.md +++ b/packages/pmml-vscode-extension/README.md @@ -33,3 +33,33 @@ Create and edit PMML Scorecard files. #### Editing a new PMML file ![alt](./gifs/pmml.gif?raw=true) + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/python-venv/README.md b/packages/python-venv/README.md index a66fff7206b..203221015b8 100644 --- a/packages/python-venv/README.md +++ b/packages/python-venv/README.md @@ -20,3 +20,33 @@ This package manages the Python venv to be used by all other packages when running python scripts. It will install all packages necessary using `pip3`. + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/react-hooks/README.md b/packages/react-hooks/README.md new file mode 100644 index 00000000000..65ae331013c --- /dev/null +++ b/packages/react-hooks/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools-core/react-hooks + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/root-env/README.md b/packages/root-env/README.md new file mode 100644 index 00000000000..2f4e234a522 --- /dev/null +++ b/packages/root-env/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools/root-env + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/runtime-tools-components/README.md b/packages/runtime-tools-components/README.md new file mode 100644 index 00000000000..91224e08e09 --- /dev/null +++ b/packages/runtime-tools-components/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools/runtime-tools-components + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/runtime-tools-management-console-webapp/README.md b/packages/runtime-tools-management-console-webapp/README.md index 26dfaad0b9a..5b5e8a31a08 100644 --- a/packages/runtime-tools-management-console-webapp/README.md +++ b/packages/runtime-tools-management-console-webapp/README.md @@ -214,3 +214,33 @@ To change any of this client configuration access to http://localhost:8280/auth/ Enable `PROD` env mode by running the app with: `RUNTIME_TOOLS_MANAGEMENT_CONSOLE_WEBAPP__kogitoEnvMode=PROD pnpm dev` + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/runtime-tools-process-dev-ui-webapp/README.md b/packages/runtime-tools-process-dev-ui-webapp/README.md new file mode 100644 index 00000000000..d6a2d05fc54 --- /dev/null +++ b/packages/runtime-tools-process-dev-ui-webapp/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools/runtime-tools-process-dev-ui-webapp + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/runtime-tools-process-enveloped-components/README.md b/packages/runtime-tools-process-enveloped-components/README.md new file mode 100644 index 00000000000..637b4f6e6c0 --- /dev/null +++ b/packages/runtime-tools-process-enveloped-components/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools/runtime-tools-process-enveloped-components + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/runtime-tools-process-gateway-api/README.md b/packages/runtime-tools-process-gateway-api/README.md new file mode 100644 index 00000000000..97fdeb7e902 --- /dev/null +++ b/packages/runtime-tools-process-gateway-api/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools/runtime-tools-process-gateway-api + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/runtime-tools-process-webapp-components/README.md b/packages/runtime-tools-process-webapp-components/README.md new file mode 100644 index 00000000000..9ae02c2e1a3 --- /dev/null +++ b/packages/runtime-tools-process-webapp-components/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools/runtime-tools-process-webapp-components + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/runtime-tools-shared-enveloped-components/README.md b/packages/runtime-tools-shared-enveloped-components/README.md new file mode 100644 index 00000000000..cc25cccb457 --- /dev/null +++ b/packages/runtime-tools-shared-enveloped-components/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools/runtime-tools-shared-enveloped-components + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/runtime-tools-shared-gateway-api/README.md b/packages/runtime-tools-shared-gateway-api/README.md new file mode 100644 index 00000000000..6447dff745c --- /dev/null +++ b/packages/runtime-tools-shared-gateway-api/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools/runtime-tools-shared-gateway-api + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/runtime-tools-shared-webapp-components/README.md b/packages/runtime-tools-shared-webapp-components/README.md new file mode 100644 index 00000000000..e33dff608ec --- /dev/null +++ b/packages/runtime-tools-shared-webapp-components/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools/runtime-tools-shared-webapp-components + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/runtime-tools-swf-enveloped-components/README.md b/packages/runtime-tools-swf-enveloped-components/README.md new file mode 100644 index 00000000000..f004ff8169d --- /dev/null +++ b/packages/runtime-tools-swf-enveloped-components/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools/runtime-tools-swf-enveloped-components + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/runtime-tools-swf-gateway-api/README.md b/packages/runtime-tools-swf-gateway-api/README.md new file mode 100644 index 00000000000..c6543d27bd3 --- /dev/null +++ b/packages/runtime-tools-swf-gateway-api/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools/runtime-tools-swf-gateway-api + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/runtime-tools-swf-webapp-components/README.md b/packages/runtime-tools-swf-webapp-components/README.md new file mode 100644 index 00000000000..5975f7b9da6 --- /dev/null +++ b/packages/runtime-tools-swf-webapp-components/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools/runtime-tools-swf-webapp-components + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/runtime-tools-task-console-webapp/README.md b/packages/runtime-tools-task-console-webapp/README.md index 2c7ef23dfa2..bb85246324f 100644 --- a/packages/runtime-tools-task-console-webapp/README.md +++ b/packages/runtime-tools-task-console-webapp/README.md @@ -81,3 +81,33 @@ To change any of this client configuration access to http://localhost:8280/auth/ Enable `PROD` env mode by running the app with: `RUNTIME_TOOLS_TASK_CONSOLE_WEBAPP__kogitoEnvMode=PROD pnpm dev` + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/scesim-editor/README.md b/packages/scesim-editor/README.md index f3bae280d2c..b6ce7ec77f6 100644 --- a/packages/scesim-editor/README.md +++ b/packages/scesim-editor/README.md @@ -54,3 +54,33 @@ To launch it, simply type in your terminal the following command: A web server with a Dev Webapp of Test Scenario editor will be launched, reachable at the following address: http://localhost:9004/ or http://192.168.1.128:9004/ + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/scesim-marshaller/README.md b/packages/scesim-marshaller/README.md new file mode 100644 index 00000000000..8c25d711e85 --- /dev/null +++ b/packages/scesim-marshaller/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools/scesim-marshaller + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/serverless-logic-web-tools-base-builder-image-env/README.md b/packages/serverless-logic-web-tools-base-builder-image-env/README.md new file mode 100644 index 00000000000..47e2a182f3a --- /dev/null +++ b/packages/serverless-logic-web-tools-base-builder-image-env/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools/serverless-logic-web-tools-base-builder-image-env + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/serverless-logic-web-tools-base-builder-image/README.md b/packages/serverless-logic-web-tools-base-builder-image/README.md new file mode 100644 index 00000000000..6ef68048d5e --- /dev/null +++ b/packages/serverless-logic-web-tools-base-builder-image/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools/serverless-logic-web-tools-base-builder-image + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/serverless-logic-web-tools-swf-builder-image-env/README.md b/packages/serverless-logic-web-tools-swf-builder-image-env/README.md new file mode 100644 index 00000000000..2b3cb8b08bf --- /dev/null +++ b/packages/serverless-logic-web-tools-swf-builder-image-env/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools/serverless-logic-web-tools-swf-builder-image-env + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/serverless-logic-web-tools-swf-builder-image/README.md b/packages/serverless-logic-web-tools-swf-builder-image/README.md new file mode 100644 index 00000000000..f5704353d3f --- /dev/null +++ b/packages/serverless-logic-web-tools-swf-builder-image/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools/serverless-logic-web-tools-swf-builder-image + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/serverless-logic-web-tools-swf-deployment-quarkus-app/README.md b/packages/serverless-logic-web-tools-swf-deployment-quarkus-app/README.md new file mode 100644 index 00000000000..eae80fea2e5 --- /dev/null +++ b/packages/serverless-logic-web-tools-swf-deployment-quarkus-app/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools/serverless-logic-web-tools-swf-deployment-quarkus-app + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/serverless-logic-web-tools-swf-dev-mode-image-env/README.md b/packages/serverless-logic-web-tools-swf-dev-mode-image-env/README.md new file mode 100644 index 00000000000..9b386656cf3 --- /dev/null +++ b/packages/serverless-logic-web-tools-swf-dev-mode-image-env/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools/serverless-logic-web-tools-swf-dev-mode-image-env + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/serverless-logic-web-tools-swf-dev-mode-image/README.md b/packages/serverless-logic-web-tools-swf-dev-mode-image/README.md new file mode 100644 index 00000000000..a8c785c0f30 --- /dev/null +++ b/packages/serverless-logic-web-tools-swf-dev-mode-image/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools/serverless-logic-web-tools-swf-dev-mode-image + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/serverless-logic-web-tools/README.md b/packages/serverless-logic-web-tools/README.md new file mode 100644 index 00000000000..5c882c5e196 --- /dev/null +++ b/packages/serverless-logic-web-tools/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools/serverless-logic-web-tools + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/serverless-workflow-combined-editor/README.md b/packages/serverless-workflow-combined-editor/README.md new file mode 100644 index 00000000000..c1de10d4674 --- /dev/null +++ b/packages/serverless-workflow-combined-editor/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools/serverless-workflow-combined-editor + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/serverless-workflow-dev-ui-monitoring-webapp/README.md b/packages/serverless-workflow-dev-ui-monitoring-webapp/README.md new file mode 100644 index 00000000000..682eed33bb3 --- /dev/null +++ b/packages/serverless-workflow-dev-ui-monitoring-webapp/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools/serverless-workflow-dev-ui-monitoring-webapp + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/serverless-workflow-dev-ui-webapp/README.md b/packages/serverless-workflow-dev-ui-webapp/README.md new file mode 100644 index 00000000000..275c745c4a6 --- /dev/null +++ b/packages/serverless-workflow-dev-ui-webapp/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools/serverless-workflow-dev-ui-webapp + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/serverless-workflow-diagram-editor-assets/README.md b/packages/serverless-workflow-diagram-editor-assets/README.md new file mode 100644 index 00000000000..10298c7b77c --- /dev/null +++ b/packages/serverless-workflow-diagram-editor-assets/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools/serverless-workflow-diagram-editor-assets + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/serverless-workflow-diagram-editor-envelope/README.md b/packages/serverless-workflow-diagram-editor-envelope/README.md new file mode 100644 index 00000000000..90971e98d23 --- /dev/null +++ b/packages/serverless-workflow-diagram-editor-envelope/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools/serverless-workflow-diagram-editor-envelope + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/serverless-workflow-diagram-editor/README.md b/packages/serverless-workflow-diagram-editor/README.md new file mode 100644 index 00000000000..1360aa694d6 --- /dev/null +++ b/packages/serverless-workflow-diagram-editor/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools/serverless-workflow-diagram-editor + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/serverless-workflow-jq-expressions/README.md b/packages/serverless-workflow-jq-expressions/README.md index 5bca88ddecd..5875bfdc45d 100644 --- a/packages/serverless-workflow-jq-expressions/README.md +++ b/packages/serverless-workflow-jq-expressions/README.md @@ -16,3 +16,33 @@ --> jq-expressions + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/serverless-workflow-language-service/README.md b/packages/serverless-workflow-language-service/README.md index e19bbf0926b..5d55ac01eef 100644 --- a/packages/serverless-workflow-language-service/README.md +++ b/packages/serverless-workflow-language-service/README.md @@ -16,3 +16,33 @@ --> ## Serverless Workflow Language Service + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/serverless-workflow-service-catalog/README.md b/packages/serverless-workflow-service-catalog/README.md new file mode 100644 index 00000000000..c814ab2ac6a --- /dev/null +++ b/packages/serverless-workflow-service-catalog/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools/serverless-workflow-service-catalog + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/serverless-workflow-standalone-editor/README.md b/packages/serverless-workflow-standalone-editor/README.md index 093b53cd105..9dee228d9a9 100644 --- a/packages/serverless-workflow-standalone-editor/README.md +++ b/packages/serverless-workflow-standalone-editor/README.md @@ -66,3 +66,33 @@ The returned object will contain the methods needed to manipulate the Editor: - `redo(): void`: Redo the last undone change in the Editor. This will also fire the subscribed callbacks of content changes. - `validate(): Promise`: Validates the serverless workflow json/yaml content based on its schemas and it also includes custom validations specific to serverless workflow rules. - `setTheme(theme: EditorTheme): Promise`: This sets theme to the editors on the web application. + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/serverless-workflow-text-editor/README.md b/packages/serverless-workflow-text-editor/README.md new file mode 100644 index 00000000000..7687dce40c3 --- /dev/null +++ b/packages/serverless-workflow-text-editor/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools/serverless-workflow-text-editor + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/serverless-workflow-vscode-extension/README.md b/packages/serverless-workflow-vscode-extension/README.md index 29de3224b84..975140c56b0 100644 --- a/packages/serverless-workflow-vscode-extension/README.md +++ b/packages/serverless-workflow-vscode-extension/README.md @@ -98,3 +98,33 @@ Some Open Source projects were vital for the development of this extension, and - [Apicurio](https://www.apicur.io/): for our service catalog integration; You can also checkout the [CNCF Serverless Workflow VS Code extension](https://marketplace.visualstudio.com/items?itemName=serverlessworkflow.serverless-workflow-vscode-extension) at VS Code Marketplace. + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/sonataflow-deployment-webapp/README.md b/packages/sonataflow-deployment-webapp/README.md index 54220f3c657..9f6b5709e39 100644 --- a/packages/sonataflow-deployment-webapp/README.md +++ b/packages/sonataflow-deployment-webapp/README.md @@ -187,3 +187,33 @@ Please replace: - `appName` with the desired name for the app - `showDisclaimer` show/hide the development disclamer - `dataIndexUrl` optional url to your SonataFlow Data Index Service. If not set the app will try to use the embedded Data Index Service. + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/sonataflow-quarkus-devui/README.md b/packages/sonataflow-quarkus-devui/README.md new file mode 100644 index 00000000000..d2368c8df28 --- /dev/null +++ b/packages/sonataflow-quarkus-devui/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools/sonataflow-quarkus-devui + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/storybook-base/README.md b/packages/storybook-base/README.md new file mode 100644 index 00000000000..64f048c9b67 --- /dev/null +++ b/packages/storybook-base/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools/storybook-base + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/stunner-editors-dmn-loader/README.md b/packages/stunner-editors-dmn-loader/README.md new file mode 100644 index 00000000000..ac6f2f7c1c1 --- /dev/null +++ b/packages/stunner-editors-dmn-loader/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools/stunner-editors-dmn-loader + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/stunner-editors/README.md b/packages/stunner-editors/README.md new file mode 100644 index 00000000000..7bbf4c9de64 --- /dev/null +++ b/packages/stunner-editors/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools/stunner-editors + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/switch-expression-ts/README.md b/packages/switch-expression-ts/README.md index 55b44564f1c..c18f6336b5e 100644 --- a/packages/switch-expression-ts/README.md +++ b/packages/switch-expression-ts/README.md @@ -18,3 +18,33 @@ ## @kie-tools-core/switch-expression-ts A switch expression implementation in TypeScript + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/text-editor/README.md b/packages/text-editor/README.md new file mode 100644 index 00000000000..2d1fed57b0d --- /dev/null +++ b/packages/text-editor/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools/text-editor + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/tsconfig/README.md b/packages/tsconfig/README.md new file mode 100644 index 00000000000..52cf10bb913 --- /dev/null +++ b/packages/tsconfig/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools/tsconfig + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/uniforms-bootstrap4-codegen/README.md b/packages/uniforms-bootstrap4-codegen/README.md index 23f1e378ae0..67995ad28e0 100644 --- a/packages/uniforms-bootstrap4-codegen/README.md +++ b/packages/uniforms-bootstrap4-codegen/README.md @@ -18,3 +18,33 @@ ## Uniforms Bootstrap 4 Codegen This module contains the [Uniforms](https://uniforms.tools) theme contain to generate Bootstrap 4 forms for the `@kie-tools/form-generation-tool`. + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/uniforms-patternfly-codegen/README.md b/packages/uniforms-patternfly-codegen/README.md index 8180cd3ab5d..5352414408f 100644 --- a/packages/uniforms-patternfly-codegen/README.md +++ b/packages/uniforms-patternfly-codegen/README.md @@ -18,3 +18,33 @@ ## Uniforms Patternfly Codegen This module contains the [Uniforms](https://uniforms.tools) theme contain to generate Patternfly forms for the `@kie-tools/form-generation-tool`. + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/uniforms-patternfly/README.md b/packages/uniforms-patternfly/README.md index b2bef0fae5d..789e3ca7094 100644 --- a/packages/uniforms-patternfly/README.md +++ b/packages/uniforms-patternfly/README.md @@ -112,3 +112,33 @@ And that's it! `AutoForm` will generate a complete form with labeled fields, err Also, it will take care of validation and handle model changes. In case you need more advanced feature, take a deeper look into the Uniforms docs. + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/unitables-dmn/README.md b/packages/unitables-dmn/README.md new file mode 100644 index 00000000000..2a6c457b309 --- /dev/null +++ b/packages/unitables-dmn/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools/unitables-dmn + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/unitables/README.md b/packages/unitables/README.md new file mode 100644 index 00000000000..715d5e38872 --- /dev/null +++ b/packages/unitables/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools/unitables + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/vscode-extension-common-test-helpers/README.md b/packages/vscode-extension-common-test-helpers/README.md index 404540d5b14..acf29e3f21c 100644 --- a/packages/vscode-extension-common-test-helpers/README.md +++ b/packages/vscode-extension-common-test-helpers/README.md @@ -18,3 +18,33 @@ ## VSCode extension common test helpers Common test helper methods for Kie Tools editors VSCode extensions. + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/vscode-extension-dashbuilder-editor/README.md b/packages/vscode-extension-dashbuilder-editor/README.md index 37823e9a89a..15e7e952794 100644 --- a/packages/vscode-extension-dashbuilder-editor/README.md +++ b/packages/vscode-extension-dashbuilder-editor/README.md @@ -42,3 +42,33 @@ Create and edit Dashbuilder dashboards files (\*.dash.json, \*.dash.yaml, \*.das ### About Dashbuilder For more information check [Dashbuilder Website](https://www.dashbuilder.org/). + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/vscode-extension-kie-ba-bundle/README.md b/packages/vscode-extension-kie-ba-bundle/README.md index df492192d32..a0748783c47 100644 --- a/packages/vscode-extension-kie-ba-bundle/README.md +++ b/packages/vscode-extension-kie-ba-bundle/README.md @@ -37,3 +37,33 @@ Create and edit BPMN, DMN and SceSim files. ### Editing a new DMN file ![alt](./gifs/dmn.gif?raw=true) + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/vscode-extension-kogito-bundle/README.md b/packages/vscode-extension-kogito-bundle/README.md index e3070af5443..9ecc1cefe7b 100644 --- a/packages/vscode-extension-kogito-bundle/README.md +++ b/packages/vscode-extension-kogito-bundle/README.md @@ -47,3 +47,33 @@ Create and edit Dashbuilder, Serverless Workflow, BPMN, DMN and SceSim files. ### Editing a new Dashbuilder file ![alt](./gifs/dashbuilder.gif?raw=true) + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/vscode-extension/README.md b/packages/vscode-extension/README.md index fe838371e26..12371e9807f 100644 --- a/packages/vscode-extension/README.md +++ b/packages/vscode-extension/README.md @@ -16,3 +16,33 @@ --> ## Visual Studio Code extension library + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/vscode-java-code-completion-extension-plugin/README.md b/packages/vscode-java-code-completion-extension-plugin/README.md index 95f796450e2..8ebde201daf 100644 --- a/packages/vscode-java-code-completion-extension-plugin/README.md +++ b/packages/vscode-java-code-completion-extension-plugin/README.md @@ -51,3 +51,33 @@ and you also need `redhat.java` as extension dependency: ``` Once done that, the Language Server will automatically recognize the new plugin. + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/vscode-java-code-completion/README.md b/packages/vscode-java-code-completion/README.md index 84e0ac48ffb..f2b0474c891 100644 --- a/packages/vscode-java-code-completion/README.md +++ b/packages/vscode-java-code-completion/README.md @@ -54,3 +54,33 @@ The library is separated into two submodules: - `VsCodeJavaCodeCompletionApi.getAccessors(fqcn:string,query:string): JavaCodeCompletionAccessor[]`: Receives the FQCN and a query to search in that - `VsCodeJavaCodeCompletionApi.getClasses(query:string): JavaCodeCompletionClass[]`: Receives the query to search classes in project classpath - `VsCodeJavaCodeCompletionApi.isJavaLanguageServerAvailable(): boolean`: Returns true if the server is ready to be used. + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/webpack-base/README.md b/packages/webpack-base/README.md new file mode 100644 index 00000000000..c0a69405bbf --- /dev/null +++ b/packages/webpack-base/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools-core/webpack-base + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/workspace/README.md b/packages/workspace/README.md index 630a7b83daf..8f7cf76a866 100644 --- a/packages/workspace/README.md +++ b/packages/workspace/README.md @@ -16,3 +16,33 @@ --> ## Apache KIE Tools Workspace + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/workspaces-git-fs/README.md b/packages/workspaces-git-fs/README.md new file mode 100644 index 00000000000..0c5365fdded --- /dev/null +++ b/packages/workspaces-git-fs/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools-core/workspaces-git-fs + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/xml-parser-ts-codegen/README.md b/packages/xml-parser-ts-codegen/README.md index 52bc2f242bd..b71b95101d4 100644 --- a/packages/xml-parser-ts-codegen/README.md +++ b/packages/xml-parser-ts-codegen/README.md @@ -58,3 +58,33 @@ Types and metadata will be written to the same folder of `your-xsd-file.xsd`, at - Add `` information to the generated TypeScript types. PRs are welcome! + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/xml-parser-ts/README.md b/packages/xml-parser-ts/README.md index 5b07d9d8bb3..1722091c8dc 100644 --- a/packages/xml-parser-ts/README.md +++ b/packages/xml-parser-ts/README.md @@ -28,3 +28,33 @@ This lets you parse/build XML strings from/to JSON using types and metadata gene ### Some characteristics: 1. Namespaces declared on the original XML can be preserved when building from the JSON. + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/yaml-language-server/README.md b/packages/yaml-language-server/README.md index cd5a548a72b..8b57a11c558 100644 --- a/packages/yaml-language-server/README.md +++ b/packages/yaml-language-server/README.md @@ -18,3 +18,33 @@ ## YAML Language Server Esbuild package to wrap [YAML Language Server](https://github.com/redhat-developer/yaml-language-server) and allow the use in Webpack. + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/yard-editor/README.md b/packages/yard-editor/README.md index 6fc368e8a64..9392d9ea7eb 100644 --- a/packages/yard-editor/README.md +++ b/packages/yard-editor/README.md @@ -41,3 +41,33 @@ To build the module: `pnpm build:prod` To build the module in dev mode (no tests): `pnpm build:dev` To run the development webapp: `pnpm start` + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/yard-language-service/README.md b/packages/yard-language-service/README.md index dbf74785e9f..949baeee678 100644 --- a/packages/yard-language-service/README.md +++ b/packages/yard-language-service/README.md @@ -16,3 +16,33 @@ --> ## YaRD Language Service + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/yard-model/README.md b/packages/yard-model/README.md new file mode 100644 index 00000000000..0bc97ebe917 --- /dev/null +++ b/packages/yard-model/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools/yard-model + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/yard-validator-worker/README.md b/packages/yard-validator-worker/README.md index 9e858167bf5..0bf467a830e 100644 --- a/packages/yard-validator-worker/README.md +++ b/packages/yard-validator-worker/README.md @@ -37,3 +37,33 @@ There is a static test page at demo/demo.html. Build the project before running - Conflicting rows. Two rows return different results with overlapping or subsuming constraints. - Overlapping rows. Two rows can be activated by the same data, but the rows do not subsume each other. - Gaps between the rows + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/yard-validator/README.md b/packages/yard-validator/README.md index 868e3b2d373..81032df634f 100644 --- a/packages/yard-validator/README.md +++ b/packages/yard-validator/README.md @@ -23,3 +23,33 @@ The TypeScript source provides methods for getting the reporting as VSCode compatible Notifications. The webworker file needs to be included separately. + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/packages/yard-vscode-extension/README.md b/packages/yard-vscode-extension/README.md index 06b2eb61794..0b7e07febf3 100644 --- a/packages/yard-vscode-extension/README.md +++ b/packages/yard-vscode-extension/README.md @@ -32,3 +32,33 @@ Create and edit yard (Yet Another Rule Definition) files (\*.yard.yaml, \*.yard. | --------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | | `kogito.yard.runOnSave` | Execute a command on each save operation of the yard file | _empty_ | | `kogito.yard.automaticallyOpenDiagramEditorAlongsideTextEditor` | When opening yard files, decide whether or not to open the Diagram Editor alongside the text editor. Regardless of the configured option, you can always open the yard Diagram Editor using the 'Open as Diagram' button. | `Ask next time` (possible: `Open automatically`, `Do not open`, `Ask next time`) | + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/repo/graph.dot b/repo/graph.dot index ae1cd64f8f6..4551b05a8a8 100644 --- a/repo/graph.dot +++ b/repo/graph.dot @@ -5,7 +5,7 @@ digraph G { "kie-tools-root" [ color = "black", fontcolor = "black", style = "dashed, rounded" ]; "@kie-tools-scripts/bootstrap" [ color = "black", fontcolor = "black", style = "dashed, rounded" ]; "@kie-tools-scripts/check-junit-report-results" [ color = "black", fontcolor = "black", style = "dashed, rounded" ]; - "@kie-tools-scripts/run-script-if" [ color = "blue", fontcolor = "blue", style = "rounded" ]; + "@kie-tools-scripts/run-script-if" [ color = "black", fontcolor = "black", style = "dashed, rounded" ]; "@kie-tools-scripts/sparse-checkout" [ color = "black", fontcolor = "black", style = "dashed, rounded" ]; "@kie-tools-scripts/update-kogito-version" [ color = "black", fontcolor = "black", style = "dashed, rounded" ]; "@kie-tools-scripts/update-version" [ color = "black", fontcolor = "black", style = "dashed, rounded" ]; @@ -56,7 +56,7 @@ digraph G { "@kie-tools/cors-proxy-api" [ color = "blue", fontcolor = "blue", style = "rounded" ]; "@kie-tools/eslint" [ color = "black", fontcolor = "black", style = "dashed, rounded" ]; "@kie-tools/cors-proxy-image" [ color = "black", fontcolor = "black", style = "dashed, rounded" ]; - "@kie-tools/image-builder" [ color = "blue", fontcolor = "blue", style = "rounded" ]; + "@kie-tools/image-builder" [ color = "black", fontcolor = "black", style = "dashed, rounded" ]; "@kie-tools/dashbuilder" [ color = "black", fontcolor = "black", style = "dashed, rounded" ]; "@kie-tools/maven-base" [ color = "black", fontcolor = "black", style = "dashed, rounded" ]; "@kie-tools/dashbuilder-component-assembler" [ color = "black", fontcolor = "black", style = "dashed, rounded" ]; @@ -357,7 +357,7 @@ digraph G { "@kie-tools-core/i18n" -> "@kie-tools/root-env" [ style = "dashed", color = "purple" ]; "@kie-tools-core/i18n" -> "@kie-tools/tsconfig" [ style = "dashed", color = "purple" ]; "@kie-tools/i18n-common-dictionary" -> "@kie-tools-core/i18n" [ style = "solid", color = "blue" ]; - "@kie-tools/image-builder" -> "@kie-tools/tsconfig" [ style = "dashed", color = "blue" ]; + "@kie-tools/image-builder" -> "@kie-tools/tsconfig" [ style = "dashed", color = "black" ]; "@kie-tools/image-env-to-json" -> "@kie-tools-core/webpack-base" [ style = "dashed", color = "black" ]; "@kie-tools/image-env-to-json" -> "@kie-tools/eslint" [ style = "dashed", color = "black" ]; "@kie-tools/image-env-to-json" -> "@kie-tools/tsconfig" [ style = "dashed", color = "black" ]; diff --git a/scripts/bootstrap/README.md b/scripts/bootstrap/README.md new file mode 100644 index 00000000000..9d2a7dcf363 --- /dev/null +++ b/scripts/bootstrap/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools-scripts/bootstrap + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/scripts/build-env/README.md b/scripts/build-env/README.md index d6c43115afb..bbe0ed6adcb 100644 --- a/scripts/build-env/README.md +++ b/scripts/build-env/README.md @@ -119,3 +119,33 @@ $ cd ~/[my-repo]/packages/b $ build-env myProperty fooz ``` + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/scripts/check-junit-report-results/README.md b/scripts/check-junit-report-results/README.md new file mode 100644 index 00000000000..c1ed1d16297 --- /dev/null +++ b/scripts/check-junit-report-results/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools-scripts/check-junit-report-results + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/scripts/run-script-if/package.json b/scripts/run-script-if/package.json index 910448aa472..df1dc6e103f 100644 --- a/scripts/run-script-if/package.json +++ b/scripts/run-script-if/package.json @@ -1,4 +1,5 @@ { + "private": true, "name": "@kie-tools-scripts/run-script-if", "version": "0.0.0", "description": "", diff --git a/scripts/sparse-checkout/README.md b/scripts/sparse-checkout/README.md index c90a3bc952c..56629aa39f5 100644 --- a/scripts/sparse-checkout/README.md +++ b/scripts/sparse-checkout/README.md @@ -63,3 +63,33 @@ pnpm -F boxed-expression-component... build:dev' ## Known issues - `repo/graph.dot` and `repo/graph.json` are not reliably re-generated by `pnpm bootstrap` because not all packages are present. Adding, removing, or renaming packages on partial clones won't work out of the box without a lot of manual intervention. + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/scripts/update-version/README.md b/scripts/update-version/README.md new file mode 100644 index 00000000000..5310ecac9c3 --- /dev/null +++ b/scripts/update-version/README.md @@ -0,0 +1,48 @@ + + +## @kie-tools-scripts/update-version + +--- + +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header +- + +- Hibernate, an LGPL project, is being used. Hibernate is in the process of + relicensing to ASL v2 +- Some files, particularly test files, and those not supporting comments, may + be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html From 37ee5d0093bf00f1f3b6fa7253de04cac5d3850e Mon Sep 17 00:00:00 2001 From: Rodrigo Antunes Date: Wed, 15 May 2024 12:27:14 -0300 Subject: [PATCH 15/90] NO-ISSUE: KIE Tools Setup branch Jenkins job (#2319) --- .ci/jenkins/Jenkinsfile.setup-branch | 180 +++++++++++++++++++ .ci/jenkins/shared-scripts/buildUtils.groovy | 18 ++ 2 files changed, 198 insertions(+) create mode 100644 .ci/jenkins/Jenkinsfile.setup-branch diff --git a/.ci/jenkins/Jenkinsfile.setup-branch b/.ci/jenkins/Jenkinsfile.setup-branch new file mode 100644 index 00000000000..5a79d3814f3 --- /dev/null +++ b/.ci/jenkins/Jenkinsfile.setup-branch @@ -0,0 +1,180 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +@Library('jenkins-pipeline-shared-libraries')_ + +pipeline { + agent { + docker { + image 'quay.io/kie-tools/kie-tools-ci-build:latest' + args '--shm-size=2g --privileged --group-add docker' + label util.avoidFaultyNodes() + } + } + + options { + timeout(time: 60, unit: 'MINUTES') + } + + parameters { + string(name: 'CHECKOUT_BRANCH_NAME', defaultValue: 'main' description: 'Set the Git branch to checkout', trim: true) + string(name: 'NEW_BRANCH_NAME', description: 'Set the Git branch to be created', trim: true) + string(name: 'KIE_TOOLS_VERSION', description: 'KIE Tools version to set', trim: true) + string(name: 'KOGITO_MAVEN_VERSION', description: 'Kogito maven version to set', trim: true) + string(name: 'KOGITO_IMAGES_TAG', description: 'Kogito images tag to set', trim: true) + } + + stages { + stage('Load local shared scripts') { + steps { + script { + pipelineVars = load '.ci/jenkins/shared-scripts/pipelineVars.groovy' + buildUtils = load '.ci/jenkins/shared-scripts/buildUtils.groovy' + githubUtils = load '.ci/jenkins/shared-scripts/githubUtils.groovy' + } + } + } + + stage('Initialize') { + steps { + script { + currentBuild.displayName = params.KIE_TOOLS_VERSION + } + } + } + + stage('Clean workspace before build') { + steps { + cleanWs(deleteDirs: true, disableDeferredWipeout: true) + } + } + + stage('Checkout kie-tools') { + steps { + dir('kie-tools') { + script { + githubUtils.checkoutRepo( + "http://github.com/${pipelineVars.githubRepositorySlug}.git", + "${params.CHECKOUT_BRANCH_NAME}", + "${pipelineVars.kieToolsBotGithubCredentialsId}" + ) + } + } + } + } + + stage('CI Image Build') { + steps { + script { + build( + job: "KIE/kie-tools/kie-tools-ci-jobs/kie-tools-ci-image-build/${params.CHECKOUT_BRANCH_NAME}", + wait: false, + parameters: [ + string(name: 'IMAGE_TAG', value: "${params.KIE_TOOLS_VERSION}") + ] + ) + } + } + } + + stage('Setup PNPM') { + steps { + dir('kie-tools') { + script { + buildUtils.setupPnpm() + } + } + } + } + + stage('PNPM Bootstrap') { + steps { + dir('kie-tools') { + script { + buildUtils.pnpmBootstrap() + } + } + } + } + + stage('Setup new branch') { + steps { + dir('kie-tools') { + script { + sh """#!/bin/bash -el + git config user.email asf-ci-kie@jenkins.kie.apache.org + git config user.name asf-ci-kie + git checkout -b ${params.NEW_BRANCH_NAME} + """.trim() + } + } + } + } + + stage('Update project version') { + steps { + dir('kie-tools') { + script { + buildUtils.pnpmUpdateProjectVersion(params.KIE_TOOLS_VERSION) + } + } + } + } + + stage('Update kogito version') { + steps { + dir('kie-tools') { + script { + buildUtils.pnpmUpdateKogitoVersion(params.KOGITO_MAVEN_VERSION, params.KOGITO_IMAGES_TAG) + } + } + } + } + + stage('Replace CI image tag') { + steps { + dir('kie-tools/.ci/jenkins') { + script { + sh """#!/bin/bash -el + find . -type f -name 'Jenkinsfile.*' -exec sed -E -i "s%(kie-tools-ci-build:).*%\1${params.KIE_TOOLS_VERSION}% {} \;" + """.trim() + } + } + } + } + + stage('Commit and Push changes') { + steps { + dir('kie-tools') { + script { + sh """#!/bin/bash -el + git add . + git commit --allow-empty -am "Update development version to ${params.KIE_TOOLS_VERSION}" + """.trim() + githubUtils.pushObject('origin', "${params.NEW_BRANCH_NAME}", "${pipelineVars.asfGithubPushCredentialsId}") + } + } + } + } + } + + post { + always { + cleanWs(deleteDirs: true, disableDeferredWipeout: true) + } + } +} diff --git a/.ci/jenkins/shared-scripts/buildUtils.groovy b/.ci/jenkins/shared-scripts/buildUtils.groovy index a7da3b1f91f..054e9fba624 100644 --- a/.ci/jenkins/shared-scripts/buildUtils.groovy +++ b/.ci/jenkins/shared-scripts/buildUtils.groovy @@ -84,6 +84,24 @@ def pnpmBuild(String filters, Integer workspaceConcurrency = 1) { """.trim() } +/** +* PNPM update project version to +*/ +def pnpmUpdateProjectVersion(String projectVersion) { + sh """#!/bin/bash -el + pnpm update-version-to ${projectVersion} + """.trim() +} + +/** +* PNPM update kogito version to +*/ +def pnpmUpdateKogitoVersion(String kogitoVersion, String imagesTag) { + sh """#!/bin/bash -el + pnpm update-kogito-version-to --maven ${kogitoVersion} --images-tag ${imagesTag} + """.trim() +} + /** * Start KIE-Tools required services for build and test */ From cd8d9d681890aa9444631c3eb73b45f21044490a Mon Sep 17 00:00:00 2001 From: Rodrigo Antunes Date: Wed, 15 May 2024 12:27:28 -0300 Subject: [PATCH 16/90] NO-ISSUE: Update weekly job to use version defined on package.json file (#2323) --- .ci/jenkins/Jenkinsfile.weekly-publish | 30 +++++++++++++++++++++++--- 1 file changed, 27 insertions(+), 3 deletions(-) diff --git a/.ci/jenkins/Jenkinsfile.weekly-publish b/.ci/jenkins/Jenkinsfile.weekly-publish index 1b1125a2c6f..2111fcf7dd3 100644 --- a/.ci/jenkins/Jenkinsfile.weekly-publish +++ b/.ci/jenkins/Jenkinsfile.weekly-publish @@ -17,7 +17,7 @@ import java.text.SimpleDateFormat -def sdf = new SimpleDateFormat("yyyy-MM-dd") +def sdf = new SimpleDateFormat('yyyy-MM-dd') def dateDefaultValue = sdf.format(new Date()) @Library('jenkins-pipeline-shared-libraries')_ @@ -81,6 +81,16 @@ pipeline { } } + stage('Setup package version') { + steps { + dir('kie-tools') { + script { + env.PACKAGE_VERSION = sh(returnStdout: true, script: "#!/bin/bash -el \n node -p \"require('./package.json').version\"").trim() + } + } + } + } + stage('Setup PNPM') { steps { dir('kie-tools') { @@ -107,7 +117,7 @@ pipeline { script { withCredentials([usernamePassword(credentialsId: "${pipelineVars.mavenDeployRepositoryCredentialsId}", usernameVariable: 'REPOSITORY_USER', passwordVariable: 'REPOSITORY_TOKEN')]) { configFileProvider([configFile(fileId: "${pipelineVars.mavenSettingsConfigFileId}", variable: 'MAVEN_SETTINGS_FILE')]) { - timestampedSnapshotVersion = "999.0.0-${getDateFromCheckoutDateTime()}-SNAPSHOT" + timestampedSnapshotVersion = getTimestampedSnapshotVersion() sh """#!/bin/bash -el pnpm update-version-to ${timestampedSnapshotVersion} ${env.PNPM_FILTER_STRING} pnpm ${env.PNPM_FILTER_STRING} exec 'bash' '-c' 'echo -e "\n--settings=${MAVEN_SETTINGS_FILE}" >> .mvn/maven.config' @@ -126,7 +136,7 @@ pipeline { steps { dir('kie-tools') { script { - tagName = "999-${getDateFromCheckoutDateTime()}" + tagName = getTagName() githubUtils.createTag("${tagName}") githubUtils.pushObject('origin', "${tagName}", "${pipelineVars.asfGithubPushCredentialsId}") } @@ -147,3 +157,17 @@ String getDateFromCheckoutDateTime() { def parsedDate = (params.GIT_CHECKOUT_DATETIME =~ /(\d{4}-\d{2}-\d{2})/)[0][0] return parsedDate.replace('-', '') } + +String getTagName() { + if (env.PACKAGE_VERSION == '0.0.0') { + return "999-${getDateFromCheckoutDateTime()}" + } + return "${env.PACKAGE_VERSION}-${getDateFromCheckoutDateTime()}" +} + +String getTimestampedSnapshotVersion() { + if (env.PACKAGE_VERSION == '0.0.0') { + return "999.0.0-${getDateFromCheckoutDateTime()}-SNAPSHOT" + } + return "${env.PACKAGE_VERSION}-${getDateFromCheckoutDateTime()}-SNAPSHOT" +} From 244a952379d5658d4ce8544e97f715adca6f43c6 Mon Sep 17 00:00:00 2001 From: Yeser Amer Date: Wed, 15 May 2024 22:11:41 +0200 Subject: [PATCH 17/90] NO-ISSUE: Bump `xnio-api` to `3.8.14.Final` (#2331) --- packages/dashbuilder/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/dashbuilder/pom.xml b/packages/dashbuilder/pom.xml index e687fe8ef06..be3b130e569 100644 --- a/packages/dashbuilder/pom.xml +++ b/packages/dashbuilder/pom.xml @@ -79,7 +79,7 @@ 2.0.2 4.1.2 1.2 - 3.8.4.Final + 3.8.14.Final 4.1.59.Final 1.1.0 3.3.3 From b2a51785d168df3f77e861a14b7daa98f924775a Mon Sep 17 00:00:00 2001 From: Thiago Lugli Date: Wed, 15 May 2024 17:17:03 -0300 Subject: [PATCH 18/90] NO-ISSUE: Update `kogito-serverless-operator` tests yamls following `KOGITO_RUNTIME_version` env var (#2333) --- .../kogito-serverless-operator/install.js | 44 +++++++++++++++++++ .../kogito-serverless-operator/package.json | 2 +- .../update_kogito_version.js | 4 +- 3 files changed, 47 insertions(+), 3 deletions(-) create mode 100644 packages/kogito-serverless-operator/install.js diff --git a/packages/kogito-serverless-operator/install.js b/packages/kogito-serverless-operator/install.js new file mode 100644 index 00000000000..2a1d0bb8733 --- /dev/null +++ b/packages/kogito-serverless-operator/install.js @@ -0,0 +1,44 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +const fs = require("fs"); +const path = require("path"); +const buildEnv = require("./env"); + +const sonataflowPlatformFiles = fs + .readdirSync(path.resolve(__dirname, "test/testdata"), { + recursive: true, + }) + .filter((fileName) => fileName.endsWith("02-sonataflow_platform.yaml")); +sonataflowPlatformFiles.forEach((filePath) => { + const fullFilePath = path.resolve(__dirname, path.join("test/testdata"), filePath); + fs.writeFileSync( + fullFilePath, + fs + .readFileSync(fullFilePath, "utf-8") + .replace( + /org\.kie:kie-addons-quarkus-persistence-jdbc:[^,\n]*/, + `org.kie:kie-addons-quarkus-persistence-jdbc:${buildEnv.env.kogitoRuntime.version}` + ) + .replace( + /org\.kie\.kogito:kogito-addons-quarkus-jobs-knative-eventing:[^,\n]*/, + `org.kie.kogito:kogito-addons-quarkus-jobs-knative-eventing:${buildEnv.env.kogitoRuntime.version}` + ) + ); +}); diff --git a/packages/kogito-serverless-operator/package.json b/packages/kogito-serverless-operator/package.json index 328bd9e66fa..63cdc230d6b 100644 --- a/packages/kogito-serverless-operator/package.json +++ b/packages/kogito-serverless-operator/package.json @@ -26,7 +26,7 @@ "image:build": "run-script-os", "image:build:darwin:win32": "echo 'Image build not supported on Windows and macOS'", "image:build:linux": ". ./node_modules/@kie-tools/python-venv/venv/bin/activate && run-script-if --bool \"$(build-env containerImages.build)\" --then \"make container-build\"", - "install": "rimraf bin && go mod tidy && pnpm bump-version && pnpm format", + "install": "rimraf bin && go mod tidy && node install.js && pnpm bump-version && pnpm format", "test": "run-script-os", "test-e2e": "run-script-os", "test-e2e:darwin:win32": "echo 'E2E tests not supported on Windows and macOS'", diff --git a/scripts/update-kogito-version/update_kogito_version.js b/scripts/update-kogito-version/update_kogito_version.js index a3a462a279a..4bec19a5063 100755 --- a/scripts/update-kogito-version/update_kogito_version.js +++ b/scripts/update-kogito-version/update_kogito_version.js @@ -61,7 +61,7 @@ try { .readFileSync(serverlessLogicWebToolsBaseBuilderImageEnvPath, "utf-8") .replace( /SERVERLESS_LOGIC_WEB_TOOLS__baseBuilderKogitoImageTag:[\s\n]*{[\s\n]*default:[\s\n]*".*"/, - `SERVERLESS_LOGIC_WEB_TOOLS__baseBuilderKogitoImageTag: {\n default: "${newImagesTag}"` + `SERVERLESS_LOGIC_WEB_TOOLS__baseBuilderKogitoImageTag: {\n default: "${newImagesTag}"` ) ); @@ -78,7 +78,7 @@ try { .readFileSync(serverlessLogicWebToolsSwfDevModeImageEnvPath, "utf-8") .replace( /SERVERLESS_LOGIC_WEB_TOOLS_DEVMODE_IMAGE__kogitoBaseBuilderImageTag:[\s\n]*{[\s\n]*default:[\s\n]*".*"/, - `SERVERLESS_LOGIC_WEB_TOOLS_DEVMODE_IMAGE__kogitoBaseBuilderImageTag: {\n default: "${newImagesTag}"` + `SERVERLESS_LOGIC_WEB_TOOLS_DEVMODE_IMAGE__kogitoBaseBuilderImageTag: {\n default: "${newImagesTag}"` ) ); From 1e82db81204dd09fc71ca4ea78a1db61d51f0a37 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Jos=C3=A9=20dos=20Santos?= Date: Wed, 15 May 2024 20:09:58 -0300 Subject: [PATCH 19/90] kie-issue#1149: DMN Editor produces invalid typeRef attributes (#2316) --- .../src/BoxedExpressionEditor.tsx | 4 +- .../src/api/BeeGwtService.ts | 2 +- .../expressionVariable/DataTypeSelector.tsx | 14 ++--- .../ExpressionVariableCell.tsx | 4 +- .../ExpressionVariableMenu.tsx | 9 ++- .../ContextExpression/ContextExpression.tsx | 12 ++-- .../DecisionTableExpression.tsx | 5 +- .../ExpressionContainer.tsx | 8 +-- .../ExpressionDefinitionLogicTypeSelector.tsx | 8 +-- .../ExpressionDefinitionRoot.tsx | 2 +- .../FeelFunctionExpression.tsx | 2 +- .../FunctionExpression/FunctionExpression.tsx | 20 ++++--- .../JavaFunctionExpression.tsx | 4 +- .../FunctionExpression/ParametersPopover.tsx | 12 ++-- .../PmmlFunctionExpression.tsx | 3 +- .../InvocationExpression.tsx | 15 +++-- .../IteratorExpressionComponent.tsx | 3 +- .../ListExpression/ListExpression.tsx | 5 +- .../LiteralExpression/LiteralExpression.tsx | 14 +++-- .../RelationExpression/RelationExpression.tsx | 7 +-- .../src/table/BeeTable/BeeTableHeader.tsx | 9 +-- .../stories/boxedExpressionStoriesWrapper.tsx | 6 +- .../Context/Context.stories.tsx | 4 +- .../DecisionTable/DecisionTable.stories.tsx | 4 +- .../getDefaultBoxedExpressionForDevWebapp.ts | 9 +-- .../features/Resizing/Resizing.stories.tsx | 4 +- .../getDefaultBoxedExpressionForStories.ts | 20 +++---- .../BoxedExpressionScreen.tsx | 10 ++-- .../getDefaultBoxedExpression.tsx | 56 +++++++++---------- .../dmn-editor/src/dataTypes/Constraints.tsx | 13 ++--- .../dmn-editor/src/dataTypes/DataTypeName.tsx | 3 +- .../src/dataTypes/DataTypePanel.tsx | 2 +- .../dmn-editor/src/dataTypes/DataTypes.tsx | 6 +- .../src/dataTypes/ItemComponentsTable.tsx | 15 ++--- .../dmn-editor/src/dataTypes/TypeRefLabel.tsx | 2 +- .../src/dataTypes/TypeRefSelector.tsx | 10 ++-- .../src/dataTypes/useResolvedTypeRef.ts | 2 +- packages/dmn-editor/src/diagram/Diagram.tsx | 2 +- .../src/diagram/nodes/DataTypeNodePanel.tsx | 5 +- .../dmn-editor/src/diagram/nodes/Nodes.tsx | 2 +- .../src/mutations/addConnectedNode.ts | 2 +- .../src/mutations/addStandaloneNode.ts | 2 +- .../src/mutations/updateExpression.ts | 2 +- .../DecisionTableInputHeaderCell.tsx | 2 +- .../DecisionTableOutputHeaderCell.tsx | 4 +- .../Fields.tsx | 2 +- .../FunctionDefinitionParametersCell.tsx | 2 +- .../InformationItemCell.tsx | 2 +- .../tests/e2e/drgElements/addBkm.spec.ts | 1 - .../tests/e2e/drgElements/addDecision.spec.ts | 3 - .../drgElements/addDecisionService.spec.ts | 1 - .../e2e/drgElements/addInputData.spec.ts | 1 - .../stunner-editors-dmn-loader/src/types.ts | 2 +- 53 files changed, 158 insertions(+), 205 deletions(-) diff --git a/packages/boxed-expression-component/src/BoxedExpressionEditor.tsx b/packages/boxed-expression-component/src/BoxedExpressionEditor.tsx index 30e4a095b4a..29c524e421c 100644 --- a/packages/boxed-expression-component/src/BoxedExpressionEditor.tsx +++ b/packages/boxed-expression-component/src/BoxedExpressionEditor.tsx @@ -20,7 +20,7 @@ import "@patternfly/react-styles/css/components/Drawer/drawer.css"; import { I18nDictionariesProvider } from "@kie-tools-core/i18n/dist/react-components"; import * as React from "react"; -import { BeeGwtService, DmnDataType, BoxedExpression, PmmlDocument } from "./api"; +import { BeeGwtService, BoxedExpression, DmnDataType, PmmlDocument } from "./api"; import { boxedExpressionEditorDictionaries, BoxedExpressionEditorI18nContext, @@ -42,7 +42,7 @@ export interface BoxedExpressionEditorProps { /** Name of the Decision or BKM containing `expression` */ expressionHolderName: string; /** TypeRef of the Decision or BKM containing `expression` */ - expressionHolderTypeRef: string; + expressionHolderTypeRef: string | undefined; /** The boxed expression itself */ expression: BoxedExpression | undefined; /** Called every time something changes on the expression */ diff --git a/packages/boxed-expression-component/src/api/BeeGwtService.ts b/packages/boxed-expression-component/src/api/BeeGwtService.ts index 4e85810e2c1..8a6b6b18762 100644 --- a/packages/boxed-expression-component/src/api/BeeGwtService.ts +++ b/packages/boxed-expression-component/src/api/BeeGwtService.ts @@ -25,7 +25,7 @@ import { BoxedExpression } from "./BoxedExpression"; export interface BeeGwtService { getDefaultExpressionDefinition( logicType: BoxedExpression["__$$element"] | undefined, - typeRef: string, + typeRef: string | undefined, isRoot?: boolean ): { expression: BoxedExpression; widthsById: Map }; diff --git a/packages/boxed-expression-component/src/expressionVariable/DataTypeSelector.tsx b/packages/boxed-expression-component/src/expressionVariable/DataTypeSelector.tsx index 95679d7e630..5f32425b3a2 100644 --- a/packages/boxed-expression-component/src/expressionVariable/DataTypeSelector.tsx +++ b/packages/boxed-expression-component/src/expressionVariable/DataTypeSelector.tsx @@ -19,18 +19,18 @@ import { Select, SelectGroup, SelectOption, SelectVariant } from "@patternfly/react-core/dist/js/components/Select"; import * as React from "react"; -import { useCallback, useState, useRef, useMemo } from "react"; +import { useCallback, useMemo, useRef, useState } from "react"; import { useBoxedExpressionEditorI18n } from "../i18n"; import * as _ from "lodash"; -import { DmnDataType } from "../api"; +import { DmnBuiltInDataType, DmnDataType } from "../api"; import { useBoxedExpressionEditor } from "../BoxedExpressionEditorContext"; import { Divider } from "@patternfly/react-core/dist/js/components/Divider"; export interface DataTypeSelectorProps { /** The pre-selected data type */ - value: string; + value: string | undefined; /** On DataType selection callback */ - onChange: (dataType: string) => void; + onChange: (dataType: string | undefined) => void; /** By default the menu will be appended inline, but it is possible to append on the parent or on other elements */ /** Callback for toggle select behavior */ onToggle?: (isOpen: boolean) => void; @@ -64,7 +64,7 @@ export const DataTypeSelector: React.FunctionComponent = /* this setTimeout keeps the context menu open after type selection changes. Without this Popover component thinks there has been a click outside the context menu, after DataTypeSelector has changed. This because the Select component has been removed from the html*/ setTimeout(() => setOpen(false), 0); - onChange(selection); + onChange(selection === DmnBuiltInDataType.Undefined ? undefined : selection); // Because Select leave the focus to the detached btn, give back the focus to the selectWrapperRef (selectContainerRef.current?.querySelector("button") as HTMLInputElement)?.focus(); @@ -108,7 +108,7 @@ export const DataTypeSelector: React.FunctionComponent = return buildSelectGroups().reduce((acc, group) => { const filteredGroup = React.cloneElement(group, { children: group.props?.children?.filter((item: React.ReactElement) => - item.props.value.toLowerCase().includes(textInput.toLowerCase()) + (item.props.value ?? DmnBuiltInDataType.Undefined).toLowerCase().includes(textInput.toLowerCase()) ), }); @@ -157,7 +157,7 @@ export const DataTypeSelector: React.FunctionComponent = onSelect={onSelect} onFilter={onFilter} isOpen={isOpen} - selections={value} + selections={value ?? DmnBuiltInDataType.Undefined} isGrouped={true} hasInlineFilter={true} inlineFilterPlaceholderText={i18n.choose} diff --git a/packages/boxed-expression-component/src/expressionVariable/ExpressionVariableCell.tsx b/packages/boxed-expression-component/src/expressionVariable/ExpressionVariableCell.tsx index 735c0c32c02..aeaab2fe45c 100644 --- a/packages/boxed-expression-component/src/expressionVariable/ExpressionVariableCell.tsx +++ b/packages/boxed-expression-component/src/expressionVariable/ExpressionVariableCell.tsx @@ -49,7 +49,7 @@ export const ExpressionVariableCell: React.FunctionComponent< const { expression, variable, index } = data[rowIndex]; const onVariableUpdated = useCallback( - ({ name = DEFAULT_EXPRESSION_VARIABLE_NAME, typeRef = DmnBuiltInDataType.Undefined }) => { + ({ name = DEFAULT_EXPRESSION_VARIABLE_NAME, typeRef = undefined }) => { onExpressionWithVariableUpdated(index, { // `expression` and `variable` must always have the same `typeRef` and `name/label`, as those are dictated by `variable`. expression: expression @@ -99,7 +99,7 @@ export const ExpressionVariableCell: React.FunctionComponent< rowIndex, columnIndex, undefined, - useCallback(() => `${variable["@_name"]} (${variable["@_typeRef"] ?? DmnBuiltInDataType.Undefined}})`, [variable]) + useCallback(() => `${variable["@_name"]} (${variable["@_typeRef"]}})`, [variable]) ); const { beeGwtService } = useBoxedExpressionEditor(); diff --git a/packages/boxed-expression-component/src/expressionVariable/ExpressionVariableMenu.tsx b/packages/boxed-expression-component/src/expressionVariable/ExpressionVariableMenu.tsx index c257fdea2c5..03e50bfe219 100644 --- a/packages/boxed-expression-component/src/expressionVariable/ExpressionVariableMenu.tsx +++ b/packages/boxed-expression-component/src/expressionVariable/ExpressionVariableMenu.tsx @@ -18,10 +18,9 @@ */ import * as React from "react"; -import { useCallback, useEffect, useState, useRef } from "react"; +import { useCallback, useEffect, useRef, useState } from "react"; import { PopoverMenu, PopoverMenuRef } from "../contextMenu/PopoverMenu"; import { useBoxedExpressionEditorI18n } from "../i18n"; -import { DmnBuiltInDataType, BoxedExpression } from "../api"; import { useBoxedExpressionEditor } from "../BoxedExpressionEditorContext"; import { DataTypeSelector } from "./DataTypeSelector"; import { CogIcon } from "@patternfly/react-icons/dist/js/icons/cog-icon"; @@ -30,7 +29,7 @@ import { NavigationKeysUtils } from "../keysUtils/keyUtils"; import { PopoverPosition } from "@patternfly/react-core/dist/js/components/Popover"; import "./ExpressionVariableMenu.css"; -export type OnExpressionVariableUpdated = (args: { name: string; typeRef: string }) => void; +export type OnExpressionVariableUpdated = (args: { name: string; typeRef: string | undefined }) => void; export interface ExpressionVariableMenuProps { /** Optional children element to be considered for triggering the edit expression menu */ @@ -62,7 +61,7 @@ export function ExpressionVariableMenu({ arrowPlacement, nameField, dataTypeField, - selectedDataType = DmnBuiltInDataType.Undefined, + selectedDataType = undefined, selectedExpressionName, onVariableUpdated, position, @@ -92,7 +91,7 @@ export function ExpressionVariableMenu({ setExpressionName(event.target.value); }, []); - const onDataTypeChange = useCallback((dataType: DmnBuiltInDataType) => { + const onDataTypeChange = useCallback((dataType: string | undefined) => { setDataType(dataType); }, []); diff --git a/packages/boxed-expression-component/src/expressions/ContextExpression/ContextExpression.tsx b/packages/boxed-expression-component/src/expressions/ContextExpression/ContextExpression.tsx index 1bb8078b966..c3b1dee1373 100644 --- a/packages/boxed-expression-component/src/expressions/ContextExpression/ContextExpression.tsx +++ b/packages/boxed-expression-component/src/expressions/ContextExpression/ContextExpression.tsx @@ -35,11 +35,11 @@ import { import { useBoxedExpressionEditorI18n } from "../../i18n"; import { useNestedExpressionContainerWithNestedExpressions } from "../../resizing/Hooks"; import { NestedExpressionContainerContext } from "../../resizing/NestedExpressionContainerContext"; -import { ResizerStopBehavior, ResizingWidth, useResizingWidths } from "../../resizing/ResizingWidthsContext"; +import { ResizerStopBehavior, ResizingWidth } from "../../resizing/ResizingWidthsContext"; import { CONTEXT_ENTRY_EXPRESSION_MIN_WIDTH, - CONTEXT_ENTRY_VARIABLE_MIN_WIDTH, CONTEXT_ENTRY_VARIABLE_COLUMN_WIDTH_INDEX, + CONTEXT_ENTRY_VARIABLE_MIN_WIDTH, CONTEXT_EXPRESSION_EXTRA_WIDTH, } from "../../resizing/WidthConstants"; import { useBeeTableCoordinates, useBeeTableSelectableCellRef } from "../../selection/BeeTableSelectionContext"; @@ -49,13 +49,11 @@ import { DEFAULT_EXPRESSION_VARIABLE_NAME } from "../../expressionVariable/Expre import { ContextEntryExpressionCell } from "./ContextEntryExpressionCell"; import { ExpressionVariableCell, ExpressionWithVariable } from "../../expressionVariable/ExpressionVariableCell"; import { ContextResultExpressionCell } from "./ContextResultExpressionCell"; -import { getExpressionMinWidth, getExpressionTotalMinWidth } from "../../resizing/WidthMaths"; +import { getExpressionTotalMinWidth } from "../../resizing/WidthMaths"; import { DMN15__tContextEntry } from "@kie-tools/dmn-marshaller/dist/schemas/dmn-1_5/ts-gen/types"; import { findAllIdsDeep } from "../../ids/ids"; import "./ContextExpression.css"; -const CONTEXT_ENTRY_DEFAULT_DATA_TYPE = DmnBuiltInDataType.Undefined; - export type ROWTYPE = ExpressionWithVariable & { index: number }; export function ContextExpression({ @@ -156,7 +154,7 @@ export function ContextExpression({ accessor: expressionHolderId as any, // FIXME: https://github.com/apache/incubator-kie-issues/issues/169 label: contextExpression["@_label"] ?? DEFAULT_EXPRESSION_VARIABLE_NAME, isRowIndexColumn: false, - dataType: contextExpression["@_typeRef"] ?? CONTEXT_ENTRY_DEFAULT_DATA_TYPE, + dataType: contextExpression["@_typeRef"] ?? DmnBuiltInDataType.Undefined, width: undefined, columns: [ { @@ -286,7 +284,7 @@ export function ContextExpression({ variable: { "@_id": generateUuid(), "@_name": variableName, - "@_typeRef": DmnBuiltInDataType.Undefined, + "@_typeRef": undefined, description: { __$$text: "" }, }, }; diff --git a/packages/boxed-expression-component/src/expressions/DecisionTableExpression/DecisionTableExpression.tsx b/packages/boxed-expression-component/src/expressions/DecisionTableExpression/DecisionTableExpression.tsx index c9af257bcc4..27332a19b8d 100644 --- a/packages/boxed-expression-component/src/expressions/DecisionTableExpression/DecisionTableExpression.tsx +++ b/packages/boxed-expression-component/src/expressions/DecisionTableExpression/DecisionTableExpression.tsx @@ -62,7 +62,6 @@ import { DMN15__tInputClause, DMN15__tLiteralExpression, DMN15__tOutputClause, - DMN15__tRuleAnnotation, DMN15__tRuleAnnotationClause, DMN15__tUnaryTests, } from "@kie-tools/dmn-marshaller/dist/schemas/dmn-1_5/ts-gen/types"; @@ -728,7 +727,7 @@ export function DecisionTableExpression({ "@_id": generateUuid(), inputExpression: { "@_id": generateUuid(), - "@_typeRef": DmnBuiltInDataType.Undefined, + "@_typeRef": undefined, text: { __$$text: newName }, }, }); @@ -768,7 +767,7 @@ export function DecisionTableExpression({ outputColumnsToAdd.push({ "@_id": generateUuid(), "@_name": name, - "@_typeRef": DmnBuiltInDataType.Undefined, + "@_typeRef": undefined, }); } diff --git a/packages/boxed-expression-component/src/expressions/ExpressionDefinitionRoot/ExpressionContainer.tsx b/packages/boxed-expression-component/src/expressions/ExpressionDefinitionRoot/ExpressionContainer.tsx index e5108118450..bc1f446fd2e 100644 --- a/packages/boxed-expression-component/src/expressions/ExpressionDefinitionRoot/ExpressionContainer.tsx +++ b/packages/boxed-expression-component/src/expressions/ExpressionDefinitionRoot/ExpressionContainer.tsx @@ -20,7 +20,7 @@ import * as React from "react"; import { useCallback, useEffect, useRef } from "react"; import { useBoxedExpressionEditor, useBoxedExpressionEditorDispatch } from "../../BoxedExpressionEditorContext"; -import { BoxedExpression, DmnBuiltInDataType, generateUuid } from "../../api"; +import { BoxedExpression, generateUuid } from "../../api"; import { findAllIdsDeep } from "../../ids/ids"; import { DEFAULT_EXPRESSION_VARIABLE_NAME } from "../../expressionVariable/ExpressionVariableMenu"; import { useBeeTableSelectableCellRef } from "../../selection/BeeTableSelectionContext"; @@ -65,11 +65,7 @@ export const ExpressionContainer: React.FunctionComponent { const { expression: defaultExpression, widthsById: defaultWidthsById } = - beeGwtService!.getDefaultExpressionDefinition( - logicType, - parentElementTypeRef ?? expressionTypeRef ?? DmnBuiltInDataType.Undefined, - !isNested - ); + beeGwtService!.getDefaultExpressionDefinition(logicType, parentElementTypeRef ?? expressionTypeRef, !isNested); setExpression((prev: BoxedExpression) => { // Do not inline this variable for type safety. See https://github.com/microsoft/TypeScript/issues/241 diff --git a/packages/boxed-expression-component/src/expressions/ExpressionDefinitionRoot/ExpressionDefinitionLogicTypeSelector.tsx b/packages/boxed-expression-component/src/expressions/ExpressionDefinitionRoot/ExpressionDefinitionLogicTypeSelector.tsx index cd097f15429..c9a926ba1bd 100644 --- a/packages/boxed-expression-component/src/expressions/ExpressionDefinitionRoot/ExpressionDefinitionLogicTypeSelector.tsx +++ b/packages/boxed-expression-component/src/expressions/ExpressionDefinitionRoot/ExpressionDefinitionLogicTypeSelector.tsx @@ -101,10 +101,10 @@ export function ExpressionDefinitionLogicTypeSelector({ "invocation", ...(isNested ? (["functionDefinition"] as const) : []), ...(!hideDmn14BoxedExpressions ? (["conditional"] as const) : []), - "for", - "every", - "some", - "filter", + ...(!hideDmn14BoxedExpressions ? (["for"] as const) : []), + ...(!hideDmn14BoxedExpressions ? (["every"] as const) : []), + ...(!hideDmn14BoxedExpressions ? (["some"] as const) : []), + ...(!hideDmn14BoxedExpressions ? (["filter"] as const) : []), ], [hideDmn14BoxedExpressions, isNested] ); diff --git a/packages/boxed-expression-component/src/expressions/ExpressionDefinitionRoot/ExpressionDefinitionRoot.tsx b/packages/boxed-expression-component/src/expressions/ExpressionDefinitionRoot/ExpressionDefinitionRoot.tsx index 0ad8abb2907..3139416ed87 100644 --- a/packages/boxed-expression-component/src/expressions/ExpressionDefinitionRoot/ExpressionDefinitionRoot.tsx +++ b/packages/boxed-expression-component/src/expressions/ExpressionDefinitionRoot/ExpressionDefinitionRoot.tsx @@ -25,7 +25,7 @@ import "./ExpressionDefinitionRoot.css"; export interface ExpressionDefinitionRootProps { expressionHolderId: string; - expressionHolderTypeRef: string; + expressionHolderTypeRef: string | undefined; expression?: BoxedExpression; isResetSupported: boolean | undefined; expressionHolderName?: string; diff --git a/packages/boxed-expression-component/src/expressions/FunctionExpression/FeelFunctionExpression.tsx b/packages/boxed-expression-component/src/expressions/FunctionExpression/FeelFunctionExpression.tsx index 91be6514c94..2bc3aa89ffb 100644 --- a/packages/boxed-expression-component/src/expressions/FunctionExpression/FeelFunctionExpression.tsx +++ b/packages/boxed-expression-component/src/expressions/FunctionExpression/FeelFunctionExpression.tsx @@ -27,10 +27,10 @@ import { BeeTableOperation, BeeTableOperationConfig, BeeTableProps, - DmnBuiltInDataType, BoxedExpression, BoxedFunction, BoxedFunctionKind, + DmnBuiltInDataType, } from "../../api"; import { useBoxedExpressionEditorI18n } from "../../i18n"; import { useNestedExpressionContainerWithNestedExpressions } from "../../resizing/Hooks"; diff --git a/packages/boxed-expression-component/src/expressions/FunctionExpression/FunctionExpression.tsx b/packages/boxed-expression-component/src/expressions/FunctionExpression/FunctionExpression.tsx index 5875422b6c4..48a36374342 100644 --- a/packages/boxed-expression-component/src/expressions/FunctionExpression/FunctionExpression.tsx +++ b/packages/boxed-expression-component/src/expressions/FunctionExpression/FunctionExpression.tsx @@ -20,15 +20,15 @@ import _ from "lodash"; import * as React from "react"; import { useCallback, useMemo } from "react"; -import { DmnBuiltInDataType, BoxedFunction, BoxedFunctionKind, generateUuid } from "../../api"; +import { BoxedFunction, BoxedFunctionKind, DmnBuiltInDataType, generateUuid } from "../../api"; import { PopoverMenu } from "../../contextMenu/PopoverMenu"; import { useBoxedExpressionEditorI18n } from "../../i18n"; import { useBoxedExpressionEditor, useBoxedExpressionEditorDispatch } from "../../BoxedExpressionEditorContext"; -import { FeelFunctionExpression, BoxedFunctionFeel } from "./FeelFunctionExpression"; +import { BoxedFunctionFeel, FeelFunctionExpression } from "./FeelFunctionExpression"; import { FunctionKindSelector } from "./FunctionKindSelector"; -import { JavaFunctionExpression, BoxedFunctionJava } from "./JavaFunctionExpression"; +import { BoxedFunctionJava, JavaFunctionExpression } from "./JavaFunctionExpression"; import { ParametersPopover } from "./ParametersPopover"; -import { PmmlFunctionExpression, BoxedFunctionPmml } from "./PmmlFunctionExpression"; +import { BoxedFunctionPmml, PmmlFunctionExpression } from "./PmmlFunctionExpression"; import { DMN15__tFunctionDefinition, DMN15__tFunctionKind, @@ -86,11 +86,11 @@ export function useFunctionExpressionControllerCell(functionKind: DMN15__tFuncti "@_label": prev["@_label"], "@_id": generateUuid(), "@_kind": BoxedFunctionKind.Feel, - "@_typeRef": DmnBuiltInDataType.Undefined, + "@_typeRef": undefined, expression: { __$$element: "literalExpression", "@_id": generateUuid(), - "@_typeRef": DmnBuiltInDataType.Undefined, + "@_typeRef": undefined, }, formalParameter: [], }; @@ -108,7 +108,7 @@ export function useFunctionExpressionControllerCell(functionKind: DMN15__tFuncti "@_id": generateUuid(), }, "@_kind": BoxedFunctionKind.Java, - "@_typeRef": DmnBuiltInDataType.Undefined, + "@_typeRef": undefined, formalParameter: [], }; return retJava; @@ -123,7 +123,7 @@ export function useFunctionExpressionControllerCell(functionKind: DMN15__tFuncti "@_id": generateUuid(), }, "@_kind": BoxedFunctionKind.Pmml, - "@_typeRef": DmnBuiltInDataType.Undefined, + "@_typeRef": undefined, formalParameter: [], }; return retPmml; @@ -167,7 +167,9 @@ export function useFunctionExpressionParametersColumnHeader( {parameter["@_name"]} {": "} - ({parameter["@_typeRef"]}) + + ({parameter["@_typeRef"] ?? DmnBuiltInDataType.Undefined}) + {i < (formalParameters ?? []).length - 1 && {", "}} ))} diff --git a/packages/boxed-expression-component/src/expressions/FunctionExpression/JavaFunctionExpression.tsx b/packages/boxed-expression-component/src/expressions/FunctionExpression/JavaFunctionExpression.tsx index ddf0285725d..430ca10c3f1 100644 --- a/packages/boxed-expression-component/src/expressions/FunctionExpression/JavaFunctionExpression.tsx +++ b/packages/boxed-expression-component/src/expressions/FunctionExpression/JavaFunctionExpression.tsx @@ -29,10 +29,10 @@ import { BeeTableOperation, BeeTableOperationConfig, BeeTableProps, - DmnBuiltInDataType, + BoxedFunction, BoxedFunctionKind, + DmnBuiltInDataType, generateUuid, - BoxedFunction, } from "../../api"; import { useBoxedExpressionEditorI18n } from "../../i18n"; import { usePublishedBeeTableResizableColumns } from "../../resizing/BeeTableResizableColumnsContext"; diff --git a/packages/boxed-expression-component/src/expressions/FunctionExpression/ParametersPopover.tsx b/packages/boxed-expression-component/src/expressions/FunctionExpression/ParametersPopover.tsx index 12bd285985c..db5aed31578 100644 --- a/packages/boxed-expression-component/src/expressions/FunctionExpression/ParametersPopover.tsx +++ b/packages/boxed-expression-component/src/expressions/FunctionExpression/ParametersPopover.tsx @@ -24,7 +24,7 @@ import { CubesIcon } from "@patternfly/react-icons/dist/js/icons/cubes-icon"; import { OutlinedTrashAltIcon } from "@patternfly/react-icons/dist/js/icons/outlined-trash-alt-icon"; import * as React from "react"; import { ChangeEvent, useCallback } from "react"; -import { DmnBuiltInDataType, BoxedFunction, generateUuid, getNextAvailablePrefixedName } from "../../api"; +import { BoxedFunction, DmnBuiltInDataType, generateUuid, getNextAvailablePrefixedName } from "../../api"; import { useBoxedExpressionEditorI18n } from "../../i18n"; import { useBoxedExpressionEditorDispatch } from "../../BoxedExpressionEditorContext"; import { DMN15__tInformationItem } from "@kie-tools/dmn-marshaller/dist/schemas/dmn-1_5/ts-gen/types"; @@ -51,7 +51,7 @@ export const ParametersPopover: React.FunctionComponent (prev.formalParameter ?? []).map((p) => p["@_name"]), "p" ), - "@_typeRef": DmnBuiltInDataType.Undefined, + "@_typeRef": undefined, }, ]; @@ -120,7 +120,7 @@ function ParameterEntry({ parameter, index }: { parameter: DMN15__tInformationIt ); const onDataTypeChange = useCallback( - (typeRef: string) => { + (typeRef: string | undefined) => { setExpression((prev: BoxedFunction) => { const newParameters = [...(prev.formalParameter ?? [])]; newParameters[index] = { @@ -166,11 +166,7 @@ function ParameterEntry({ parameter, index }: { parameter: DMN15__tInformationIt placeholder={"Parameter Name"} defaultValue={parameter["@_name"]} /> - + ); } - -// - -export async function runElk( - nodes: Elk.ElkNode[], - edges: { id: string; sources: string[]; targets: string[] }[], - options: Elk.LayoutOptions = {} -): Promise<{ isHorizontal: boolean; nodes: Elk.ElkNode[] | undefined; edges: Elk.ElkExtendedEdge[] | undefined }> { - const isHorizontal = options?.["elk.direction"] === "RIGHT"; - - const graph: Elk.ElkNode = { - id: "root", - layoutOptions: options, - children: nodes, - edges, - }; - - const layoutedGraph = await elk.layout(graph); - return { - isHorizontal, - nodes: layoutedGraph.children, - edges: layoutedGraph.edges as any[], - }; -} - -function visitNodeAndNested( - elkNode: Elk.ElkNode, - positionOffset: { x: number; y: number }, - visitor: (elkNode: Elk.ElkNode, positionOffset: { x: number; y: number }) => void -) { - visitor(elkNode, positionOffset); - for (const nestedNode of elkNode.children ?? []) { - visitNodeAndNested( - nestedNode, - { - x: elkNode.x! + positionOffset.x, - y: elkNode.y! + positionOffset.y, - }, - visitor - ); - } -} diff --git a/packages/dmn-editor/src/autolayout/autoLayout.ts b/packages/dmn-editor/src/autolayout/autoLayout.ts new file mode 100644 index 00000000000..ebb672d10c3 --- /dev/null +++ b/packages/dmn-editor/src/autolayout/autoLayout.ts @@ -0,0 +1,396 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { generateUuid } from "@kie-tools/boxed-expression-component/dist/api"; +import { DC__Bounds } from "@kie-tools/dmn-marshaller/dist/schemas/dmn-1_5/ts-gen/types"; +import ELK, * as Elk from "elkjs/lib/elk.bundled.js"; +import { NodeType } from "../diagram/connections/graphStructure"; +import { DrgEdge, getAdjMatrix, traverse } from "../diagram/graph/graph"; +import { getContainmentRelationship } from "../diagram/maths/DmnMaths"; +import { DEFAULT_NODE_SIZES, MIN_NODE_SIZES } from "../diagram/nodes/DefaultSizes"; +import { NODE_TYPES } from "../diagram/nodes/NodeTypes"; +import { SnapGrid } from "../store/Store"; +import { DmnDiagramEdgeData } from "../diagram/edges/Edges"; +import { Edge, Node } from "reactflow"; +import { DmnDiagramNodeData } from "../diagram/nodes/Nodes"; + +const elk = new ELK(); + +export const ELK_OPTIONS = { + "elk.algorithm": "layered", + "elk.direction": "UP", + // By making width a lot bigger than height, we make sure disjoint graph components are placed horizontally, never vertically + "elk.aspectRatio": "9999999999", + // spacing + "elk.spacing.nodeNode": "60", + "elk.spacing.componentComponent": "200", + "layered.spacing.edgeEdgeBetweenLayers": "0", + "layered.spacing.edgeNodeBetweenLayers": "0", + "layered.spacing.nodeNodeBetweenLayers": "100", + // edges + "elk.edgeRouting": "ORTHOGONAL", + "elk.layered.mergeEdges": "true", // we need this to make sure space is consistent between layers. + "elk.layered.mergeHierarchyEdges": "true", + // positioning + "elk.partitioning.activate": "true", + "elk.nodePlacement.favorStraightEdges": "true", + "elk.nodePlacement.bk.fixedAlignment": "LEFTDOWN", + "elk.nodePlacement.bk.edgeStraightening": "IMPROVE_STRAIGHTNESS", + // + "layering.strategy": "LONGEST_PATH_SOURCE", +}; + +const PARENT_NODE_ELK_OPTIONS = { + "elk.padding": "[left=60, top=60, right=80, bottom=60]", + "elk.spacing.componentComponent": "60", +}; + +export interface AutolayoutParentNode { + decisionServiceSection: "output" | "encapsulated" | "n/a"; + elkNode: Elk.ElkNode; + contained: Set; + dependents: Set; + dependencies: Set; + contains: (otherNode: { id: string; bounds: DC__Bounds | undefined }) => { + isInside: boolean; + decisionServiceSection: AutolayoutParentNode["decisionServiceSection"]; + }; + hasDependencyTo: (otherNode: { id: string }) => boolean; + isDependencyOf: (otherNode: { id: string }) => boolean; +} + +export const FAKE_MARKER = "__$FAKE$__"; + +export async function autoLayout({ + snapGrid, + nodesById, + edgesById, + nodes, + drgEdges, + isAlternativeInputDataShape, +}: { + snapGrid: SnapGrid; + nodesById: Map>; + edgesById: Map>; + nodes: Node[]; + drgEdges: DrgEdge[]; + isAlternativeInputDataShape: boolean; +}) { + const parentNodesById = new Map(); + const nodeParentsById = new Map>(); + + /** + Used to tell ELK that dependencies of nodes' children should be considered the node's dependency too. + This allows us to not rely on INCLUDE_STRATEGY hierarchy handling on ELK, keeping disjoint graph components separate, rendering side-by-side. + */ + const fakeEdgesForElk = new Set(); + + const adjMatrix = getAdjMatrix(drgEdges); + + // 1. First we populate the `parentNodesById` map so that we know exactly what parent nodes we're dealing with. Decision Service nodes have two fake nodes to represent Output and Encapsulated sections. + for (const node of nodes) { + const dependencies = new Set(); + const dependents = new Set(); + + if (node.data?.dmnObject?.__$$element === "decisionService") { + const outputs = new Set([...(node.data.dmnObject.outputDecision ?? []).map((s) => s["@_href"])]); + const encapsulated = new Set([...(node.data.dmnObject.encapsulatedDecision ?? []).map((s) => s["@_href"])]); + + const idOfFakeNodeForOutputSection = `${node.id}${FAKE_MARKER}dsOutput`; + const idOfFakeNodeForEncapsulatedSection = `${node.id}${FAKE_MARKER}dsEncapsulated`; + + const dsSize = MIN_NODE_SIZES[NODE_TYPES.decisionService]({ snapGrid }); + parentNodesById.set(node.id, { + elkNode: { + id: node.id, + width: dsSize["@_width"], + height: dsSize["@_height"], + children: [ + { + id: idOfFakeNodeForOutputSection, + width: dsSize["@_width"], + height: dsSize["@_height"] / 2, + children: [], + layoutOptions: { + ...ELK_OPTIONS, + ...PARENT_NODE_ELK_OPTIONS, + }, + }, + { + id: idOfFakeNodeForEncapsulatedSection, + width: dsSize["@_width"], + height: dsSize["@_height"] / 2, + children: [], + layoutOptions: { + ...ELK_OPTIONS, + ...PARENT_NODE_ELK_OPTIONS, + }, + }, + ], + layoutOptions: { + "elk.algorithm": "layered", + "elk.direction": "UP", + "elk.aspectRatio": "9999999999", + "elk.partitioning.activate": "true", + "elk.spacing.nodeNode": "0", + "elk.spacing.componentComponent": "0", + "layered.spacing.edgeEdgeBetweenLayers": "0", + "layered.spacing.edgeNodeBetweenLayers": "0", + "layered.spacing.nodeNodeBetweenLayers": "0", + "elk.padding": "[left=0, top=0, right=0, bottom=0]", + }, + }, + decisionServiceSection: "output", + dependencies, + dependents, + contained: outputs, + contains: ({ id }) => ({ + isInside: outputs.has(id) || encapsulated.has(id), + decisionServiceSection: outputs.has(id) ? "output" : encapsulated.has(id) ? "encapsulated" : "n/a", + }), + isDependencyOf: ({ id }) => dependents.has(id), + hasDependencyTo: ({ id }) => dependencies.has(id), + }); + + fakeEdgesForElk.add({ + id: `${node.id}${FAKE_MARKER}fakeOutputEncapsulatedEdge`, + sources: [idOfFakeNodeForEncapsulatedSection], + targets: [idOfFakeNodeForOutputSection], + }); + } else if (node.data?.dmnObject?.__$$element === "group") { + const groupSize = DEFAULT_NODE_SIZES[NODE_TYPES.group]({ snapGrid }); + const groupBounds = node.data.shape["dc:Bounds"]; + parentNodesById.set(node.id, { + decisionServiceSection: "n/a", + elkNode: { + id: node.id, + width: groupBounds?.["@_width"] ?? groupSize["@_width"], + height: groupBounds?.["@_height"] ?? groupSize["@_height"], + children: [], + layoutOptions: { + ...ELK_OPTIONS, + ...PARENT_NODE_ELK_OPTIONS, + }, + }, + dependencies, + dependents, + contained: new Set(), + contains: ({ id, bounds }) => ({ + isInside: getContainmentRelationship({ + bounds: bounds!, + container: groupBounds!, + snapGrid, + isAlternativeInputDataShape, + containerMinSizes: MIN_NODE_SIZES[NODE_TYPES.group], + boundsMinSizes: MIN_NODE_SIZES[nodesById.get(id)?.type as NodeType], + }).isInside, + decisionServiceSection: "n/a", + }), + isDependencyOf: ({ id }) => dependents.has(id), + hasDependencyTo: ({ id }) => dependencies.has(id), + }); + } + } + + // 2. Then we map all the nodes to elkNodes, including the parents. We mutate parents on the fly when iterating over the nodes list. + const elkNodes = nodes.flatMap((node) => { + const parent = parentNodesById.get(node.id); + if (parent) { + return []; + } + + const defaultSize = DEFAULT_NODE_SIZES[node.type as NodeType]({ snapGrid, isAlternativeInputDataShape }); + const elkNode: Elk.ElkNode = { + id: node.id, + width: node.data.shape["dc:Bounds"]?.["@_width"] ?? defaultSize["@_width"], + height: node.data.shape["dc:Bounds"]?.["@_height"] ?? defaultSize["@_height"], + children: [], + layoutOptions: { + "partitioning.partition": + // Since textAnnotations and knowledgeSources are not related to the logic, we leave them at the bottom. + (node.type as NodeType) === NODE_TYPES.textAnnotation || + (node.type as NodeType) === NODE_TYPES.knowledgeSource + ? "0" + : "1", + }, + }; + + // FIXME: Tiago --> Improve performance here as part of https://github.com/apache/incubator-kie-issues/issues/451. + const parents = [...parentNodesById.values()].filter( + (p) => p.contains({ id: elkNode.id, bounds: node.data.shape["dc:Bounds"] }).isInside + ); + if (parents.length > 0) { + const decisionServiceSection = parents[0].contains({ + id: elkNode.id, + bounds: node.data.shape["dc:Bounds"], + }).decisionServiceSection; + + // The only relationship that ELK will know about is the first matching container for this node. + if (decisionServiceSection === "n/a") { + parents[0].elkNode.children?.push(elkNode); + } else if (decisionServiceSection === "output") { + parents[0].elkNode.children?.[0].children?.push(elkNode); + } else if (decisionServiceSection === "encapsulated") { + parents[0].elkNode.children?.[1].children?.push(elkNode); + } else { + throw new Error(`Unknown decisionServiceSection ${decisionServiceSection}`); + } + + for (const p of parents) { + p.contained?.add(elkNode.id); // We need to keep track of nodes that are contained by multiple groups, but ELK will only know about one of those containment relationships. + nodeParentsById.set(node.id, new Set([...(nodeParentsById.get(node.id) ?? []), p.elkNode.id])); + } + return []; + } + + return [elkNode]; + }); + + // 3. After we have all containment relationships defined, we can proceed to resolving the hierarchical relationships. + for (const [_, parentNode] of parentNodesById) { + traverse(adjMatrix, parentNode.contained, [...parentNode.contained], "down", (n) => { + parentNode.dependencies.add(n); + }); + traverse(adjMatrix, parentNode.contained, [...parentNode.contained], "up", (n) => { + parentNode.dependents.add(n); + }); + + const p = nodesById.get(parentNode.elkNode.id); + if (p?.type === NODE_TYPES.group && parentNode.elkNode.children?.length === 0) { + continue; // Ignore empty group nodes. + } else { + elkNodes.push(parentNode.elkNode); + } + } + + // 4. After we have all containment and hierarchical relationships defined, we can add the fake edges so that ELK creates the structure correctly. + for (const node of nodes) { + const parentNodes = [...parentNodesById.values()]; + + const dependents = parentNodes.filter((p) => p.hasDependencyTo({ id: node.id })); + for (const dependent of dependents) { + // Not all nodes are present in all DRD + if (nodesById.has(node.id) && nodesById.has(dependent.elkNode.id)) { + fakeEdgesForElk.add({ + id: `${generateUuid()}${FAKE_MARKER}__fake`, + sources: [node.id], + targets: [dependent.elkNode.id], + }); + } + + for (const p of nodeParentsById.get(node.id) ?? []) { + // Not all nodes are present in all DRD + if (nodesById.has(p) && nodesById.has(dependent.elkNode.id)) { + fakeEdgesForElk.add({ + id: `${generateUuid()}${FAKE_MARKER}__fake`, + sources: [p], + targets: [dependent.elkNode.id], + }); + } + } + } + + const dependencies = parentNodes.filter((p) => p.isDependencyOf({ id: node.id })); + for (const dependency of dependencies) { + // Not all nodes are present in all DRD + if (nodesById.has(node.id) && nodesById.has(dependency.elkNode.id)) { + fakeEdgesForElk.add({ + id: `${generateUuid()}${FAKE_MARKER}__fake`, + sources: [dependency.elkNode.id], + targets: [node.id], + }); + } + + for (const p of nodeParentsById.get(node.id) ?? []) { + // Not all nodes are present in all DRD + if (nodesById.has(p) && nodesById.has(dependency.elkNode.id)) { + fakeEdgesForElk.add({ + id: `${generateUuid()}${FAKE_MARKER}__fake`, + sources: [dependency.elkNode.id], + targets: [p], + }); + } + } + } + } + + // 5. Concatenate real and fake edges to pass to ELK. + const elkEdges = [ + ...fakeEdgesForElk, + ...[...edgesById.values()].flatMap((e) => { + // Not all nodes are present in all DRD + if (nodesById.has(e.source) && nodesById.has(e.target)) { + return { + id: e.id, + sources: [e.source], + targets: [e.target], + }; + } else { + return []; + } + }), + ]; + + // 6. Run ELK. + const autolayouted = await runElk(elkNodes, elkEdges, ELK_OPTIONS); + return { + autolayouted, + parentNodesById, + }; +} + +async function runElk( + nodes: Elk.ElkNode[], + edges: { id: string; sources: string[]; targets: string[] }[], + options: Elk.LayoutOptions = {} +): Promise<{ isHorizontal: boolean; nodes: Elk.ElkNode[] | undefined; edges: Elk.ElkExtendedEdge[] | undefined }> { + const isHorizontal = options?.["elk.direction"] === "RIGHT"; + + const graph: Elk.ElkNode = { + id: "root", + layoutOptions: options, + children: nodes, + edges, + }; + + const layoutedGraph = await elk.layout(graph); + return { + isHorizontal, + nodes: layoutedGraph.children, + edges: layoutedGraph.edges as any[], + }; +} + +export function visitNodeAndNested( + elkNode: Elk.ElkNode, + positionOffset: { x: number; y: number }, + visitor: (elkNode: Elk.ElkNode, positionOffset: { x: number; y: number }) => void +) { + visitor(elkNode, positionOffset); + for (const nestedNode of elkNode.children ?? []) { + visitNodeAndNested( + nestedNode, + { + x: elkNode.x! + positionOffset.x, + y: elkNode.y! + positionOffset.y, + }, + visitor + ); + } +} diff --git a/packages/dmn-editor/src/diagram/Diagram.tsx b/packages/dmn-editor/src/diagram/Diagram.tsx index 6d907005290..57b4d7f0bbc 100644 --- a/packages/dmn-editor/src/diagram/Diagram.tsx +++ b/packages/dmn-editor/src/diagram/Diagram.tsx @@ -34,6 +34,7 @@ import { EmptyStateBody, EmptyStateIcon, EmptyStatePrimary, + EmptyStateVariant, } from "@patternfly/react-core/dist/js/components/EmptyState"; import { Label } from "@patternfly/react-core/dist/js/components/Label"; import { Popover } from "@patternfly/react-core/dist/js/components/Popover"; @@ -53,7 +54,7 @@ import { ExternalNode, MIME_TYPE_FOR_DMN_EDITOR_EXTERNAL_NODES_FROM_INCLUDED_MODELS, } from "../externalNodes/ExternalNodesPanel"; -import { NodeNature, nodeNatures } from "../mutations/NodeNature"; +import { nodeNatures } from "../mutations/NodeNature"; import { addConnectedNode } from "../mutations/addConnectedNode"; import { addDecisionToDecisionService } from "../mutations/addDecisionToDecisionService"; import { addEdge } from "../mutations/addEdge"; @@ -61,12 +62,12 @@ import { addShape } from "../mutations/addShape"; import { addStandaloneNode } from "../mutations/addStandaloneNode"; import { deleteDecisionFromDecisionService } from "../mutations/deleteDecisionFromDecisionService"; import { EdgeDeletionMode, deleteEdge } from "../mutations/deleteEdge"; -import { NodeDeletionMode, canRemoveNodeFromDrdOnly, deleteNode } from "../mutations/deleteNode"; +import { NodeDeletionMode, deleteNode } from "../mutations/deleteNode"; import { repositionNode } from "../mutations/repositionNode"; import { resizeNode } from "../mutations/resizeNode"; import { updateExpression } from "../mutations/updateExpression"; import { OverlaysPanel } from "../overlaysPanel/OverlaysPanel"; -import { DiagramLhsPanel, SnapGrid } from "../store/Store"; +import { DiagramLhsPanel, SnapGrid, State } from "../store/Store"; import { useDmnEditorStore, useDmnEditorStoreApi } from "../store/StoreContext"; import { Unpacked } from "../tsExt/tsExt"; import { buildXmlHref, parseXmlHref } from "../xml/xmlHrefs"; @@ -94,8 +95,6 @@ import { getContainmentRelationship, getHandlePosition, getNodeTypeFromDmnObject, - getBounds, - CONTAINER_NODES_DESIRABLE_PADDING, } from "./maths/DmnMaths"; import { DEFAULT_NODE_SIZES, MIN_NODE_SIZES } from "./nodes/DefaultSizes"; import { NODE_TYPES } from "./nodes/NodeTypes"; @@ -118,7 +117,11 @@ import { } from "../mutations/addExistingDecisionServiceToDrd"; import { updateExpressionWidths } from "../mutations/updateExpressionWidths"; import { DiagramCommands } from "./DiagramCommands"; +import { autoLayout } from "../autolayout/autoLayout"; +import { useAutoLayout } from "../autolayout/AutoLayoutHook"; +import { autoGenerateDrd } from "../normalization/autoGenerateDrd"; import { Normalized, normalize } from "../normalization/normalize"; +import OptimizeIcon from "@patternfly/react-icons/dist/js/icons/optimize-icon"; const isFirefox = typeof (window as any).InstallTrigger !== "undefined"; // See https://stackoverflow.com/questions/9847580/how-to-detect-safari-chrome-ie-firefox-and-opera-browsers @@ -638,7 +641,7 @@ export const Diagram = React.forwardRef s.diagram.autoLayout.canAutoGenerateDrd); + return ( <> - {isEmptyStateShowing && } + {nodes.length === 0 && canAutoGenerateDrd && } + {isEmptyStateShowing && !canAutoGenerateDrd && } @@ -1193,6 +1199,128 @@ export const Diagram = React.forwardRef +
+ + + +
+ + Auto generating the diagram will automatically place the nodes with the default size and shape. You can also + manually build your diagram using the "DRG Nodes" option from the palette. + + +
+ + ); +} + function DmnDiagramEmptyState({ setShowEmptyState, }: { diff --git a/packages/dmn-editor/src/diagram/nodes/Nodes.tsx b/packages/dmn-editor/src/diagram/nodes/Nodes.tsx index a826ebeebce..b95c96b4bd5 100644 --- a/packages/dmn-editor/src/diagram/nodes/Nodes.tsx +++ b/packages/dmn-editor/src/diagram/nodes/Nodes.tsx @@ -957,7 +957,7 @@ export const DecisionServiceNode = React.memo( updateDecisionServiceDividerLine({ definitions: state.dmn.model.definitions, drdIndex: state.computed(state).getDrdIndex(), - dmnShapesByHref: state.computed(state).indexedDrd().dmnShapesByHref, + __readonly_dmnShapesByHref: state.computed(state).indexedDrd().dmnShapesByHref, drgElementIndex: index, shapeIndex: shape.index, localYPosition: e.y, diff --git a/packages/dmn-editor/src/mutations/resizeNode.ts b/packages/dmn-editor/src/mutations/resizeNode.ts index 8d6a1dda662..6199148f5d3 100644 --- a/packages/dmn-editor/src/mutations/resizeNode.ts +++ b/packages/dmn-editor/src/mutations/resizeNode.ts @@ -38,13 +38,13 @@ import { Normalized } from "../normalization/normalize"; export function resizeNode({ definitions, drdIndex, - dmnShapesByHref, + __readonly_dmnShapesByHref, snapGrid, change, }: { definitions: Normalized; drdIndex: number; - dmnShapesByHref: Map & { index: number }>; + __readonly_dmnShapesByHref: Map & { index: number }>; snapGrid: SnapGrid; change: { nodeType: NodeType; @@ -77,7 +77,7 @@ export function resizeNode({ // We ignore handling the contents of the Decision Service when it is external if (!change.isExternal) { ds.encapsulatedDecision?.forEach((ed) => { - const edShape = dmnShapesByHref.get(ed["@_href"])!; + const edShape = __readonly_dmnShapesByHref.get(ed["@_href"])!; const dim = snapShapeDimensions(snapGrid, edShape, MIN_NODE_SIZES[NODE_TYPES.decision]({ snapGrid })); const pos = snapShapePosition(snapGrid, edShape); if (pos.x + dim.width > limit.x) { @@ -91,7 +91,7 @@ export function resizeNode({ // Output Decisions don't limit the resizing vertically, only horizontally. ds.outputDecision?.forEach((ed) => { - const edShape = dmnShapesByHref.get(ed["@_href"])!; + const edShape = __readonly_dmnShapesByHref.get(ed["@_href"])!; const dim = snapShapeDimensions(snapGrid, edShape, MIN_NODE_SIZES[NODE_TYPES.decision]({ snapGrid })); const pos = snapShapePosition(snapGrid, edShape); if (pos.x + dim.width > limit.x) { diff --git a/packages/dmn-editor/src/mutations/updateDecisionServiceDividerLine.ts b/packages/dmn-editor/src/mutations/updateDecisionServiceDividerLine.ts index 86ba8bd5e2a..5b0b3d2c684 100644 --- a/packages/dmn-editor/src/mutations/updateDecisionServiceDividerLine.ts +++ b/packages/dmn-editor/src/mutations/updateDecisionServiceDividerLine.ts @@ -37,7 +37,7 @@ export const DECISION_SERVICE_DIVIDER_LINE_PADDING = 100; export function updateDecisionServiceDividerLine({ definitions, drdIndex, - dmnShapesByHref, + __readonly_dmnShapesByHref, shapeIndex, localYPosition, drgElementIndex, @@ -45,7 +45,7 @@ export function updateDecisionServiceDividerLine({ }: { definitions: Normalized; drdIndex: number; - dmnShapesByHref: Map & { index: number }>; + __readonly_dmnShapesByHref: Map & { index: number }>; shapeIndex: number; localYPosition: number; drgElementIndex: number; @@ -72,13 +72,13 @@ export function updateDecisionServiceDividerLine({ const upperLimit = (ds.outputDecision ?? []).reduce((acc, od) => { const v = - snapShapePosition(snapGrid, dmnShapesByHref.get(od["@_href"])!).y + - snapShapeDimensions(snapGrid, dmnShapesByHref.get(od["@_href"])!, decisionMinSizes).height; + snapShapePosition(snapGrid, __readonly_dmnShapesByHref.get(od["@_href"])!).y + + snapShapeDimensions(snapGrid, __readonly_dmnShapesByHref.get(od["@_href"])!, decisionMinSizes).height; return v > acc ? v : acc; }, snappedPosition.y + DECISION_SERVICE_DIVIDER_LINE_PADDING); const lowerLimit = (ds.encapsulatedDecision ?? []).reduce((acc, ed) => { - const v = snapShapePosition(snapGrid, dmnShapesByHref.get(ed["@_href"])!).y; + const v = snapShapePosition(snapGrid, __readonly_dmnShapesByHref.get(ed["@_href"])!).y; return v < acc ? v : acc; }, snappedPosition.y + snappedDimensions.height - DECISION_SERVICE_DIVIDER_LINE_PADDING); diff --git a/packages/dmn-editor/src/normalization/autoGenerateDrd.ts b/packages/dmn-editor/src/normalization/autoGenerateDrd.ts new file mode 100644 index 00000000000..2053b0c7f9f --- /dev/null +++ b/packages/dmn-editor/src/normalization/autoGenerateDrd.ts @@ -0,0 +1,211 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { generateUuid } from "@kie-tools/boxed-expression-component/dist/api"; +import { ExternalDmnsIndex, ExternalModelsIndex, ExternalPmmlsIndex } from "../DmnEditor"; +import { computeDiagramData } from "../store/computed/computeDiagramData"; +import { State } from "../store/Store"; +import { MIN_NODE_SIZES } from "../diagram/nodes/DefaultSizes"; +import { getNodeTypeFromDmnObject } from "../diagram/maths/DmnMaths"; +import { DMN15__tDefinitions } from "@kie-tools/dmn-marshaller/dist/schemas/dmn-1_5/ts-gen/types"; +import { DmnLatestModel } from "@kie-tools/dmn-marshaller"; +import { parseXmlHref } from "../xml/xmlHrefs"; +import { computeIndexedDrd } from "../store/computed/computeIndexes"; +import { getDefaultDrdName } from "../mutations/addOrGetDrd"; +import { addShape } from "../mutations/addShape"; +import { addEdge } from "../mutations/addEdge"; +import { EdgeType, NodeType } from "../diagram/connections/graphStructure"; +import { PositionalNodeHandleId } from "../diagram/connections/PositionalNodeHandles"; +import { Normalized } from "./normalize"; + +export async function autoGenerateDrd(args: { + model: State["dmn"]["model"]; + diagram: State["diagram"]; + externalModelsByNamespace: ExternalModelsIndex | undefined; + externalModelTypesByNamespace: { + dmns: ExternalDmnsIndex; + pmmls: ExternalPmmlsIndex; + }; +}) { + // Create DRD + args.model.definitions["dmndi:DMNDI"] = { + ...args.model.definitions["dmndi:DMNDI"], + "dmndi:DMNDiagram": [ + { + "@_id": generateUuid(), + "@_name": getDefaultDrdName({ drdIndex: 0 }), + "@_useAlternativeInputDataShape": false, + "dmndi:DMNDiagramElement": [], + "di:extension": { "kie:ComponentsWidthsExtension": { "kie:ComponentWidths": [{}] } }, + }, + ], + }; + + // 1. Add shapes from current DRG + args.model.definitions.drgElement?.forEach((drgElement) => { + const nodeType = getNodeTypeFromDmnObject(drgElement) ?? "node_unknown"; + const minNodeSize = MIN_NODE_SIZES[nodeType]({ + snapGrid: { + isEnabled: true, + x: 20, + y: 20, + }, + isAlternativeInputDataShape: false, + }); + + addShape({ + definitions: args.model.definitions, + drdIndex: 0, + nodeType: nodeType, + shape: { + "@_id": generateUuid(), + "@_dmnElementRef": drgElement["@_id"]!, + "dc:Bounds": { + "@_x": 0, + "@_y": 0, + ...minNodeSize, + }, + }, + }); + }); + + // 2. Add shapes from external models; + const definedNamespaces = new Map( + Object.keys(args.model.definitions) + .filter((keys: keyof Normalized) => String(keys).startsWith("@_xmlns:")) + .map((xmlnsKey: keyof Normalized) => [ + args.model.definitions[xmlnsKey], + xmlnsKey.split("@_xmlns:")[1], + ]) + ); + + const updateIndexedDrdWithNodes = computeIndexedDrd(args.model.definitions["@_namespace"], args.model.definitions, 0); + const { nodesById: updatedNodesByIdWithNodes, drgEdges: updatedDrgEdgesWithNodes } = computeDiagramData( + args.diagram, + args.model.definitions, + args.externalModelTypesByNamespace, + updateIndexedDrdWithNodes, + false + ); + + // Search on edges for any node that isn't on the nodesByIdMap; + // Only external nodes should be added to the externalNodesHref; + const externalNodesHref = updatedDrgEdgesWithNodes.reduce((acc, drgEdge) => { + if (!updatedNodesByIdWithNodes.has(drgEdge.sourceId)) { + acc.add(drgEdge.sourceId); + } + if (!updatedNodesByIdWithNodes.has(drgEdge.targetId)) { + acc.add(drgEdge.targetId); + } + return acc; + }, new Set()); + + // Add external shapes + externalNodesHref.forEach((href) => { + const { namespace, id } = parseXmlHref(href); + if (namespace) { + const externalModel = args.externalModelsByNamespace?.[namespace]; + if (externalModel && (externalModel.model as Normalized).definitions) { + const drgElements = (externalModel.model as Normalized).definitions.drgElement; + const drgElement = drgElements?.filter((drgElement) => drgElement["@_id"] === id); + + const nodeType = getNodeTypeFromDmnObject(drgElement![0]) ?? "node_unknown"; + const minNodeSize = MIN_NODE_SIZES[nodeType]({ + snapGrid: { + isEnabled: true, + x: 20, + y: 20, + }, + isAlternativeInputDataShape: false, + }); + + addShape({ + definitions: args.model.definitions, + drdIndex: 0, + nodeType: nodeType, + shape: { + "@_id": generateUuid(), + "@_dmnElementRef": `${definedNamespaces.get(namespace)}:${id}`, + "dc:Bounds": { + "@_x": 0, + "@_y": 0, + ...minNodeSize, + }, + }, + }); + } + } + }); + + // 3. Add edges + const updatedIndexedDrdWithExternalNodes = computeIndexedDrd( + args.model.definitions["@_namespace"], + args.model.definitions, + 0 + ); + const { + nodesById: updatedNodesByIdWithExternalNodes, + edgesById: updatedEdgesByIdWithExternalNodes, + drgEdges: updatedDrgEdgesWithExternalNodes, + } = computeDiagramData( + args.diagram, + args.model.definitions, + args.externalModelTypesByNamespace, + updatedIndexedDrdWithExternalNodes, + false + ); + + for (const drgEdge of updatedDrgEdgesWithExternalNodes) { + const edge = updatedEdgesByIdWithExternalNodes.get(drgEdge.id); + const sourceNode = updatedNodesByIdWithExternalNodes.get(drgEdge.sourceId); + const targetNode = updatedNodesByIdWithExternalNodes.get(drgEdge.targetId); + + // Avoid missing nodes. Possible cause is an external model which couldn't be found. + if (!edge || !sourceNode || !targetNode) { + continue; + } + + addEdge({ + definitions: args.model.definitions, + drdIndex: 0, + keepWaypoints: false, + edge: { + autoPositionedEdgeMarker: undefined, + type: edge.type as EdgeType, + targetHandle: PositionalNodeHandleId.Bottom, + sourceHandle: PositionalNodeHandleId.Top, + }, + sourceNode: { + type: sourceNode.type as NodeType, + href: sourceNode.id, + data: sourceNode.data, + bounds: sourceNode.data.shape["dc:Bounds"]!, + shapeId: sourceNode.data.shape["@_id"], + }, + targetNode: { + type: targetNode.type as NodeType, + href: targetNode.id, + data: targetNode.data, + bounds: targetNode.data.shape["dc:Bounds"]!, + index: targetNode.data.index, + shapeId: targetNode.data.shape["@_id"], + }, + }); + } +} diff --git a/packages/dmn-editor/src/store/Store.ts b/packages/dmn-editor/src/store/Store.ts index 85657b44f8f..21f04b3bf74 100644 --- a/packages/dmn-editor/src/store/Store.ts +++ b/packages/dmn-editor/src/store/Store.ts @@ -88,6 +88,9 @@ export interface State { tab: DmnEditorTab; }; diagram: { + autoLayout: { + canAutoGenerateDrd: boolean; + }; __unsafeDrdIndex: number; edgeIdBeingUpdated: string | undefined; dropTargetNode: DropTargetNode; @@ -187,6 +190,9 @@ export const defaultStaticState = (): Omit) { + const { diagram, ...defaultState } = defaultStaticState(); return create( immer(() => ({ dmn: { model: normalize(model), }, - ...defaultStaticState(), + ...defaultState, + diagram: { + ...diagram, + // A model without DRD and with DRG element can be auto generated + autoLayout: { + canAutoGenerateDrd: + model.definitions["dmndi:DMNDI"]?.["dmndi:DMNDiagram"] === undefined && + model.definitions.drgElement !== undefined, + }, + }, dispatch(s: State) { return { dmn: { diff --git a/packages/dmn-editor/stories/dev/DevWebApp.stories.tsx b/packages/dmn-editor/stories/dev/DevWebApp.stories.tsx index 3a9c41928ca..262231b2523 100644 --- a/packages/dmn-editor/stories/dev/DevWebApp.stories.tsx +++ b/packages/dmn-editor/stories/dev/DevWebApp.stories.tsx @@ -31,6 +31,7 @@ import { loanPreQualificationDmn } from "../useCases/loanPreQualification/LoanPr import { DmnEditorWrapper } from "../dmnEditorStoriesWrapper"; import { DmnEditorProps, + DmnEditorRef, ExternalModelsIndex, OnDmnModelChange, OnRequestExternalModelByPath, @@ -40,6 +41,30 @@ import { const initialModel = generateEmptyDmn15(); +const emptyDrd = ` + + + + + + + + + + + + + + + + + + + + + +`; + function DevWebApp(args: DmnEditorProps) { const [state, setState] = useState<{ marshaller: DmnMarshaller; @@ -168,6 +193,8 @@ function DevWebApp(args: DmnEditorProps) {     +     +     |     + ) + } + hasNoPadding={shouldRenderConfirmationMessage} + maxWidth={shouldRenderConfirmationMessage ? "300px" : "150px"} + minWidth={shouldRenderConfirmationMessage ? "300px" : "150px"} + isVisible={isRemovePopoverOpen} + showClose={false} + shouldClose={() => { + setRemovePopoverOpen(false); + setConfirmationPopoverOpen(false); }} + position={PopoverPosition.bottom} + shouldOpen={() => setRemovePopoverOpen(true)} > - {pathDisplayed} - - - - - ); -} - -function UnknownIncludedModelCard({ - _import, - index, - isReadonly, -}: { - _import: Normalized; - index: number; - isReadonly: boolean; -}) { - const dmnEditorStoreApi = useDmnEditorStoreApi(); - - const remove = useCallback( - (index: number) => { - dmnEditorStoreApi.setState((state) => { - deleteImport({ definitions: state.dmn.model.definitions, index }); - }); - }, - [dmnEditorStoreApi] - ); - - const { externalModelsByNamespace } = useExternalModels(); - - const rename = useCallback( - (newName) => { - dmnEditorStoreApi.setState((state) => { - renameImport({ - definitions: state.dmn.model.definitions, - index, - newName, - allTopLevelDataTypesByFeelName: state.computed(state).getDataTypes(externalModelsByNamespace) - .allTopLevelDataTypesByFeelName, - }); - }); - }, - [dmnEditorStoreApi, externalModelsByNamespace, index] - ); - - const extension = useMemo(() => { - if (allDmnImportNamespaces.has(_import["@_importType"])) { - return "dmn"; - } else if (allPmmlImportNamespaces.has(_import["@_importType"])) { - return "pmml"; - } else { - return "Unknwon"; - } - }, [_import]); - - const [isCardActionsOpen, setCardActionsOpen] = useState(false); - - return ( - - - - } - onSelect={() => setCardActionsOpen(false)} - isOpen={isCardActionsOpen} - menuAppendTo={document.body} - isPlain={true} - position={"right"} - dropdownItems={[ - - {!isReadonly && ( - } - onClick={() => { - if (isReadonly) { - return; - } - - remove(index); - }} - > - Remove - - )} - , - ]} - /> + + - - - + {externalModel ? ( + + {`${title}`} +

-

- Namespace: {_import["@_namespace"]} -

-

- URI: {_import["@_locationURI"] ?? None} -

-
-
+ + + + + ) : ( + // unknown + + + +
+

+ Namespace: {_import["@_namespace"]} +

+

+ URI: {_import["@_locationURI"] ?? None} +

+
+
+ )}
); } diff --git a/packages/dmn-editor/src/mutations/deleteImport.ts b/packages/dmn-editor/src/mutations/deleteImport.ts index 085896c4588..ca2617e3260 100644 --- a/packages/dmn-editor/src/mutations/deleteImport.ts +++ b/packages/dmn-editor/src/mutations/deleteImport.ts @@ -20,15 +20,68 @@ import { DMN15__tDefinitions } from "@kie-tools/dmn-marshaller/dist/schemas/dmn-1_5/ts-gen/types"; import { getXmlNamespaceDeclarationName } from "../xml/xmlNamespaceDeclarations"; import { Normalized } from "../normalization/normalize"; +import { computeDiagramData } from "../store/computed/computeDiagramData"; +import { deleteNode, NodeDeletionMode } from "./deleteNode"; +import { nodeNatures } from "./NodeNature"; +import { NodeType } from "../diagram/connections/graphStructure"; +import { deleteEdge, EdgeDeletionMode } from "./deleteEdge"; +import { computeIndexedDrd } from "../store/computed/computeIndexes"; +import { Computed, defaultStaticState } from "../store/Store"; +import { TypeOrReturnType } from "../store/ComputedStateCache"; -export function deleteImport({ definitions, index }: { definitions: Normalized; index: number }) { +export function deleteImport({ + definitions, + __readonly_index, + __readonly_externalModelTypesByNamespace, +}: { + definitions: Normalized; + __readonly_index: number; + __readonly_externalModelTypesByNamespace: TypeOrReturnType; +}) { definitions.import ??= []; - const [deleted] = definitions.import.splice(index, 1); + const [deletedImport] = definitions.import.splice(__readonly_index, 1); const namespaceName = getXmlNamespaceDeclarationName({ rootElement: definitions, - namespace: deleted["@_namespace"], + namespace: deletedImport["@_namespace"], }); + + // Delete from all DRDs + const defaultDiagram = defaultStaticState().diagram; + definitions["dmndi:DMNDI"]?.["dmndi:DMNDiagram"]?.forEach((_, i) => { + const indexedDrd = computeIndexedDrd(definitions["@_namespace"], definitions, i); + const { externalNodesByNamespace, drgEdges, edgesFromExternalNodesByNamespace } = computeDiagramData( + defaultDiagram, + definitions, + __readonly_externalModelTypesByNamespace, + indexedDrd, + false + ); + + externalNodesByNamespace.get(deletedImport["@_namespace"])?.forEach((node) => { + deleteNode({ + definitions, + drgEdges: drgEdges, + drdIndex: 0, + nodeNature: nodeNatures[node.type! as NodeType], + dmnObjectId: node.data.dmnObject?.["@_id"], + dmnObjectQName: node.data.dmnObjectQName, + dmnObjectNamespace: node.data.dmnObjectNamespace!, + externalDmnsIndex: __readonly_externalModelTypesByNamespace.dmns, + mode: NodeDeletionMode.FROM_DRG_AND_ALL_DRDS, + }); + }); + + edgesFromExternalNodesByNamespace.get(deletedImport["@_namespace"])?.forEach((edge) => { + deleteEdge({ + definitions, + drdIndex: 0, + edge: { id: edge.id, dmnObject: edge.data!.dmnObject }, + mode: EdgeDeletionMode.FROM_DRG_AND_ALL_DRDS, + }); + }); + }); + if (namespaceName) { delete definitions[`@_xmlns:${namespaceName}`]; } diff --git a/packages/dmn-editor/src/store/computed/computeDiagramData.ts b/packages/dmn-editor/src/store/computed/computeDiagramData.ts index 7c44934b2ca..69552fa0412 100644 --- a/packages/dmn-editor/src/store/computed/computeDiagramData.ts +++ b/packages/dmn-editor/src/store/computed/computeDiagramData.ts @@ -37,6 +37,7 @@ import { TypeOrReturnType } from "../ComputedStateCache"; import { Computed, State } from "../Store"; import { getDecisionServicePropertiesRelativeToThisDmn } from "../../mutations/addExistingDecisionServiceToDrd"; import { Normalized } from "../../normalization/normalize"; +import { KIE_UNKNOWN_NAMESPACE } from "../../kie/kie"; export const NODE_LAYERS = { GROUP_NODE: 0, @@ -51,6 +52,7 @@ type AckEdge = (args: { type: EdgeType; source: string; target: string; + sourceNamespace: string | undefined; }) => RF.Edge; type AckNode = ( @@ -78,6 +80,8 @@ export function computeDiagramData( const nodesById = new Map>(); const edgesById = new Map>(); const parentIdsById = new Map(); + const externalNodesByNamespace = new Map>>(); + const edgesFromExternalNodesByNamespace = new Map>>(); const { selectedNodes, draggingNodes, resizingNodes, selectedEdges } = { selectedNodes: new Set(diagram._selectedNodes), @@ -92,7 +96,7 @@ export function computeDiagramData( const drgEdges: DrgEdge[] = []; const drgAdjacencyList: DrgAdjacencyList = new Map(); - const ackEdge: AckEdge = ({ id, type, dmnObject, source, target }) => { + const ackEdge: AckEdge = ({ id, type, dmnObject, source, target, sourceNamespace }) => { const data = { dmnObject, dmnEdge: id ? indexedDrd.dmnEdgesByDmnElementRef.get(id) : undefined, @@ -109,6 +113,13 @@ export function computeDiagramData( selected: selectedEdges.has(id), }; + if (sourceNamespace && sourceNamespace !== KIE_UNKNOWN_NAMESPACE) { + edgesFromExternalNodesByNamespace.set(sourceNamespace, [ + ...(edgesFromExternalNodesByNamespace.get(sourceNamespace) ?? []), + edge, + ]); + } + edgesById.set(edge.id, edge); if (edge.selected) { selectedEdgesById.set(edge.id, edge); @@ -149,6 +160,7 @@ export function computeDiagramData( type: EDGE_TYPES.association, source: dmnObject.sourceRef?.["@_href"], target: dmnObject.targetRef?.["@_href"], + sourceNamespace: undefined, // association are always from the current namespace }); }); @@ -224,6 +236,13 @@ export function computeDiagramData( } } + if (dmnObjectNamespace && dmnObjectNamespace !== KIE_UNKNOWN_NAMESPACE) { + externalNodesByNamespace.set(dmnObjectNamespace, [ + ...(externalNodesByNamespace.get(dmnObjectNamespace) ?? []), + newNode, + ]); + } + nodesById.set(newNode.id, newNode); if (newNode.selected) { selectedNodesById.set(newNode.id, newNode); @@ -360,6 +379,8 @@ export function computeDiagramData( nodes: sortedNodes, edges: sortedEdges, edgesById, + externalNodesByNamespace, + edgesFromExternalNodesByNamespace, nodesById, selectedNodeTypes, selectedNodesById, @@ -393,6 +414,7 @@ function ackRequirementEdges( type: EDGE_TYPES.informationRequirement, source: buildXmlHref({ namespace: irHref.namespace ?? namespace, id: irHref.id }), target: buildXmlHref({ namespace, id: dmnObject["@_id"]! }), + sourceNamespace: irHref.namespace ?? namespace, }); }); } @@ -412,6 +434,7 @@ function ackRequirementEdges( type: EDGE_TYPES.knowledgeRequirement, source: buildXmlHref({ namespace: krHref.namespace ?? namespace, id: krHref.id }), target: buildXmlHref({ namespace, id: dmnObject["@_id"]! }), + sourceNamespace: krHref.namespace ?? namespace, }); }); } @@ -435,6 +458,7 @@ function ackRequirementEdges( type: EDGE_TYPES.authorityRequirement, source: buildXmlHref({ namespace: arHref.namespace ?? namespace, id: arHref.id }), target: buildXmlHref({ namespace, id: dmnObject["@_id"]! }), + sourceNamespace: arHref.namespace ?? namespace, }); }); } From d8284e8b0271979656ccad5fe6946946dccb07fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luiz=20Jo=C3=A3o=20Motta?= Date: Mon, 27 May 2024 18:24:09 -0300 Subject: [PATCH 56/90] kie-issues#1188: DMN Runner shows an error message instead of empty state for empty DMNs (#2372) --- packages/dmn-language-service/package.json | 4 +++- .../src/DmnLanguageService.ts | 20 ++++++++++++++++++- .../tests/buildImportIndex.test.ts | 5 +---- pnpm-lock.yaml | 6 ++++++ 4 files changed, 29 insertions(+), 6 deletions(-) diff --git a/packages/dmn-language-service/package.json b/packages/dmn-language-service/package.json index 448fbc97434..a0909895f0c 100644 --- a/packages/dmn-language-service/package.json +++ b/packages/dmn-language-service/package.json @@ -27,7 +27,8 @@ "dependencies": { "@kie-tools/dmn-feel-antlr4-parser": "workspace:*", "@kie-tools/dmn-marshaller": "workspace:*", - "antlr4": "^4.13.0" + "antlr4": "^4.13.0", + "uuid": "^8.3.2" }, "devDependencies": { "@babel/core": "^7.16.0", @@ -37,6 +38,7 @@ "@kie-tools/root-env": "workspace:*", "@kie-tools/tsconfig": "workspace:*", "@types/jest": "^26.0.23", + "@types/uuid": "^8.3.0", "jest": "^26.6.3", "jest-junit": "^14.0.0", "rimraf": "^3.0.2", diff --git a/packages/dmn-language-service/src/DmnLanguageService.ts b/packages/dmn-language-service/src/DmnLanguageService.ts index 7f800d2fa8d..4f2bd359521 100644 --- a/packages/dmn-language-service/src/DmnLanguageService.ts +++ b/packages/dmn-language-service/src/DmnLanguageService.ts @@ -22,6 +22,9 @@ import { DmnDecision } from "./DmnDecision"; import * as path from "path"; import { getMarshaller } from "@kie-tools/dmn-marshaller"; import { DMN15__tDefinitions } from "@kie-tools/dmn-marshaller/dist/schemas/dmn-1_5/ts-gen/types"; +import { ns as dmn15ns } from "@kie-tools/dmn-marshaller/dist/schemas/dmn-1_5/ts-gen/meta"; +import { DMN15_SPEC } from "@kie-tools/dmn-marshaller/dist/schemas/dmn-1_5/Dmn15Spec"; +import { v4 as uuid } from "uuid"; const INPUT_DATA = "inputData"; const XML_MIME = "text/xml"; @@ -31,6 +34,21 @@ const DMN_NAME = "name"; const DECISION = "decision"; const DEFINITIONS = "definitions"; +// FIXME: This was duplicated from boxed-expression-editor +const generateUuid = () => { + return `_${uuid()}`.toLocaleUpperCase(); +}; + +// FIXME: This was duplicated from dmn-editor-envelope +const EMPTY_DMN = () => ` + +`; + /** * The normalized posix path relative to the workspace root is a string * Example of paths: "myFolderInsideWorkspace/myFile.txt" @@ -195,7 +213,7 @@ export class DmnLanguageService { r.normalizedPosixPathRelativeToTheWorkspaceRoot, { xml: r.content, - definitions: getMarshaller(r.content, { upgradeTo: "latest" }).parser.parse().definitions, + definitions: getMarshaller(r.content || EMPTY_DMN(), { upgradeTo: "latest" }).parser.parse().definitions, }, ]) ), diff --git a/packages/dmn-language-service/tests/buildImportIndex.test.ts b/packages/dmn-language-service/tests/buildImportIndex.test.ts index bd7afb293b0..3f19a487436 100644 --- a/packages/dmn-language-service/tests/buildImportIndex.test.ts +++ b/packages/dmn-language-service/tests/buildImportIndex.test.ts @@ -63,10 +63,7 @@ describe("invalid inputs", () => { const error: Error = await getError(async () => await dmnLs.buildImportIndex(emptyResource)); - expect(error.message).toEqual(` -DMN LANGUAGE SERVICE - buildImportIndex: Error while getting imported models from model resources. -Tried to use the following model resources: ${JSON.stringify(emptyResource)} -Error details: SyntaxError: about:blank:1:0: document must contain a root element.`); + expect(error.message).toEqual(""); }); it("invalid dmn", async () => { diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index d3a1a23842f..e3fd9e7befc 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -3805,6 +3805,9 @@ importers: antlr4: specifier: ^4.13.0 version: 4.13.0 + uuid: + specifier: ^8.3.2 + version: 8.3.2 devDependencies: "@babel/core": specifier: ^7.16.0 @@ -3827,6 +3830,9 @@ importers: "@types/jest": specifier: ^26.0.23 version: 26.0.23 + "@types/uuid": + specifier: ^8.3.0 + version: 8.3.0 jest: specifier: ^26.6.3 version: 26.6.3 From dd9347e2bef20ecbb8bd1d555b0f330bf1724b7d Mon Sep 17 00:00:00 2001 From: Thiago Lugli Date: Tue, 28 May 2024 10:36:09 -0300 Subject: [PATCH 57/90] NO-ISSUE: Update base images and maven plugins (#2376) --- packages/cors-proxy-image/Containerfile | 2 +- .../dashbuilder-viewer-image/Containerfile | 2 +- packages/dashbuilder/pom.xml | 96 +++++++++---------- .../Containerfile | 2 +- .../dev-webapp/quarkus-app/pom.xml | 19 ++-- .../Containerfile | 4 +- .../package.json | 2 +- .../pom.xml | 14 +-- .../package.json | 4 +- .../pom.xml | 5 +- .../dev/Containerfile.ddus-buildtime-install | 2 +- .../dev/Containerfile.ddus-fileserver | 2 +- .../dev/Containerfile.ddus-runtime-install | 2 +- .../kie-sandbox-webapp-image/Containerfile | 2 +- .../pom1-expected.xml_no_auto_formatting | 2 +- .../pom1-input.xml_no_auto_formatting | 2 +- .../kogito-management-console/Containerfile | 2 +- packages/kogito-task-console/Containerfile | 2 +- packages/maven-base/pom.xml | 4 +- .../pom.xml | 8 +- .../pom.xml | 2 +- .../e2e-tests/resources/greeting-flow/pom.xml | 8 +- packages/stunner-editors/pom.xml | 12 +-- packages/yard-validator-worker/pom.xml | 2 +- pnpm-lock.yaml | 4 - repo/graph.dot | 5 +- repo/graph.json | 3 +- 27 files changed, 107 insertions(+), 107 deletions(-) diff --git a/packages/cors-proxy-image/Containerfile b/packages/cors-proxy-image/Containerfile index 582a4f9c16b..7056604b012 100644 --- a/packages/cors-proxy-image/Containerfile +++ b/packages/cors-proxy-image/Containerfile @@ -15,7 +15,7 @@ # specific language governing permissions and limitations # under the License. -FROM --platform=linux/amd64 registry.access.redhat.com/ubi9/ubi-minimal:9.3 +FROM --platform=linux/amd64 registry.access.redhat.com/ubi9/ubi-minimal:9.4 ARG CORS_PROXY_DEFAULT_PORT=8080 ARG CORS_PROXY_DEFAULT_ORIGIN=* diff --git a/packages/dashbuilder-viewer-image/Containerfile b/packages/dashbuilder-viewer-image/Containerfile index 55678da2613..fcc4531b36b 100644 --- a/packages/dashbuilder-viewer-image/Containerfile +++ b/packages/dashbuilder-viewer-image/Containerfile @@ -15,7 +15,7 @@ # specific language governing permissions and limitations # under the License. -FROM --platform=linux/amd64 registry.access.redhat.com/ubi9/ubi-minimal:9.3 +FROM --platform=linux/amd64 registry.access.redhat.com/ubi9/ubi-minimal:9.4 RUN microdnf --disableplugin=subscription-manager -y install httpd \ && microdnf --disableplugin=subscription-manager clean all \ diff --git a/packages/dashbuilder/pom.xml b/packages/dashbuilder/pom.xml index 03ebe329489..d1680680727 100644 --- a/packages/dashbuilder/pom.xml +++ b/packages/dashbuilder/pom.xml @@ -7,15 +7,15 @@ ~ to you under the Apache License, Version 2.0 (the ~ "License"); you may not use this file except in compliance ~ with the License. You may obtain a copy of the License at - ~ + ~ ~ http://www.apache.org/licenses/LICENSE-2.0 - ~ + ~ ~ Unless required by applicable law or agreed to in writing, ~ software distributed under the License is distributed on an ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ~ KIND, either express or implied. See the License for the ~ specific language governing permissions and limitations - ~ under the License. + ~ under the License. --> ${illegaltransitivereportonly} - org\.jboss\.errai\.marshalling\.server\.impl\.ServerMarshallingFactory.* - io\.fabric8\.kubernetes.* io\.fabric8\.openshift.* @@ -756,17 +756,17 @@ - - commons-logging:commons-log* log4j:log4j javassist:javassist org.apache.cxf:cxf-bundle-jaxrs org.jboss.weld.se:weld-se @@ -808,8 +808,8 @@ ban-duplicated-classes - none @@ -819,14 +819,14 @@ - org.xmlpull.v1.XmlPullParserException org.xmlpull.v1.XmlPullParser - org.relaxng.datatype.* - org.apache.xmlbeans.xml.stream.XMLName org.apache.xmlbeans.xml.stream.XMLInputStream @@ -838,17 +838,17 @@ org.apache.xmlbeans.xml.stream.ReferenceResolver org.apache.xmlbeans.xml.stream.XMLEvent org.apache.xmlbeans.xml.stream.Location - org.w3c.dom.ElementTraversal org.w3c.dom.UserDataHandler - org.hornetq.utils.HornetQUtilBundle_$bundle org.hornetq.utils.HornetQUtilLogger_$logger - net.jcip.annotations.* @@ -862,22 +862,22 @@ org.eclipse.aether.* org.apache.maven.* org.codehaus.plexus.* - org.infinispan.util.AbstractDelegatingConcurrentMap org.infinispan.util.AbstractDelegatingMap org.infinispan.util.AbstractDelegatingSet org.infinispan.util.AbstractDelegatingCollection - org.apache.kafka.common.message.* org.apache.sshd.common.io.* org.apache.sshd.common.auth.* - org.glassfish @@ -886,7 +886,7 @@ javax.json.* - org.glassfish @@ -895,7 +895,7 @@ javax.el.* - com.sun.activation @@ -904,7 +904,7 @@ javax.activation.* - com.sun.mail @@ -914,7 +914,7 @@ - org.jboss.errai errai-ioc @@ -923,7 +923,7 @@ - org.jboss.errai errai-javax-enterprise @@ -932,7 +932,7 @@ - io.quarkus quarkus-ide-launcher @@ -940,9 +940,9 @@ * - com.google.gwt @@ -956,14 +956,14 @@ org.elasticsearch elasticsearch - org.joda.time.base.BaseDateTime - org.kie @@ -973,7 +973,7 @@ - org.dominokit @@ -983,7 +983,7 @@ - org.antlr @@ -1000,7 +1000,7 @@ - org.kie.server @@ -1025,8 +1025,8 @@ - io.fabric8 openshift-client @@ -1304,7 +1304,7 @@ org.codehaus.mojo flatten-maven-plugin - 1.3.0 + 1.6.0 true resolveCiFriendliesOnly @@ -1345,8 +1345,8 @@ ban-duplicated-classes - validate diff --git a/packages/dev-deployment-dmn-form-webapp-image/Containerfile b/packages/dev-deployment-dmn-form-webapp-image/Containerfile index ceab50f22e7..37771fde116 100644 --- a/packages/dev-deployment-dmn-form-webapp-image/Containerfile +++ b/packages/dev-deployment-dmn-form-webapp-image/Containerfile @@ -15,7 +15,7 @@ # specific language governing permissions and limitations # under the License. -FROM --platform=linux/amd64 registry.access.redhat.com/ubi9/ubi-minimal:9.3 +FROM --platform=linux/amd64 registry.access.redhat.com/ubi9/ubi-minimal:9.4 RUN microdnf --disableplugin=subscription-manager -y install httpd \ && microdnf --disableplugin=subscription-manager clean all \ diff --git a/packages/dev-deployment-dmn-form-webapp/dev-webapp/quarkus-app/pom.xml b/packages/dev-deployment-dmn-form-webapp/dev-webapp/quarkus-app/pom.xml index 20d0ea63639..e6bce3a0e1c 100644 --- a/packages/dev-deployment-dmn-form-webapp/dev-webapp/quarkus-app/pom.xml +++ b/packages/dev-deployment-dmn-form-webapp/dev-webapp/quarkus-app/pom.xml @@ -7,15 +7,15 @@ ~ to you under the Apache License, Version 2.0 (the ~ "License"); you may not use this file except in compliance ~ with the License. You may obtain a copy of the License at - ~ + ~ ~ http://www.apache.org/licenses/LICENSE-2.0 - ~ + ~ ~ Unless required by applicable law or agreed to in writing, ~ software distributed under the License is distributed on an ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ~ KIND, either express or implied. See the License for the ~ specific language governing permissions and limitations - ~ under the License. + ~ under the License. --> 0.0.0 - 3.8.1 + 3.13.0 true - 11 - 11 + 17 + 17 UTF-8 UTF-8 - 3.0.0-M5 - 4.13.1 + 3.2.5 + 4.13.2 + true @@ -157,7 +158,7 @@ org.codehaus.mojo flatten-maven-plugin - 1.3.0 + 1.6.0 true resolveCiFriendliesOnly diff --git a/packages/dev-deployment-kogito-quarkus-blank-app-image/Containerfile b/packages/dev-deployment-kogito-quarkus-blank-app-image/Containerfile index 38e4a81b06b..c82a6e8e2d0 100644 --- a/packages/dev-deployment-kogito-quarkus-blank-app-image/Containerfile +++ b/packages/dev-deployment-kogito-quarkus-blank-app-image/Containerfile @@ -27,7 +27,9 @@ ENV DEV_DEPLOYMENT__UPLOAD_SERVICE_EXTRACT_TO_DIR=$HOME_PATH/app/src/main/resour ENV DEV_DEPLOYMENT__UPLOAD_SERVICE_PORT=8080 COPY --chown=$USER_ID:$USER_ID dist-dev/quarkus-app $HOME_PATH/app/ -COPY --chown=$USER_ID:$USER_ID dist-dev/quarkus-app-m2 /tmp/kogito/.m2/repository +# This copies the jbpm-quarkus-devui dependencies to the m2 repository. +# Commented out for now as it still requires docker to run. https://github.com/apache/incubator-kie-issues/issues/1272 +# COPY --chown=$USER_ID:$USER_ID dist-dev/quarkus-app-m2 /tmp/kogito/.m2/repository RUN ./mvnw clean package -B -ntp -Dmaven.test.skip -Dmaven.repo.local=/tmp/kogito/.m2/repository -Dquarkus.http.non-application-root-path=${ROOT_PATH}/q -Dquarkus.http.root-path=${ROOT_PATH} \ && chgrp -R 0 $HOME_PATH/app && chmod -R g=u $HOME_PATH/app && chgrp -R 0 /tmp/kogito && chmod -R g=u /tmp/kogito && chgrp -R 0 /.m2 && chmod -R g=u /.m2 diff --git a/packages/dev-deployment-kogito-quarkus-blank-app-image/package.json b/packages/dev-deployment-kogito-quarkus-blank-app-image/package.json index 2a90303600d..7a5600680f2 100644 --- a/packages/dev-deployment-kogito-quarkus-blank-app-image/package.json +++ b/packages/dev-deployment-kogito-quarkus-blank-app-image/package.json @@ -15,7 +15,7 @@ "scripts": { "build:dev": "run-script-if --bool \"$(build-env containerImages.build)\" --then \"pnpm copy:assets\" \"pnpm image:docker:build\"", "build:prod": "run-script-if --bool \"$(build-env containerImages.build)\" --then \"pnpm copy:assets\" \"pnpm image:docker:build\"", - "copy:assets": "rimraf dist-dev && mkdir -p ./dist-dev && pnpm copy:m2-for-jbpm-quarkus-devui && pnpm copy:quarkus-app", + "copy:assets": "rimraf dist-dev && mkdir -p ./dist-dev && pnpm copy:quarkus-app", "copy:m2-for-jbpm-quarkus-devui": "mvn dependency:copy-dependencies -Dmdep.useRepositoryLayout=true -Dmdep.copyPom=true -DexcludeTransitive=true -DoutputDirectory=./dist-dev/quarkus-app-m2", "copy:quarkus-app": "run-script-os", "copy:quarkus-app:linux:darwin": " cp -R ./node_modules/@kie-tools/dev-deployment-kogito-quarkus-blank-app/ ./dist-dev/quarkus-app && rm -rf ./dist-dev/quarkus-app/node_modules ./dist-dev/quarkus-app/install.js ./dist-dev/quarkus-app/env ./dist-dev/quarkus-app/package.json", diff --git a/packages/dev-deployment-kogito-quarkus-blank-app-image/pom.xml b/packages/dev-deployment-kogito-quarkus-blank-app-image/pom.xml index 1ac91d54290..7a114b351c5 100644 --- a/packages/dev-deployment-kogito-quarkus-blank-app-image/pom.xml +++ b/packages/dev-deployment-kogito-quarkus-blank-app-image/pom.xml @@ -7,15 +7,15 @@ ~ to you under the Apache License, Version 2.0 (the ~ "License"); you may not use this file except in compliance ~ with the License. You may obtain a copy of the License at - ~ + ~ ~ http://www.apache.org/licenses/LICENSE-2.0 - ~ + ~ ~ Unless required by applicable law or agreed to in writing, ~ software distributed under the License is distributed on an ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ~ KIND, either express or implied. See the License for the ~ specific language governing permissions and limitations - ~ under the License. + ~ under the License. --> ${revision} - + + org.kie kie-tools-maven-base diff --git a/packages/dev-deployment-kogito-quarkus-blank-app/package.json b/packages/dev-deployment-kogito-quarkus-blank-app/package.json index bac09dbecbb..7e7e7c320f8 100644 --- a/packages/dev-deployment-kogito-quarkus-blank-app/package.json +++ b/packages/dev-deployment-kogito-quarkus-blank-app/package.json @@ -29,9 +29,7 @@ "quarkus:dev:darwin:linux": "mvn clean package quarkus:dev -DskipTests", "quarkus:dev:win32": "mvn clean package quarkus:dev `-DskipTests" }, - "dependencies": { - "@kie-tools/jbpm-quarkus-devui": "workspace:*" - }, + "dependencies": {}, "devDependencies": { "@kie-tools/maven-config-setup-helper": "workspace:*", "@kie-tools/root-env": "workspace:*", diff --git a/packages/dev-deployment-kogito-quarkus-blank-app/pom.xml b/packages/dev-deployment-kogito-quarkus-blank-app/pom.xml index e31665fca9e..529bcbbb56c 100644 --- a/packages/dev-deployment-kogito-quarkus-blank-app/pom.xml +++ b/packages/dev-deployment-kogito-quarkus-blank-app/pom.xml @@ -37,7 +37,7 @@ ${revision} - 3.12.1 + 3.13.0 true 17 17 @@ -108,6 +108,7 @@ + ${revision} - 3.12.1 + 3.13.0 false 17 UTF-8 diff --git a/packages/serverless-workflow-diagram-editor/pom.xml b/packages/serverless-workflow-diagram-editor/pom.xml index 479473fe8a8..b17171ebf2a 100644 --- a/packages/serverless-workflow-diagram-editor/pom.xml +++ b/packages/serverless-workflow-diagram-editor/pom.xml @@ -718,7 +718,7 @@ org.codehaus.mojo flatten-maven-plugin - 1.3.0 + 1.6.0 true resolveCiFriendliesOnly diff --git a/packages/serverless-workflow-vscode-extension/e2e-tests/resources/greeting-flow/pom.xml b/packages/serverless-workflow-vscode-extension/e2e-tests/resources/greeting-flow/pom.xml index 9173e98f8af..17ee5c338aa 100644 --- a/packages/serverless-workflow-vscode-extension/e2e-tests/resources/greeting-flow/pom.xml +++ b/packages/serverless-workflow-vscode-extension/e2e-tests/resources/greeting-flow/pom.xml @@ -7,15 +7,15 @@ ~ to you under the Apache License, Version 2.0 (the ~ "License"); you may not use this file except in compliance ~ with the License. You may obtain a copy of the License at - ~ + ~ ~ http://www.apache.org/licenses/LICENSE-2.0 - ~ + ~ ~ Unless required by applicable law or agreed to in writing, ~ software distributed under the License is distributed on an ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ~ KIND, either express or implied. See the License for the ~ specific language governing permissions and limitations - ~ under the License. + ~ under the License. --> greeting-flow 1.0 - 3.8.1 + 3.13.0 11 UTF-8 UTF-8 diff --git a/packages/stunner-editors/pom.xml b/packages/stunner-editors/pom.xml index e397a3302bb..823ef776139 100644 --- a/packages/stunner-editors/pom.xml +++ b/packages/stunner-editors/pom.xml @@ -7,15 +7,15 @@ ~ to you under the Apache License, Version 2.0 (the ~ "License"); you may not use this file except in compliance ~ with the License. You may obtain a copy of the License at - ~ + ~ ~ http://www.apache.org/licenses/LICENSE-2.0 - ~ + ~ ~ Unless required by applicable law or agreed to in writing, ~ software distributed under the License is distributed on an ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ~ KIND, either express or implied. See the License for the ~ specific language governing permissions and limitations - ~ under the License. + ~ under the License. --> - + 4.0.0 org.kie.kogito.stunner.editors stunner-editors-parent @@ -667,7 +667,7 @@ javax.annotation javax.annotation-api - com.google.gwt @@ -866,7 +866,7 @@ org.codehaus.mojo flatten-maven-plugin - 1.3.0 + 1.6.0 true resolveCiFriendliesOnly diff --git a/packages/yard-validator-worker/pom.xml b/packages/yard-validator-worker/pom.xml index c8af904c4e8..4fdccef3552 100644 --- a/packages/yard-validator-worker/pom.xml +++ b/packages/yard-validator-worker/pom.xml @@ -44,7 +44,7 @@ 0.4 2.0.10 - 3.8.1 + 3.13.0 11 11 0.23.0 diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index e3fd9e7befc..04da3543cf4 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -3337,10 +3337,6 @@ importers: version: 1.1.6 packages/dev-deployment-kogito-quarkus-blank-app: - dependencies: - "@kie-tools/jbpm-quarkus-devui": - specifier: workspace:* - version: link:../jbpm-quarkus-devui devDependencies: "@kie-tools/maven-config-setup-helper": specifier: workspace:* diff --git a/repo/graph.dot b/repo/graph.dot index b783733f63d..efc21715fa8 100644 --- a/repo/graph.dot +++ b/repo/graph.dot @@ -88,6 +88,7 @@ digraph G { "@kie-tools/form-dmn" [ color = "blue", fontcolor = "blue", style = "rounded" ]; "@kie-tools/dev-deployment-dmn-form-webapp-image" [ color = "black", fontcolor = "black", style = "dashed, rounded" ]; "@kie-tools/dev-deployment-kogito-quarkus-blank-app" [ color = "black", fontcolor = "black", style = "dashed, rounded" ]; + "@kie-tools/maven-config-setup-helper" [ color = "black", fontcolor = "black", style = "dashed, rounded" ]; "@kie-tools/dev-deployment-kogito-quarkus-blank-app-image" [ color = "black", fontcolor = "black", style = "dashed, rounded" ]; "@kie-tools/dmn-editor" [ color = "blue", fontcolor = "blue", style = "rounded" ]; "@kie-tools-core/react-hooks" [ color = "purple", fontcolor = "purple", style = "rounded" ]; @@ -134,7 +135,6 @@ digraph G { "@kie-tools/kogito-task-console" [ color = "black", fontcolor = "black", style = "dashed, rounded" ]; "@kie-tools/runtime-tools-task-console-webapp" [ color = "blue", fontcolor = "blue", style = "rounded" ]; "@kie-tools-core/kubernetes-bridge" [ color = "purple", fontcolor = "purple", style = "rounded" ]; - "@kie-tools/maven-config-setup-helper" [ color = "black", fontcolor = "black", style = "dashed, rounded" ]; "@kie-tools-core/workspace" [ color = "purple", fontcolor = "purple", style = "rounded" ]; "@kie-tools/unitables-dmn" [ color = "blue", fontcolor = "blue", style = "rounded" ]; "pmml-vscode-extension" [ color = "blue", fontcolor = "blue", style = "rounded" ]; @@ -307,7 +307,8 @@ digraph G { "@kie-tools/dev-deployment-dmn-form-webapp" -> "@kie-tools/form-dmn" [ style = "solid", color = "black" ]; "@kie-tools/dev-deployment-dmn-form-webapp-image" -> "@kie-tools/dev-deployment-dmn-form-webapp" [ style = "solid", color = "black" ]; "@kie-tools/dev-deployment-dmn-form-webapp-image" -> "@kie-tools/image-builder" [ style = "dashed", color = "black" ]; - "@kie-tools/dev-deployment-kogito-quarkus-blank-app" -> "@kie-tools/jbpm-quarkus-devui" [ style = "solid", color = "black" ]; + "@kie-tools/dev-deployment-kogito-quarkus-blank-app" -> "@kie-tools/maven-config-setup-helper" [ style = "dashed", color = "black" ]; + "@kie-tools/dev-deployment-kogito-quarkus-blank-app" -> "@kie-tools/root-env" [ style = "dashed", color = "black" ]; "@kie-tools/dev-deployment-kogito-quarkus-blank-app-image" -> "@kie-tools/dev-deployment-base-image" [ style = "solid", color = "black" ]; "@kie-tools/dev-deployment-kogito-quarkus-blank-app-image" -> "@kie-tools/dev-deployment-kogito-quarkus-blank-app" [ style = "solid", color = "black" ]; "@kie-tools/dev-deployment-upload-service" -> "@kie-tools/root-env" [ style = "dashed", color = "black" ]; diff --git a/repo/graph.json b/repo/graph.json index 044cc4be4a2..1d7d99b44f3 100644 --- a/repo/graph.json +++ b/repo/graph.json @@ -710,9 +710,10 @@ }, { "source": "@kie-tools/dev-deployment-kogito-quarkus-blank-app", - "target": "@kie-tools/jbpm-quarkus-devui", + "target": "@kie-tools/maven-config-setup-helper", "weight": 1 }, + { "source": "@kie-tools/dev-deployment-kogito-quarkus-blank-app", "target": "@kie-tools/root-env", "weight": 1 }, { "source": "@kie-tools/dev-deployment-kogito-quarkus-blank-app-image", "target": "@kie-tools/dev-deployment-base-image", From 5ab9e674ba0693a26f709da664711bbe447c1952 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pere=20Fern=C3=A1ndez?= Date: Tue, 28 May 2024 16:00:13 +0200 Subject: [PATCH 58/90] incubator-kie-issues#1274: `Management Console`: Blank page displayed when trying to open the Process Instance details of an unexisting instance (#2378) --- .../ProcessDetailsContainer.tsx | 2 +- .../ProcessListContainer.tsx | 2 +- .../ProcessDetailsPage/ProcessDetailsPage.tsx | 119 +++++++++--------- 3 files changed, 62 insertions(+), 61 deletions(-) diff --git a/packages/runtime-tools-management-console-webapp/src/components/containers/ProcessDetailsContainer/ProcessDetailsContainer.tsx b/packages/runtime-tools-management-console-webapp/src/components/containers/ProcessDetailsContainer/ProcessDetailsContainer.tsx index 20313ed8095..0701ee94bf3 100644 --- a/packages/runtime-tools-management-console-webapp/src/components/containers/ProcessDetailsContainer/ProcessDetailsContainer.tsx +++ b/packages/runtime-tools-management-console-webapp/src/components/containers/ProcessDetailsContainer/ProcessDetailsContainer.tsx @@ -49,7 +49,7 @@ const ProcessDetailsContainer: React.FC { unSubscribeHandler.unSubscribe(); }; - }, [processInstance]); + }, [gatewayApi, history, processInstance]); return ( = ({ return () => { unsubscriber.unSubscribe(); }; - }, []); + }, [gatewayApi, history]); return ( ({} as ProcessInstance); - const [isLoading, setIsLoading] = useState(false); - const [error, setError] = useState(""); - let currentPage = JSON.parse(window.localStorage.getItem("state")); + const [processInstance, setProcessInstance] = useState(); + const [isLoading, setIsLoading] = useState(true); + const [error, setError] = useState(); useEffect(() => { window.onpopstate = () => { @@ -62,86 +61,88 @@ const ProcessDetailsPage: React.FC { try { setIsLoading(true); - response = await gatewayApi.processDetailsQuery(processId); + const response = await gatewayApi.processDetailsQuery(processId); setProcessInstance(response); } catch (error) { setError(error); } finally { setIsLoading(false); - /* istanbul ignore else */ - if (error.length === 0 && Object.keys(response).length === 0) { - let prevPath; - /* istanbul ignore else */ - if (currentPage) { - currentPage = Object.assign({}, currentPage, props.location.state); - const tempPath = currentPage.prev.split("/"); - prevPath = tempPath.filter((item) => item); - } - history.push({ - pathname: "/NoData", - state: { - prev: currentPage ? currentPage.prev : "/ProcessInstances", - title: "Process not found", - description: `Process instance with the id ${processId} not found`, - buttonText: currentPage - ? `Go to ${prevPath[0] - .replace(/([A-Z])/g, " $1") - .trim() - .toLowerCase()}` - : "Go to process instances", - rememberedData: Object.assign({}, props.location.state), - }, - }); - } } - } + }, [gatewayApi, processId]); useEffect(() => { /* istanbul ignore else */ if (processId) { fetchDetails(); } - }, [processId]); + }, [processId, fetchDetails]); - const processName = processInstance ? processInstance.processName : ""; + useEffect(() => { + // Redirecting to NoData page if the ProcessInstance cannot be found. + if (!isLoading && !error && !processInstance) { + let currentPage = JSON.parse(window.localStorage.getItem("state")); + let prevPath; + /* istanbul ignore else */ + if (currentPage) { + currentPage = Object.assign({}, currentPage, props.location.state); + const tempPath = currentPage.prev.split("/"); + prevPath = tempPath.filter((item) => item); + } + history.push({ + pathname: "/NoData", + state: { + prev: currentPage ? currentPage.prev : "/ProcessInstances", + title: "Process not found", + description: `Process instance with the id ${processId} not found`, + buttonText: currentPage + ? `Go to ${prevPath[0] + .replace(/([A-Z])/g, " $1") + .trim() + .toLowerCase()}` + : "Go to process instances", + rememberedData: Object.assign({}, props.location.state), + }, + }); + } + }, [error, history, isLoading, processId, processInstance, props.location.state]); - const renderItems = () => { - if (!isLoading) { - return ( - <> - {processInstance && Object.keys(processInstance).length > 0 && !error ? ( - - ) : ( - <> - {error.length > 0 && ( - - - - - - )} - - )} - - ); - } else { + const body = useMemo(() => { + // Loading State + if (isLoading) { return ( ); } - }; + + // Error State + if (error) { + return ( + <> + + + + + + + ); + } + + // Process Instance Details + if (processInstance) { + return ; + } + }, [error, isLoading, processInstance]); return ( - {renderItems()} + {body} ); }; From 9c1f321ecdd6fd562e190cf8e870728a62420a9b Mon Sep 17 00:00:00 2001 From: Paulo Martins Date: Tue, 28 May 2024 12:24:09 -0300 Subject: [PATCH 59/90] kie-issues#1173: Retrieve workflow definitions from data index instead of openapi.json (#2302) Co-authored-by: Guilherme Caponetto <638737+caponetto@users.noreply.github.com> --- .../validateCloudEventRequest.test.ts | 4 + .../api/CloudEventFormEnvelopeApi.ts | 1 + .../embedded/EmbeddedCloudEventForm.tsx | 3 + .../envelope/CloudEventFormEnvelopeView.tsx | 9 ++- .../CloudEventForm/CloudEventForm.tsx | 3 + .../api/WorkflowDefinitionListChannelApi.ts | 2 +- .../api/WorkflowDefinitionListDriver.ts | 2 +- .../WorkflowDefinitionListChannelApiImpl.ts | 4 +- ...orkflowDefinitionListEnvelopeViewDriver.ts | 4 +- .../WorkflowDefinitionList.tsx | 15 ++-- .../utils/WorkflowDefinitionListUtils.tsx | 24 ++++-- .../src/__tests__/apis/apis.test.tsx | 26 +++--- .../src/gatewayApi/apis.tsx | 79 +++++++++---------- .../src/graphql/types.tsx | 10 +++ .../src/types.ts | 2 + .../src/CloudEventForm/CloudEventForm.tsx | 3 + .../CloudEventFormContextProvider.tsx | 11 +-- .../CloudEventFormGatewayApi.ts | 6 +- .../CloudEventFormContainer.tsx | 11 ++- .../WorkflowDefinitionListContextProvider.tsx | 50 ++++++++++-- .../WorkflowDefinitionListGatewayApi.ts | 22 +++--- .../WorkflowDefinitionListQueries.ts | 38 +++++++++ .../src/WorkflowDefinitionList/index.ts | 2 +- .../WorkflowDefinitionListContainer.tsx | 12 ++- .../WorkflowFormContextProvider.tsx | 10 +-- .../WorkflowForm/WorkflowFormGatewayApi.ts | 10 +-- .../WorkflowFormContainer.tsx | 5 +- .../WorkflowListContainer.tsx | 7 +- .../src/homepage/routes/HomePageRoutes.tsx | 11 ++- .../src/homepage/uiNav/HomePageNav.tsx | 10 +-- .../src/navigation/Routes.ts | 11 ++- .../WebToolsCloudEventFormContextProvider.tsx | 7 +- ...sWorkflowDefinitionListContextProvider.tsx | 7 +- .../WebToolsWorkflowFormContextProvider.tsx | 5 +- .../pages/RuntimeToolsTriggerCloudEvent.tsx | 6 ++ .../pages/RuntimeToolsWorkflowDefinitions.tsx | 26 +++++- .../pages/RuntimeToolsWorkflowInstances.tsx | 12 +-- .../runtimeTools/RuntimeToolsConfig.tsx | 15 +--- .../runtimeTools/RuntimeToolsSettings.tsx | 61 ++------------ .../DevUI/DevUILayout/DevUILayout.tsx | 10 +-- .../CloudEventFormPage/CloudEventFormPage.tsx | 11 ++- .../WorkflowFormPage/WorkflowFormPage.tsx | 2 +- .../pages/WorkflowsPage/WorkflowsPage.tsx | 18 +++++ .../pages/Workflows/CloudEventFormPage.tsx | 6 +- .../src/pages/Workflows/WorkflowFormPage.tsx | 1 + 45 files changed, 349 insertions(+), 245 deletions(-) create mode 100644 packages/runtime-tools-swf-webapp-components/src/WorkflowDefinitionList/WorkflowDefinitionListQueries.ts diff --git a/packages/runtime-tools-swf-enveloped-components/src/__tests__/components/validateCloudEventRequest.test.ts b/packages/runtime-tools-swf-enveloped-components/src/__tests__/components/validateCloudEventRequest.test.ts index 6b49ec3e662..a7e46d3ddad 100644 --- a/packages/runtime-tools-swf-enveloped-components/src/__tests__/components/validateCloudEventRequest.test.ts +++ b/packages/runtime-tools-swf-enveloped-components/src/__tests__/components/validateCloudEventRequest.test.ts @@ -31,6 +31,7 @@ describe("validateCloudEventRequest tests", () => { source: "any", extensions: {}, }, + serviceUrl: "http://localhost:8090/", }); expect(validation.isValid()).toBeTruthy(); @@ -46,6 +47,7 @@ describe("validateCloudEventRequest tests", () => { source: "any", extensions: {}, }, + serviceUrl: "http://localhost:8090/", }); expect(validation.isValid()).toBeFalsy(); @@ -64,6 +66,7 @@ describe("validateCloudEventRequest tests", () => { source: "any", extensions: {}, }, + serviceUrl: "http://localhost:8090/", }); expect(validation.isValid()).toBeFalsy(); @@ -82,6 +85,7 @@ describe("validateCloudEventRequest tests", () => { source: "any", extensions: {}, }, + serviceUrl: "http://localhost:8090/", }; let validation = validateCloudEventRequest(eventRequest); diff --git a/packages/runtime-tools-swf-enveloped-components/src/cloudEventForm/api/CloudEventFormEnvelopeApi.ts b/packages/runtime-tools-swf-enveloped-components/src/cloudEventForm/api/CloudEventFormEnvelopeApi.ts index 58bfc4decff..0bedb872dc3 100644 --- a/packages/runtime-tools-swf-enveloped-components/src/cloudEventForm/api/CloudEventFormEnvelopeApi.ts +++ b/packages/runtime-tools-swf-enveloped-components/src/cloudEventForm/api/CloudEventFormEnvelopeApi.ts @@ -34,4 +34,5 @@ export type CloudEventFormDefaultValues = { export type CloudEventFormInitArgs = { isNewInstanceEvent: boolean; defaultValues?: CloudEventFormDefaultValues; + serviceUrl: string; }; diff --git a/packages/runtime-tools-swf-enveloped-components/src/cloudEventForm/embedded/EmbeddedCloudEventForm.tsx b/packages/runtime-tools-swf-enveloped-components/src/cloudEventForm/embedded/EmbeddedCloudEventForm.tsx index 984baae166e..48d2d35aaff 100644 --- a/packages/runtime-tools-swf-enveloped-components/src/cloudEventForm/embedded/EmbeddedCloudEventForm.tsx +++ b/packages/runtime-tools-swf-enveloped-components/src/cloudEventForm/embedded/EmbeddedCloudEventForm.tsx @@ -32,7 +32,9 @@ export interface EmbeddedCloudEventFormProps { defaultValues?: { cloudEventSource?: string; instanceId?: string; + definitionName?: string; }; + serviceUrl: string; } export const EmbeddedCloudEventForm = React.forwardRef( @@ -66,6 +68,7 @@ export const EmbeddedCloudEventForm = React.forwardRef( { isNewInstanceEvent: props.isNewInstanceEvent ?? true, defaultValues: props.defaultValues, + serviceUrl: props.serviceUrl, } ); }, diff --git a/packages/runtime-tools-swf-enveloped-components/src/cloudEventForm/envelope/CloudEventFormEnvelopeView.tsx b/packages/runtime-tools-swf-enveloped-components/src/cloudEventForm/envelope/CloudEventFormEnvelopeView.tsx index 60d00780e27..67e9fb9f9fe 100644 --- a/packages/runtime-tools-swf-enveloped-components/src/cloudEventForm/envelope/CloudEventFormEnvelopeView.tsx +++ b/packages/runtime-tools-swf-enveloped-components/src/cloudEventForm/envelope/CloudEventFormEnvelopeView.tsx @@ -41,6 +41,7 @@ export const CloudEventFormEnvelopeView = React.forwardRef(false); const [isNewInstanceEvent, setIsNewInstanceEvent] = useState(false); const [defaultValues, setDefaultValues] = useState(); + const [serviceUrl, setServiceUrl] = useState(""); useImperativeHandle( forwardedRef, @@ -49,6 +50,7 @@ export const CloudEventFormEnvelopeView = React.forwardRef - + ); diff --git a/packages/runtime-tools-swf-enveloped-components/src/cloudEventForm/envelope/components/CloudEventForm/CloudEventForm.tsx b/packages/runtime-tools-swf-enveloped-components/src/cloudEventForm/envelope/components/CloudEventForm/CloudEventForm.tsx index c9605d23651..51cd7ef41bf 100644 --- a/packages/runtime-tools-swf-enveloped-components/src/cloudEventForm/envelope/components/CloudEventForm/CloudEventForm.tsx +++ b/packages/runtime-tools-swf-enveloped-components/src/cloudEventForm/envelope/components/CloudEventForm/CloudEventForm.tsx @@ -47,12 +47,14 @@ import { export interface CloudEventFormProps { driver: CloudEventFormDriver; + serviceUrl: string; isNewInstanceEvent?: boolean; defaultValues?: CloudEventFormDefaultValues; } export const CloudEventForm: React.FC = ({ driver, + serviceUrl, isNewInstanceEvent, defaultValues, ouiaId, @@ -124,6 +126,7 @@ export const CloudEventForm: React.FC = ({ source: eventSource, extensions, }, + serviceUrl: serviceUrl, }; const validations = validateCloudEventRequest(eventRequest); diff --git a/packages/runtime-tools-swf-enveloped-components/src/workflowDefinitions/api/WorkflowDefinitionListChannelApi.ts b/packages/runtime-tools-swf-enveloped-components/src/workflowDefinitions/api/WorkflowDefinitionListChannelApi.ts index d81dbc3052f..9369b45af55 100644 --- a/packages/runtime-tools-swf-enveloped-components/src/workflowDefinitions/api/WorkflowDefinitionListChannelApi.ts +++ b/packages/runtime-tools-swf-enveloped-components/src/workflowDefinitions/api/WorkflowDefinitionListChannelApi.ts @@ -27,5 +27,5 @@ export interface WorkflowDefinitionListChannelApi { workflowDefinitionList__setWorkflowDefinitionFilter(filter: string[]): Promise; workflowDefinitionList__getWorkflowDefinitionFilter(): Promise; workflowDefinitionList__openWorkflowForm(workflowDefinition: WorkflowDefinition): Promise; - workflowDefinitionsList__openTriggerCloudEvent(): void; + workflowDefinitionsList__openTriggerCloudEvent(workflowDefinition: WorkflowDefinition): Promise; } diff --git a/packages/runtime-tools-swf-enveloped-components/src/workflowDefinitions/api/WorkflowDefinitionListDriver.ts b/packages/runtime-tools-swf-enveloped-components/src/workflowDefinitions/api/WorkflowDefinitionListDriver.ts index 4d2867a7a00..85ca1992e9e 100644 --- a/packages/runtime-tools-swf-enveloped-components/src/workflowDefinitions/api/WorkflowDefinitionListDriver.ts +++ b/packages/runtime-tools-swf-enveloped-components/src/workflowDefinitions/api/WorkflowDefinitionListDriver.ts @@ -27,5 +27,5 @@ export interface WorkflowDefinitionListDriver { setWorkflowDefinitionFilter(filter: string[]): Promise; getWorkflowDefinitionFilter(): Promise; openWorkflowForm(workflowDefinition: WorkflowDefinition): Promise; - openTriggerCloudEvent(): void; + openTriggerCloudEvent(workflowDefinition: WorkflowDefinition): Promise; } diff --git a/packages/runtime-tools-swf-enveloped-components/src/workflowDefinitions/embedded/WorkflowDefinitionListChannelApiImpl.ts b/packages/runtime-tools-swf-enveloped-components/src/workflowDefinitions/embedded/WorkflowDefinitionListChannelApiImpl.ts index 8b8f3e29c24..9dac2cda48b 100644 --- a/packages/runtime-tools-swf-enveloped-components/src/workflowDefinitions/embedded/WorkflowDefinitionListChannelApiImpl.ts +++ b/packages/runtime-tools-swf-enveloped-components/src/workflowDefinitions/embedded/WorkflowDefinitionListChannelApiImpl.ts @@ -40,7 +40,7 @@ export class WorkflowDefinitionListChannelApiImpl implements WorkflowDefinitionL return this.driver.getWorkflowDefinitionsQuery(); } - workflowDefinitionsList__openTriggerCloudEvent(): void { - this.driver.openTriggerCloudEvent(); + workflowDefinitionsList__openTriggerCloudEvent(workflowDefinition: WorkflowDefinition): Promise { + return this.driver.openTriggerCloudEvent(workflowDefinition); } } diff --git a/packages/runtime-tools-swf-enveloped-components/src/workflowDefinitions/envelope/WorkflowDefinitionListEnvelopeViewDriver.ts b/packages/runtime-tools-swf-enveloped-components/src/workflowDefinitions/envelope/WorkflowDefinitionListEnvelopeViewDriver.ts index ce65b709271..24de942e16b 100644 --- a/packages/runtime-tools-swf-enveloped-components/src/workflowDefinitions/envelope/WorkflowDefinitionListEnvelopeViewDriver.ts +++ b/packages/runtime-tools-swf-enveloped-components/src/workflowDefinitions/envelope/WorkflowDefinitionListEnvelopeViewDriver.ts @@ -40,7 +40,7 @@ export default class WorkflowDefinitionListEnvelopeViewDriver implements Workflo return this.channelApi.requests.workflowDefinitionList__getWorkflowDefinitionsQuery(); } - openTriggerCloudEvent(): void { - this.channelApi.notifications.workflowDefinitionsList__openTriggerCloudEvent.send(); + openTriggerCloudEvent(workflowDefinition: WorkflowDefinition): Promise { + return this.channelApi.requests.workflowDefinitionsList__openTriggerCloudEvent(workflowDefinition); } } diff --git a/packages/runtime-tools-swf-enveloped-components/src/workflowDefinitions/envelope/components/WorkflowDefinitionList/WorkflowDefinitionList.tsx b/packages/runtime-tools-swf-enveloped-components/src/workflowDefinitions/envelope/components/WorkflowDefinitionList/WorkflowDefinitionList.tsx index 20f1abb27ac..3daf331a1bd 100644 --- a/packages/runtime-tools-swf-enveloped-components/src/workflowDefinitions/envelope/components/WorkflowDefinitionList/WorkflowDefinitionList.tsx +++ b/packages/runtime-tools-swf-enveloped-components/src/workflowDefinitions/envelope/components/WorkflowDefinitionList/WorkflowDefinitionList.tsx @@ -70,19 +70,20 @@ const WorkflowDefinitionList: React.FC const columns: DataTableColumn[] = [ getColumn("workflowName", `Workflow Name`), getColumn("endpoint", "Endpoint"), - getActionColumn((workflowDefinition) => { - driver.openWorkflowForm(workflowDefinition); - }), + getActionColumn( + (workflowDefinition) => { + driver.openWorkflowForm(workflowDefinition); + }, + (workflowDefinition) => { + driver.openTriggerCloudEvent(workflowDefinition); + } + ), ]; const applyFilter = async (): Promise => { await driver.setWorkflowDefinitionFilter(filterWorkflowNames); }; - const onOpenTriggerCloudEvent = useCallback(() => { - driver.openTriggerCloudEvent(); - }, []); - const filterWorkflowDefinition = (): WorkflowDefinition[] => { if (filterWorkflowNames.length === 0) { return workflowDefinitionList; diff --git a/packages/runtime-tools-swf-enveloped-components/src/workflowDefinitions/envelope/components/utils/WorkflowDefinitionListUtils.tsx b/packages/runtime-tools-swf-enveloped-components/src/workflowDefinitions/envelope/components/utils/WorkflowDefinitionListUtils.tsx index 6aa34adddb8..f1c6716f9fb 100644 --- a/packages/runtime-tools-swf-enveloped-components/src/workflowDefinitions/envelope/components/utils/WorkflowDefinitionListUtils.tsx +++ b/packages/runtime-tools-swf-enveloped-components/src/workflowDefinitions/envelope/components/utils/WorkflowDefinitionListUtils.tsx @@ -20,9 +20,11 @@ import React from "react"; import { DataTableColumn } from "@kie-tools/runtime-tools-components/dist/components/DataTable"; import { PlayIcon } from "@patternfly/react-icons/dist/js/icons/play-icon"; +import { SitemapIcon } from "@patternfly/react-icons/dist/js/icons/sitemap-icon"; import { Tooltip } from "@patternfly/react-core/dist/js/components/Tooltip"; import { Button } from "@patternfly/react-core/dist/js/components/Button"; import { WorkflowDefinition } from "@kie-tools/runtime-tools-swf-gateway-api/dist/types"; + export const getColumn = (columnPath: string, columnLabel: string): DataTableColumn => { return { label: columnLabel, @@ -31,16 +33,26 @@ export const getColumn = (columnPath: string, columnLabel: string): DataTableCol }; }; -export const getActionColumn = (startWorkflow: (workflowDefinition: WorkflowDefinition) => void): DataTableColumn => { +export const getActionColumn = ( + startWorkflow: (workflowDefinition: WorkflowDefinition) => void, + triggerCloudEvent: (workflowDefinition: WorkflowDefinition) => void +): DataTableColumn => { return { label: "Actions", path: "actions", bodyCellTransformer: (value: any, rowData: WorkflowDefinition) => ( - - - + <> + + + + + + + ), }; }; diff --git a/packages/runtime-tools-swf-gateway-api/src/__tests__/apis/apis.test.tsx b/packages/runtime-tools-swf-gateway-api/src/__tests__/apis/apis.test.tsx index 52ee282488d..112ae1a9216 100644 --- a/packages/runtime-tools-swf-gateway-api/src/__tests__/apis/apis.test.tsx +++ b/packages/runtime-tools-swf-gateway-api/src/__tests__/apis/apis.test.tsx @@ -140,11 +140,11 @@ describe("swf custom form tests", () => { }); }); -describe("triiger cloud events serction", () => { +describe("trigger cloud events section", () => { beforeEach(() => { jest.clearAllMocks(); }); - it("trigger cloud event start - with businesskey", async () => { + it("trigger cloud event start - with business key", async () => { mockedAxios.request.mockResolvedValue("success"); const event = { method: CloudEventMethod.POST, @@ -157,6 +157,7 @@ describe("triiger cloud events serction", () => { kogitobusinesskey: "1234", }, }, + serviceUrl: "http://localhost:8090/", }; const response = await triggerStartCloudEvent(event, "http://localhost:8080/"); @@ -167,14 +168,10 @@ describe("triiger cloud events serction", () => { expect(request.url).toBe("http://localhost:8080/endpoint"); expect(request.method).toBe("POST"); - expect(request.data).toHaveProperty("specversion", "1.0"); - expect(request.data).toHaveProperty("type", "eventType"); - expect(request.data).toHaveProperty("source", "eventSource"); - expect(request.data).toHaveProperty(KOGITO_BUSINESS_KEY, "1234"); - expect(request.data).toHaveProperty("data", JSON.parse(event.data)); + expect(request).toHaveProperty("data", JSON.parse(event.data)); }); - it("trigger cloud event start - without businesskey", async () => { + it("trigger cloud event start - without business key", async () => { mockedAxios.request.mockResolvedValue("success"); const event = { method: CloudEventMethod.POST, @@ -185,6 +182,7 @@ describe("triiger cloud events serction", () => { source: "eventSource", extensions: {}, }, + serviceUrl: "http://localhost:8090/", }; const response = await triggerStartCloudEvent(event, "http://localhost:8080/"); @@ -195,7 +193,7 @@ describe("triiger cloud events serction", () => { expect(request.url).toBe("http://localhost:8080/endpoint"); expect(request.method).toBe("POST"); - expect(request.data).toHaveProperty(KOGITO_BUSINESS_KEY, response); + expect(request).toHaveProperty("data", JSON.parse(event.data)); }); it("trigger cloud event - with instanceId", async () => { @@ -211,6 +209,7 @@ describe("triiger cloud events serction", () => { kogitoprocrefid: "1234", }, }, + serviceUrl: "http://localhost:8090/", }; const response = await triggerCloudEvent(event, "http://localhost:8080/"); @@ -221,8 +220,7 @@ describe("triiger cloud events serction", () => { expect(request.url).toBe("http://localhost:8080/endpoint"); expect(request.method).toBe("POST"); - expect(request.data).toHaveProperty(KOGITO_PROCESS_REFERENCE_ID, "1234"); - expect(request.data).not.toHaveProperty(KOGITO_BUSINESS_KEY); + expect(request).toHaveProperty("data", JSON.parse(event.data)); }); it("trigger cloud event - without instanceId", async () => { @@ -236,6 +234,7 @@ describe("triiger cloud events serction", () => { source: "eventSource", extensions: {}, }, + serviceUrl: "http://localhost:8090/", }; const response = await triggerCloudEvent(event, "http://localhost:8080/"); @@ -246,8 +245,7 @@ describe("triiger cloud events serction", () => { expect(request.url).toBe("http://localhost:8080/endpoint"); expect(request.method).toBe("POST"); - expect(request.data).not.toHaveProperty(KOGITO_PROCESS_REFERENCE_ID); - expect(request.data).not.toHaveProperty(KOGITO_BUSINESS_KEY); + expect(request).toHaveProperty("data", JSON.parse(event.data)); }); it("trigger cloud event - using PUT", async () => { @@ -263,6 +261,7 @@ describe("triiger cloud events serction", () => { kogitoprocrefid: "1234", }, }, + serviceUrl: "http://localhost:8090/", }; const response = await triggerCloudEvent(event, "http://localhost:8080/"); @@ -273,5 +272,6 @@ describe("triiger cloud events serction", () => { expect(request.url).toBe("http://localhost:8080/endpoint"); expect(request.method).toBe("PUT"); + expect(request).toHaveProperty("data", JSON.parse(event.data)); }); }); diff --git a/packages/runtime-tools-swf-gateway-api/src/gatewayApi/apis.tsx b/packages/runtime-tools-swf-gateway-api/src/gatewayApi/apis.tsx index 5dfe38b51f3..619ebe387c0 100644 --- a/packages/runtime-tools-swf-gateway-api/src/gatewayApi/apis.tsx +++ b/packages/runtime-tools-swf-gateway-api/src/gatewayApi/apis.tsx @@ -46,7 +46,6 @@ import { ApolloClient } from "apollo-client"; import { buildWorkflowListWhereArgument } from "./QueryUtils"; import axios from "axios"; import { v4 as uuidv4 } from "uuid"; -import SwaggerParser from "@apidevtools/swagger-parser"; export const getWorkflowInstances = async ( offset: number, @@ -491,9 +490,14 @@ const doTriggerCloudEvent = (event: CloudEventRequest, baseUrl: string, proxyEnd return axios.request({ url: proxyEndpoint || url, method: event.method, - data: cloudEvent, + data: cloudEvent.data, headers: { ...(proxyEndpoint ? { "Target-Url": url } : {}), + "ce-type": cloudEvent.type, + "ce-source": cloudEvent.source, + "ce-id": cloudEvent.id, + "ce-specversion": cloudEvent.specversion, + ...event.headers.extensions, }, }); }; @@ -518,42 +522,29 @@ export const triggerCloudEvent = (event: CloudEventRequest, baseUrl: string, pro return doTriggerCloudEvent(event, baseUrl, proxyEndpoint); }; -export const createWorkflowDefinitionList = ( - workflowDefinitionObjs: WorkflowDefinition[], - url: string -): WorkflowDefinition[] => { - const workflowDefinitionList: WorkflowDefinition[] = []; - workflowDefinitionObjs.forEach((workflowDefObj) => { - const workflowName = Object.keys(workflowDefObj)[0].split("/")[1]; - const endpoint = `${url}/${workflowName}`; - workflowDefinitionList.push({ - workflowName, - endpoint, - }); - }); - return workflowDefinitionList; -}; - -export const getWorkflowDefinitionList = (baseUrl: string, openApiPath: string): Promise => { - return new Promise((resolve, reject) => { - SwaggerParser.parse(`${baseUrl}/${openApiPath}`) - .then((response) => { - const workflowDefinitionObjs: any[] = []; - const paths = response.paths; - const regexPattern = /^\/[^\n/]+\/schema/; - Object.getOwnPropertyNames(paths) - .filter((path) => regexPattern.test(path.toString())) - .forEach((url) => { - let workflowArray = url.split("/"); - workflowArray = workflowArray.filter((name) => name.length !== 0); - /* istanbul ignore else*/ - if (Object.prototype.hasOwnProperty.call(paths![`/${workflowArray[0]}`], "post")) { - workflowDefinitionObjs.push({ [url]: paths![url] }); - } - }); - resolve(createWorkflowDefinitionList(workflowDefinitionObjs, baseUrl)); +export const getWorkflowDefinitions = (client: ApolloClient): Promise => { + return new Promise((resolve, reject) => { + client + .query({ + query: GraphQL.GetProcessDefinitionsDocument, + fetchPolicy: "network-only", + errorPolicy: "all", }) - .catch((err: any) => reject(err)); + .then((value) => { + const workflowDefinitions = value.data.ProcessDefinitions; + resolve( + value.data.ProcessDefinitions.map((item: { id: string; endpoint: string; serviceUrl: string }) => { + return { + workflowName: item.id, + endpoint: item.endpoint, + serviceUrl: item.serviceUrl, + }; + }) + ); + }) + .catch((reason) => { + reject({ errorMessage: JSON.stringify(reason) }); + }); }); }; @@ -683,12 +674,20 @@ export const getCustomWorkflowSchemaFromApi = async ( export const getCustomWorkflowSchema = async ( baseUrl: string, openApiPath: string, - workflowName: string + workflowName: string, + proxyEndpoint?: string ): Promise> => { return new Promise((resolve, reject) => { - SwaggerParser.parse(`${baseUrl}/${openApiPath}`) + const url = `${baseUrl}/${openApiPath}`; + axios + .request({ + url: proxyEndpoint || url, + headers: { + ...(proxyEndpoint ? { "Target-Url": url } : {}), + }, + }) .then(async (response: any) => { - resolve(await getCustomWorkflowSchemaFromApi(response, workflowName)); + resolve(await getCustomWorkflowSchemaFromApi(response.data, workflowName)); }) .catch((err) => reject(err)); }); diff --git a/packages/runtime-tools-swf-gateway-api/src/graphql/types.tsx b/packages/runtime-tools-swf-gateway-api/src/graphql/types.tsx index 502ff4e5110..a3395882cbd 100644 --- a/packages/runtime-tools-swf-gateway-api/src/graphql/types.tsx +++ b/packages/runtime-tools-swf-gateway-api/src/graphql/types.tsx @@ -1425,6 +1425,16 @@ export namespace GraphQL { export type HandleJobRescheduleMutation = { __typename?: "Mutation"; JobReschedule?: string | null }; + export const GetProcessDefinitionsDocument = gql` + query getProcessDefinitions { + ProcessDefinitions { + id + endpoint + serviceUrl + } + } + `; + export const GetProcessInstancesDocument = gql` query getProcessInstances( $where: ProcessInstanceArgument diff --git a/packages/runtime-tools-swf-gateway-api/src/types.ts b/packages/runtime-tools-swf-gateway-api/src/types.ts index a8118dbc209..32fa6b87a69 100644 --- a/packages/runtime-tools-swf-gateway-api/src/types.ts +++ b/packages/runtime-tools-swf-gateway-api/src/types.ts @@ -140,6 +140,7 @@ export interface WorkflowListState { export interface WorkflowDefinition { workflowName: string; endpoint: string; + serviceUrl: string; } export interface WorkflowResponse { @@ -153,6 +154,7 @@ export enum CloudEventMethod { } export interface CloudEventRequest { + serviceUrl: string; endpoint: string; method: CloudEventMethod; diff --git a/packages/runtime-tools-swf-webapp-components/src/CloudEventForm/CloudEventForm.tsx b/packages/runtime-tools-swf-webapp-components/src/CloudEventForm/CloudEventForm.tsx index d4d2e2ddc6c..71395e3f57c 100644 --- a/packages/runtime-tools-swf-webapp-components/src/CloudEventForm/CloudEventForm.tsx +++ b/packages/runtime-tools-swf-webapp-components/src/CloudEventForm/CloudEventForm.tsx @@ -36,6 +36,7 @@ interface CloudEventFormProps { onStartWorkflowError: (error: any) => void; onTriggerCloudEventSuccess: () => void; onTriggerStartCloudEventSuccess: (businessKey: string) => void; + serviceUrl: string; } export enum CloudEventPageSource { @@ -50,6 +51,7 @@ export const CloudEventForm: React.FC = ({ onStartWorkflowError, onTriggerCloudEventSuccess, onTriggerStartCloudEventSuccess, + serviceUrl, ouiaId, ouiaSafe, }) => { @@ -86,6 +88,7 @@ export const CloudEventForm: React.FC = ({ onStartWorkflowError={onStartWorkflowError} onTriggerCloudEventSuccess={onTriggerCloudEventSuccess} onTriggerStartCloudEventSuccess={onTriggerStartCloudEventSuccess} + serviceUrl={serviceUrl} /> diff --git a/packages/runtime-tools-swf-webapp-components/src/CloudEventForm/CloudEventFormContextProvider.tsx b/packages/runtime-tools-swf-webapp-components/src/CloudEventForm/CloudEventFormContextProvider.tsx index 842e6a3bb2e..075d782eac0 100644 --- a/packages/runtime-tools-swf-webapp-components/src/CloudEventForm/CloudEventFormContextProvider.tsx +++ b/packages/runtime-tools-swf-webapp-components/src/CloudEventForm/CloudEventFormContextProvider.tsx @@ -21,15 +21,10 @@ import React, { useMemo } from "react"; import CloudEventFormContext from "./CloudEventFormContext"; import { CloudEventFormGatewayApiImpl } from "./CloudEventFormGatewayApi"; -export function CloudEventFormContextProvider( - props: React.PropsWithChildren<{ proxyEndpoint?: string; kogitoServiceUrl: string }> -) { - const { proxyEndpoint, kogitoServiceUrl } = props; +export function CloudEventFormContextProvider(props: React.PropsWithChildren<{ proxyEndpoint?: string }>) { + const { proxyEndpoint } = props; - const gatewayApi = useMemo( - () => new CloudEventFormGatewayApiImpl(kogitoServiceUrl, proxyEndpoint), - [proxyEndpoint, kogitoServiceUrl] - ); + const gatewayApi = useMemo(() => new CloudEventFormGatewayApiImpl(proxyEndpoint), [proxyEndpoint]); return {props.children}; } diff --git a/packages/runtime-tools-swf-webapp-components/src/CloudEventForm/CloudEventFormGatewayApi.ts b/packages/runtime-tools-swf-webapp-components/src/CloudEventForm/CloudEventFormGatewayApi.ts index 839ae00a2e2..1f85110b008 100644 --- a/packages/runtime-tools-swf-webapp-components/src/CloudEventForm/CloudEventFormGatewayApi.ts +++ b/packages/runtime-tools-swf-webapp-components/src/CloudEventForm/CloudEventFormGatewayApi.ts @@ -26,14 +26,14 @@ export interface CloudEventFormGatewayApi { } export class CloudEventFormGatewayApiImpl implements CloudEventFormGatewayApi { - constructor(private readonly baseUrl: string, private readonly proxyEndpoint?: string) {} + constructor(private readonly proxyEndpoint?: string) {} async triggerStartCloudEvent(event: CloudEventRequest): Promise { - const response = await triggerStartCloudEvent(event, this.baseUrl, this.proxyEndpoint); + const response = await triggerStartCloudEvent(event, event.serviceUrl, this.proxyEndpoint); return response; } triggerCloudEvent(event: CloudEventRequest): Promise { - return triggerCloudEvent(event, this.baseUrl, this.proxyEndpoint); + return triggerCloudEvent(event, event.serviceUrl, this.proxyEndpoint); } } diff --git a/packages/runtime-tools-swf-webapp-components/src/CloudEventFormContainer/CloudEventFormContainer.tsx b/packages/runtime-tools-swf-webapp-components/src/CloudEventFormContainer/CloudEventFormContainer.tsx index d8c15f34f34..80df5a6cec8 100644 --- a/packages/runtime-tools-swf-webapp-components/src/CloudEventFormContainer/CloudEventFormContainer.tsx +++ b/packages/runtime-tools-swf-webapp-components/src/CloudEventFormContainer/CloudEventFormContainer.tsx @@ -25,22 +25,28 @@ import { CloudEventRequest } from "@kie-tools/runtime-tools-swf-gateway-api/dist interface CloudEventFormContainerProps { instanceId?: string; + definitionName?: string; cloudEventSource: string; isTriggerNewInstance: boolean; onStartWorkflowError: (error: any) => void; onTriggerCloudEventSuccess: () => void; onTriggerStartCloudEventSuccess: (businessKey: string) => void; + serviceUrl: string; + targetOrigin?: string; } export const CloudEventFormContainer: React.FC = ({ instanceId, + definitionName, cloudEventSource, isTriggerNewInstance, onStartWorkflowError, onTriggerCloudEventSuccess, onTriggerStartCloudEventSuccess, + serviceUrl, ouiaId, ouiaSafe, + targetOrigin, }) => { const gatewayApi = useCloudEventFormGatewayApi(); @@ -71,15 +77,16 @@ export const CloudEventFormContainer: React.FC { const doTrigger = isTriggerNewInstance ? triggerStartCloudEvent : triggerCloudEvent; return doTrigger(event); }, }} + serviceUrl={serviceUrl} /> ); }; diff --git a/packages/runtime-tools-swf-webapp-components/src/WorkflowDefinitionList/WorkflowDefinitionListContextProvider.tsx b/packages/runtime-tools-swf-webapp-components/src/WorkflowDefinitionList/WorkflowDefinitionListContextProvider.tsx index 526004ed04c..6d324a7d658 100644 --- a/packages/runtime-tools-swf-webapp-components/src/WorkflowDefinitionList/WorkflowDefinitionListContextProvider.tsx +++ b/packages/runtime-tools-swf-webapp-components/src/WorkflowDefinitionList/WorkflowDefinitionListContextProvider.tsx @@ -20,13 +20,53 @@ import React, { useMemo } from "react"; import { WorkflowDefinitionListContext } from "./WorkflowDefinitionListContext"; import { WorkflowDefinitionListGatewayApiImpl } from "./WorkflowDefinitionListGatewayApi"; +import { HttpLink } from "apollo-link-http"; +import { InMemoryCache, NormalizedCacheObject } from "apollo-cache-inmemory"; +import { ApolloClient } from "apollo-client"; +import { GraphQLWorkflowDefinitionListQueries } from "./WorkflowDefinitionListQueries"; -export function WorkflowDefinitionListContextProvider(props: React.PropsWithChildren<{ kogitoServiceUrl: string }>) { - const { kogitoServiceUrl } = props; +export function WorkflowDefinitionListContextProvider( + props: React.PropsWithChildren<{ proxyEndpoint?: string; dataIndexUrl: string }> +) { + const { proxyEndpoint, dataIndexUrl } = props; + + const httpLink = useMemo( + () => + new HttpLink({ + uri: proxyEndpoint || dataIndexUrl, + headers: { + ...(proxyEndpoint ? { "Target-Url": dataIndexUrl } : {}), + }, + }), + [dataIndexUrl, proxyEndpoint] + ); + + const cache = useMemo(() => new InMemoryCache(), []); + + const apolloClient: ApolloClient = useMemo( + () => + new ApolloClient({ + cache, + link: httpLink, + }), + [cache, httpLink] + ); + + return ( + + {props.children} + + ); +} + +export function WorkflowDefinitionListContextProviderWithApolloClient( + props: React.PropsWithChildren<{ apolloClient: ApolloClient }> +) { + const { apolloClient } = props; const gatewayApiImpl = useMemo(() => { - return new WorkflowDefinitionListGatewayApiImpl(kogitoServiceUrl, "q/openapi.json"); - }, [kogitoServiceUrl]); + return new WorkflowDefinitionListGatewayApiImpl(new GraphQLWorkflowDefinitionListQueries(apolloClient)); + }, [apolloClient]); return ( @@ -34,5 +74,3 @@ export function WorkflowDefinitionListContextProvider(props: React.PropsWithChil ); } - -export default WorkflowDefinitionListContextProvider; diff --git a/packages/runtime-tools-swf-webapp-components/src/WorkflowDefinitionList/WorkflowDefinitionListGatewayApi.ts b/packages/runtime-tools-swf-webapp-components/src/WorkflowDefinitionList/WorkflowDefinitionListGatewayApi.ts index 3f2691343df..a2a6c6ffb7b 100644 --- a/packages/runtime-tools-swf-webapp-components/src/WorkflowDefinitionList/WorkflowDefinitionListGatewayApi.ts +++ b/packages/runtime-tools-swf-webapp-components/src/WorkflowDefinitionList/WorkflowDefinitionListGatewayApi.ts @@ -18,14 +18,15 @@ */ import { WorkflowDefinition } from "@kie-tools/runtime-tools-swf-gateway-api/dist/types"; -import { getWorkflowDefinitionList } from "@kie-tools/runtime-tools-swf-gateway-api/dist/gatewayApi"; +import { getWorkflowDefinitions } from "@kie-tools/runtime-tools-swf-gateway-api/dist/gatewayApi"; +import { WorkflowDefinitionListQueries } from "../WorkflowDefinitionList/WorkflowDefinitionListQueries"; export interface WorkflowDefinitionListGatewayApi { getWorkflowDefinitionFilter: () => Promise; setWorkflowDefinitionFilter: (filter: string[]) => Promise; getWorkflowDefinitionsQuery: () => Promise; openWorkflowForm: (workflowDefinition: WorkflowDefinition) => Promise; - openTriggerCloudEvent: () => void; + openTriggerCloudEvent: (workflowDefinition: WorkflowDefinition) => Promise; onOpenWorkflowFormListen: (listener: OnOpenWorkflowFormListener) => UnSubscribeHandler; onOpenTriggerCloudEventListen: (listener: OnOpenTriggerCloudEventListener) => UnSubscribeHandler; } @@ -35,7 +36,7 @@ export interface OnOpenWorkflowFormListener { } export interface OnOpenTriggerCloudEventListener { - onOpen: () => void; + onOpen: (workflowDefinition: WorkflowDefinition) => void; } export interface UnSubscribeHandler { @@ -46,13 +47,11 @@ export class WorkflowDefinitionListGatewayApiImpl implements WorkflowDefinitionL private readonly onOpenWorkflowListeners: OnOpenWorkflowFormListener[] = []; private readonly onOpenTriggerCloudEventListeners: OnOpenTriggerCloudEventListener[] = []; - private readonly baseUrl: string; - private readonly openApiPath: string; + private readonly queries: WorkflowDefinitionListQueries; private workflowDefinitionFilter: string[] = []; - constructor(url: string, path: string) { - this.baseUrl = url; - this.openApiPath = path; + constructor(queries: WorkflowDefinitionListQueries) { + this.queries = queries; } getWorkflowDefinitionFilter(): Promise { @@ -100,10 +99,11 @@ export class WorkflowDefinitionListGatewayApiImpl implements WorkflowDefinitionL } getWorkflowDefinitionsQuery(): Promise { - return getWorkflowDefinitionList(this.baseUrl, this.openApiPath); + return this.queries.getWorkflowDefinitions(); } - openTriggerCloudEvent(): void { - this.onOpenTriggerCloudEventListeners.forEach((listener) => listener.onOpen()); + openTriggerCloudEvent(workflowDefinition: WorkflowDefinition): Promise { + this.onOpenTriggerCloudEventListeners.forEach((listener) => listener.onOpen(workflowDefinition)); + return Promise.resolve(); } } diff --git a/packages/runtime-tools-swf-webapp-components/src/WorkflowDefinitionList/WorkflowDefinitionListQueries.ts b/packages/runtime-tools-swf-webapp-components/src/WorkflowDefinitionList/WorkflowDefinitionListQueries.ts new file mode 100644 index 00000000000..115f12cfc06 --- /dev/null +++ b/packages/runtime-tools-swf-webapp-components/src/WorkflowDefinitionList/WorkflowDefinitionListQueries.ts @@ -0,0 +1,38 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import { getWorkflowDefinitions } from "@kie-tools/runtime-tools-swf-gateway-api/dist/gatewayApi"; +import { WorkflowDefinition } from "@kie-tools/runtime-tools-swf-gateway-api/dist/types"; +import { ApolloClient } from "apollo-client"; + +export interface WorkflowDefinitionListQueries { + getWorkflowDefinitions(): Promise; +} + +export class GraphQLWorkflowDefinitionListQueries implements WorkflowDefinitionListQueries { + private readonly client: ApolloClient; + + constructor(client: ApolloClient) { + this.client = client; + } + + getWorkflowDefinitions(): Promise { + return getWorkflowDefinitions(this.client); + } +} diff --git a/packages/runtime-tools-swf-webapp-components/src/WorkflowDefinitionList/index.ts b/packages/runtime-tools-swf-webapp-components/src/WorkflowDefinitionList/index.ts index cdaba08f67b..c4a06a02226 100644 --- a/packages/runtime-tools-swf-webapp-components/src/WorkflowDefinitionList/index.ts +++ b/packages/runtime-tools-swf-webapp-components/src/WorkflowDefinitionList/index.ts @@ -18,5 +18,5 @@ */ export * from "./WorkflowDefinitionListContext"; -export { default as WorkflowDefinitionListContextProvider } from "./WorkflowDefinitionListContextProvider"; +export * from "./WorkflowDefinitionListContextProvider"; export { WorkflowDefinitionListGatewayApi } from "./WorkflowDefinitionListGatewayApi"; diff --git a/packages/runtime-tools-swf-webapp-components/src/WorkflowDefinitionListContainer/WorkflowDefinitionListContainer.tsx b/packages/runtime-tools-swf-webapp-components/src/WorkflowDefinitionListContainer/WorkflowDefinitionListContainer.tsx index a79dded3747..6191eccb0c3 100644 --- a/packages/runtime-tools-swf-webapp-components/src/WorkflowDefinitionListContainer/WorkflowDefinitionListContainer.tsx +++ b/packages/runtime-tools-swf-webapp-components/src/WorkflowDefinitionListContainer/WorkflowDefinitionListContainer.tsx @@ -20,16 +20,18 @@ import React, { useEffect } from "react"; import { componentOuiaProps, OUIAProps } from "@kie-tools/runtime-tools-components/dist/ouiaTools"; import { EmbeddedWorkflowDefinitionList } from "@kie-tools/runtime-tools-swf-enveloped-components/dist/workflowDefinitions"; -import { WorkflowDefinition } from "@kie-tools/runtime-tools-swf-gateway-api/dist/types"; +import { WorkflowDefinition, WorkflowInstance } from "@kie-tools/runtime-tools-swf-gateway-api/dist/types"; import { useWorkflowDefinitionListGatewayApi, WorkflowDefinitionListGatewayApi } from "../WorkflowDefinitionList"; interface WorkflowDefinitionListContainerProps { onOpenWorkflowForm: (workflowDefinition: WorkflowDefinition) => void; + onOpenTriggerCloudEventForWorkflow: (workflowDefinition: WorkflowDefinition) => void; targetOrigin?: string; } export const WorkflowDefinitionListContainer: React.FC = ({ onOpenWorkflowForm, + onOpenTriggerCloudEventForWorkflow, ouiaId, ouiaSafe, targetOrigin, @@ -42,11 +44,17 @@ export const WorkflowDefinitionListContainer: React.FC { onOpenDefinitionUnsubscriber.unSubscribe(); + onTriggerCloudEventUnsubscriber.unSubscribe(); }; - }, [gatewayApi, onOpenWorkflowForm]); + }, [gatewayApi, onOpenWorkflowForm, onOpenTriggerCloudEventForWorkflow]); return ( -) { - const { proxyEndpoint, kogitoServiceUrl } = props; +export function WorkflowFormContextProvider(props: React.PropsWithChildren<{ proxyEndpoint?: string }>) { + const { proxyEndpoint } = props; const gatewayApiImpl = useMemo(() => { - return new WorkflowFormGatewayApiImpl(kogitoServiceUrl, "q/openapi.json", proxyEndpoint); - }, [kogitoServiceUrl, proxyEndpoint]); + return new WorkflowFormGatewayApiImpl("q/openapi.json", proxyEndpoint); + }, [proxyEndpoint]); return {props.children}; } diff --git a/packages/runtime-tools-swf-webapp-components/src/WorkflowForm/WorkflowFormGatewayApi.ts b/packages/runtime-tools-swf-webapp-components/src/WorkflowForm/WorkflowFormGatewayApi.ts index d9a4040ffeb..3503d04ed06 100644 --- a/packages/runtime-tools-swf-webapp-components/src/WorkflowForm/WorkflowFormGatewayApi.ts +++ b/packages/runtime-tools-swf-webapp-components/src/WorkflowForm/WorkflowFormGatewayApi.ts @@ -22,19 +22,17 @@ import { getCustomWorkflowSchema, startWorkflowRest } from "@kie-tools/runtime-t export interface WorkflowFormGatewayApi { setBusinessKey(bk: string): void; getBusinessKey(): string; - getCustomWorkflowSchema(workflowName: string): Promise>; + getCustomWorkflowSchema(workflowName: string, serviceUrl: string): Promise>; startWorkflow(endpoint: string, data: Record): Promise; } export class WorkflowFormGatewayApiImpl implements WorkflowFormGatewayApi { private businessKey: string; - private readonly baseUrl: string; private readonly openApiPath: string; private readonly proxyEndpoint?: string; - constructor(baseUrl: string, openApiPath: string, proxyEndpoint?: string) { + constructor(openApiPath: string, proxyEndpoint?: string) { this.businessKey = ""; - this.baseUrl = baseUrl; this.openApiPath = openApiPath; this.proxyEndpoint = proxyEndpoint; } @@ -47,8 +45,8 @@ export class WorkflowFormGatewayApiImpl implements WorkflowFormGatewayApi { return this.businessKey; } - getCustomWorkflowSchema(workflowName: string): Promise> { - return getCustomWorkflowSchema(this.baseUrl, this.openApiPath, workflowName); + getCustomWorkflowSchema(workflowName: string, serviceUrl: string): Promise> { + return getCustomWorkflowSchema(serviceUrl, this.openApiPath, workflowName, this.proxyEndpoint); } async startWorkflow(endpoint: string, data: Record): Promise { diff --git a/packages/runtime-tools-swf-webapp-components/src/WorkflowFormContainer/WorkflowFormContainer.tsx b/packages/runtime-tools-swf-webapp-components/src/WorkflowFormContainer/WorkflowFormContainer.tsx index 890a0df839c..7367c88d456 100644 --- a/packages/runtime-tools-swf-webapp-components/src/WorkflowFormContainer/WorkflowFormContainer.tsx +++ b/packages/runtime-tools-swf-webapp-components/src/WorkflowFormContainer/WorkflowFormContainer.tsx @@ -46,7 +46,10 @@ export const WorkflowFormContainer: React.FC> { - return gatewayApi.getCustomWorkflowSchema(workflowDefinitionData.workflowName); + return gatewayApi.getCustomWorkflowSchema( + workflowDefinitionData.workflowName, + workflowDefinitionData.serviceUrl + ); }, async resetBusinessKey() { onResetForm(); diff --git a/packages/runtime-tools-swf-webapp-components/src/WorkflowListContainer/WorkflowListContainer.tsx b/packages/runtime-tools-swf-webapp-components/src/WorkflowListContainer/WorkflowListContainer.tsx index 741bd6f2104..a42899dd35e 100644 --- a/packages/runtime-tools-swf-webapp-components/src/WorkflowListContainer/WorkflowListContainer.tsx +++ b/packages/runtime-tools-swf-webapp-components/src/WorkflowListContainer/WorkflowListContainer.tsx @@ -27,7 +27,6 @@ import { WorkflowListGatewayApi } from "../WorkflowList/WorkflowListGatewayApi"; interface WorkflowListContainerProps { initialState: WorkflowListState; onOpenWorkflowDetails: (args: { workflowId: string; state: WorkflowListState }) => void; - onOpenTriggerCloudEvent?: () => void; onOpenTriggerCloudEventForWorkflow?: (workflowId: string) => void; targetOrigin?: string; } @@ -35,7 +34,6 @@ interface WorkflowListContainerProps { export const WorkflowListContainer: React.FC = ({ initialState, onOpenWorkflowDetails, - onOpenTriggerCloudEvent, onOpenTriggerCloudEventForWorkflow, ouiaId, ouiaSafe, @@ -53,17 +51,14 @@ export const WorkflowListContainer: React.FC { onOpenInstanceUnsubscriber.unSubscribe(); onTriggerCloudEventUnsubscriber?.unSubscribe(); }; - }, [gatewayApi, onOpenTriggerCloudEvent, onOpenTriggerCloudEventForWorkflow, onOpenWorkflowDetails]); + }, [gatewayApi, onOpenTriggerCloudEventForWorkflow, onOpenWorkflowDetails]); return ( - - + + {({ match }) => } + + + {({ match }) => } {({ match }) => } @@ -91,8 +94,8 @@ export function HomePageRoutes(props: { isNavOpen: boolean }) { - - + + diff --git a/packages/serverless-logic-web-tools/src/homepage/uiNav/HomePageNav.tsx b/packages/serverless-logic-web-tools/src/homepage/uiNav/HomePageNav.tsx index 70734cc19ce..6281889c667 100644 --- a/packages/serverless-logic-web-tools/src/homepage/uiNav/HomePageNav.tsx +++ b/packages/serverless-logic-web-tools/src/homepage/uiNav/HomePageNav.tsx @@ -30,7 +30,7 @@ export function HomePageNav(props: { pathname: string }) { const settings = useSettings(); const runtimeToolsNavItem = useMemo(() => { - if (settings.runtimeTools.config.kogitoServiceUrl && settings.runtimeTools.config.dataIndexUrl) { + if (settings.runtimeTools.config.dataIndexUrl) { return ( Workflow Instances - - Trigger Cloud Event - ); } diff --git a/packages/serverless-logic-web-tools/src/navigation/Routes.ts b/packages/serverless-logic-web-tools/src/navigation/Routes.ts index 34e9015f780..6458a061bf5 100644 --- a/packages/serverless-logic-web-tools/src/navigation/Routes.ts +++ b/packages/serverless-logic-web-tools/src/navigation/Routes.ts @@ -148,14 +148,17 @@ export const routes = { runtimeToolsWorkflowDetails: new Route<{ queryParams: QueryParams.FILTERS | QueryParams.SORT_BY; pathParams: PathParams.WORKFLOW_ID; - }>(({ workflowId }) => `/runtime-tools/workflow-details/${workflowId}`), + }>(({ workflowId }) => `/runtime-tools/workflow-instances/${workflowId}`), runtimeToolsWorkflowForm: new Route<{ pathParams: PathParams.WORKFLOW_NAME; }>(({ workflowName }) => `/runtime-tools/workflow-definition/${workflowName}`), - runtimeToolsTriggerCloudEvent: new Route<{}>(() => `/runtime-tools/trigger-cloud-event`), - runtimeToolsTriggerCloudEventForWorkflow: new Route<{ + runtimeToolsTriggerCloudEventForWorkflowInstance: new Route<{ + queryParams: QueryParams.URL; pathParams: PathParams.WORKFLOW_ID; - }>(({ workflowId }) => `/runtime-tools/trigger-cloud-event/${workflowId}`), + }>(({ workflowId }) => `/runtime-tools/workflow-instances/${workflowId}/trigger-cloud-event`), + runtimeToolsTriggerCloudEventForWorkflowDefinition: new Route<{ + pathParams: PathParams.WORKFLOW_NAME; + }>(({ workflowName }) => `/runtime-tools/workflow-definition/${workflowName}/trigger-cloud-event`), settings: { home: new Route<{}>(() => SETTINGS_ROUTE), diff --git a/packages/serverless-logic-web-tools/src/runtimeTools/contexts/WebToolsCloudEventFormContextProvider.tsx b/packages/serverless-logic-web-tools/src/runtimeTools/contexts/WebToolsCloudEventFormContextProvider.tsx index e5e85e9ab68..d93ab24f0f1 100644 --- a/packages/serverless-logic-web-tools/src/runtimeTools/contexts/WebToolsCloudEventFormContextProvider.tsx +++ b/packages/serverless-logic-web-tools/src/runtimeTools/contexts/WebToolsCloudEventFormContextProvider.tsx @@ -19,18 +19,13 @@ import * as React from "react"; import { WorkflowFormContextProvider } from "@kie-tools/runtime-tools-swf-webapp-components/dist/WorkflowForm"; -import { useSettings } from "../../settings/SettingsContext"; import { useEnv } from "../../env/EnvContext"; export function WebToolsCloudEventFormContextProvider(props: React.PropsWithChildren<{}>) { - const settings = useSettings(); const { env } = useEnv(); return ( - + {props.children} ); diff --git a/packages/serverless-logic-web-tools/src/runtimeTools/contexts/WebToolsWorkflowDefinitionListContextProvider.tsx b/packages/serverless-logic-web-tools/src/runtimeTools/contexts/WebToolsWorkflowDefinitionListContextProvider.tsx index 96d10cd01b8..593cc2b6d3d 100644 --- a/packages/serverless-logic-web-tools/src/runtimeTools/contexts/WebToolsWorkflowDefinitionListContextProvider.tsx +++ b/packages/serverless-logic-web-tools/src/runtimeTools/contexts/WebToolsWorkflowDefinitionListContextProvider.tsx @@ -20,12 +20,17 @@ import * as React from "react"; import { WorkflowDefinitionListContextProvider } from "@kie-tools/runtime-tools-swf-webapp-components/dist/WorkflowDefinitionList"; import { useSettings } from "../../settings/SettingsContext"; +import { useEnv } from "../../env/EnvContext"; export function WebToolsWorkflowDefinitionListContextProvider(props: React.PropsWithChildren<{}>) { const settings = useSettings(); + const { env } = useEnv(); return ( - + {props.children} ); diff --git a/packages/serverless-logic-web-tools/src/runtimeTools/contexts/WebToolsWorkflowFormContextProvider.tsx b/packages/serverless-logic-web-tools/src/runtimeTools/contexts/WebToolsWorkflowFormContextProvider.tsx index 72b9b2d2149..ae6c1bf7534 100644 --- a/packages/serverless-logic-web-tools/src/runtimeTools/contexts/WebToolsWorkflowFormContextProvider.tsx +++ b/packages/serverless-logic-web-tools/src/runtimeTools/contexts/WebToolsWorkflowFormContextProvider.tsx @@ -27,10 +27,7 @@ export function WebToolsWorkflowFormContextProvider(props: React.PropsWithChildr const { env } = useEnv(); return ( - + {props.children} ); diff --git a/packages/serverless-logic-web-tools/src/runtimeTools/pages/RuntimeToolsTriggerCloudEvent.tsx b/packages/serverless-logic-web-tools/src/runtimeTools/pages/RuntimeToolsTriggerCloudEvent.tsx index 6517964a81c..aaa705f84eb 100644 --- a/packages/serverless-logic-web-tools/src/runtimeTools/pages/RuntimeToolsTriggerCloudEvent.tsx +++ b/packages/serverless-logic-web-tools/src/runtimeTools/pages/RuntimeToolsTriggerCloudEvent.tsx @@ -23,11 +23,16 @@ import { Text, TextContent, TextVariants } from "@patternfly/react-core/dist/js/ import { CloudEventFormContainer } from "@kie-tools/runtime-tools-swf-webapp-components/dist/CloudEventFormContainer"; import { Alert, AlertActionCloseButton } from "@patternfly/react-core/dist/js/components/Alert"; import { useGlobalAlert } from "../../alerts/GlobalAlertsContext"; +import { WorkflowDefinition } from "@kie-tools/runtime-tools-swf-gateway-api/dist/types"; +import { useHistory } from "react-router"; const PAGE_TITLE = "Trigger Cloud Event"; const KUBESMARTS_CLOUD_SOURCE = "/local/kubesmarts"; export function RuntimeToolsTriggerCloudEvent() { + const history = useHistory(); + const workflowDefinition: WorkflowDefinition = (history.location.state as any)["workflowDefinition"]; + const triggerEventSuccessAlert = useGlobalAlert<{ message: string }>( useCallback(({ close }, { message }) => { return ( @@ -105,6 +110,7 @@ export function RuntimeToolsTriggerCloudEvent() { onStartWorkflowError={onStartWorkflowError} onTriggerCloudEventSuccess={onTriggerEventSuccessAlert} onTriggerStartCloudEventSuccess={onTriggerStartCloudEventSuccess} + serviceUrl={workflowDefinition.serviceUrl} /> diff --git a/packages/serverless-logic-web-tools/src/runtimeTools/pages/RuntimeToolsWorkflowDefinitions.tsx b/packages/serverless-logic-web-tools/src/runtimeTools/pages/RuntimeToolsWorkflowDefinitions.tsx index b2de63fa2f4..994d16cb2bf 100644 --- a/packages/serverless-logic-web-tools/src/runtimeTools/pages/RuntimeToolsWorkflowDefinitions.tsx +++ b/packages/serverless-logic-web-tools/src/runtimeTools/pages/RuntimeToolsWorkflowDefinitions.tsx @@ -25,6 +25,7 @@ import { Text, TextContent, TextVariants } from "@patternfly/react-core/dist/js/ import { useHistory } from "react-router"; import { routes } from "../../navigation/Routes"; import { WorkflowDefinition } from "@kie-tools/runtime-tools-swf-gateway-api/dist/types"; +import { CloudEventPageSource } from "@kie-tools/runtime-tools-swf-webapp-components/dist/CloudEventForm"; const PAGE_TITLE = "Workflow Definitions"; @@ -39,6 +40,7 @@ export function RuntimeToolsWorkflowDefinitions() { workflowDefinition: { workflowName: workflowDefinition.workflowName, endpoint: workflowDefinition.endpoint, + serviceUrl: workflowDefinition.serviceUrl, }, }, }); @@ -46,6 +48,25 @@ export function RuntimeToolsWorkflowDefinitions() { [history] ); + const onOpenTriggerCloudEventForWorkflow = useCallback( + (workflowDefinition: WorkflowDefinition) => { + history.push({ + pathname: routes.runtimeToolsTriggerCloudEventForWorkflowDefinition.path({ + workflowName: workflowDefinition.workflowName, + }), + state: { + workflowDefinition: { + workflowName: workflowDefinition.workflowName, + endpoint: workflowDefinition.endpoint, + serviceUrl: workflowDefinition.serviceUrl, + }, + source: CloudEventPageSource.DEFINITIONS, + }, + }); + }, + [history] + ); + return ( @@ -59,7 +80,10 @@ export function RuntimeToolsWorkflowDefinitions() { - + diff --git a/packages/serverless-logic-web-tools/src/runtimeTools/pages/RuntimeToolsWorkflowInstances.tsx b/packages/serverless-logic-web-tools/src/runtimeTools/pages/RuntimeToolsWorkflowInstances.tsx index b87254d4e6b..f281f88238f 100644 --- a/packages/serverless-logic-web-tools/src/runtimeTools/pages/RuntimeToolsWorkflowInstances.tsx +++ b/packages/serverless-logic-web-tools/src/runtimeTools/pages/RuntimeToolsWorkflowInstances.tsx @@ -43,19 +43,10 @@ export function RuntimeToolsWorkflowInstances() { [history] ); - const onOpenTriggerCloudEvent = useCallback(() => { - history.push({ - pathname: routes.runtimeToolsTriggerCloudEvent.path({}), - state: { - source: CloudEventPageSource.INSTANCES, - }, - }); - }, [history]); - const onOpenTriggerCloudEventForWorkflow = useCallback( (workflowId: string) => { history.push({ - pathname: routes.runtimeToolsTriggerCloudEventForWorkflow.path({ workflowId }), + pathname: routes.runtimeToolsTriggerCloudEventForWorkflowInstance.path({ workflowId }), state: { source: CloudEventPageSource.INSTANCES, }, @@ -79,7 +70,6 @@ export function RuntimeToolsWorkflowInstances() { diff --git a/packages/serverless-logic-web-tools/src/settings/runtimeTools/RuntimeToolsConfig.tsx b/packages/serverless-logic-web-tools/src/settings/runtimeTools/RuntimeToolsConfig.tsx index 7e30241396d..95c7dfad4ba 100644 --- a/packages/serverless-logic-web-tools/src/settings/runtimeTools/RuntimeToolsConfig.tsx +++ b/packages/serverless-logic-web-tools/src/settings/runtimeTools/RuntimeToolsConfig.tsx @@ -20,34 +20,26 @@ import { getCookie, makeCookieName, setCookie } from "../../cookies"; export const RUNTIME_TOOLS_DATA_INDEX_URL_COOKIE_NAME = makeCookieName("runtime-tools", "data-index-url"); -export const RUNTIME_TOOLS_KOGITO_SERVICE_URL_COOKIE_NAME = makeCookieName("runtime-tools", "kogito-service-url"); export interface RuntimeToolsSettingsConfig { dataIndexUrl: string; - kogitoServiceUrl: string; } export const EMPTY_CONFIG: RuntimeToolsSettingsConfig = { dataIndexUrl: "", - kogitoServiceUrl: "", }; export function isRuntimeToolsConfigValid(config: RuntimeToolsSettingsConfig): boolean { - return isDataIndexUrlValid(config.dataIndexUrl) && isKogitoServiceUrlValid(config.kogitoServiceUrl); + return isDataIndexUrlValid(config.dataIndexUrl); } export function isDataIndexUrlValid(dataIndexUrl: string): boolean { return dataIndexUrl !== undefined && dataIndexUrl.trim().length > 0; } -export function isKogitoServiceUrlValid(kogitoServiceUrl: string): boolean { - return kogitoServiceUrl !== undefined && kogitoServiceUrl.trim().length > 0; -} - export function readRuntimeToolsConfigCookie(): RuntimeToolsSettingsConfig { return { dataIndexUrl: getCookie(RUNTIME_TOOLS_DATA_INDEX_URL_COOKIE_NAME) ?? "", - kogitoServiceUrl: getCookie(RUNTIME_TOOLS_KOGITO_SERVICE_URL_COOKIE_NAME) ?? "", }; } @@ -59,11 +51,6 @@ export function saveDataIndexUrlCookie(dataIndexUrl: string): void { setCookie(RUNTIME_TOOLS_DATA_INDEX_URL_COOKIE_NAME, dataIndexUrl); } -export function saveKogitoServiceUrlCookie(kogitoServiceUrl: string): void { - setCookie(RUNTIME_TOOLS_KOGITO_SERVICE_URL_COOKIE_NAME, kogitoServiceUrl); -} - export function saveConfigCookie(config: RuntimeToolsSettingsConfig): void { saveDataIndexUrlCookie(config.dataIndexUrl); - saveKogitoServiceUrlCookie(config.kogitoServiceUrl); } diff --git a/packages/serverless-logic-web-tools/src/settings/runtimeTools/RuntimeToolsSettings.tsx b/packages/serverless-logic-web-tools/src/settings/runtimeTools/RuntimeToolsSettings.tsx index 111758b4b0c..ccbdd84723c 100644 --- a/packages/serverless-logic-web-tools/src/settings/runtimeTools/RuntimeToolsSettings.tsx +++ b/packages/serverless-logic-web-tools/src/settings/runtimeTools/RuntimeToolsSettings.tsx @@ -65,18 +65,11 @@ export function RuntimeToolsSettings(props: SettingsPageProps) { const onClearDataIndexUrl = useCallback(() => setConfig({ ...config, dataIndexUrl: "" }), [config]); - const onClearKogitoServiceUrl = useCallback(() => setConfig({ ...config, kogitoServiceUrl: "" }), [config]); - const onDataIndexURLChanged = useCallback( (newValue: string) => setConfig({ ...config, dataIndexUrl: newValue }), [config] ); - const onKogitoServiceUrlChanged = useCallback( - (newValue: string) => setConfig({ ...config, kogitoServiceUrl: newValue }), - [config] - ); - const onReset = useCallback(() => { setConfig(EMPTY_CONFIG); settingsDispatch.runtimeTools.setConfig(EMPTY_CONFIG); @@ -86,7 +79,6 @@ export function RuntimeToolsSettings(props: SettingsPageProps) { const onApply = useCallback(() => { const newConfig: RuntimeToolsSettingsConfig = { dataIndexUrl: removeTrailingSlashFromUrl(config.dataIndexUrl), - kogitoServiceUrl: removeTrailingSlashFromUrl(config.kogitoServiceUrl), }; setConfig(newConfig); settingsDispatch.runtimeTools.setConfig(newConfig); @@ -118,9 +110,6 @@ export function RuntimeToolsSettings(props: SettingsPageProps) { Data Index URL: {config.dataIndexUrl}
- SonataFlow Service URL: - {config.kogitoServiceUrl} -

- - } - isRequired - fieldId="kogito-service-url-field" - > - - - - - - -