From 33887a713309f162a9a9bb2988f9a42e9b8d2e47 Mon Sep 17 00:00:00 2001 From: Mark Domingo Date: Wed, 23 Apr 2025 14:58:18 +0800 Subject: [PATCH 01/57] Update DirectLinkingEObjectInputStream.java --- .../resource/persistence/DirectLinkingEObjectInputStream.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/resource/persistence/DirectLinkingEObjectInputStream.java b/com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/resource/persistence/DirectLinkingEObjectInputStream.java index 858257129..ed0483a42 100644 --- a/com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/resource/persistence/DirectLinkingEObjectInputStream.java +++ b/com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/resource/persistence/DirectLinkingEObjectInputStream.java @@ -68,7 +68,7 @@ public EObject readEObject(final Resource context) throws IOException { } } else { LOGGER.error(String.format("Failed to get EStructuralFeature for Eclass : %s, at readCompressedInt : %d", eObject.eClass(), next)); - + throw new IllegalStateException("feature is null"); //$NON-NLS-1$ } } return eObject; From 49853940e7799645fcc1d13a942cd6725e550bcb Mon Sep 17 00:00:00 2001 From: Mark Domingo Date: Wed, 23 Apr 2025 15:20:00 +0800 Subject: [PATCH 02/57] Update DirectLinkingEObjectInputStream.java --- .../resource/persistence/DirectLinkingEObjectInputStream.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/resource/persistence/DirectLinkingEObjectInputStream.java b/com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/resource/persistence/DirectLinkingEObjectInputStream.java index ed0483a42..2a13fbd8d 100644 --- a/com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/resource/persistence/DirectLinkingEObjectInputStream.java +++ b/com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/resource/persistence/DirectLinkingEObjectInputStream.java @@ -67,7 +67,7 @@ public EObject readEObject(final Resource context) throws IOException { eObject = (EObject) eObject.eGet(feature, false); } } else { - LOGGER.error(String.format("Failed to get EStructuralFeature for Eclass : %s, at readCompressedInt : %d", eObject.eClass(), next)); + LOGGER.warn(String.format("Failed to get EStructuralFeature for Eclass : %s, at readCompressedInt : %d", eObject.eClass(), next)); throw new IllegalStateException("feature is null"); //$NON-NLS-1$ } } From 22c3faa86f25c69fe8a05d1dc7aec560c9b4fe86 Mon Sep 17 00:00:00 2001 From: Mark Domingo Date: Wed, 23 Apr 2025 15:22:30 +0800 Subject: [PATCH 03/57] Update DirectLinkingEObjectInputStream.java --- .../resource/persistence/DirectLinkingEObjectInputStream.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/resource/persistence/DirectLinkingEObjectInputStream.java b/com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/resource/persistence/DirectLinkingEObjectInputStream.java index 2a13fbd8d..4493700a7 100644 --- a/com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/resource/persistence/DirectLinkingEObjectInputStream.java +++ b/com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/resource/persistence/DirectLinkingEObjectInputStream.java @@ -67,7 +67,7 @@ public EObject readEObject(final Resource context) throws IOException { eObject = (EObject) eObject.eGet(feature, false); } } else { - LOGGER.warn(String.format("Failed to get EStructuralFeature for Eclass : %s, at readCompressedInt : %d", eObject.eClass(), next)); + LOGGER.info(String.format("Failed to get EStructuralFeature for Eclass : %s, at readCompressedInt : %d", eObject.eClass(), next)); throw new IllegalStateException("feature is null"); //$NON-NLS-1$ } } From 0596c4900eaaedce8005b9c63c98d189040601f8 Mon Sep 17 00:00:00 2001 From: Mark Domingo Date: Wed, 23 Apr 2025 15:48:59 +0800 Subject: [PATCH 04/57] Update DirectLinkingEObjectInputStream.java --- .../resource/persistence/DirectLinkingEObjectInputStream.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/resource/persistence/DirectLinkingEObjectInputStream.java b/com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/resource/persistence/DirectLinkingEObjectInputStream.java index 4493700a7..45b94525f 100644 --- a/com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/resource/persistence/DirectLinkingEObjectInputStream.java +++ b/com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/resource/persistence/DirectLinkingEObjectInputStream.java @@ -67,8 +67,7 @@ public EObject readEObject(final Resource context) throws IOException { eObject = (EObject) eObject.eGet(feature, false); } } else { - LOGGER.info(String.format("Failed to get EStructuralFeature for Eclass : %s, at readCompressedInt : %d", eObject.eClass(), next)); - throw new IllegalStateException("feature is null"); //$NON-NLS-1$ + throw new NullPointerException(String.format("EStructuralFeature can't be null for Eclass : %s, at readCompressedInt : %d", eObject.eClass(), next)); //$NON-NLS-1$ } } return eObject; From ff0ce9927b88498053deffaf7079920d7309ab15 Mon Sep 17 00:00:00 2001 From: Mark Domingo Date: Wed, 23 Apr 2025 16:29:53 +0800 Subject: [PATCH 05/57] Update DirectLinkingEObjectInputStream.java --- .../persistence/DirectLinkingEObjectInputStream.java | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/resource/persistence/DirectLinkingEObjectInputStream.java b/com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/resource/persistence/DirectLinkingEObjectInputStream.java index 45b94525f..e0658e59f 100644 --- a/com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/resource/persistence/DirectLinkingEObjectInputStream.java +++ b/com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/resource/persistence/DirectLinkingEObjectInputStream.java @@ -17,8 +17,6 @@ import java.io.InputStream; import java.util.Map; -import org.apache.logging.log4j.LogManager; -import org.apache.logging.log4j.Logger; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.common.util.URI; import org.eclipse.emf.ecore.EObject; @@ -33,8 +31,6 @@ */ class DirectLinkingEObjectInputStream extends EObjectInputStream { - private static final Logger LOGGER = LogManager.getLogger(DirectLinkingEObjectInputStream.class); - DirectLinkingEObjectInputStream(final InputStream inputStream, final Map options) throws IOException { super(inputStream, options); } @@ -67,7 +63,7 @@ public EObject readEObject(final Resource context) throws IOException { eObject = (EObject) eObject.eGet(feature, false); } } else { - throw new NullPointerException(String.format("EStructuralFeature can't be null for Eclass : %s, at readCompressedInt : %d", eObject.eClass(), next)); //$NON-NLS-1$ + throw new IllegalStateException(String.format("EStructuralFeature can't be null for Eclass : %s, at readCompressedInt : %d", eObject.eClass(), next)); //$NON-NLS-1$ } } return eObject; From 913ea8328f3953cd200600e4cf723f4d4b573d26 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 28 Apr 2025 13:46:39 +0000 Subject: [PATCH 06/57] chore(deps): bump com.puppycrawl.tools:checkstyle in /ddk-parent Bumps [com.puppycrawl.tools:checkstyle](https://github.com/checkstyle/checkstyle) from 10.23.0 to 10.23.1. - [Release notes](https://github.com/checkstyle/checkstyle/releases) - [Commits](https://github.com/checkstyle/checkstyle/compare/checkstyle-10.23.0...checkstyle-10.23.1) --- updated-dependencies: - dependency-name: com.puppycrawl.tools:checkstyle dependency-version: 10.23.1 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- ddk-parent/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ddk-parent/pom.xml b/ddk-parent/pom.xml index f2f1fc729..0d5b2ab8d 100644 --- a/ddk-parent/pom.xml +++ b/ddk-parent/pom.xml @@ -47,7 +47,7 @@ 3.6.0 - 10.23.0 + 10.23.1 3.4.1 3.1.4 4.9.3.0 From 6f64e588ee9dff8376fd206776da8962ff1dfc47 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 28 Apr 2025 13:46:44 +0000 Subject: [PATCH 07/57] chore(deps): bump pmd.version from 7.12.0 to 7.13.0 in /ddk-parent Bumps `pmd.version` from 7.12.0 to 7.13.0. Updates `net.sourceforge.pmd:pmd-core` from 7.12.0 to 7.13.0 - [Release notes](https://github.com/pmd/pmd/releases) - [Changelog](https://github.com/pmd/pmd/blob/main/docs/render_release_notes.rb) - [Commits](https://github.com/pmd/pmd/compare/pmd_releases/7.12.0...pmd_releases/7.13.0) Updates `net.sourceforge.pmd:pmd-java` from 7.12.0 to 7.13.0 - [Release notes](https://github.com/pmd/pmd/releases) - [Changelog](https://github.com/pmd/pmd/blob/main/docs/render_release_notes.rb) - [Commits](https://github.com/pmd/pmd/compare/pmd_releases/7.12.0...pmd_releases/7.13.0) --- updated-dependencies: - dependency-name: net.sourceforge.pmd:pmd-core dependency-version: 7.13.0 dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: net.sourceforge.pmd:pmd-java dependency-version: 7.13.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- ddk-parent/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ddk-parent/pom.xml b/ddk-parent/pom.xml index f2f1fc729..ca29cf9f0 100644 --- a/ddk-parent/pom.xml +++ b/ddk-parent/pom.xml @@ -53,7 +53,7 @@ 4.9.3.0 4.9.3 3.26.0 - 7.12.0 + 7.13.0 4.0.12 2.38.0 From 29be034b71f3d0075f402841452bd100a4e38e8b Mon Sep 17 00:00:00 2001 From: Andrew Lamb <38555688+andrewL-avlq@users.noreply.github.com> Date: Mon, 28 Apr 2025 17:01:04 +0100 Subject: [PATCH 08/57] fix: load model when loading model associations. The model associations are persisted as relations between model elements, so the model must exist when the associations are loaded from binary storage. --- .../resource/persistence/ProxyModelAssociationsAdapter.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/resource/persistence/ProxyModelAssociationsAdapter.java b/com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/resource/persistence/ProxyModelAssociationsAdapter.java index c74cb74a3..54d37e9fa 100644 --- a/com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/resource/persistence/ProxyModelAssociationsAdapter.java +++ b/com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/resource/persistence/ProxyModelAssociationsAdapter.java @@ -21,6 +21,7 @@ import org.eclipse.xtext.resource.persistence.StorageAwareResource; import com.avaloq.tools.ddk.xtext.modelinference.InferredModelAssociator; +import com.avaloq.tools.ddk.xtext.resource.ResourceSetOptions; /** @@ -69,6 +70,8 @@ private void ensureAssociationsLoaded() { if (resource.eAdapters().remove(this)) { DirectLinkingResourceStorageLoadable loadable = (DirectLinkingResourceStorageLoadable) ((DirectLinkingResourceStorageFacade) resource.getResourceStorageFacade()).getOrCreateResourceStorageLoadable(resource); try { + // the associations are mappings from AST model elements to inferred model elements (and back) so we cannot skip loading the model. + ResourceSetOptions.setSkipModel(resource.getResourceSet(), false); loadable.loadIntoResource(resource, ResourceLoadMode.ONLY_ASSOCIATIONS); } catch (IOException e) { throw new WrappedException(e); From 3eed92a4aaac102be450959c96f5a19929394e84 Mon Sep 17 00:00:00 2001 From: Fredi Pfister Date: Fri, 9 May 2025 14:17:06 +0200 Subject: [PATCH 09/57] feat: allow pinning new resource desc. in ResourceDescriptionDelta --- .../resource/ResourceDescriptionDelta.java | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/resource/ResourceDescriptionDelta.java b/com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/resource/ResourceDescriptionDelta.java index 3e6dcffad..625e45089 100644 --- a/com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/resource/ResourceDescriptionDelta.java +++ b/com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/resource/ResourceDescriptionDelta.java @@ -51,6 +51,7 @@ public String apply(final IEObjectDescription from) { private final URI uri; private IResourceDescription oldDesc; private final SoftReference newDesc; + private IResourceDescription pinnedNewDesc; private final IResourceDescriptions index; private Boolean hasChanges; @@ -98,6 +99,9 @@ public IResourceDescription getNew() { if (newDesc == null) { return null; } + if (pinnedNewDesc != null) { + return pinnedNewDesc; + } IResourceDescription res = newDesc.get(); return res != null ? res : index.getResourceDescription(uri); } @@ -127,6 +131,20 @@ public boolean haveEObjectDescriptionsChanged() { return hasChanges; } + /** + * Ensure the new resource description is not touched by GC. + */ + public void pinNew() { + pinnedNewDesc = newDesc == null ? null : newDesc.get(); + } + + /** + * Reverse the effect of {@link pinNew}. + */ + public void unpinNew() { + pinnedNewDesc = null; + } + /** * Discards the old descriptions as it's either equivalent to the new or can be computed from a diff against the new. * From 95468e4e9033a273ae6a66abf73b73b8a5382496 Mon Sep 17 00:00:00 2001 From: Jenkins Date: Mon, 19 May 2025 12:23:30 +0200 Subject: [PATCH 10/57] Release 15.3.0.v20250519-1223-REL --- com.avaloq.tools.ddk.check.core.test/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.core.test/pom.xml | 2 +- com.avaloq.tools.ddk.check.core/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.core/pom.xml | 2 +- com.avaloq.tools.ddk.check.ide/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.ide/pom.xml | 2 +- com.avaloq.tools.ddk.check.lib/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.lib/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.runtime.core.test/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.runtime.core/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.runtime.ui/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.test.runtime.tests/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.test.runtime.ui/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.test.runtime/pom.xml | 2 +- com.avaloq.tools.ddk.check.ui.test/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.ui.test/pom.xml | 2 +- com.avaloq.tools.ddk.check.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.ui/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.checkcfg.core.test/pom.xml | 2 +- com.avaloq.tools.ddk.checkcfg.core/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.checkcfg.core/pom.xml | 2 +- com.avaloq.tools.ddk.checkcfg.ide/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.checkcfg.ide/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.checkcfg.ui.test/pom.xml | 2 +- com.avaloq.tools.ddk.checkcfg.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.checkcfg.ui/pom.xml | 2 +- com.avaloq.tools.ddk.feature/feature.xml | 2 +- com.avaloq.tools.ddk.feature/pom.xml | 2 +- com.avaloq.tools.ddk.runtime.feature/feature.xml | 2 +- com.avaloq.tools.ddk.runtime.feature/pom.xml | 2 +- com.avaloq.tools.ddk.runtime.source.feature/feature.xml | 2 +- com.avaloq.tools.ddk.runtime.source.feature/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.sample.helloworld.ide/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.sample.helloworld.ui.test/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.sample.helloworld.ui/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.sample.helloworld/pom.xml | 2 +- com.avaloq.tools.ddk.source.feature/feature.xml | 2 +- com.avaloq.tools.ddk.source.feature/pom.xml | 2 +- com.avaloq.tools.ddk.test.core/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.test.core/pom.xml | 2 +- com.avaloq.tools.ddk.test.ui.test/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.test.ui.test/pom.xml | 2 +- com.avaloq.tools.ddk.test.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.test.ui/pom.xml | 2 +- com.avaloq.tools.ddk.typesystem.test/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.typesystem.test/pom.xml | 2 +- com.avaloq.tools.ddk.typesystem/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.typesystem/pom.xml | 2 +- com.avaloq.tools.ddk.workflow/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.workflow/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.builder.ui/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.builder/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.builder/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.check.generator/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.common.types.ui/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.common.types/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.common.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.common.ui/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.export.generator/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.export.ide/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.export.test/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.export.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.export.ui/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.export/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.export/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.expression.ide/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.expression.ui/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.expression/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.format.generator/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.format.ide/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.format.test/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.format.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.format.ui/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.format/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.format/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.generator.test/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.generator/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.generator/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.ide/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.ide/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.scope.generator/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.scope.ide/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.scope.ide/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.scope.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.scope.ui/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.scope/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.scope/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.test.core/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.test.core/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.test/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.test/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.ui.test/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.ui.test/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.ui/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.valid.ide/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.valid.ide/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.valid.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.valid.ui/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.valid/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.valid/pom.xml | 2 +- com.avaloq.tools.ddk.xtext/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext/pom.xml | 2 +- com.avaloq.tools.ddk/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk/pom.xml | 2 +- ddk-parent/pom.xml | 2 +- ddk-repository/category.xml | 8 ++++---- ddk-repository/pom.xml | 2 +- ddk-target/pom.xml | 2 +- 136 files changed, 139 insertions(+), 139 deletions(-) diff --git a/com.avaloq.tools.ddk.check.core.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.core.test/META-INF/MANIFEST.MF index f3a46ce8a..d1cd97f37 100644 --- a/com.avaloq.tools.ddk.check.core.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.core.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.core.test Bundle-SymbolicName: com.avaloq.tools.ddk.check.core.test;singleton:=true -Bundle-Version: 15.3.0.qualifier +Bundle-Version: 15.3.0.v20250519-1223-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.check.core.test/pom.xml b/com.avaloq.tools.ddk.check.core.test/pom.xml index 14747acad..3748d01d6 100644 --- a/com.avaloq.tools.ddk.check.core.test/pom.xml +++ b/com.avaloq.tools.ddk.check.core.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0-SNAPSHOT + 15.3.0.v20250519-1223-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.check.core/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.core/META-INF/MANIFEST.MF index 1cb589b08..c656a2bbc 100644 --- a/com.avaloq.tools.ddk.check.core/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.core/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.core Bundle-SymbolicName: com.avaloq.tools.ddk.check.core;singleton:=true -Bundle-Version: 15.3.0.qualifier +Bundle-Version: 15.3.0.v20250519-1223-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.check.core/pom.xml b/com.avaloq.tools.ddk.check.core/pom.xml index a712e712f..bea4beb4a 100644 --- a/com.avaloq.tools.ddk.check.core/pom.xml +++ b/com.avaloq.tools.ddk.check.core/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0-SNAPSHOT + 15.3.0.v20250519-1223-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.check.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.ide/META-INF/MANIFEST.MF index eaff29ebe..c5d928490 100644 --- a/com.avaloq.tools.ddk.check.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.ide/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.ide Bundle-SymbolicName: com.avaloq.tools.ddk.check.ide;singleton:=true -Bundle-Version: 15.3.0.qualifier +Bundle-Version: 15.3.0.v20250519-1223-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.check.ide/pom.xml b/com.avaloq.tools.ddk.check.ide/pom.xml index a077d69ba..aafcaabf0 100644 --- a/com.avaloq.tools.ddk.check.ide/pom.xml +++ b/com.avaloq.tools.ddk.check.ide/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0-SNAPSHOT + 15.3.0.v20250519-1223-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.check.lib/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.lib/META-INF/MANIFEST.MF index db417c700..3e149cecb 100644 --- a/com.avaloq.tools.ddk.check.lib/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.lib/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.lib Bundle-SymbolicName: com.avaloq.tools.ddk.check.lib -Bundle-Version: 15.3.0.qualifier +Bundle-Version: 15.3.0.v20250519-1223-REL Bundle-Vendor: Avaloq Group AG Require-Bundle: org.eclipse.core.runtime, org.eclipse.xtext, diff --git a/com.avaloq.tools.ddk.check.lib/pom.xml b/com.avaloq.tools.ddk.check.lib/pom.xml index 0edd978ca..dd5f293e6 100644 --- a/com.avaloq.tools.ddk.check.lib/pom.xml +++ b/com.avaloq.tools.ddk.check.lib/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0-SNAPSHOT + 15.3.0.v20250519-1223-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.check.runtime.core.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.runtime.core.test/META-INF/MANIFEST.MF index 4d7371208..8b3a6a460 100644 --- a/com.avaloq.tools.ddk.check.runtime.core.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.runtime.core.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.runtime.core.test Bundle-SymbolicName: com.avaloq.tools.ddk.check.runtime.core.test;singleton:=true -Bundle-Version: 15.3.0.qualifier +Bundle-Version: 15.3.0.v20250519-1223-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Require-Bundle: org.eclipse.ui, diff --git a/com.avaloq.tools.ddk.check.runtime.core.test/pom.xml b/com.avaloq.tools.ddk.check.runtime.core.test/pom.xml index 71641f88e..cccee02d0 100644 --- a/com.avaloq.tools.ddk.check.runtime.core.test/pom.xml +++ b/com.avaloq.tools.ddk.check.runtime.core.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0-SNAPSHOT + 15.3.0.v20250519-1223-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.check.runtime.core/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.runtime.core/META-INF/MANIFEST.MF index 0be705048..fd90f7151 100644 --- a/com.avaloq.tools.ddk.check.runtime.core/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.runtime.core/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.runtime.core Bundle-SymbolicName: com.avaloq.tools.ddk.check.runtime.core;singleton:=true -Bundle-Version: 15.3.0.qualifier +Bundle-Version: 15.3.0.v20250519-1223-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Require-Bundle: org.eclipse.core.resources, diff --git a/com.avaloq.tools.ddk.check.runtime.core/pom.xml b/com.avaloq.tools.ddk.check.runtime.core/pom.xml index bed2c06cd..925324755 100644 --- a/com.avaloq.tools.ddk.check.runtime.core/pom.xml +++ b/com.avaloq.tools.ddk.check.runtime.core/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0-SNAPSHOT + 15.3.0.v20250519-1223-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.check.runtime.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.runtime.ui/META-INF/MANIFEST.MF index 5aea2dcf2..8e21b6144 100644 --- a/com.avaloq.tools.ddk.check.runtime.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.runtime.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.runtime.ui Bundle-SymbolicName: com.avaloq.tools.ddk.check.runtime.ui;singleton:=true -Bundle-Version: 15.3.0.qualifier +Bundle-Version: 15.3.0.v20250519-1223-REL Bundle-Activator: com.avaloq.tools.ddk.check.runtime.ui.internal.Activator Bundle-Vendor: Avaloq Group AG Require-Bundle: org.eclipse.ui, diff --git a/com.avaloq.tools.ddk.check.runtime.ui/pom.xml b/com.avaloq.tools.ddk.check.runtime.ui/pom.xml index 491ba5b45..d63bde6a2 100644 --- a/com.avaloq.tools.ddk.check.runtime.ui/pom.xml +++ b/com.avaloq.tools.ddk.check.runtime.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0-SNAPSHOT + 15.3.0.v20250519-1223-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.check.test.runtime.tests/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.test.runtime.tests/META-INF/MANIFEST.MF index bd9e93860..7b538163b 100644 --- a/com.avaloq.tools.ddk.check.test.runtime.tests/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.test.runtime.tests/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.test.runtime.tests Bundle-Vendor: Avaloq Group AG -Bundle-Version: 15.3.0.qualifier +Bundle-Version: 15.3.0.v20250519-1223-REL Bundle-SymbolicName: com.avaloq.tools.ddk.check.test.runtime.tests; singleton:=true Bundle-ActivationPolicy: lazy Require-Bundle: com.avaloq.tools.ddk.check.runtime.core, diff --git a/com.avaloq.tools.ddk.check.test.runtime.tests/pom.xml b/com.avaloq.tools.ddk.check.test.runtime.tests/pom.xml index 993d1a823..8744e335a 100644 --- a/com.avaloq.tools.ddk.check.test.runtime.tests/pom.xml +++ b/com.avaloq.tools.ddk.check.test.runtime.tests/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0-SNAPSHOT + 15.3.0.v20250519-1223-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.check.test.runtime.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.test.runtime.ui/META-INF/MANIFEST.MF index 038dfa406..54c58178b 100644 --- a/com.avaloq.tools.ddk.check.test.runtime.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.test.runtime.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.test.runtime.ui Bundle-Vendor: Avaloq Group AG -Bundle-Version: 15.3.0.qualifier +Bundle-Version: 15.3.0.v20250519-1223-REL Bundle-SymbolicName: com.avaloq.tools.ddk.check.test.runtime.ui; singleton:=true Bundle-ActivationPolicy: lazy Require-Bundle: com.avaloq.tools.ddk.check.test.runtime;visibility:=reexport, diff --git a/com.avaloq.tools.ddk.check.test.runtime.ui/pom.xml b/com.avaloq.tools.ddk.check.test.runtime.ui/pom.xml index bedeb9368..9a642d83f 100644 --- a/com.avaloq.tools.ddk.check.test.runtime.ui/pom.xml +++ b/com.avaloq.tools.ddk.check.test.runtime.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0-SNAPSHOT + 15.3.0.v20250519-1223-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.check.test.runtime/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.test.runtime/META-INF/MANIFEST.MF index f3ebdc922..32702f557 100644 --- a/com.avaloq.tools.ddk.check.test.runtime/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.test.runtime/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.test.runtime Bundle-Vendor: Avaloq Group AG -Bundle-Version: 15.3.0.qualifier +Bundle-Version: 15.3.0.v20250519-1223-REL Bundle-SymbolicName: com.avaloq.tools.ddk.check.test.runtime;singleton:=true Bundle-ActivationPolicy: lazy Require-Bundle: org.eclipse.xtext;visibility:=reexport, diff --git a/com.avaloq.tools.ddk.check.test.runtime/pom.xml b/com.avaloq.tools.ddk.check.test.runtime/pom.xml index fc06599c8..175b8d4d6 100644 --- a/com.avaloq.tools.ddk.check.test.runtime/pom.xml +++ b/com.avaloq.tools.ddk.check.test.runtime/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0-SNAPSHOT + 15.3.0.v20250519-1223-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.check.ui.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.ui.test/META-INF/MANIFEST.MF index 66dc1a27a..9297e039a 100644 --- a/com.avaloq.tools.ddk.check.ui.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.ui.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.ui.test Bundle-SymbolicName: com.avaloq.tools.ddk.check.ui.test -Bundle-Version: 15.3.0.qualifier +Bundle-Version: 15.3.0.v20250519-1223-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Require-Bundle: org.junit, diff --git a/com.avaloq.tools.ddk.check.ui.test/pom.xml b/com.avaloq.tools.ddk.check.ui.test/pom.xml index e9ace62e2..21662ae6f 100644 --- a/com.avaloq.tools.ddk.check.ui.test/pom.xml +++ b/com.avaloq.tools.ddk.check.ui.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0-SNAPSHOT + 15.3.0.v20250519-1223-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.check.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.ui/META-INF/MANIFEST.MF index c5bcced6b..01cec5095 100644 --- a/com.avaloq.tools.ddk.check.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.ui Bundle-SymbolicName: com.avaloq.tools.ddk.check.ui;singleton:=true -Bundle-Version: 15.3.0.qualifier +Bundle-Version: 15.3.0.v20250519-1223-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-Activator: com.avaloq.tools.ddk.check.ui.internal.Activator diff --git a/com.avaloq.tools.ddk.check.ui/pom.xml b/com.avaloq.tools.ddk.check.ui/pom.xml index 4946e2126..bf3192d69 100644 --- a/com.avaloq.tools.ddk.check.ui/pom.xml +++ b/com.avaloq.tools.ddk.check.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0-SNAPSHOT + 15.3.0.v20250519-1223-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.checkcfg.core.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.checkcfg.core.test/META-INF/MANIFEST.MF index 3108f987e..20d8efb85 100644 --- a/com.avaloq.tools.ddk.checkcfg.core.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.checkcfg.core.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.checkcfg.core.test Bundle-Vendor: Avaloq Group AG -Bundle-Version: 15.3.0.qualifier +Bundle-Version: 15.3.0.v20250519-1223-REL Bundle-SymbolicName: com.avaloq.tools.ddk.checkcfg.core.test; singleton:=true Bundle-ActivationPolicy: lazy Require-Bundle: com.avaloq.tools.ddk.test.core, diff --git a/com.avaloq.tools.ddk.checkcfg.core.test/pom.xml b/com.avaloq.tools.ddk.checkcfg.core.test/pom.xml index 3234f6c2b..5e1685617 100644 --- a/com.avaloq.tools.ddk.checkcfg.core.test/pom.xml +++ b/com.avaloq.tools.ddk.checkcfg.core.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0-SNAPSHOT + 15.3.0.v20250519-1223-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.checkcfg.core/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.checkcfg.core/META-INF/MANIFEST.MF index 62795fcc8..06a1ecb35 100644 --- a/com.avaloq.tools.ddk.checkcfg.core/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.checkcfg.core/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.checkcfg.core Bundle-Vendor: Avaloq Group AG -Bundle-Version: 15.3.0.qualifier +Bundle-Version: 15.3.0.v20250519-1223-REL Bundle-SymbolicName: com.avaloq.tools.ddk.checkcfg.core; singleton:=true Bundle-ActivationPolicy: lazy Bundle-RequiredExecutionEnvironment: JavaSE-17 diff --git a/com.avaloq.tools.ddk.checkcfg.core/pom.xml b/com.avaloq.tools.ddk.checkcfg.core/pom.xml index 815c3306e..84dc72701 100644 --- a/com.avaloq.tools.ddk.checkcfg.core/pom.xml +++ b/com.avaloq.tools.ddk.checkcfg.core/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0-SNAPSHOT + 15.3.0.v20250519-1223-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.checkcfg.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.checkcfg.ide/META-INF/MANIFEST.MF index 81af5c384..6b8610afb 100644 --- a/com.avaloq.tools.ddk.checkcfg.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.checkcfg.ide/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.checkcfg.ide Bundle-SymbolicName: com.avaloq.tools.ddk.checkcfg.ide;singleton:=true -Bundle-Version: 15.3.0.qualifier +Bundle-Version: 15.3.0.v20250519-1223-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.checkcfg.ide/pom.xml b/com.avaloq.tools.ddk.checkcfg.ide/pom.xml index 2250649bd..d699d9a2a 100644 --- a/com.avaloq.tools.ddk.checkcfg.ide/pom.xml +++ b/com.avaloq.tools.ddk.checkcfg.ide/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0-SNAPSHOT + 15.3.0.v20250519-1223-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.checkcfg.ui.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.checkcfg.ui.test/META-INF/MANIFEST.MF index 1f7a45ac3..266e05029 100644 --- a/com.avaloq.tools.ddk.checkcfg.ui.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.checkcfg.ui.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.checkcfg.ui.test Bundle-SymbolicName: com.avaloq.tools.ddk.checkcfg.ui.test -Bundle-Version: 15.3.0.qualifier +Bundle-Version: 15.3.0.v20250519-1223-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Export-Package: com.avaloq.tools.ddk.checkcfg.ui.test diff --git a/com.avaloq.tools.ddk.checkcfg.ui.test/pom.xml b/com.avaloq.tools.ddk.checkcfg.ui.test/pom.xml index 13aa45df5..1645bf0db 100644 --- a/com.avaloq.tools.ddk.checkcfg.ui.test/pom.xml +++ b/com.avaloq.tools.ddk.checkcfg.ui.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0-SNAPSHOT + 15.3.0.v20250519-1223-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.checkcfg.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.checkcfg.ui/META-INF/MANIFEST.MF index 211586f85..a9c6aafa3 100644 --- a/com.avaloq.tools.ddk.checkcfg.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.checkcfg.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.checkcfg.ui Bundle-SymbolicName: com.avaloq.tools.ddk.checkcfg.ui;singleton:=true -Bundle-Version: 15.3.0.qualifier +Bundle-Version: 15.3.0.v20250519-1223-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-Activator: com.avaloq.tools.ddk.checkcfg.ui.internal.Activator diff --git a/com.avaloq.tools.ddk.checkcfg.ui/pom.xml b/com.avaloq.tools.ddk.checkcfg.ui/pom.xml index ae8670642..1b87ed981 100644 --- a/com.avaloq.tools.ddk.checkcfg.ui/pom.xml +++ b/com.avaloq.tools.ddk.checkcfg.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0-SNAPSHOT + 15.3.0.v20250519-1223-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.feature/feature.xml b/com.avaloq.tools.ddk.feature/feature.xml index ae37bdc87..2362f8cfe 100644 --- a/com.avaloq.tools.ddk.feature/feature.xml +++ b/com.avaloq.tools.ddk.feature/feature.xml @@ -2,7 +2,7 @@ diff --git a/com.avaloq.tools.ddk.feature/pom.xml b/com.avaloq.tools.ddk.feature/pom.xml index 3bcc768f3..328d5d203 100644 --- a/com.avaloq.tools.ddk.feature/pom.xml +++ b/com.avaloq.tools.ddk.feature/pom.xml @@ -4,7 +4,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0-SNAPSHOT + 15.3.0.v20250519-1223-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.runtime.feature/feature.xml b/com.avaloq.tools.ddk.runtime.feature/feature.xml index 0cb88032a..b47302d14 100644 --- a/com.avaloq.tools.ddk.runtime.feature/feature.xml +++ b/com.avaloq.tools.ddk.runtime.feature/feature.xml @@ -2,7 +2,7 @@ diff --git a/com.avaloq.tools.ddk.runtime.feature/pom.xml b/com.avaloq.tools.ddk.runtime.feature/pom.xml index aa1978536..797a729d6 100644 --- a/com.avaloq.tools.ddk.runtime.feature/pom.xml +++ b/com.avaloq.tools.ddk.runtime.feature/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0-SNAPSHOT + 15.3.0.v20250519-1223-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.runtime.source.feature/feature.xml b/com.avaloq.tools.ddk.runtime.source.feature/feature.xml index b317b01c2..2b53c4524 100644 --- a/com.avaloq.tools.ddk.runtime.source.feature/feature.xml +++ b/com.avaloq.tools.ddk.runtime.source.feature/feature.xml @@ -2,7 +2,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0-SNAPSHOT + 15.3.0.v20250519-1223-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.sample.helloworld.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.sample.helloworld.ide/META-INF/MANIFEST.MF index fcd5b5b40..88efc7815 100644 --- a/com.avaloq.tools.ddk.sample.helloworld.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.sample.helloworld.ide/META-INF/MANIFEST.MF @@ -3,7 +3,7 @@ Automatic-Module-Name: com.avaloq.tools.ddk.sample.helloworld.ide Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.sample.helloworld.ide Bundle-Vendor: Avaloq Group AG -Bundle-Version: 15.3.0.qualifier +Bundle-Version: 15.3.0.v20250519-1223-REL Bundle-SymbolicName: com.avaloq.tools.ddk.sample.helloworld.ide;singleton:=true Bundle-ActivationPolicy: lazy Require-Bundle: com.avaloq.tools.ddk.sample.helloworld, diff --git a/com.avaloq.tools.ddk.sample.helloworld.ide/pom.xml b/com.avaloq.tools.ddk.sample.helloworld.ide/pom.xml index dd019ae1e..f7beae5b2 100644 --- a/com.avaloq.tools.ddk.sample.helloworld.ide/pom.xml +++ b/com.avaloq.tools.ddk.sample.helloworld.ide/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0-SNAPSHOT + 15.3.0.v20250519-1223-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.sample.helloworld.ui.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.sample.helloworld.ui.test/META-INF/MANIFEST.MF index 1e5e00b4b..3ac1abebf 100644 --- a/com.avaloq.tools.ddk.sample.helloworld.ui.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.sample.helloworld.ui.test/META-INF/MANIFEST.MF @@ -3,7 +3,7 @@ Automatic-Module-Name: com.avaloq.tools.ddk.sample.helloworld.ui.test Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.sample.helloworld.ui.test Bundle-Vendor: Avaloq Group AG -Bundle-Version: 15.3.0.qualifier +Bundle-Version: 15.3.0.v20250519-1223-REL Bundle-SymbolicName: com.avaloq.tools.ddk.sample.helloworld.ui.test;singleton:=true Bundle-ActivationPolicy: lazy Require-Bundle: com.avaloq.tools.ddk.sample.helloworld, diff --git a/com.avaloq.tools.ddk.sample.helloworld.ui.test/pom.xml b/com.avaloq.tools.ddk.sample.helloworld.ui.test/pom.xml index 46063426c..d25c2c2b8 100644 --- a/com.avaloq.tools.ddk.sample.helloworld.ui.test/pom.xml +++ b/com.avaloq.tools.ddk.sample.helloworld.ui.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0-SNAPSHOT + 15.3.0.v20250519-1223-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.sample.helloworld.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.sample.helloworld.ui/META-INF/MANIFEST.MF index f47e1c272..e2493f034 100644 --- a/com.avaloq.tools.ddk.sample.helloworld.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.sample.helloworld.ui/META-INF/MANIFEST.MF @@ -3,7 +3,7 @@ Automatic-Module-Name: com.avaloq.tools.ddk.sample.helloworld.ui Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.sample.helloworld.ui Bundle-Vendor: Avaloq Group AG -Bundle-Version: 15.3.0.qualifier +Bundle-Version: 15.3.0.v20250519-1223-REL Bundle-SymbolicName: com.avaloq.tools.ddk.sample.helloworld.ui;singleton:=true Bundle-ActivationPolicy: lazy Require-Bundle: com.avaloq.tools.ddk.sample.helloworld, diff --git a/com.avaloq.tools.ddk.sample.helloworld.ui/pom.xml b/com.avaloq.tools.ddk.sample.helloworld.ui/pom.xml index da95f4fc7..c84eca73e 100644 --- a/com.avaloq.tools.ddk.sample.helloworld.ui/pom.xml +++ b/com.avaloq.tools.ddk.sample.helloworld.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0-SNAPSHOT + 15.3.0.v20250519-1223-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.sample.helloworld/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.sample.helloworld/META-INF/MANIFEST.MF index 4d1e9da1d..d055598cb 100644 --- a/com.avaloq.tools.ddk.sample.helloworld/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.sample.helloworld/META-INF/MANIFEST.MF @@ -3,7 +3,7 @@ Automatic-Module-Name: com.avaloq.tools.ddk.sample.helloworld Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.sample.helloworld Bundle-Vendor: Avaloq Group AG -Bundle-Version: 15.3.0.qualifier +Bundle-Version: 15.3.0.v20250519-1223-REL Bundle-SymbolicName: com.avaloq.tools.ddk.sample.helloworld;singleton:=true Bundle-ActivationPolicy: lazy Require-Bundle: org.eclipse.xtext, diff --git a/com.avaloq.tools.ddk.sample.helloworld/pom.xml b/com.avaloq.tools.ddk.sample.helloworld/pom.xml index 9bd7f2a6f..2bf94649e 100644 --- a/com.avaloq.tools.ddk.sample.helloworld/pom.xml +++ b/com.avaloq.tools.ddk.sample.helloworld/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0-SNAPSHOT + 15.3.0.v20250519-1223-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.source.feature/feature.xml b/com.avaloq.tools.ddk.source.feature/feature.xml index a036f807f..cdd5295d0 100644 --- a/com.avaloq.tools.ddk.source.feature/feature.xml +++ b/com.avaloq.tools.ddk.source.feature/feature.xml @@ -2,7 +2,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0-SNAPSHOT + 15.3.0.v20250519-1223-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.test.core/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.test.core/META-INF/MANIFEST.MF index d829313a4..0eea77b09 100644 --- a/com.avaloq.tools.ddk.test.core/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.test.core/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.test.core Bundle-SymbolicName: com.avaloq.tools.ddk.test.core;singleton:=true -Bundle-Version: 15.3.0.qualifier +Bundle-Version: 15.3.0.v20250519-1223-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.test.core/pom.xml b/com.avaloq.tools.ddk.test.core/pom.xml index cab8f6879..cbe8077bd 100644 --- a/com.avaloq.tools.ddk.test.core/pom.xml +++ b/com.avaloq.tools.ddk.test.core/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0-SNAPSHOT + 15.3.0.v20250519-1223-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.test.ui.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.test.ui.test/META-INF/MANIFEST.MF index f522ea363..6ead6d030 100644 --- a/com.avaloq.tools.ddk.test.ui.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.test.ui.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.test.ui.test Bundle-SymbolicName: com.avaloq.tools.ddk.test.ui.test;singleton:=true -Bundle-Version: 15.3.0.qualifier +Bundle-Version: 15.3.0.v20250519-1223-REL Bundle-ActivationPolicy: lazy Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 diff --git a/com.avaloq.tools.ddk.test.ui.test/pom.xml b/com.avaloq.tools.ddk.test.ui.test/pom.xml index f3ea15ea9..55bfac2d9 100644 --- a/com.avaloq.tools.ddk.test.ui.test/pom.xml +++ b/com.avaloq.tools.ddk.test.ui.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0-SNAPSHOT + 15.3.0.v20250519-1223-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.test.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.test.ui/META-INF/MANIFEST.MF index 7ec63e960..85141b938 100644 --- a/com.avaloq.tools.ddk.test.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.test.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.test.ui Bundle-SymbolicName: com.avaloq.tools.ddk.test.ui;singleton:=true -Bundle-Version: 15.3.0.qualifier +Bundle-Version: 15.3.0.v20250519-1223-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-Activator: com.avaloq.tools.ddk.test.ui.Activator diff --git a/com.avaloq.tools.ddk.test.ui/pom.xml b/com.avaloq.tools.ddk.test.ui/pom.xml index 495b09608..bcaa7b7fe 100644 --- a/com.avaloq.tools.ddk.test.ui/pom.xml +++ b/com.avaloq.tools.ddk.test.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0-SNAPSHOT + 15.3.0.v20250519-1223-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.typesystem.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.typesystem.test/META-INF/MANIFEST.MF index 030f9b223..44da43c58 100644 --- a/com.avaloq.tools.ddk.typesystem.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.typesystem.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.typesystem.test Bundle-SymbolicName: com.avaloq.tools.ddk.typesystem.test;singleton:=true -Bundle-Version: 15.3.0.qualifier +Bundle-Version: 15.3.0.v20250519-1223-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.typesystem.test/pom.xml b/com.avaloq.tools.ddk.typesystem.test/pom.xml index 06ee2906a..c71b3906c 100644 --- a/com.avaloq.tools.ddk.typesystem.test/pom.xml +++ b/com.avaloq.tools.ddk.typesystem.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0-SNAPSHOT + 15.3.0.v20250519-1223-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.typesystem/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.typesystem/META-INF/MANIFEST.MF index 4aa72ab40..689c67e24 100644 --- a/com.avaloq.tools.ddk.typesystem/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.typesystem/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.typesystem Bundle-SymbolicName: com.avaloq.tools.ddk.typesystem;singleton:=true -Bundle-Version: 15.3.0.qualifier +Bundle-Version: 15.3.0.v20250519-1223-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Import-Package: org.apache.logging.log4j diff --git a/com.avaloq.tools.ddk.typesystem/pom.xml b/com.avaloq.tools.ddk.typesystem/pom.xml index 37eadffea..ec6f5ad65 100644 --- a/com.avaloq.tools.ddk.typesystem/pom.xml +++ b/com.avaloq.tools.ddk.typesystem/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0-SNAPSHOT + 15.3.0.v20250519-1223-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.workflow/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.workflow/META-INF/MANIFEST.MF index 5ace3be37..5f6c7c6c9 100644 --- a/com.avaloq.tools.ddk.workflow/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.workflow/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.workflow Bundle-SymbolicName: com.avaloq.tools.ddk.workflow -Bundle-Version: 15.3.0.qualifier +Bundle-Version: 15.3.0.v20250519-1223-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Require-Bundle: com.avaloq.tools.ddk.xtext, diff --git a/com.avaloq.tools.ddk.workflow/pom.xml b/com.avaloq.tools.ddk.workflow/pom.xml index 5e4060b00..52df95e8a 100644 --- a/com.avaloq.tools.ddk.workflow/pom.xml +++ b/com.avaloq.tools.ddk.workflow/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0-SNAPSHOT + 15.3.0.v20250519-1223-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.builder.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.builder.ui/META-INF/MANIFEST.MF index fbf920d8b..b92392156 100644 --- a/com.avaloq.tools.ddk.xtext.builder.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.builder.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.builder.ui Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.builder.ui;singleton:=true -Bundle-Version: 15.3.0.qualifier +Bundle-Version: 15.3.0.v20250519-1223-REL Bundle-Vendor: Avaloq Group AG Require-Bundle: org.eclipse.core.runtime, org.eclipse.xtext, diff --git a/com.avaloq.tools.ddk.xtext.builder.ui/pom.xml b/com.avaloq.tools.ddk.xtext.builder.ui/pom.xml index 9eb8649ed..be903c71b 100644 --- a/com.avaloq.tools.ddk.xtext.builder.ui/pom.xml +++ b/com.avaloq.tools.ddk.xtext.builder.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0-SNAPSHOT + 15.3.0.v20250519-1223-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.builder/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.builder/META-INF/MANIFEST.MF index 96f1e30cd..3bcef83d3 100644 --- a/com.avaloq.tools.ddk.xtext.builder/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.builder/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.builder Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.builder;singleton:=true -Bundle-Version: 15.3.0.qualifier +Bundle-Version: 15.3.0.v20250519-1223-REL Bundle-Vendor: Avaloq Group AG Require-Bundle: org.eclipse.xtext.builder, org.eclipse.xtext.ui, diff --git a/com.avaloq.tools.ddk.xtext.builder/pom.xml b/com.avaloq.tools.ddk.xtext.builder/pom.xml index ca9fc4a6b..5066d9d9f 100644 --- a/com.avaloq.tools.ddk.xtext.builder/pom.xml +++ b/com.avaloq.tools.ddk.xtext.builder/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0-SNAPSHOT + 15.3.0.v20250519-1223-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.check.generator/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.check.generator/META-INF/MANIFEST.MF index f03e69294..bf624226a 100644 --- a/com.avaloq.tools.ddk.xtext.check.generator/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.check.generator/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.check.generator Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.check.generator;singleton:=true -Bundle-Version: 15.3.0.qualifier +Bundle-Version: 15.3.0.v20250519-1223-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.check.generator/pom.xml b/com.avaloq.tools.ddk.xtext.check.generator/pom.xml index 4e3b4f9a1..cc5115271 100644 --- a/com.avaloq.tools.ddk.xtext.check.generator/pom.xml +++ b/com.avaloq.tools.ddk.xtext.check.generator/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0-SNAPSHOT + 15.3.0.v20250519-1223-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.common.types.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.common.types.ui/META-INF/MANIFEST.MF index 953b75c8b..403ee64c4 100644 --- a/com.avaloq.tools.ddk.xtext.common.types.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.common.types.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.common.types.ui Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.common.types.ui;singleton:=true -Bundle-Version: 15.3.0.qualifier +Bundle-Version: 15.3.0.v20250519-1223-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.common.types.ui/pom.xml b/com.avaloq.tools.ddk.xtext.common.types.ui/pom.xml index 154721f17..c429d6436 100644 --- a/com.avaloq.tools.ddk.xtext.common.types.ui/pom.xml +++ b/com.avaloq.tools.ddk.xtext.common.types.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0-SNAPSHOT + 15.3.0.v20250519-1223-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.common.types/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.common.types/META-INF/MANIFEST.MF index 5097edffb..82ff7e024 100644 --- a/com.avaloq.tools.ddk.xtext.common.types/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.common.types/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.common.types Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.common.types;singleton:=true -Bundle-Version: 15.3.0.qualifier +Bundle-Version: 15.3.0.v20250519-1223-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.common.types/pom.xml b/com.avaloq.tools.ddk.xtext.common.types/pom.xml index 6bc1a455a..c1c619c9e 100644 --- a/com.avaloq.tools.ddk.xtext.common.types/pom.xml +++ b/com.avaloq.tools.ddk.xtext.common.types/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0-SNAPSHOT + 15.3.0.v20250519-1223-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.common.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.common.ui/META-INF/MANIFEST.MF index cffdbb973..db3d85325 100644 --- a/com.avaloq.tools.ddk.xtext.common.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.common.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.common.ui Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.common.ui;singleton:=true -Bundle-Version: 15.3.0.qualifier +Bundle-Version: 15.3.0.v20250519-1223-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Export-Package: com.avaloq.tools.ddk.xtext.common.ui.contentassist diff --git a/com.avaloq.tools.ddk.xtext.common.ui/pom.xml b/com.avaloq.tools.ddk.xtext.common.ui/pom.xml index 0d9f876a3..cc6caa9cb 100644 --- a/com.avaloq.tools.ddk.xtext.common.ui/pom.xml +++ b/com.avaloq.tools.ddk.xtext.common.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0-SNAPSHOT + 15.3.0.v20250519-1223-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.xtext.export.generator/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.export.generator/META-INF/MANIFEST.MF index 4a8d531c3..a3e3fa629 100644 --- a/com.avaloq.tools.ddk.xtext.export.generator/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.export.generator/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.export.generator Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.export.generator;singleton:=true -Bundle-Version: 15.3.0.qualifier +Bundle-Version: 15.3.0.v20250519-1223-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Require-Bundle: org.eclipse.xtext, diff --git a/com.avaloq.tools.ddk.xtext.export.generator/pom.xml b/com.avaloq.tools.ddk.xtext.export.generator/pom.xml index fb5e03fab..e256088a8 100644 --- a/com.avaloq.tools.ddk.xtext.export.generator/pom.xml +++ b/com.avaloq.tools.ddk.xtext.export.generator/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0-SNAPSHOT + 15.3.0.v20250519-1223-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.export.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.export.ide/META-INF/MANIFEST.MF index b9628c2f1..f1b191465 100644 --- a/com.avaloq.tools.ddk.xtext.export.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.export.ide/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.export.ide Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.export.ide;singleton:=true -Bundle-Version: 15.3.0.qualifier +Bundle-Version: 15.3.0.v20250519-1223-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.export.ide/pom.xml b/com.avaloq.tools.ddk.xtext.export.ide/pom.xml index 09965a152..99b9ddbd7 100644 --- a/com.avaloq.tools.ddk.xtext.export.ide/pom.xml +++ b/com.avaloq.tools.ddk.xtext.export.ide/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0-SNAPSHOT + 15.3.0.v20250519-1223-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.export.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.export.test/META-INF/MANIFEST.MF index e871516e0..addaf939a 100644 --- a/com.avaloq.tools.ddk.xtext.export.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.export.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.export.test Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.export.test;singleton:=true -Bundle-Version: 15.3.0.qualifier +Bundle-Version: 15.3.0.v20250519-1223-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.export.test/pom.xml b/com.avaloq.tools.ddk.xtext.export.test/pom.xml index c29dcdd0d..5be32b589 100644 --- a/com.avaloq.tools.ddk.xtext.export.test/pom.xml +++ b/com.avaloq.tools.ddk.xtext.export.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0-SNAPSHOT + 15.3.0.v20250519-1223-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.xtext.export.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.export.ui/META-INF/MANIFEST.MF index a0b99afeb..b71748b5c 100644 --- a/com.avaloq.tools.ddk.xtext.export.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.export.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.export.ui Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.export.ui;singleton:=true -Bundle-Version: 15.3.0.qualifier +Bundle-Version: 15.3.0.v20250519-1223-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-Activator: com.avaloq.tools.ddk.xtext.export.ui.internal.ExportActivator diff --git a/com.avaloq.tools.ddk.xtext.export.ui/pom.xml b/com.avaloq.tools.ddk.xtext.export.ui/pom.xml index 3821b5471..2442017a4 100644 --- a/com.avaloq.tools.ddk.xtext.export.ui/pom.xml +++ b/com.avaloq.tools.ddk.xtext.export.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0-SNAPSHOT + 15.3.0.v20250519-1223-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.export/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.export/META-INF/MANIFEST.MF index a1548fd2a..2ec82065a 100644 --- a/com.avaloq.tools.ddk.xtext.export/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.export/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.export Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.export;singleton:=true -Bundle-Version: 15.3.0.qualifier +Bundle-Version: 15.3.0.v20250519-1223-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.export/pom.xml b/com.avaloq.tools.ddk.xtext.export/pom.xml index 4e276fe20..7f5936e19 100644 --- a/com.avaloq.tools.ddk.xtext.export/pom.xml +++ b/com.avaloq.tools.ddk.xtext.export/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0-SNAPSHOT + 15.3.0.v20250519-1223-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.expression.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.expression.ide/META-INF/MANIFEST.MF index 5cfadd502..a9bc19861 100644 --- a/com.avaloq.tools.ddk.xtext.expression.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.expression.ide/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.expression.ide Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.expression.ide;singleton:=true -Bundle-Version: 15.3.0.qualifier +Bundle-Version: 15.3.0.v20250519-1223-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.expression.ide/pom.xml b/com.avaloq.tools.ddk.xtext.expression.ide/pom.xml index 31dd67133..1726309c3 100644 --- a/com.avaloq.tools.ddk.xtext.expression.ide/pom.xml +++ b/com.avaloq.tools.ddk.xtext.expression.ide/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0-SNAPSHOT + 15.3.0.v20250519-1223-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.expression.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.expression.ui/META-INF/MANIFEST.MF index df89fed2e..41c04017e 100644 --- a/com.avaloq.tools.ddk.xtext.expression.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.expression.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.expression.ui Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.expression.ui;singleton:=true -Bundle-Version: 15.3.0.qualifier +Bundle-Version: 15.3.0.v20250519-1223-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-Activator: com.avaloq.tools.ddk.xtext.expression.ui.internal.Activator diff --git a/com.avaloq.tools.ddk.xtext.expression.ui/pom.xml b/com.avaloq.tools.ddk.xtext.expression.ui/pom.xml index a4a63fbff..55b3b428c 100644 --- a/com.avaloq.tools.ddk.xtext.expression.ui/pom.xml +++ b/com.avaloq.tools.ddk.xtext.expression.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0-SNAPSHOT + 15.3.0.v20250519-1223-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.expression/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.expression/META-INF/MANIFEST.MF index b97b054db..dfe692c72 100644 --- a/com.avaloq.tools.ddk.xtext.expression/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.expression/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.expression Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.expression;singleton:=true -Bundle-Version: 15.3.0.qualifier +Bundle-Version: 15.3.0.v20250519-1223-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Require-Bundle: org.eclipse.xtext, diff --git a/com.avaloq.tools.ddk.xtext.expression/pom.xml b/com.avaloq.tools.ddk.xtext.expression/pom.xml index 7c8b235ac..8240ed3b5 100644 --- a/com.avaloq.tools.ddk.xtext.expression/pom.xml +++ b/com.avaloq.tools.ddk.xtext.expression/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0-SNAPSHOT + 15.3.0.v20250519-1223-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.format.generator/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.format.generator/META-INF/MANIFEST.MF index 031cba798..2670838a6 100644 --- a/com.avaloq.tools.ddk.xtext.format.generator/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.format.generator/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.format.generator Bundle-Vendor: Avaloq Group AG -Bundle-Version: 15.3.0.qualifier +Bundle-Version: 15.3.0.v20250519-1223-REL Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.format.generator;singleton:=true Require-Bundle: com.avaloq.tools.ddk.xtext.format;visibility:=reexport, org.eclipse.xpand, diff --git a/com.avaloq.tools.ddk.xtext.format.generator/pom.xml b/com.avaloq.tools.ddk.xtext.format.generator/pom.xml index 69201991b..8780649fa 100644 --- a/com.avaloq.tools.ddk.xtext.format.generator/pom.xml +++ b/com.avaloq.tools.ddk.xtext.format.generator/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0-SNAPSHOT + 15.3.0.v20250519-1223-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.format.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.format.ide/META-INF/MANIFEST.MF index 2efba6e1a..2cbddd1a2 100644 --- a/com.avaloq.tools.ddk.xtext.format.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.format.ide/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.format.ide Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.format.ide;singleton:=true -Bundle-Version: 15.3.0.qualifier +Bundle-Version: 15.3.0.v20250519-1223-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.format.ide/pom.xml b/com.avaloq.tools.ddk.xtext.format.ide/pom.xml index 8ba804193..75df6fe55 100644 --- a/com.avaloq.tools.ddk.xtext.format.ide/pom.xml +++ b/com.avaloq.tools.ddk.xtext.format.ide/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0-SNAPSHOT + 15.3.0.v20250519-1223-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.format.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.format.test/META-INF/MANIFEST.MF index 37dad6454..ff20e6d1a 100644 --- a/com.avaloq.tools.ddk.xtext.format.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.format.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.format.test Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.format.test;singleton:=true -Bundle-Version: 15.3.0.qualifier +Bundle-Version: 15.3.0.v20250519-1223-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.format.test/pom.xml b/com.avaloq.tools.ddk.xtext.format.test/pom.xml index 39da7ea3c..93a0b87d4 100644 --- a/com.avaloq.tools.ddk.xtext.format.test/pom.xml +++ b/com.avaloq.tools.ddk.xtext.format.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0-SNAPSHOT + 15.3.0.v20250519-1223-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.xtext.format.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.format.ui/META-INF/MANIFEST.MF index 4a1a529a3..ef5f7dfa4 100644 --- a/com.avaloq.tools.ddk.xtext.format.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.format.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.format.ui Bundle-Vendor: Avaloq Group AG -Bundle-Version: 15.3.0.qualifier +Bundle-Version: 15.3.0.v20250519-1223-REL Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.format.ui;singleton:=true Bundle-ActivationPolicy: lazy Require-Bundle: com.avaloq.tools.ddk.xtext.format;visibility:=reexport, diff --git a/com.avaloq.tools.ddk.xtext.format.ui/pom.xml b/com.avaloq.tools.ddk.xtext.format.ui/pom.xml index a46af05f9..2f8272b9f 100644 --- a/com.avaloq.tools.ddk.xtext.format.ui/pom.xml +++ b/com.avaloq.tools.ddk.xtext.format.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0-SNAPSHOT + 15.3.0.v20250519-1223-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.format/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.format/META-INF/MANIFEST.MF index b0ca91027..6bcb29014 100644 --- a/com.avaloq.tools.ddk.xtext.format/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.format/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.format Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.format;singleton:=true -Bundle-Version: 15.3.0.qualifier +Bundle-Version: 15.3.0.v20250519-1223-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.format/pom.xml b/com.avaloq.tools.ddk.xtext.format/pom.xml index 8a9c3573f..fe68df482 100644 --- a/com.avaloq.tools.ddk.xtext.format/pom.xml +++ b/com.avaloq.tools.ddk.xtext.format/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0-SNAPSHOT + 15.3.0.v20250519-1223-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.generator.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.generator.test/META-INF/MANIFEST.MF index 21e880e34..13d3b6d88 100644 --- a/com.avaloq.tools.ddk.xtext.generator.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.generator.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.generator.test Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.generator.test;singleton:=true -Bundle-Version: 15.3.0.qualifier +Bundle-Version: 15.3.0.v20250519-1223-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.generator.test/pom.xml b/com.avaloq.tools.ddk.xtext.generator.test/pom.xml index eb51a5b2e..c83d2391c 100644 --- a/com.avaloq.tools.ddk.xtext.generator.test/pom.xml +++ b/com.avaloq.tools.ddk.xtext.generator.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0-SNAPSHOT + 15.3.0.v20250519-1223-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.xtext.generator/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.generator/META-INF/MANIFEST.MF index d98af59a5..7e0b3959a 100644 --- a/com.avaloq.tools.ddk.xtext.generator/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.generator/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.generator Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.generator;singleton:=true -Bundle-Version: 15.3.0.qualifier +Bundle-Version: 15.3.0.v20250519-1223-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Require-Bundle: org.eclipse.jface, diff --git a/com.avaloq.tools.ddk.xtext.generator/pom.xml b/com.avaloq.tools.ddk.xtext.generator/pom.xml index 22a52b211..0d8276b94 100644 --- a/com.avaloq.tools.ddk.xtext.generator/pom.xml +++ b/com.avaloq.tools.ddk.xtext.generator/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0-SNAPSHOT + 15.3.0.v20250519-1223-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.ide/META-INF/MANIFEST.MF index 28c2e38a2..2410775ba 100644 --- a/com.avaloq.tools.ddk.xtext.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.ide/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.ide Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.ide;singleton:=true -Bundle-Version: 15.3.0.qualifier +Bundle-Version: 15.3.0.v20250519-1223-REL Bundle-Vendor: Avaloq Group AG Require-Bundle: org.eclipse.lsp4j, org.eclipse.xtext.ide, diff --git a/com.avaloq.tools.ddk.xtext.ide/pom.xml b/com.avaloq.tools.ddk.xtext.ide/pom.xml index 20fadb313..3654e1a72 100644 --- a/com.avaloq.tools.ddk.xtext.ide/pom.xml +++ b/com.avaloq.tools.ddk.xtext.ide/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0-SNAPSHOT + 15.3.0.v20250519-1223-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.scope.generator/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.scope.generator/META-INF/MANIFEST.MF index cec900606..03d5cccc4 100644 --- a/com.avaloq.tools.ddk.xtext.scope.generator/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.scope.generator/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.scope.generator Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.scope.generator;singleton:=true -Bundle-Version: 15.3.0.qualifier +Bundle-Version: 15.3.0.v20250519-1223-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Require-Bundle: com.avaloq.tools.ddk.xtext.scope;visibility:=reexport, diff --git a/com.avaloq.tools.ddk.xtext.scope.generator/pom.xml b/com.avaloq.tools.ddk.xtext.scope.generator/pom.xml index aa08dc0e6..73adee888 100644 --- a/com.avaloq.tools.ddk.xtext.scope.generator/pom.xml +++ b/com.avaloq.tools.ddk.xtext.scope.generator/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0-SNAPSHOT + 15.3.0.v20250519-1223-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.scope.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.scope.ide/META-INF/MANIFEST.MF index 31a855d72..23da54317 100644 --- a/com.avaloq.tools.ddk.xtext.scope.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.scope.ide/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.scope.ide Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.scope.ide;singleton:=true -Bundle-Version: 15.3.0.qualifier +Bundle-Version: 15.3.0.v20250519-1223-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.scope.ide/pom.xml b/com.avaloq.tools.ddk.xtext.scope.ide/pom.xml index 061083c75..15e147e40 100644 --- a/com.avaloq.tools.ddk.xtext.scope.ide/pom.xml +++ b/com.avaloq.tools.ddk.xtext.scope.ide/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0-SNAPSHOT + 15.3.0.v20250519-1223-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.scope.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.scope.ui/META-INF/MANIFEST.MF index 4a18c4839..6e291ad5b 100644 --- a/com.avaloq.tools.ddk.xtext.scope.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.scope.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.scope.ui Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.scope.ui;singleton:=true -Bundle-Version: 15.3.0.qualifier +Bundle-Version: 15.3.0.v20250519-1223-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-Activator: com.avaloq.tools.ddk.xtext.scope.ui.internal.ScopeActivator diff --git a/com.avaloq.tools.ddk.xtext.scope.ui/pom.xml b/com.avaloq.tools.ddk.xtext.scope.ui/pom.xml index d6e760963..9c38b15ef 100644 --- a/com.avaloq.tools.ddk.xtext.scope.ui/pom.xml +++ b/com.avaloq.tools.ddk.xtext.scope.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0-SNAPSHOT + 15.3.0.v20250519-1223-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.scope/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.scope/META-INF/MANIFEST.MF index dd3fa16f1..681e42389 100644 --- a/com.avaloq.tools.ddk.xtext.scope/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.scope/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.scope Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.scope;singleton:=true -Bundle-Version: 15.3.0.qualifier +Bundle-Version: 15.3.0.v20250519-1223-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Require-Bundle: org.eclipse.xtext, diff --git a/com.avaloq.tools.ddk.xtext.scope/pom.xml b/com.avaloq.tools.ddk.xtext.scope/pom.xml index a459d4bdc..8d36caaa7 100644 --- a/com.avaloq.tools.ddk.xtext.scope/pom.xml +++ b/com.avaloq.tools.ddk.xtext.scope/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0-SNAPSHOT + 15.3.0.v20250519-1223-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.test.core/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.test.core/META-INF/MANIFEST.MF index 37ec33102..22e36c4f0 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.test.core/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.test.core Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.test.core;singleton:=true -Bundle-Version: 15.3.0.qualifier +Bundle-Version: 15.3.0.v20250519-1223-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Require-Bundle: com.avaloq.tools.ddk.xtext, diff --git a/com.avaloq.tools.ddk.xtext.test.core/pom.xml b/com.avaloq.tools.ddk.xtext.test.core/pom.xml index 619c583f7..4eb644c6a 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/pom.xml +++ b/com.avaloq.tools.ddk.xtext.test.core/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0-SNAPSHOT + 15.3.0.v20250519-1223-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.xtext.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.test/META-INF/MANIFEST.MF index 92052c388..b717a86f2 100644 --- a/com.avaloq.tools.ddk.xtext.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.test Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.test;singleton:=true -Bundle-Version: 15.3.0.qualifier +Bundle-Version: 15.3.0.v20250519-1223-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.test/pom.xml b/com.avaloq.tools.ddk.xtext.test/pom.xml index ecb286631..f7f27872d 100644 --- a/com.avaloq.tools.ddk.xtext.test/pom.xml +++ b/com.avaloq.tools.ddk.xtext.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0-SNAPSHOT + 15.3.0.v20250519-1223-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.xtext.ui.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.ui.test/META-INF/MANIFEST.MF index fb7468d43..175f295a0 100644 --- a/com.avaloq.tools.ddk.xtext.ui.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.ui.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.ui.test Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.ui.test;singleton:=true -Bundle-Version: 15.3.0.qualifier +Bundle-Version: 15.3.0.v20250519-1223-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Require-Bundle: org.eclipse.xtext.ui, diff --git a/com.avaloq.tools.ddk.xtext.ui.test/pom.xml b/com.avaloq.tools.ddk.xtext.ui.test/pom.xml index 47752bee5..edef37931 100644 --- a/com.avaloq.tools.ddk.xtext.ui.test/pom.xml +++ b/com.avaloq.tools.ddk.xtext.ui.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0-SNAPSHOT + 15.3.0.v20250519-1223-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.xtext.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.ui/META-INF/MANIFEST.MF index c46a14c07..b4beaf277 100644 --- a/com.avaloq.tools.ddk.xtext.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.ui Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.ui;singleton:=true -Bundle-Version: 15.3.0.qualifier +Bundle-Version: 15.3.0.v20250519-1223-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.ui/pom.xml b/com.avaloq.tools.ddk.xtext.ui/pom.xml index 42e612517..ca3d12e1c 100644 --- a/com.avaloq.tools.ddk.xtext.ui/pom.xml +++ b/com.avaloq.tools.ddk.xtext.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0-SNAPSHOT + 15.3.0.v20250519-1223-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.valid.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.valid.ide/META-INF/MANIFEST.MF index c34e60b42..93f5e84c3 100644 --- a/com.avaloq.tools.ddk.xtext.valid.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.valid.ide/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.valid.ide Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.valid.ide;singleton:=true -Bundle-Version: 15.3.0.qualifier +Bundle-Version: 15.3.0.v20250519-1223-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.valid.ide/pom.xml b/com.avaloq.tools.ddk.xtext.valid.ide/pom.xml index 9820f3310..492021082 100644 --- a/com.avaloq.tools.ddk.xtext.valid.ide/pom.xml +++ b/com.avaloq.tools.ddk.xtext.valid.ide/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0-SNAPSHOT + 15.3.0.v20250519-1223-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.valid.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.valid.ui/META-INF/MANIFEST.MF index a1584deba..edd38f999 100644 --- a/com.avaloq.tools.ddk.xtext.valid.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.valid.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.valid.ui Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.valid.ui;singleton:=true -Bundle-Version: 15.3.0.qualifier +Bundle-Version: 15.3.0.v20250519-1223-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.valid.ui/pom.xml b/com.avaloq.tools.ddk.xtext.valid.ui/pom.xml index 0571b471c..8c3e5b35f 100644 --- a/com.avaloq.tools.ddk.xtext.valid.ui/pom.xml +++ b/com.avaloq.tools.ddk.xtext.valid.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0-SNAPSHOT + 15.3.0.v20250519-1223-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.xtext.valid/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.valid/META-INF/MANIFEST.MF index 2ebc45bdb..d089b1386 100644 --- a/com.avaloq.tools.ddk.xtext.valid/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.valid/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.valid Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.valid;singleton:=true -Bundle-Version: 15.3.0.qualifier +Bundle-Version: 15.3.0.v20250519-1223-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.valid/pom.xml b/com.avaloq.tools.ddk.xtext.valid/pom.xml index 20b591518..e0241f6a7 100644 --- a/com.avaloq.tools.ddk.xtext.valid/pom.xml +++ b/com.avaloq.tools.ddk.xtext.valid/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0-SNAPSHOT + 15.3.0.v20250519-1223-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.xtext/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext/META-INF/MANIFEST.MF index b3eb6399e..e3e2ce8af 100644 --- a/com.avaloq.tools.ddk.xtext/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext Bundle-SymbolicName: com.avaloq.tools.ddk.xtext;singleton:=true -Bundle-Version: 15.3.0.qualifier +Bundle-Version: 15.3.0.v20250519-1223-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext/pom.xml b/com.avaloq.tools.ddk.xtext/pom.xml index 03b21ebed..98f57620c 100644 --- a/com.avaloq.tools.ddk.xtext/pom.xml +++ b/com.avaloq.tools.ddk.xtext/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0-SNAPSHOT + 15.3.0.v20250519-1223-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk/META-INF/MANIFEST.MF index 2dfbf3b06..ac34d7fc5 100644 --- a/com.avaloq.tools.ddk/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk Bundle-SymbolicName: com.avaloq.tools.ddk;singleton:=true -Bundle-Version: 15.3.0.qualifier +Bundle-Version: 15.3.0.v20250519-1223-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk/pom.xml b/com.avaloq.tools.ddk/pom.xml index 5d2236cfb..37f266349 100644 --- a/com.avaloq.tools.ddk/pom.xml +++ b/com.avaloq.tools.ddk/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0-SNAPSHOT + 15.3.0.v20250519-1223-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/ddk-parent/pom.xml b/ddk-parent/pom.xml index af4c0466d..f041ded31 100644 --- a/ddk-parent/pom.xml +++ b/ddk-parent/pom.xml @@ -4,7 +4,7 @@ com.avaloq.tools.ddk ddk-parent - 15.3.0-SNAPSHOT + 15.3.0.v20250519-1223-REL pom diff --git a/ddk-repository/category.xml b/ddk-repository/category.xml index 98567a7bc..3b8796ac1 100644 --- a/ddk-repository/category.xml +++ b/ddk-repository/category.xml @@ -1,15 +1,15 @@ - + - + - + - + diff --git a/ddk-repository/pom.xml b/ddk-repository/pom.xml index ecc0236da..5cc220214 100644 --- a/ddk-repository/pom.xml +++ b/ddk-repository/pom.xml @@ -4,7 +4,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0-SNAPSHOT + 15.3.0.v20250519-1223-REL ../ddk-parent diff --git a/ddk-target/pom.xml b/ddk-target/pom.xml index 862678c31..5bab8f902 100644 --- a/ddk-target/pom.xml +++ b/ddk-target/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0-SNAPSHOT + 15.3.0.v20250519-1223-REL ../ddk-parent com.avaloq.tools.ddk From 1a8acdcc0563d722a5aec81717db4e96720fcff5 Mon Sep 17 00:00:00 2001 From: Jenkins Date: Mon, 19 May 2025 12:23:30 +0200 Subject: [PATCH 11/57] Next development version: 15.4.0-SNAPSHOT --- com.avaloq.tools.ddk.check.core.test/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.core.test/pom.xml | 2 +- com.avaloq.tools.ddk.check.core/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.core/pom.xml | 2 +- com.avaloq.tools.ddk.check.ide/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.ide/pom.xml | 2 +- com.avaloq.tools.ddk.check.lib/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.lib/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.runtime.core.test/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.runtime.core/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.runtime.ui/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.test.runtime.tests/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.test.runtime.ui/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.test.runtime/pom.xml | 2 +- com.avaloq.tools.ddk.check.ui.test/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.ui.test/pom.xml | 2 +- com.avaloq.tools.ddk.check.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.ui/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.checkcfg.core.test/pom.xml | 2 +- com.avaloq.tools.ddk.checkcfg.core/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.checkcfg.core/pom.xml | 2 +- com.avaloq.tools.ddk.checkcfg.ide/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.checkcfg.ide/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.checkcfg.ui.test/pom.xml | 2 +- com.avaloq.tools.ddk.checkcfg.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.checkcfg.ui/pom.xml | 2 +- com.avaloq.tools.ddk.feature/feature.xml | 2 +- com.avaloq.tools.ddk.feature/pom.xml | 2 +- com.avaloq.tools.ddk.runtime.feature/feature.xml | 2 +- com.avaloq.tools.ddk.runtime.feature/pom.xml | 2 +- com.avaloq.tools.ddk.runtime.source.feature/feature.xml | 2 +- com.avaloq.tools.ddk.runtime.source.feature/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.sample.helloworld.ide/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.sample.helloworld.ui.test/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.sample.helloworld.ui/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.sample.helloworld/pom.xml | 2 +- com.avaloq.tools.ddk.source.feature/feature.xml | 2 +- com.avaloq.tools.ddk.source.feature/pom.xml | 2 +- com.avaloq.tools.ddk.test.core/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.test.core/pom.xml | 2 +- com.avaloq.tools.ddk.test.ui.test/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.test.ui.test/pom.xml | 2 +- com.avaloq.tools.ddk.test.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.test.ui/pom.xml | 2 +- com.avaloq.tools.ddk.typesystem.test/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.typesystem.test/pom.xml | 2 +- com.avaloq.tools.ddk.typesystem/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.typesystem/pom.xml | 2 +- com.avaloq.tools.ddk.workflow/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.workflow/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.builder.ui/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.builder/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.builder/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.check.generator/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.common.types.ui/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.common.types/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.common.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.common.ui/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.export.generator/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.export.ide/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.export.test/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.export.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.export.ui/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.export/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.export/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.expression.ide/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.expression.ui/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.expression/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.format.generator/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.format.ide/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.format.test/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.format.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.format.ui/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.format/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.format/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.generator.test/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.generator/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.generator/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.ide/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.ide/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.scope.generator/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.scope.ide/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.scope.ide/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.scope.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.scope.ui/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.scope/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.scope/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.test.core/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.test.core/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.test/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.test/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.ui.test/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.ui.test/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.ui/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.valid.ide/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.valid.ide/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.valid.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.valid.ui/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.valid/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.valid/pom.xml | 2 +- com.avaloq.tools.ddk.xtext/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext/pom.xml | 2 +- com.avaloq.tools.ddk/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk/pom.xml | 2 +- ddk-parent/pom.xml | 2 +- ddk-repository/category.xml | 8 ++++---- ddk-repository/pom.xml | 2 +- ddk-target/pom.xml | 2 +- 136 files changed, 139 insertions(+), 139 deletions(-) diff --git a/com.avaloq.tools.ddk.check.core.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.core.test/META-INF/MANIFEST.MF index d1cd97f37..2418c414a 100644 --- a/com.avaloq.tools.ddk.check.core.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.core.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.core.test Bundle-SymbolicName: com.avaloq.tools.ddk.check.core.test;singleton:=true -Bundle-Version: 15.3.0.v20250519-1223-REL +Bundle-Version: 15.4.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.check.core.test/pom.xml b/com.avaloq.tools.ddk.check.core.test/pom.xml index 3748d01d6..fedf9861d 100644 --- a/com.avaloq.tools.ddk.check.core.test/pom.xml +++ b/com.avaloq.tools.ddk.check.core.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0.v20250519-1223-REL + 15.4.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.check.core/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.core/META-INF/MANIFEST.MF index c656a2bbc..61214a064 100644 --- a/com.avaloq.tools.ddk.check.core/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.core/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.core Bundle-SymbolicName: com.avaloq.tools.ddk.check.core;singleton:=true -Bundle-Version: 15.3.0.v20250519-1223-REL +Bundle-Version: 15.4.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.check.core/pom.xml b/com.avaloq.tools.ddk.check.core/pom.xml index bea4beb4a..53a60e60c 100644 --- a/com.avaloq.tools.ddk.check.core/pom.xml +++ b/com.avaloq.tools.ddk.check.core/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0.v20250519-1223-REL + 15.4.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.check.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.ide/META-INF/MANIFEST.MF index c5d928490..4ed244a2b 100644 --- a/com.avaloq.tools.ddk.check.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.ide/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.ide Bundle-SymbolicName: com.avaloq.tools.ddk.check.ide;singleton:=true -Bundle-Version: 15.3.0.v20250519-1223-REL +Bundle-Version: 15.4.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.check.ide/pom.xml b/com.avaloq.tools.ddk.check.ide/pom.xml index aafcaabf0..dc5269caa 100644 --- a/com.avaloq.tools.ddk.check.ide/pom.xml +++ b/com.avaloq.tools.ddk.check.ide/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0.v20250519-1223-REL + 15.4.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.check.lib/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.lib/META-INF/MANIFEST.MF index 3e149cecb..bcb12b0ea 100644 --- a/com.avaloq.tools.ddk.check.lib/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.lib/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.lib Bundle-SymbolicName: com.avaloq.tools.ddk.check.lib -Bundle-Version: 15.3.0.v20250519-1223-REL +Bundle-Version: 15.4.0.qualifier Bundle-Vendor: Avaloq Group AG Require-Bundle: org.eclipse.core.runtime, org.eclipse.xtext, diff --git a/com.avaloq.tools.ddk.check.lib/pom.xml b/com.avaloq.tools.ddk.check.lib/pom.xml index dd5f293e6..fcb17ced1 100644 --- a/com.avaloq.tools.ddk.check.lib/pom.xml +++ b/com.avaloq.tools.ddk.check.lib/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0.v20250519-1223-REL + 15.4.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.check.runtime.core.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.runtime.core.test/META-INF/MANIFEST.MF index 8b3a6a460..6719e7158 100644 --- a/com.avaloq.tools.ddk.check.runtime.core.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.runtime.core.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.runtime.core.test Bundle-SymbolicName: com.avaloq.tools.ddk.check.runtime.core.test;singleton:=true -Bundle-Version: 15.3.0.v20250519-1223-REL +Bundle-Version: 15.4.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Require-Bundle: org.eclipse.ui, diff --git a/com.avaloq.tools.ddk.check.runtime.core.test/pom.xml b/com.avaloq.tools.ddk.check.runtime.core.test/pom.xml index cccee02d0..0ca00d031 100644 --- a/com.avaloq.tools.ddk.check.runtime.core.test/pom.xml +++ b/com.avaloq.tools.ddk.check.runtime.core.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0.v20250519-1223-REL + 15.4.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.check.runtime.core/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.runtime.core/META-INF/MANIFEST.MF index fd90f7151..165df62a1 100644 --- a/com.avaloq.tools.ddk.check.runtime.core/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.runtime.core/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.runtime.core Bundle-SymbolicName: com.avaloq.tools.ddk.check.runtime.core;singleton:=true -Bundle-Version: 15.3.0.v20250519-1223-REL +Bundle-Version: 15.4.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Require-Bundle: org.eclipse.core.resources, diff --git a/com.avaloq.tools.ddk.check.runtime.core/pom.xml b/com.avaloq.tools.ddk.check.runtime.core/pom.xml index 925324755..9e814c80b 100644 --- a/com.avaloq.tools.ddk.check.runtime.core/pom.xml +++ b/com.avaloq.tools.ddk.check.runtime.core/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0.v20250519-1223-REL + 15.4.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.check.runtime.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.runtime.ui/META-INF/MANIFEST.MF index 8e21b6144..eacfade08 100644 --- a/com.avaloq.tools.ddk.check.runtime.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.runtime.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.runtime.ui Bundle-SymbolicName: com.avaloq.tools.ddk.check.runtime.ui;singleton:=true -Bundle-Version: 15.3.0.v20250519-1223-REL +Bundle-Version: 15.4.0.qualifier Bundle-Activator: com.avaloq.tools.ddk.check.runtime.ui.internal.Activator Bundle-Vendor: Avaloq Group AG Require-Bundle: org.eclipse.ui, diff --git a/com.avaloq.tools.ddk.check.runtime.ui/pom.xml b/com.avaloq.tools.ddk.check.runtime.ui/pom.xml index d63bde6a2..d554fdb97 100644 --- a/com.avaloq.tools.ddk.check.runtime.ui/pom.xml +++ b/com.avaloq.tools.ddk.check.runtime.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0.v20250519-1223-REL + 15.4.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.check.test.runtime.tests/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.test.runtime.tests/META-INF/MANIFEST.MF index 7b538163b..653b83264 100644 --- a/com.avaloq.tools.ddk.check.test.runtime.tests/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.test.runtime.tests/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.test.runtime.tests Bundle-Vendor: Avaloq Group AG -Bundle-Version: 15.3.0.v20250519-1223-REL +Bundle-Version: 15.4.0.qualifier Bundle-SymbolicName: com.avaloq.tools.ddk.check.test.runtime.tests; singleton:=true Bundle-ActivationPolicy: lazy Require-Bundle: com.avaloq.tools.ddk.check.runtime.core, diff --git a/com.avaloq.tools.ddk.check.test.runtime.tests/pom.xml b/com.avaloq.tools.ddk.check.test.runtime.tests/pom.xml index 8744e335a..7d02ab806 100644 --- a/com.avaloq.tools.ddk.check.test.runtime.tests/pom.xml +++ b/com.avaloq.tools.ddk.check.test.runtime.tests/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0.v20250519-1223-REL + 15.4.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.check.test.runtime.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.test.runtime.ui/META-INF/MANIFEST.MF index 54c58178b..951cc17b4 100644 --- a/com.avaloq.tools.ddk.check.test.runtime.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.test.runtime.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.test.runtime.ui Bundle-Vendor: Avaloq Group AG -Bundle-Version: 15.3.0.v20250519-1223-REL +Bundle-Version: 15.4.0.qualifier Bundle-SymbolicName: com.avaloq.tools.ddk.check.test.runtime.ui; singleton:=true Bundle-ActivationPolicy: lazy Require-Bundle: com.avaloq.tools.ddk.check.test.runtime;visibility:=reexport, diff --git a/com.avaloq.tools.ddk.check.test.runtime.ui/pom.xml b/com.avaloq.tools.ddk.check.test.runtime.ui/pom.xml index 9a642d83f..f377acdc2 100644 --- a/com.avaloq.tools.ddk.check.test.runtime.ui/pom.xml +++ b/com.avaloq.tools.ddk.check.test.runtime.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0.v20250519-1223-REL + 15.4.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.check.test.runtime/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.test.runtime/META-INF/MANIFEST.MF index 32702f557..e7b71e9f7 100644 --- a/com.avaloq.tools.ddk.check.test.runtime/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.test.runtime/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.test.runtime Bundle-Vendor: Avaloq Group AG -Bundle-Version: 15.3.0.v20250519-1223-REL +Bundle-Version: 15.4.0.qualifier Bundle-SymbolicName: com.avaloq.tools.ddk.check.test.runtime;singleton:=true Bundle-ActivationPolicy: lazy Require-Bundle: org.eclipse.xtext;visibility:=reexport, diff --git a/com.avaloq.tools.ddk.check.test.runtime/pom.xml b/com.avaloq.tools.ddk.check.test.runtime/pom.xml index 175b8d4d6..12bbc7e3a 100644 --- a/com.avaloq.tools.ddk.check.test.runtime/pom.xml +++ b/com.avaloq.tools.ddk.check.test.runtime/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0.v20250519-1223-REL + 15.4.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.check.ui.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.ui.test/META-INF/MANIFEST.MF index 9297e039a..3678505c2 100644 --- a/com.avaloq.tools.ddk.check.ui.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.ui.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.ui.test Bundle-SymbolicName: com.avaloq.tools.ddk.check.ui.test -Bundle-Version: 15.3.0.v20250519-1223-REL +Bundle-Version: 15.4.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Require-Bundle: org.junit, diff --git a/com.avaloq.tools.ddk.check.ui.test/pom.xml b/com.avaloq.tools.ddk.check.ui.test/pom.xml index 21662ae6f..4ec5d1f96 100644 --- a/com.avaloq.tools.ddk.check.ui.test/pom.xml +++ b/com.avaloq.tools.ddk.check.ui.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0.v20250519-1223-REL + 15.4.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.check.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.ui/META-INF/MANIFEST.MF index 01cec5095..ae59e53cc 100644 --- a/com.avaloq.tools.ddk.check.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.ui Bundle-SymbolicName: com.avaloq.tools.ddk.check.ui;singleton:=true -Bundle-Version: 15.3.0.v20250519-1223-REL +Bundle-Version: 15.4.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-Activator: com.avaloq.tools.ddk.check.ui.internal.Activator diff --git a/com.avaloq.tools.ddk.check.ui/pom.xml b/com.avaloq.tools.ddk.check.ui/pom.xml index bf3192d69..6058cc8dc 100644 --- a/com.avaloq.tools.ddk.check.ui/pom.xml +++ b/com.avaloq.tools.ddk.check.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0.v20250519-1223-REL + 15.4.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.checkcfg.core.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.checkcfg.core.test/META-INF/MANIFEST.MF index 20d8efb85..a51d1f8b8 100644 --- a/com.avaloq.tools.ddk.checkcfg.core.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.checkcfg.core.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.checkcfg.core.test Bundle-Vendor: Avaloq Group AG -Bundle-Version: 15.3.0.v20250519-1223-REL +Bundle-Version: 15.4.0.qualifier Bundle-SymbolicName: com.avaloq.tools.ddk.checkcfg.core.test; singleton:=true Bundle-ActivationPolicy: lazy Require-Bundle: com.avaloq.tools.ddk.test.core, diff --git a/com.avaloq.tools.ddk.checkcfg.core.test/pom.xml b/com.avaloq.tools.ddk.checkcfg.core.test/pom.xml index 5e1685617..a5fe738b7 100644 --- a/com.avaloq.tools.ddk.checkcfg.core.test/pom.xml +++ b/com.avaloq.tools.ddk.checkcfg.core.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0.v20250519-1223-REL + 15.4.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.checkcfg.core/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.checkcfg.core/META-INF/MANIFEST.MF index 06a1ecb35..f921f1351 100644 --- a/com.avaloq.tools.ddk.checkcfg.core/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.checkcfg.core/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.checkcfg.core Bundle-Vendor: Avaloq Group AG -Bundle-Version: 15.3.0.v20250519-1223-REL +Bundle-Version: 15.4.0.qualifier Bundle-SymbolicName: com.avaloq.tools.ddk.checkcfg.core; singleton:=true Bundle-ActivationPolicy: lazy Bundle-RequiredExecutionEnvironment: JavaSE-17 diff --git a/com.avaloq.tools.ddk.checkcfg.core/pom.xml b/com.avaloq.tools.ddk.checkcfg.core/pom.xml index 84dc72701..a23948b4d 100644 --- a/com.avaloq.tools.ddk.checkcfg.core/pom.xml +++ b/com.avaloq.tools.ddk.checkcfg.core/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0.v20250519-1223-REL + 15.4.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.checkcfg.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.checkcfg.ide/META-INF/MANIFEST.MF index 6b8610afb..181b9f1aa 100644 --- a/com.avaloq.tools.ddk.checkcfg.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.checkcfg.ide/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.checkcfg.ide Bundle-SymbolicName: com.avaloq.tools.ddk.checkcfg.ide;singleton:=true -Bundle-Version: 15.3.0.v20250519-1223-REL +Bundle-Version: 15.4.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.checkcfg.ide/pom.xml b/com.avaloq.tools.ddk.checkcfg.ide/pom.xml index d699d9a2a..959bc726f 100644 --- a/com.avaloq.tools.ddk.checkcfg.ide/pom.xml +++ b/com.avaloq.tools.ddk.checkcfg.ide/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0.v20250519-1223-REL + 15.4.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.checkcfg.ui.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.checkcfg.ui.test/META-INF/MANIFEST.MF index 266e05029..2f7446aa1 100644 --- a/com.avaloq.tools.ddk.checkcfg.ui.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.checkcfg.ui.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.checkcfg.ui.test Bundle-SymbolicName: com.avaloq.tools.ddk.checkcfg.ui.test -Bundle-Version: 15.3.0.v20250519-1223-REL +Bundle-Version: 15.4.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Export-Package: com.avaloq.tools.ddk.checkcfg.ui.test diff --git a/com.avaloq.tools.ddk.checkcfg.ui.test/pom.xml b/com.avaloq.tools.ddk.checkcfg.ui.test/pom.xml index 1645bf0db..5b2d7aa9d 100644 --- a/com.avaloq.tools.ddk.checkcfg.ui.test/pom.xml +++ b/com.avaloq.tools.ddk.checkcfg.ui.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0.v20250519-1223-REL + 15.4.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.checkcfg.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.checkcfg.ui/META-INF/MANIFEST.MF index a9c6aafa3..487f11639 100644 --- a/com.avaloq.tools.ddk.checkcfg.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.checkcfg.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.checkcfg.ui Bundle-SymbolicName: com.avaloq.tools.ddk.checkcfg.ui;singleton:=true -Bundle-Version: 15.3.0.v20250519-1223-REL +Bundle-Version: 15.4.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-Activator: com.avaloq.tools.ddk.checkcfg.ui.internal.Activator diff --git a/com.avaloq.tools.ddk.checkcfg.ui/pom.xml b/com.avaloq.tools.ddk.checkcfg.ui/pom.xml index 1b87ed981..c3b96a8bc 100644 --- a/com.avaloq.tools.ddk.checkcfg.ui/pom.xml +++ b/com.avaloq.tools.ddk.checkcfg.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0.v20250519-1223-REL + 15.4.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.feature/feature.xml b/com.avaloq.tools.ddk.feature/feature.xml index 2362f8cfe..712d8f241 100644 --- a/com.avaloq.tools.ddk.feature/feature.xml +++ b/com.avaloq.tools.ddk.feature/feature.xml @@ -2,7 +2,7 @@ diff --git a/com.avaloq.tools.ddk.feature/pom.xml b/com.avaloq.tools.ddk.feature/pom.xml index 328d5d203..a5449579c 100644 --- a/com.avaloq.tools.ddk.feature/pom.xml +++ b/com.avaloq.tools.ddk.feature/pom.xml @@ -4,7 +4,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0.v20250519-1223-REL + 15.4.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.runtime.feature/feature.xml b/com.avaloq.tools.ddk.runtime.feature/feature.xml index b47302d14..635e99be4 100644 --- a/com.avaloq.tools.ddk.runtime.feature/feature.xml +++ b/com.avaloq.tools.ddk.runtime.feature/feature.xml @@ -2,7 +2,7 @@ diff --git a/com.avaloq.tools.ddk.runtime.feature/pom.xml b/com.avaloq.tools.ddk.runtime.feature/pom.xml index 797a729d6..008a6ac3a 100644 --- a/com.avaloq.tools.ddk.runtime.feature/pom.xml +++ b/com.avaloq.tools.ddk.runtime.feature/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0.v20250519-1223-REL + 15.4.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.runtime.source.feature/feature.xml b/com.avaloq.tools.ddk.runtime.source.feature/feature.xml index 2b53c4524..003ed7948 100644 --- a/com.avaloq.tools.ddk.runtime.source.feature/feature.xml +++ b/com.avaloq.tools.ddk.runtime.source.feature/feature.xml @@ -2,7 +2,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0.v20250519-1223-REL + 15.4.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.sample.helloworld.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.sample.helloworld.ide/META-INF/MANIFEST.MF index 88efc7815..6125d90ac 100644 --- a/com.avaloq.tools.ddk.sample.helloworld.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.sample.helloworld.ide/META-INF/MANIFEST.MF @@ -3,7 +3,7 @@ Automatic-Module-Name: com.avaloq.tools.ddk.sample.helloworld.ide Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.sample.helloworld.ide Bundle-Vendor: Avaloq Group AG -Bundle-Version: 15.3.0.v20250519-1223-REL +Bundle-Version: 15.4.0.qualifier Bundle-SymbolicName: com.avaloq.tools.ddk.sample.helloworld.ide;singleton:=true Bundle-ActivationPolicy: lazy Require-Bundle: com.avaloq.tools.ddk.sample.helloworld, diff --git a/com.avaloq.tools.ddk.sample.helloworld.ide/pom.xml b/com.avaloq.tools.ddk.sample.helloworld.ide/pom.xml index f7beae5b2..e16562bd4 100644 --- a/com.avaloq.tools.ddk.sample.helloworld.ide/pom.xml +++ b/com.avaloq.tools.ddk.sample.helloworld.ide/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0.v20250519-1223-REL + 15.4.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.sample.helloworld.ui.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.sample.helloworld.ui.test/META-INF/MANIFEST.MF index 3ac1abebf..c90ba3e20 100644 --- a/com.avaloq.tools.ddk.sample.helloworld.ui.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.sample.helloworld.ui.test/META-INF/MANIFEST.MF @@ -3,7 +3,7 @@ Automatic-Module-Name: com.avaloq.tools.ddk.sample.helloworld.ui.test Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.sample.helloworld.ui.test Bundle-Vendor: Avaloq Group AG -Bundle-Version: 15.3.0.v20250519-1223-REL +Bundle-Version: 15.4.0.qualifier Bundle-SymbolicName: com.avaloq.tools.ddk.sample.helloworld.ui.test;singleton:=true Bundle-ActivationPolicy: lazy Require-Bundle: com.avaloq.tools.ddk.sample.helloworld, diff --git a/com.avaloq.tools.ddk.sample.helloworld.ui.test/pom.xml b/com.avaloq.tools.ddk.sample.helloworld.ui.test/pom.xml index d25c2c2b8..f2f92a26d 100644 --- a/com.avaloq.tools.ddk.sample.helloworld.ui.test/pom.xml +++ b/com.avaloq.tools.ddk.sample.helloworld.ui.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0.v20250519-1223-REL + 15.4.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.sample.helloworld.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.sample.helloworld.ui/META-INF/MANIFEST.MF index e2493f034..0e92db711 100644 --- a/com.avaloq.tools.ddk.sample.helloworld.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.sample.helloworld.ui/META-INF/MANIFEST.MF @@ -3,7 +3,7 @@ Automatic-Module-Name: com.avaloq.tools.ddk.sample.helloworld.ui Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.sample.helloworld.ui Bundle-Vendor: Avaloq Group AG -Bundle-Version: 15.3.0.v20250519-1223-REL +Bundle-Version: 15.4.0.qualifier Bundle-SymbolicName: com.avaloq.tools.ddk.sample.helloworld.ui;singleton:=true Bundle-ActivationPolicy: lazy Require-Bundle: com.avaloq.tools.ddk.sample.helloworld, diff --git a/com.avaloq.tools.ddk.sample.helloworld.ui/pom.xml b/com.avaloq.tools.ddk.sample.helloworld.ui/pom.xml index c84eca73e..1413c780e 100644 --- a/com.avaloq.tools.ddk.sample.helloworld.ui/pom.xml +++ b/com.avaloq.tools.ddk.sample.helloworld.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0.v20250519-1223-REL + 15.4.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.sample.helloworld/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.sample.helloworld/META-INF/MANIFEST.MF index d055598cb..b68ce3580 100644 --- a/com.avaloq.tools.ddk.sample.helloworld/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.sample.helloworld/META-INF/MANIFEST.MF @@ -3,7 +3,7 @@ Automatic-Module-Name: com.avaloq.tools.ddk.sample.helloworld Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.sample.helloworld Bundle-Vendor: Avaloq Group AG -Bundle-Version: 15.3.0.v20250519-1223-REL +Bundle-Version: 15.4.0.qualifier Bundle-SymbolicName: com.avaloq.tools.ddk.sample.helloworld;singleton:=true Bundle-ActivationPolicy: lazy Require-Bundle: org.eclipse.xtext, diff --git a/com.avaloq.tools.ddk.sample.helloworld/pom.xml b/com.avaloq.tools.ddk.sample.helloworld/pom.xml index 2bf94649e..0a9f8962f 100644 --- a/com.avaloq.tools.ddk.sample.helloworld/pom.xml +++ b/com.avaloq.tools.ddk.sample.helloworld/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0.v20250519-1223-REL + 15.4.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.source.feature/feature.xml b/com.avaloq.tools.ddk.source.feature/feature.xml index cdd5295d0..b8ed97b69 100644 --- a/com.avaloq.tools.ddk.source.feature/feature.xml +++ b/com.avaloq.tools.ddk.source.feature/feature.xml @@ -2,7 +2,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0.v20250519-1223-REL + 15.4.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.test.core/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.test.core/META-INF/MANIFEST.MF index 0eea77b09..0113893cb 100644 --- a/com.avaloq.tools.ddk.test.core/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.test.core/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.test.core Bundle-SymbolicName: com.avaloq.tools.ddk.test.core;singleton:=true -Bundle-Version: 15.3.0.v20250519-1223-REL +Bundle-Version: 15.4.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.test.core/pom.xml b/com.avaloq.tools.ddk.test.core/pom.xml index cbe8077bd..67dde5256 100644 --- a/com.avaloq.tools.ddk.test.core/pom.xml +++ b/com.avaloq.tools.ddk.test.core/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0.v20250519-1223-REL + 15.4.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.test.ui.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.test.ui.test/META-INF/MANIFEST.MF index 6ead6d030..0095c9ea2 100644 --- a/com.avaloq.tools.ddk.test.ui.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.test.ui.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.test.ui.test Bundle-SymbolicName: com.avaloq.tools.ddk.test.ui.test;singleton:=true -Bundle-Version: 15.3.0.v20250519-1223-REL +Bundle-Version: 15.4.0.qualifier Bundle-ActivationPolicy: lazy Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 diff --git a/com.avaloq.tools.ddk.test.ui.test/pom.xml b/com.avaloq.tools.ddk.test.ui.test/pom.xml index 55bfac2d9..1a944974f 100644 --- a/com.avaloq.tools.ddk.test.ui.test/pom.xml +++ b/com.avaloq.tools.ddk.test.ui.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0.v20250519-1223-REL + 15.4.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.test.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.test.ui/META-INF/MANIFEST.MF index 85141b938..e4039e4b2 100644 --- a/com.avaloq.tools.ddk.test.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.test.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.test.ui Bundle-SymbolicName: com.avaloq.tools.ddk.test.ui;singleton:=true -Bundle-Version: 15.3.0.v20250519-1223-REL +Bundle-Version: 15.4.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-Activator: com.avaloq.tools.ddk.test.ui.Activator diff --git a/com.avaloq.tools.ddk.test.ui/pom.xml b/com.avaloq.tools.ddk.test.ui/pom.xml index bcaa7b7fe..c7d8591e0 100644 --- a/com.avaloq.tools.ddk.test.ui/pom.xml +++ b/com.avaloq.tools.ddk.test.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0.v20250519-1223-REL + 15.4.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.typesystem.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.typesystem.test/META-INF/MANIFEST.MF index 44da43c58..accbc0357 100644 --- a/com.avaloq.tools.ddk.typesystem.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.typesystem.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.typesystem.test Bundle-SymbolicName: com.avaloq.tools.ddk.typesystem.test;singleton:=true -Bundle-Version: 15.3.0.v20250519-1223-REL +Bundle-Version: 15.4.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.typesystem.test/pom.xml b/com.avaloq.tools.ddk.typesystem.test/pom.xml index c71b3906c..532cdd449 100644 --- a/com.avaloq.tools.ddk.typesystem.test/pom.xml +++ b/com.avaloq.tools.ddk.typesystem.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0.v20250519-1223-REL + 15.4.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.typesystem/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.typesystem/META-INF/MANIFEST.MF index 689c67e24..786ef8ff6 100644 --- a/com.avaloq.tools.ddk.typesystem/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.typesystem/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.typesystem Bundle-SymbolicName: com.avaloq.tools.ddk.typesystem;singleton:=true -Bundle-Version: 15.3.0.v20250519-1223-REL +Bundle-Version: 15.4.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Import-Package: org.apache.logging.log4j diff --git a/com.avaloq.tools.ddk.typesystem/pom.xml b/com.avaloq.tools.ddk.typesystem/pom.xml index ec6f5ad65..108d8ba4a 100644 --- a/com.avaloq.tools.ddk.typesystem/pom.xml +++ b/com.avaloq.tools.ddk.typesystem/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0.v20250519-1223-REL + 15.4.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.workflow/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.workflow/META-INF/MANIFEST.MF index 5f6c7c6c9..c495efd50 100644 --- a/com.avaloq.tools.ddk.workflow/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.workflow/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.workflow Bundle-SymbolicName: com.avaloq.tools.ddk.workflow -Bundle-Version: 15.3.0.v20250519-1223-REL +Bundle-Version: 15.4.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Require-Bundle: com.avaloq.tools.ddk.xtext, diff --git a/com.avaloq.tools.ddk.workflow/pom.xml b/com.avaloq.tools.ddk.workflow/pom.xml index 52df95e8a..127b6d44c 100644 --- a/com.avaloq.tools.ddk.workflow/pom.xml +++ b/com.avaloq.tools.ddk.workflow/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0.v20250519-1223-REL + 15.4.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.builder.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.builder.ui/META-INF/MANIFEST.MF index b92392156..6bf5a5495 100644 --- a/com.avaloq.tools.ddk.xtext.builder.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.builder.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.builder.ui Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.builder.ui;singleton:=true -Bundle-Version: 15.3.0.v20250519-1223-REL +Bundle-Version: 15.4.0.qualifier Bundle-Vendor: Avaloq Group AG Require-Bundle: org.eclipse.core.runtime, org.eclipse.xtext, diff --git a/com.avaloq.tools.ddk.xtext.builder.ui/pom.xml b/com.avaloq.tools.ddk.xtext.builder.ui/pom.xml index be903c71b..d9f9ad5ba 100644 --- a/com.avaloq.tools.ddk.xtext.builder.ui/pom.xml +++ b/com.avaloq.tools.ddk.xtext.builder.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0.v20250519-1223-REL + 15.4.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.builder/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.builder/META-INF/MANIFEST.MF index 3bcef83d3..e641e239b 100644 --- a/com.avaloq.tools.ddk.xtext.builder/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.builder/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.builder Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.builder;singleton:=true -Bundle-Version: 15.3.0.v20250519-1223-REL +Bundle-Version: 15.4.0.qualifier Bundle-Vendor: Avaloq Group AG Require-Bundle: org.eclipse.xtext.builder, org.eclipse.xtext.ui, diff --git a/com.avaloq.tools.ddk.xtext.builder/pom.xml b/com.avaloq.tools.ddk.xtext.builder/pom.xml index 5066d9d9f..f262407c3 100644 --- a/com.avaloq.tools.ddk.xtext.builder/pom.xml +++ b/com.avaloq.tools.ddk.xtext.builder/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0.v20250519-1223-REL + 15.4.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.check.generator/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.check.generator/META-INF/MANIFEST.MF index bf624226a..fb43250e9 100644 --- a/com.avaloq.tools.ddk.xtext.check.generator/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.check.generator/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.check.generator Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.check.generator;singleton:=true -Bundle-Version: 15.3.0.v20250519-1223-REL +Bundle-Version: 15.4.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.check.generator/pom.xml b/com.avaloq.tools.ddk.xtext.check.generator/pom.xml index cc5115271..7c5ace172 100644 --- a/com.avaloq.tools.ddk.xtext.check.generator/pom.xml +++ b/com.avaloq.tools.ddk.xtext.check.generator/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0.v20250519-1223-REL + 15.4.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.common.types.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.common.types.ui/META-INF/MANIFEST.MF index 403ee64c4..4063a86bc 100644 --- a/com.avaloq.tools.ddk.xtext.common.types.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.common.types.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.common.types.ui Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.common.types.ui;singleton:=true -Bundle-Version: 15.3.0.v20250519-1223-REL +Bundle-Version: 15.4.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.common.types.ui/pom.xml b/com.avaloq.tools.ddk.xtext.common.types.ui/pom.xml index c429d6436..dcc853fad 100644 --- a/com.avaloq.tools.ddk.xtext.common.types.ui/pom.xml +++ b/com.avaloq.tools.ddk.xtext.common.types.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0.v20250519-1223-REL + 15.4.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.common.types/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.common.types/META-INF/MANIFEST.MF index 82ff7e024..bbbe886c0 100644 --- a/com.avaloq.tools.ddk.xtext.common.types/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.common.types/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.common.types Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.common.types;singleton:=true -Bundle-Version: 15.3.0.v20250519-1223-REL +Bundle-Version: 15.4.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.common.types/pom.xml b/com.avaloq.tools.ddk.xtext.common.types/pom.xml index c1c619c9e..a0ed0eaf5 100644 --- a/com.avaloq.tools.ddk.xtext.common.types/pom.xml +++ b/com.avaloq.tools.ddk.xtext.common.types/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0.v20250519-1223-REL + 15.4.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.common.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.common.ui/META-INF/MANIFEST.MF index db3d85325..0def6272c 100644 --- a/com.avaloq.tools.ddk.xtext.common.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.common.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.common.ui Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.common.ui;singleton:=true -Bundle-Version: 15.3.0.v20250519-1223-REL +Bundle-Version: 15.4.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Export-Package: com.avaloq.tools.ddk.xtext.common.ui.contentassist diff --git a/com.avaloq.tools.ddk.xtext.common.ui/pom.xml b/com.avaloq.tools.ddk.xtext.common.ui/pom.xml index cc6caa9cb..6f2751216 100644 --- a/com.avaloq.tools.ddk.xtext.common.ui/pom.xml +++ b/com.avaloq.tools.ddk.xtext.common.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0.v20250519-1223-REL + 15.4.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.xtext.export.generator/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.export.generator/META-INF/MANIFEST.MF index a3e3fa629..552050a73 100644 --- a/com.avaloq.tools.ddk.xtext.export.generator/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.export.generator/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.export.generator Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.export.generator;singleton:=true -Bundle-Version: 15.3.0.v20250519-1223-REL +Bundle-Version: 15.4.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Require-Bundle: org.eclipse.xtext, diff --git a/com.avaloq.tools.ddk.xtext.export.generator/pom.xml b/com.avaloq.tools.ddk.xtext.export.generator/pom.xml index e256088a8..d01caf67d 100644 --- a/com.avaloq.tools.ddk.xtext.export.generator/pom.xml +++ b/com.avaloq.tools.ddk.xtext.export.generator/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0.v20250519-1223-REL + 15.4.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.export.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.export.ide/META-INF/MANIFEST.MF index f1b191465..8c64aa0ab 100644 --- a/com.avaloq.tools.ddk.xtext.export.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.export.ide/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.export.ide Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.export.ide;singleton:=true -Bundle-Version: 15.3.0.v20250519-1223-REL +Bundle-Version: 15.4.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.export.ide/pom.xml b/com.avaloq.tools.ddk.xtext.export.ide/pom.xml index 99b9ddbd7..1d8d46a16 100644 --- a/com.avaloq.tools.ddk.xtext.export.ide/pom.xml +++ b/com.avaloq.tools.ddk.xtext.export.ide/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0.v20250519-1223-REL + 15.4.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.export.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.export.test/META-INF/MANIFEST.MF index addaf939a..1005533b0 100644 --- a/com.avaloq.tools.ddk.xtext.export.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.export.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.export.test Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.export.test;singleton:=true -Bundle-Version: 15.3.0.v20250519-1223-REL +Bundle-Version: 15.4.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.export.test/pom.xml b/com.avaloq.tools.ddk.xtext.export.test/pom.xml index 5be32b589..835c3eab0 100644 --- a/com.avaloq.tools.ddk.xtext.export.test/pom.xml +++ b/com.avaloq.tools.ddk.xtext.export.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0.v20250519-1223-REL + 15.4.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.xtext.export.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.export.ui/META-INF/MANIFEST.MF index b71748b5c..30af814d8 100644 --- a/com.avaloq.tools.ddk.xtext.export.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.export.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.export.ui Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.export.ui;singleton:=true -Bundle-Version: 15.3.0.v20250519-1223-REL +Bundle-Version: 15.4.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-Activator: com.avaloq.tools.ddk.xtext.export.ui.internal.ExportActivator diff --git a/com.avaloq.tools.ddk.xtext.export.ui/pom.xml b/com.avaloq.tools.ddk.xtext.export.ui/pom.xml index 2442017a4..ffb6c4b4a 100644 --- a/com.avaloq.tools.ddk.xtext.export.ui/pom.xml +++ b/com.avaloq.tools.ddk.xtext.export.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0.v20250519-1223-REL + 15.4.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.export/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.export/META-INF/MANIFEST.MF index 2ec82065a..8bb20a4aa 100644 --- a/com.avaloq.tools.ddk.xtext.export/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.export/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.export Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.export;singleton:=true -Bundle-Version: 15.3.0.v20250519-1223-REL +Bundle-Version: 15.4.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.export/pom.xml b/com.avaloq.tools.ddk.xtext.export/pom.xml index 7f5936e19..9901bbcd3 100644 --- a/com.avaloq.tools.ddk.xtext.export/pom.xml +++ b/com.avaloq.tools.ddk.xtext.export/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0.v20250519-1223-REL + 15.4.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.expression.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.expression.ide/META-INF/MANIFEST.MF index a9bc19861..092e0acee 100644 --- a/com.avaloq.tools.ddk.xtext.expression.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.expression.ide/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.expression.ide Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.expression.ide;singleton:=true -Bundle-Version: 15.3.0.v20250519-1223-REL +Bundle-Version: 15.4.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.expression.ide/pom.xml b/com.avaloq.tools.ddk.xtext.expression.ide/pom.xml index 1726309c3..9a3cde0f3 100644 --- a/com.avaloq.tools.ddk.xtext.expression.ide/pom.xml +++ b/com.avaloq.tools.ddk.xtext.expression.ide/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0.v20250519-1223-REL + 15.4.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.expression.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.expression.ui/META-INF/MANIFEST.MF index 41c04017e..a7cbda075 100644 --- a/com.avaloq.tools.ddk.xtext.expression.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.expression.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.expression.ui Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.expression.ui;singleton:=true -Bundle-Version: 15.3.0.v20250519-1223-REL +Bundle-Version: 15.4.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-Activator: com.avaloq.tools.ddk.xtext.expression.ui.internal.Activator diff --git a/com.avaloq.tools.ddk.xtext.expression.ui/pom.xml b/com.avaloq.tools.ddk.xtext.expression.ui/pom.xml index 55b3b428c..3077557bc 100644 --- a/com.avaloq.tools.ddk.xtext.expression.ui/pom.xml +++ b/com.avaloq.tools.ddk.xtext.expression.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0.v20250519-1223-REL + 15.4.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.expression/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.expression/META-INF/MANIFEST.MF index dfe692c72..7ae20e043 100644 --- a/com.avaloq.tools.ddk.xtext.expression/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.expression/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.expression Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.expression;singleton:=true -Bundle-Version: 15.3.0.v20250519-1223-REL +Bundle-Version: 15.4.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Require-Bundle: org.eclipse.xtext, diff --git a/com.avaloq.tools.ddk.xtext.expression/pom.xml b/com.avaloq.tools.ddk.xtext.expression/pom.xml index 8240ed3b5..5870cf930 100644 --- a/com.avaloq.tools.ddk.xtext.expression/pom.xml +++ b/com.avaloq.tools.ddk.xtext.expression/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0.v20250519-1223-REL + 15.4.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.format.generator/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.format.generator/META-INF/MANIFEST.MF index 2670838a6..55e5cf1c6 100644 --- a/com.avaloq.tools.ddk.xtext.format.generator/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.format.generator/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.format.generator Bundle-Vendor: Avaloq Group AG -Bundle-Version: 15.3.0.v20250519-1223-REL +Bundle-Version: 15.4.0.qualifier Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.format.generator;singleton:=true Require-Bundle: com.avaloq.tools.ddk.xtext.format;visibility:=reexport, org.eclipse.xpand, diff --git a/com.avaloq.tools.ddk.xtext.format.generator/pom.xml b/com.avaloq.tools.ddk.xtext.format.generator/pom.xml index 8780649fa..0f9959030 100644 --- a/com.avaloq.tools.ddk.xtext.format.generator/pom.xml +++ b/com.avaloq.tools.ddk.xtext.format.generator/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0.v20250519-1223-REL + 15.4.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.format.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.format.ide/META-INF/MANIFEST.MF index 2cbddd1a2..f197771c7 100644 --- a/com.avaloq.tools.ddk.xtext.format.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.format.ide/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.format.ide Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.format.ide;singleton:=true -Bundle-Version: 15.3.0.v20250519-1223-REL +Bundle-Version: 15.4.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.format.ide/pom.xml b/com.avaloq.tools.ddk.xtext.format.ide/pom.xml index 75df6fe55..535f76a20 100644 --- a/com.avaloq.tools.ddk.xtext.format.ide/pom.xml +++ b/com.avaloq.tools.ddk.xtext.format.ide/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0.v20250519-1223-REL + 15.4.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.format.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.format.test/META-INF/MANIFEST.MF index ff20e6d1a..8973d2c9f 100644 --- a/com.avaloq.tools.ddk.xtext.format.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.format.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.format.test Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.format.test;singleton:=true -Bundle-Version: 15.3.0.v20250519-1223-REL +Bundle-Version: 15.4.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.format.test/pom.xml b/com.avaloq.tools.ddk.xtext.format.test/pom.xml index 93a0b87d4..187d7d11e 100644 --- a/com.avaloq.tools.ddk.xtext.format.test/pom.xml +++ b/com.avaloq.tools.ddk.xtext.format.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0.v20250519-1223-REL + 15.4.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.xtext.format.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.format.ui/META-INF/MANIFEST.MF index ef5f7dfa4..ff22f1282 100644 --- a/com.avaloq.tools.ddk.xtext.format.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.format.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.format.ui Bundle-Vendor: Avaloq Group AG -Bundle-Version: 15.3.0.v20250519-1223-REL +Bundle-Version: 15.4.0.qualifier Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.format.ui;singleton:=true Bundle-ActivationPolicy: lazy Require-Bundle: com.avaloq.tools.ddk.xtext.format;visibility:=reexport, diff --git a/com.avaloq.tools.ddk.xtext.format.ui/pom.xml b/com.avaloq.tools.ddk.xtext.format.ui/pom.xml index 2f8272b9f..871f5e43c 100644 --- a/com.avaloq.tools.ddk.xtext.format.ui/pom.xml +++ b/com.avaloq.tools.ddk.xtext.format.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0.v20250519-1223-REL + 15.4.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.format/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.format/META-INF/MANIFEST.MF index 6bcb29014..9574d906a 100644 --- a/com.avaloq.tools.ddk.xtext.format/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.format/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.format Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.format;singleton:=true -Bundle-Version: 15.3.0.v20250519-1223-REL +Bundle-Version: 15.4.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.format/pom.xml b/com.avaloq.tools.ddk.xtext.format/pom.xml index fe68df482..273253555 100644 --- a/com.avaloq.tools.ddk.xtext.format/pom.xml +++ b/com.avaloq.tools.ddk.xtext.format/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0.v20250519-1223-REL + 15.4.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.generator.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.generator.test/META-INF/MANIFEST.MF index 13d3b6d88..2eb04d417 100644 --- a/com.avaloq.tools.ddk.xtext.generator.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.generator.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.generator.test Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.generator.test;singleton:=true -Bundle-Version: 15.3.0.v20250519-1223-REL +Bundle-Version: 15.4.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.generator.test/pom.xml b/com.avaloq.tools.ddk.xtext.generator.test/pom.xml index c83d2391c..762f215c8 100644 --- a/com.avaloq.tools.ddk.xtext.generator.test/pom.xml +++ b/com.avaloq.tools.ddk.xtext.generator.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0.v20250519-1223-REL + 15.4.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.xtext.generator/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.generator/META-INF/MANIFEST.MF index 7e0b3959a..c71b4057e 100644 --- a/com.avaloq.tools.ddk.xtext.generator/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.generator/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.generator Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.generator;singleton:=true -Bundle-Version: 15.3.0.v20250519-1223-REL +Bundle-Version: 15.4.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Require-Bundle: org.eclipse.jface, diff --git a/com.avaloq.tools.ddk.xtext.generator/pom.xml b/com.avaloq.tools.ddk.xtext.generator/pom.xml index 0d8276b94..12c90b15f 100644 --- a/com.avaloq.tools.ddk.xtext.generator/pom.xml +++ b/com.avaloq.tools.ddk.xtext.generator/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0.v20250519-1223-REL + 15.4.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.ide/META-INF/MANIFEST.MF index 2410775ba..c767d7593 100644 --- a/com.avaloq.tools.ddk.xtext.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.ide/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.ide Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.ide;singleton:=true -Bundle-Version: 15.3.0.v20250519-1223-REL +Bundle-Version: 15.4.0.qualifier Bundle-Vendor: Avaloq Group AG Require-Bundle: org.eclipse.lsp4j, org.eclipse.xtext.ide, diff --git a/com.avaloq.tools.ddk.xtext.ide/pom.xml b/com.avaloq.tools.ddk.xtext.ide/pom.xml index 3654e1a72..00f05f71a 100644 --- a/com.avaloq.tools.ddk.xtext.ide/pom.xml +++ b/com.avaloq.tools.ddk.xtext.ide/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0.v20250519-1223-REL + 15.4.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.scope.generator/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.scope.generator/META-INF/MANIFEST.MF index 03d5cccc4..5a5fe0eff 100644 --- a/com.avaloq.tools.ddk.xtext.scope.generator/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.scope.generator/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.scope.generator Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.scope.generator;singleton:=true -Bundle-Version: 15.3.0.v20250519-1223-REL +Bundle-Version: 15.4.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Require-Bundle: com.avaloq.tools.ddk.xtext.scope;visibility:=reexport, diff --git a/com.avaloq.tools.ddk.xtext.scope.generator/pom.xml b/com.avaloq.tools.ddk.xtext.scope.generator/pom.xml index 73adee888..b242be19d 100644 --- a/com.avaloq.tools.ddk.xtext.scope.generator/pom.xml +++ b/com.avaloq.tools.ddk.xtext.scope.generator/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0.v20250519-1223-REL + 15.4.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.scope.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.scope.ide/META-INF/MANIFEST.MF index 23da54317..400163404 100644 --- a/com.avaloq.tools.ddk.xtext.scope.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.scope.ide/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.scope.ide Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.scope.ide;singleton:=true -Bundle-Version: 15.3.0.v20250519-1223-REL +Bundle-Version: 15.4.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.scope.ide/pom.xml b/com.avaloq.tools.ddk.xtext.scope.ide/pom.xml index 15e147e40..a6a98a997 100644 --- a/com.avaloq.tools.ddk.xtext.scope.ide/pom.xml +++ b/com.avaloq.tools.ddk.xtext.scope.ide/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0.v20250519-1223-REL + 15.4.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.scope.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.scope.ui/META-INF/MANIFEST.MF index 6e291ad5b..c21353349 100644 --- a/com.avaloq.tools.ddk.xtext.scope.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.scope.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.scope.ui Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.scope.ui;singleton:=true -Bundle-Version: 15.3.0.v20250519-1223-REL +Bundle-Version: 15.4.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-Activator: com.avaloq.tools.ddk.xtext.scope.ui.internal.ScopeActivator diff --git a/com.avaloq.tools.ddk.xtext.scope.ui/pom.xml b/com.avaloq.tools.ddk.xtext.scope.ui/pom.xml index 9c38b15ef..0ff8708ba 100644 --- a/com.avaloq.tools.ddk.xtext.scope.ui/pom.xml +++ b/com.avaloq.tools.ddk.xtext.scope.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0.v20250519-1223-REL + 15.4.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.scope/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.scope/META-INF/MANIFEST.MF index 681e42389..104c70dea 100644 --- a/com.avaloq.tools.ddk.xtext.scope/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.scope/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.scope Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.scope;singleton:=true -Bundle-Version: 15.3.0.v20250519-1223-REL +Bundle-Version: 15.4.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Require-Bundle: org.eclipse.xtext, diff --git a/com.avaloq.tools.ddk.xtext.scope/pom.xml b/com.avaloq.tools.ddk.xtext.scope/pom.xml index 8d36caaa7..08d00dc87 100644 --- a/com.avaloq.tools.ddk.xtext.scope/pom.xml +++ b/com.avaloq.tools.ddk.xtext.scope/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0.v20250519-1223-REL + 15.4.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.test.core/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.test.core/META-INF/MANIFEST.MF index 22e36c4f0..37b25d554 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.test.core/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.test.core Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.test.core;singleton:=true -Bundle-Version: 15.3.0.v20250519-1223-REL +Bundle-Version: 15.4.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Require-Bundle: com.avaloq.tools.ddk.xtext, diff --git a/com.avaloq.tools.ddk.xtext.test.core/pom.xml b/com.avaloq.tools.ddk.xtext.test.core/pom.xml index 4eb644c6a..7f3e7f969 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/pom.xml +++ b/com.avaloq.tools.ddk.xtext.test.core/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0.v20250519-1223-REL + 15.4.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.xtext.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.test/META-INF/MANIFEST.MF index b717a86f2..240397e18 100644 --- a/com.avaloq.tools.ddk.xtext.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.test Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.test;singleton:=true -Bundle-Version: 15.3.0.v20250519-1223-REL +Bundle-Version: 15.4.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.test/pom.xml b/com.avaloq.tools.ddk.xtext.test/pom.xml index f7f27872d..dee97325f 100644 --- a/com.avaloq.tools.ddk.xtext.test/pom.xml +++ b/com.avaloq.tools.ddk.xtext.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0.v20250519-1223-REL + 15.4.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.xtext.ui.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.ui.test/META-INF/MANIFEST.MF index 175f295a0..87851d8d1 100644 --- a/com.avaloq.tools.ddk.xtext.ui.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.ui.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.ui.test Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.ui.test;singleton:=true -Bundle-Version: 15.3.0.v20250519-1223-REL +Bundle-Version: 15.4.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Require-Bundle: org.eclipse.xtext.ui, diff --git a/com.avaloq.tools.ddk.xtext.ui.test/pom.xml b/com.avaloq.tools.ddk.xtext.ui.test/pom.xml index edef37931..1fb64017d 100644 --- a/com.avaloq.tools.ddk.xtext.ui.test/pom.xml +++ b/com.avaloq.tools.ddk.xtext.ui.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0.v20250519-1223-REL + 15.4.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.xtext.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.ui/META-INF/MANIFEST.MF index b4beaf277..5da1607ee 100644 --- a/com.avaloq.tools.ddk.xtext.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.ui Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.ui;singleton:=true -Bundle-Version: 15.3.0.v20250519-1223-REL +Bundle-Version: 15.4.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.ui/pom.xml b/com.avaloq.tools.ddk.xtext.ui/pom.xml index ca3d12e1c..e25fa6615 100644 --- a/com.avaloq.tools.ddk.xtext.ui/pom.xml +++ b/com.avaloq.tools.ddk.xtext.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0.v20250519-1223-REL + 15.4.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.valid.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.valid.ide/META-INF/MANIFEST.MF index 93f5e84c3..4fed02229 100644 --- a/com.avaloq.tools.ddk.xtext.valid.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.valid.ide/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.valid.ide Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.valid.ide;singleton:=true -Bundle-Version: 15.3.0.v20250519-1223-REL +Bundle-Version: 15.4.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.valid.ide/pom.xml b/com.avaloq.tools.ddk.xtext.valid.ide/pom.xml index 492021082..67cb8284b 100644 --- a/com.avaloq.tools.ddk.xtext.valid.ide/pom.xml +++ b/com.avaloq.tools.ddk.xtext.valid.ide/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0.v20250519-1223-REL + 15.4.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.valid.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.valid.ui/META-INF/MANIFEST.MF index edd38f999..7ca6584a2 100644 --- a/com.avaloq.tools.ddk.xtext.valid.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.valid.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.valid.ui Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.valid.ui;singleton:=true -Bundle-Version: 15.3.0.v20250519-1223-REL +Bundle-Version: 15.4.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.valid.ui/pom.xml b/com.avaloq.tools.ddk.xtext.valid.ui/pom.xml index 8c3e5b35f..eb84f0364 100644 --- a/com.avaloq.tools.ddk.xtext.valid.ui/pom.xml +++ b/com.avaloq.tools.ddk.xtext.valid.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0.v20250519-1223-REL + 15.4.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.xtext.valid/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.valid/META-INF/MANIFEST.MF index d089b1386..db0e5b047 100644 --- a/com.avaloq.tools.ddk.xtext.valid/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.valid/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.valid Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.valid;singleton:=true -Bundle-Version: 15.3.0.v20250519-1223-REL +Bundle-Version: 15.4.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.valid/pom.xml b/com.avaloq.tools.ddk.xtext.valid/pom.xml index e0241f6a7..93e1e1ecc 100644 --- a/com.avaloq.tools.ddk.xtext.valid/pom.xml +++ b/com.avaloq.tools.ddk.xtext.valid/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0.v20250519-1223-REL + 15.4.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.xtext/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext/META-INF/MANIFEST.MF index e3e2ce8af..376e4eb33 100644 --- a/com.avaloq.tools.ddk.xtext/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext Bundle-SymbolicName: com.avaloq.tools.ddk.xtext;singleton:=true -Bundle-Version: 15.3.0.v20250519-1223-REL +Bundle-Version: 15.4.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext/pom.xml b/com.avaloq.tools.ddk.xtext/pom.xml index 98f57620c..b5922bf30 100644 --- a/com.avaloq.tools.ddk.xtext/pom.xml +++ b/com.avaloq.tools.ddk.xtext/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0.v20250519-1223-REL + 15.4.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk/META-INF/MANIFEST.MF index ac34d7fc5..3a7cbb409 100644 --- a/com.avaloq.tools.ddk/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk Bundle-SymbolicName: com.avaloq.tools.ddk;singleton:=true -Bundle-Version: 15.3.0.v20250519-1223-REL +Bundle-Version: 15.4.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk/pom.xml b/com.avaloq.tools.ddk/pom.xml index 37f266349..f1e6daf12 100644 --- a/com.avaloq.tools.ddk/pom.xml +++ b/com.avaloq.tools.ddk/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0.v20250519-1223-REL + 15.4.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/ddk-parent/pom.xml b/ddk-parent/pom.xml index f041ded31..59e45ca65 100644 --- a/ddk-parent/pom.xml +++ b/ddk-parent/pom.xml @@ -4,7 +4,7 @@ com.avaloq.tools.ddk ddk-parent - 15.3.0.v20250519-1223-REL + 15.4.0-SNAPSHOT pom diff --git a/ddk-repository/category.xml b/ddk-repository/category.xml index 3b8796ac1..f61fc442a 100644 --- a/ddk-repository/category.xml +++ b/ddk-repository/category.xml @@ -1,15 +1,15 @@ - + - + - + - + diff --git a/ddk-repository/pom.xml b/ddk-repository/pom.xml index 5cc220214..56726d306 100644 --- a/ddk-repository/pom.xml +++ b/ddk-repository/pom.xml @@ -4,7 +4,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0.v20250519-1223-REL + 15.4.0-SNAPSHOT ../ddk-parent diff --git a/ddk-target/pom.xml b/ddk-target/pom.xml index 5bab8f902..8d080f884 100644 --- a/ddk-target/pom.xml +++ b/ddk-target/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.3.0.v20250519-1223-REL + 15.4.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk From d87a9bb87956a098e044fe7f6d6c33d504039ee6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 26 May 2025 13:08:12 +0000 Subject: [PATCH 12/57] chore(deps): bump tycho.version from 4.0.12 to 4.0.13 in /ddk-parent Bumps `tycho.version` from 4.0.12 to 4.0.13. Updates `org.eclipse.tycho:tycho-maven-plugin` from 4.0.12 to 4.0.13 - [Release notes](https://github.com/eclipse-tycho/tycho/releases) - [Changelog](https://github.com/eclipse-tycho/tycho/blob/tycho-4.0.13/RELEASE_NOTES.md) - [Commits](https://github.com/eclipse-tycho/tycho/compare/tycho-4.0.12...tycho-4.0.13) Updates `org.eclipse.tycho:target-platform-configuration` from 4.0.12 to 4.0.13 - [Release notes](https://github.com/eclipse-tycho/tycho/releases) - [Changelog](https://github.com/eclipse-tycho/tycho/blob/tycho-4.0.13/RELEASE_NOTES.md) - [Commits](https://github.com/eclipse-tycho/tycho/compare/tycho-4.0.12...tycho-4.0.13) Updates `org.eclipse.tycho:tycho-compiler-plugin` from 4.0.12 to 4.0.13 - [Release notes](https://github.com/eclipse-tycho/tycho/releases) - [Changelog](https://github.com/eclipse-tycho/tycho/blob/tycho-4.0.13/RELEASE_NOTES.md) - [Commits](https://github.com/eclipse-tycho/tycho/compare/tycho-4.0.12...tycho-4.0.13) Updates `org.eclipse.tycho:tycho-packaging-plugin` from 4.0.12 to 4.0.13 - [Release notes](https://github.com/eclipse-tycho/tycho/releases) - [Changelog](https://github.com/eclipse-tycho/tycho/blob/tycho-4.0.13/RELEASE_NOTES.md) - [Commits](https://github.com/eclipse-tycho/tycho/compare/tycho-4.0.12...tycho-4.0.13) Updates `org.eclipse.tycho:tycho-surefire-plugin` from 4.0.12 to 4.0.13 Updates `org.eclipse.tycho:tycho-source-plugin` from 4.0.12 to 4.0.13 - [Release notes](https://github.com/eclipse-tycho/tycho/releases) - [Changelog](https://github.com/eclipse-tycho/tycho/blob/tycho-4.0.13/RELEASE_NOTES.md) - [Commits](https://github.com/eclipse-tycho/tycho/compare/tycho-4.0.12...tycho-4.0.13) Updates `org.eclipse.tycho:tycho-versions-plugin` from 4.0.12 to 4.0.13 - [Release notes](https://github.com/eclipse-tycho/tycho/releases) - [Changelog](https://github.com/eclipse-tycho/tycho/blob/tycho-4.0.13/RELEASE_NOTES.md) - [Commits](https://github.com/eclipse-tycho/tycho/compare/tycho-4.0.12...tycho-4.0.13) --- updated-dependencies: - dependency-name: org.eclipse.tycho:tycho-maven-plugin dependency-version: 4.0.13 dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.tycho:target-platform-configuration dependency-version: 4.0.13 dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.tycho:tycho-compiler-plugin dependency-version: 4.0.13 dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.tycho:tycho-packaging-plugin dependency-version: 4.0.13 dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.tycho:tycho-surefire-plugin dependency-version: 4.0.13 dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.tycho:tycho-source-plugin dependency-version: 4.0.13 dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.eclipse.tycho:tycho-versions-plugin dependency-version: 4.0.13 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- ddk-parent/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ddk-parent/pom.xml b/ddk-parent/pom.xml index 59e45ca65..a8795c3b1 100644 --- a/ddk-parent/pom.xml +++ b/ddk-parent/pom.xml @@ -54,7 +54,7 @@ 4.9.3 3.26.0 7.13.0 - 4.0.12 + 4.0.13 2.38.0 From 9846e52dbc0d4b22d0dbe1c05bd2d086619e755a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 26 May 2025 13:08:20 +0000 Subject: [PATCH 13/57] chore(deps): bump com.puppycrawl.tools:checkstyle in /ddk-parent Bumps [com.puppycrawl.tools:checkstyle](https://github.com/checkstyle/checkstyle) from 10.23.1 to 10.24.0. - [Release notes](https://github.com/checkstyle/checkstyle/releases) - [Commits](https://github.com/checkstyle/checkstyle/compare/checkstyle-10.23.1...checkstyle-10.24.0) --- updated-dependencies: - dependency-name: com.puppycrawl.tools:checkstyle dependency-version: 10.24.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- ddk-parent/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ddk-parent/pom.xml b/ddk-parent/pom.xml index 59e45ca65..a89cf6295 100644 --- a/ddk-parent/pom.xml +++ b/ddk-parent/pom.xml @@ -47,7 +47,7 @@ 3.6.0 - 10.23.1 + 10.24.0 3.4.1 3.1.4 4.9.3.0 From 2025d7584f1ee2a9e5aff796d606806cd9a07273 Mon Sep 17 00:00:00 2001 From: Fredi Pfister Date: Wed, 28 May 2025 13:28:05 +0200 Subject: [PATCH 14/57] chore: improve thread safety of cat.ddk.caching.MapCache The MapCache class implements the java.util.Map interface, but uses the default implementation of the interface for several methods (e.g. computeIfAbsent). These default implementations are not thread safe, therefore we implement all java.util.Map methods in the class itself. --- .../avaloq/tools/ddk/caching/MapCache.java | 53 +++++++++++++++++++ 1 file changed, 53 insertions(+) diff --git a/com.avaloq.tools.ddk/src/com/avaloq/tools/ddk/caching/MapCache.java b/com.avaloq.tools.ddk/src/com/avaloq/tools/ddk/caching/MapCache.java index acf8e041b..7c6ac704f 100644 --- a/com.avaloq.tools.ddk/src/com/avaloq/tools/ddk/caching/MapCache.java +++ b/com.avaloq.tools.ddk/src/com/avaloq/tools/ddk/caching/MapCache.java @@ -13,6 +13,9 @@ import java.util.Collection; import java.util.Map; import java.util.Set; +import java.util.function.BiConsumer; +import java.util.function.BiFunction; +import java.util.function.Function; import com.google.common.cache.Cache; import com.google.common.cache.CacheBuilder; @@ -166,4 +169,54 @@ public Set> entrySet() { return backend.asMap().entrySet(); } + @Override + public V computeIfAbsent(final K key, final Function mappingFunction) { + return backend.asMap().computeIfAbsent(key, mappingFunction); + } + + @Override + public V getOrDefault(final Object key, final V defaultValue) { + return backend.asMap().getOrDefault(key, defaultValue); + } + + @Override + public void forEach(final BiConsumer action) { + backend.asMap().forEach(action); + } + + @Override + public void replaceAll(final BiFunction function) { + backend.asMap().replaceAll(function); + } + + @Override + public boolean remove(final Object key, final Object value) { + return backend.asMap().remove(key, value); + } + + @Override + public boolean replace(final K key, final V oldValue, final V newValue) { + return backend.asMap().replace(key, oldValue, newValue); + } + + @Override + public V replace(final K key, final V value) { + return backend.asMap().replace(key, value); + } + + @Override + public V computeIfPresent(final K key, final BiFunction remappingFunction) { + return backend.asMap().computeIfPresent(key, remappingFunction); + } + + @Override + public V compute(final K key, final BiFunction remappingFunction) { + return backend.asMap().compute(key, remappingFunction); + } + + @Override + public V merge(final K key, final V value, final BiFunction remappingFunction) { + return backend.asMap().merge(key, value, remappingFunction); + } + } From 6ade92859b0d18ce15f7e494929067be03046560 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Jun 2025 13:20:50 +0000 Subject: [PATCH 15/57] chore(deps): bump org.apache.maven.plugins:maven-clean-plugin Bumps [org.apache.maven.plugins:maven-clean-plugin](https://github.com/apache/maven-clean-plugin) from 3.4.1 to 3.5.0. - [Release notes](https://github.com/apache/maven-clean-plugin/releases) - [Commits](https://github.com/apache/maven-clean-plugin/compare/maven-clean-plugin-3.4.1...maven-clean-plugin-3.5.0) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-clean-plugin dependency-version: 3.5.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- ddk-parent/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ddk-parent/pom.xml b/ddk-parent/pom.xml index b0b1dbae5..3c815d862 100644 --- a/ddk-parent/pom.xml +++ b/ddk-parent/pom.xml @@ -48,7 +48,7 @@ 3.6.0 10.24.0 - 3.4.1 + 3.5.0 3.1.4 4.9.3.0 4.9.3 From 0e5d0847414b2d21129f73534d13617c6afca4e7 Mon Sep 17 00:00:00 2001 From: Fredi Pfister Date: Thu, 5 Jun 2025 14:51:43 +0200 Subject: [PATCH 16/57] fix: another thread safety issue in MapCache In 2025d7584f1ee2a9e5aff796d606806cd9a07273, we improved the thread safety of the MapCache class by implementing all methods of the Map interface in the class itself, instead of inheriting the (non-thread-safe) default implementations of the interface. On closer inspection, it turns out that the putIfAbsent method was already implemented, but in a non-thread-safe way. --- .../src/com/avaloq/tools/ddk/caching/MapCache.java | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/com.avaloq.tools.ddk/src/com/avaloq/tools/ddk/caching/MapCache.java b/com.avaloq.tools.ddk/src/com/avaloq/tools/ddk/caching/MapCache.java index 7c6ac704f..6802734cd 100644 --- a/com.avaloq.tools.ddk/src/com/avaloq/tools/ddk/caching/MapCache.java +++ b/com.avaloq.tools.ddk/src/com/avaloq/tools/ddk/caching/MapCache.java @@ -107,11 +107,7 @@ public void clear() { @Override public V putIfAbsent(final K key, final V value) { - V oldValue = get(key); - if (oldValue == null) { - oldValue = put(key, value); - } - return oldValue; + return backend.asMap().putIfAbsent(key, value); } @Override From fa4d2884f67d084f9a6707c5af38b02e00aebaa2 Mon Sep 17 00:00:00 2001 From: Jenkins Date: Tue, 10 Jun 2025 11:34:59 +0200 Subject: [PATCH 17/57] Release 15.4.0.v20250610-1134-REL --- com.avaloq.tools.ddk.check.core.test/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.core.test/pom.xml | 2 +- com.avaloq.tools.ddk.check.core/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.core/pom.xml | 2 +- com.avaloq.tools.ddk.check.ide/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.ide/pom.xml | 2 +- com.avaloq.tools.ddk.check.lib/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.lib/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.runtime.core.test/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.runtime.core/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.runtime.ui/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.test.runtime.tests/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.test.runtime.ui/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.test.runtime/pom.xml | 2 +- com.avaloq.tools.ddk.check.ui.test/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.ui.test/pom.xml | 2 +- com.avaloq.tools.ddk.check.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.ui/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.checkcfg.core.test/pom.xml | 2 +- com.avaloq.tools.ddk.checkcfg.core/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.checkcfg.core/pom.xml | 2 +- com.avaloq.tools.ddk.checkcfg.ide/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.checkcfg.ide/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.checkcfg.ui.test/pom.xml | 2 +- com.avaloq.tools.ddk.checkcfg.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.checkcfg.ui/pom.xml | 2 +- com.avaloq.tools.ddk.feature/feature.xml | 2 +- com.avaloq.tools.ddk.feature/pom.xml | 2 +- com.avaloq.tools.ddk.runtime.feature/feature.xml | 2 +- com.avaloq.tools.ddk.runtime.feature/pom.xml | 2 +- com.avaloq.tools.ddk.runtime.source.feature/feature.xml | 2 +- com.avaloq.tools.ddk.runtime.source.feature/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.sample.helloworld.ide/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.sample.helloworld.ui.test/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.sample.helloworld.ui/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.sample.helloworld/pom.xml | 2 +- com.avaloq.tools.ddk.source.feature/feature.xml | 2 +- com.avaloq.tools.ddk.source.feature/pom.xml | 2 +- com.avaloq.tools.ddk.test.core/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.test.core/pom.xml | 2 +- com.avaloq.tools.ddk.test.ui.test/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.test.ui.test/pom.xml | 2 +- com.avaloq.tools.ddk.test.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.test.ui/pom.xml | 2 +- com.avaloq.tools.ddk.typesystem.test/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.typesystem.test/pom.xml | 2 +- com.avaloq.tools.ddk.typesystem/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.typesystem/pom.xml | 2 +- com.avaloq.tools.ddk.workflow/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.workflow/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.builder.ui/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.builder/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.builder/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.check.generator/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.common.types.ui/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.common.types/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.common.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.common.ui/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.export.generator/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.export.ide/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.export.test/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.export.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.export.ui/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.export/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.export/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.expression.ide/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.expression.ui/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.expression/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.format.generator/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.format.ide/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.format.test/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.format.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.format.ui/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.format/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.format/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.generator.test/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.generator/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.generator/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.ide/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.ide/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.scope.generator/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.scope.ide/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.scope.ide/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.scope.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.scope.ui/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.scope/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.scope/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.test.core/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.test.core/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.test/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.test/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.ui.test/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.ui.test/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.ui/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.valid.ide/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.valid.ide/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.valid.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.valid.ui/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.valid/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.valid/pom.xml | 2 +- com.avaloq.tools.ddk.xtext/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext/pom.xml | 2 +- com.avaloq.tools.ddk/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk/pom.xml | 2 +- ddk-parent/pom.xml | 2 +- ddk-repository/category.xml | 8 ++++---- ddk-repository/pom.xml | 2 +- ddk-target/pom.xml | 2 +- 136 files changed, 139 insertions(+), 139 deletions(-) diff --git a/com.avaloq.tools.ddk.check.core.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.core.test/META-INF/MANIFEST.MF index 2418c414a..639fed9e4 100644 --- a/com.avaloq.tools.ddk.check.core.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.core.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.core.test Bundle-SymbolicName: com.avaloq.tools.ddk.check.core.test;singleton:=true -Bundle-Version: 15.4.0.qualifier +Bundle-Version: 15.4.0.v20250610-1134-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.check.core.test/pom.xml b/com.avaloq.tools.ddk.check.core.test/pom.xml index fedf9861d..951c3bd6e 100644 --- a/com.avaloq.tools.ddk.check.core.test/pom.xml +++ b/com.avaloq.tools.ddk.check.core.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0-SNAPSHOT + 15.4.0.v20250610-1134-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.check.core/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.core/META-INF/MANIFEST.MF index 61214a064..0762a64a7 100644 --- a/com.avaloq.tools.ddk.check.core/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.core/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.core Bundle-SymbolicName: com.avaloq.tools.ddk.check.core;singleton:=true -Bundle-Version: 15.4.0.qualifier +Bundle-Version: 15.4.0.v20250610-1134-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.check.core/pom.xml b/com.avaloq.tools.ddk.check.core/pom.xml index 53a60e60c..e9b73c4f5 100644 --- a/com.avaloq.tools.ddk.check.core/pom.xml +++ b/com.avaloq.tools.ddk.check.core/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0-SNAPSHOT + 15.4.0.v20250610-1134-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.check.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.ide/META-INF/MANIFEST.MF index 4ed244a2b..488e19d8d 100644 --- a/com.avaloq.tools.ddk.check.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.ide/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.ide Bundle-SymbolicName: com.avaloq.tools.ddk.check.ide;singleton:=true -Bundle-Version: 15.4.0.qualifier +Bundle-Version: 15.4.0.v20250610-1134-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.check.ide/pom.xml b/com.avaloq.tools.ddk.check.ide/pom.xml index dc5269caa..69c197514 100644 --- a/com.avaloq.tools.ddk.check.ide/pom.xml +++ b/com.avaloq.tools.ddk.check.ide/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0-SNAPSHOT + 15.4.0.v20250610-1134-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.check.lib/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.lib/META-INF/MANIFEST.MF index bcb12b0ea..c1b44b07c 100644 --- a/com.avaloq.tools.ddk.check.lib/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.lib/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.lib Bundle-SymbolicName: com.avaloq.tools.ddk.check.lib -Bundle-Version: 15.4.0.qualifier +Bundle-Version: 15.4.0.v20250610-1134-REL Bundle-Vendor: Avaloq Group AG Require-Bundle: org.eclipse.core.runtime, org.eclipse.xtext, diff --git a/com.avaloq.tools.ddk.check.lib/pom.xml b/com.avaloq.tools.ddk.check.lib/pom.xml index fcb17ced1..3e949eeef 100644 --- a/com.avaloq.tools.ddk.check.lib/pom.xml +++ b/com.avaloq.tools.ddk.check.lib/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0-SNAPSHOT + 15.4.0.v20250610-1134-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.check.runtime.core.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.runtime.core.test/META-INF/MANIFEST.MF index 6719e7158..8223eb65a 100644 --- a/com.avaloq.tools.ddk.check.runtime.core.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.runtime.core.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.runtime.core.test Bundle-SymbolicName: com.avaloq.tools.ddk.check.runtime.core.test;singleton:=true -Bundle-Version: 15.4.0.qualifier +Bundle-Version: 15.4.0.v20250610-1134-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Require-Bundle: org.eclipse.ui, diff --git a/com.avaloq.tools.ddk.check.runtime.core.test/pom.xml b/com.avaloq.tools.ddk.check.runtime.core.test/pom.xml index 0ca00d031..174352bf4 100644 --- a/com.avaloq.tools.ddk.check.runtime.core.test/pom.xml +++ b/com.avaloq.tools.ddk.check.runtime.core.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0-SNAPSHOT + 15.4.0.v20250610-1134-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.check.runtime.core/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.runtime.core/META-INF/MANIFEST.MF index 165df62a1..c509b5a82 100644 --- a/com.avaloq.tools.ddk.check.runtime.core/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.runtime.core/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.runtime.core Bundle-SymbolicName: com.avaloq.tools.ddk.check.runtime.core;singleton:=true -Bundle-Version: 15.4.0.qualifier +Bundle-Version: 15.4.0.v20250610-1134-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Require-Bundle: org.eclipse.core.resources, diff --git a/com.avaloq.tools.ddk.check.runtime.core/pom.xml b/com.avaloq.tools.ddk.check.runtime.core/pom.xml index 9e814c80b..74dfc90ea 100644 --- a/com.avaloq.tools.ddk.check.runtime.core/pom.xml +++ b/com.avaloq.tools.ddk.check.runtime.core/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0-SNAPSHOT + 15.4.0.v20250610-1134-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.check.runtime.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.runtime.ui/META-INF/MANIFEST.MF index eacfade08..d948cec49 100644 --- a/com.avaloq.tools.ddk.check.runtime.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.runtime.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.runtime.ui Bundle-SymbolicName: com.avaloq.tools.ddk.check.runtime.ui;singleton:=true -Bundle-Version: 15.4.0.qualifier +Bundle-Version: 15.4.0.v20250610-1134-REL Bundle-Activator: com.avaloq.tools.ddk.check.runtime.ui.internal.Activator Bundle-Vendor: Avaloq Group AG Require-Bundle: org.eclipse.ui, diff --git a/com.avaloq.tools.ddk.check.runtime.ui/pom.xml b/com.avaloq.tools.ddk.check.runtime.ui/pom.xml index d554fdb97..79c8c5808 100644 --- a/com.avaloq.tools.ddk.check.runtime.ui/pom.xml +++ b/com.avaloq.tools.ddk.check.runtime.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0-SNAPSHOT + 15.4.0.v20250610-1134-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.check.test.runtime.tests/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.test.runtime.tests/META-INF/MANIFEST.MF index 653b83264..b8e90525d 100644 --- a/com.avaloq.tools.ddk.check.test.runtime.tests/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.test.runtime.tests/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.test.runtime.tests Bundle-Vendor: Avaloq Group AG -Bundle-Version: 15.4.0.qualifier +Bundle-Version: 15.4.0.v20250610-1134-REL Bundle-SymbolicName: com.avaloq.tools.ddk.check.test.runtime.tests; singleton:=true Bundle-ActivationPolicy: lazy Require-Bundle: com.avaloq.tools.ddk.check.runtime.core, diff --git a/com.avaloq.tools.ddk.check.test.runtime.tests/pom.xml b/com.avaloq.tools.ddk.check.test.runtime.tests/pom.xml index 7d02ab806..e45234e76 100644 --- a/com.avaloq.tools.ddk.check.test.runtime.tests/pom.xml +++ b/com.avaloq.tools.ddk.check.test.runtime.tests/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0-SNAPSHOT + 15.4.0.v20250610-1134-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.check.test.runtime.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.test.runtime.ui/META-INF/MANIFEST.MF index 951cc17b4..c4dd526aa 100644 --- a/com.avaloq.tools.ddk.check.test.runtime.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.test.runtime.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.test.runtime.ui Bundle-Vendor: Avaloq Group AG -Bundle-Version: 15.4.0.qualifier +Bundle-Version: 15.4.0.v20250610-1134-REL Bundle-SymbolicName: com.avaloq.tools.ddk.check.test.runtime.ui; singleton:=true Bundle-ActivationPolicy: lazy Require-Bundle: com.avaloq.tools.ddk.check.test.runtime;visibility:=reexport, diff --git a/com.avaloq.tools.ddk.check.test.runtime.ui/pom.xml b/com.avaloq.tools.ddk.check.test.runtime.ui/pom.xml index f377acdc2..4dfff9e51 100644 --- a/com.avaloq.tools.ddk.check.test.runtime.ui/pom.xml +++ b/com.avaloq.tools.ddk.check.test.runtime.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0-SNAPSHOT + 15.4.0.v20250610-1134-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.check.test.runtime/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.test.runtime/META-INF/MANIFEST.MF index e7b71e9f7..d84bae74b 100644 --- a/com.avaloq.tools.ddk.check.test.runtime/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.test.runtime/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.test.runtime Bundle-Vendor: Avaloq Group AG -Bundle-Version: 15.4.0.qualifier +Bundle-Version: 15.4.0.v20250610-1134-REL Bundle-SymbolicName: com.avaloq.tools.ddk.check.test.runtime;singleton:=true Bundle-ActivationPolicy: lazy Require-Bundle: org.eclipse.xtext;visibility:=reexport, diff --git a/com.avaloq.tools.ddk.check.test.runtime/pom.xml b/com.avaloq.tools.ddk.check.test.runtime/pom.xml index 12bbc7e3a..9dd086c31 100644 --- a/com.avaloq.tools.ddk.check.test.runtime/pom.xml +++ b/com.avaloq.tools.ddk.check.test.runtime/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0-SNAPSHOT + 15.4.0.v20250610-1134-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.check.ui.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.ui.test/META-INF/MANIFEST.MF index 3678505c2..3acd6accc 100644 --- a/com.avaloq.tools.ddk.check.ui.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.ui.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.ui.test Bundle-SymbolicName: com.avaloq.tools.ddk.check.ui.test -Bundle-Version: 15.4.0.qualifier +Bundle-Version: 15.4.0.v20250610-1134-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Require-Bundle: org.junit, diff --git a/com.avaloq.tools.ddk.check.ui.test/pom.xml b/com.avaloq.tools.ddk.check.ui.test/pom.xml index 4ec5d1f96..81ed6c00c 100644 --- a/com.avaloq.tools.ddk.check.ui.test/pom.xml +++ b/com.avaloq.tools.ddk.check.ui.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0-SNAPSHOT + 15.4.0.v20250610-1134-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.check.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.ui/META-INF/MANIFEST.MF index ae59e53cc..70b8ca3d5 100644 --- a/com.avaloq.tools.ddk.check.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.ui Bundle-SymbolicName: com.avaloq.tools.ddk.check.ui;singleton:=true -Bundle-Version: 15.4.0.qualifier +Bundle-Version: 15.4.0.v20250610-1134-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-Activator: com.avaloq.tools.ddk.check.ui.internal.Activator diff --git a/com.avaloq.tools.ddk.check.ui/pom.xml b/com.avaloq.tools.ddk.check.ui/pom.xml index 6058cc8dc..53ccc6bae 100644 --- a/com.avaloq.tools.ddk.check.ui/pom.xml +++ b/com.avaloq.tools.ddk.check.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0-SNAPSHOT + 15.4.0.v20250610-1134-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.checkcfg.core.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.checkcfg.core.test/META-INF/MANIFEST.MF index a51d1f8b8..0244a7e8f 100644 --- a/com.avaloq.tools.ddk.checkcfg.core.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.checkcfg.core.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.checkcfg.core.test Bundle-Vendor: Avaloq Group AG -Bundle-Version: 15.4.0.qualifier +Bundle-Version: 15.4.0.v20250610-1134-REL Bundle-SymbolicName: com.avaloq.tools.ddk.checkcfg.core.test; singleton:=true Bundle-ActivationPolicy: lazy Require-Bundle: com.avaloq.tools.ddk.test.core, diff --git a/com.avaloq.tools.ddk.checkcfg.core.test/pom.xml b/com.avaloq.tools.ddk.checkcfg.core.test/pom.xml index a5fe738b7..0b3d1a9d2 100644 --- a/com.avaloq.tools.ddk.checkcfg.core.test/pom.xml +++ b/com.avaloq.tools.ddk.checkcfg.core.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0-SNAPSHOT + 15.4.0.v20250610-1134-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.checkcfg.core/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.checkcfg.core/META-INF/MANIFEST.MF index f921f1351..2c6d5852f 100644 --- a/com.avaloq.tools.ddk.checkcfg.core/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.checkcfg.core/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.checkcfg.core Bundle-Vendor: Avaloq Group AG -Bundle-Version: 15.4.0.qualifier +Bundle-Version: 15.4.0.v20250610-1134-REL Bundle-SymbolicName: com.avaloq.tools.ddk.checkcfg.core; singleton:=true Bundle-ActivationPolicy: lazy Bundle-RequiredExecutionEnvironment: JavaSE-17 diff --git a/com.avaloq.tools.ddk.checkcfg.core/pom.xml b/com.avaloq.tools.ddk.checkcfg.core/pom.xml index a23948b4d..07650e971 100644 --- a/com.avaloq.tools.ddk.checkcfg.core/pom.xml +++ b/com.avaloq.tools.ddk.checkcfg.core/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0-SNAPSHOT + 15.4.0.v20250610-1134-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.checkcfg.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.checkcfg.ide/META-INF/MANIFEST.MF index 181b9f1aa..e868c68a8 100644 --- a/com.avaloq.tools.ddk.checkcfg.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.checkcfg.ide/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.checkcfg.ide Bundle-SymbolicName: com.avaloq.tools.ddk.checkcfg.ide;singleton:=true -Bundle-Version: 15.4.0.qualifier +Bundle-Version: 15.4.0.v20250610-1134-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.checkcfg.ide/pom.xml b/com.avaloq.tools.ddk.checkcfg.ide/pom.xml index 959bc726f..f1cb438a6 100644 --- a/com.avaloq.tools.ddk.checkcfg.ide/pom.xml +++ b/com.avaloq.tools.ddk.checkcfg.ide/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0-SNAPSHOT + 15.4.0.v20250610-1134-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.checkcfg.ui.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.checkcfg.ui.test/META-INF/MANIFEST.MF index 2f7446aa1..108b5cb80 100644 --- a/com.avaloq.tools.ddk.checkcfg.ui.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.checkcfg.ui.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.checkcfg.ui.test Bundle-SymbolicName: com.avaloq.tools.ddk.checkcfg.ui.test -Bundle-Version: 15.4.0.qualifier +Bundle-Version: 15.4.0.v20250610-1134-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Export-Package: com.avaloq.tools.ddk.checkcfg.ui.test diff --git a/com.avaloq.tools.ddk.checkcfg.ui.test/pom.xml b/com.avaloq.tools.ddk.checkcfg.ui.test/pom.xml index 5b2d7aa9d..f499f850c 100644 --- a/com.avaloq.tools.ddk.checkcfg.ui.test/pom.xml +++ b/com.avaloq.tools.ddk.checkcfg.ui.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0-SNAPSHOT + 15.4.0.v20250610-1134-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.checkcfg.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.checkcfg.ui/META-INF/MANIFEST.MF index 487f11639..63c13390b 100644 --- a/com.avaloq.tools.ddk.checkcfg.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.checkcfg.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.checkcfg.ui Bundle-SymbolicName: com.avaloq.tools.ddk.checkcfg.ui;singleton:=true -Bundle-Version: 15.4.0.qualifier +Bundle-Version: 15.4.0.v20250610-1134-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-Activator: com.avaloq.tools.ddk.checkcfg.ui.internal.Activator diff --git a/com.avaloq.tools.ddk.checkcfg.ui/pom.xml b/com.avaloq.tools.ddk.checkcfg.ui/pom.xml index c3b96a8bc..a9a9a953c 100644 --- a/com.avaloq.tools.ddk.checkcfg.ui/pom.xml +++ b/com.avaloq.tools.ddk.checkcfg.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0-SNAPSHOT + 15.4.0.v20250610-1134-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.feature/feature.xml b/com.avaloq.tools.ddk.feature/feature.xml index 712d8f241..d5d2b6742 100644 --- a/com.avaloq.tools.ddk.feature/feature.xml +++ b/com.avaloq.tools.ddk.feature/feature.xml @@ -2,7 +2,7 @@ diff --git a/com.avaloq.tools.ddk.feature/pom.xml b/com.avaloq.tools.ddk.feature/pom.xml index a5449579c..9ec187131 100644 --- a/com.avaloq.tools.ddk.feature/pom.xml +++ b/com.avaloq.tools.ddk.feature/pom.xml @@ -4,7 +4,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0-SNAPSHOT + 15.4.0.v20250610-1134-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.runtime.feature/feature.xml b/com.avaloq.tools.ddk.runtime.feature/feature.xml index 635e99be4..f3fb72fd1 100644 --- a/com.avaloq.tools.ddk.runtime.feature/feature.xml +++ b/com.avaloq.tools.ddk.runtime.feature/feature.xml @@ -2,7 +2,7 @@ diff --git a/com.avaloq.tools.ddk.runtime.feature/pom.xml b/com.avaloq.tools.ddk.runtime.feature/pom.xml index 008a6ac3a..82d35b01b 100644 --- a/com.avaloq.tools.ddk.runtime.feature/pom.xml +++ b/com.avaloq.tools.ddk.runtime.feature/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0-SNAPSHOT + 15.4.0.v20250610-1134-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.runtime.source.feature/feature.xml b/com.avaloq.tools.ddk.runtime.source.feature/feature.xml index 003ed7948..8f20305c6 100644 --- a/com.avaloq.tools.ddk.runtime.source.feature/feature.xml +++ b/com.avaloq.tools.ddk.runtime.source.feature/feature.xml @@ -2,7 +2,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0-SNAPSHOT + 15.4.0.v20250610-1134-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.sample.helloworld.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.sample.helloworld.ide/META-INF/MANIFEST.MF index 6125d90ac..b99b5591d 100644 --- a/com.avaloq.tools.ddk.sample.helloworld.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.sample.helloworld.ide/META-INF/MANIFEST.MF @@ -3,7 +3,7 @@ Automatic-Module-Name: com.avaloq.tools.ddk.sample.helloworld.ide Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.sample.helloworld.ide Bundle-Vendor: Avaloq Group AG -Bundle-Version: 15.4.0.qualifier +Bundle-Version: 15.4.0.v20250610-1134-REL Bundle-SymbolicName: com.avaloq.tools.ddk.sample.helloworld.ide;singleton:=true Bundle-ActivationPolicy: lazy Require-Bundle: com.avaloq.tools.ddk.sample.helloworld, diff --git a/com.avaloq.tools.ddk.sample.helloworld.ide/pom.xml b/com.avaloq.tools.ddk.sample.helloworld.ide/pom.xml index e16562bd4..93b6170ba 100644 --- a/com.avaloq.tools.ddk.sample.helloworld.ide/pom.xml +++ b/com.avaloq.tools.ddk.sample.helloworld.ide/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0-SNAPSHOT + 15.4.0.v20250610-1134-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.sample.helloworld.ui.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.sample.helloworld.ui.test/META-INF/MANIFEST.MF index c90ba3e20..175753066 100644 --- a/com.avaloq.tools.ddk.sample.helloworld.ui.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.sample.helloworld.ui.test/META-INF/MANIFEST.MF @@ -3,7 +3,7 @@ Automatic-Module-Name: com.avaloq.tools.ddk.sample.helloworld.ui.test Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.sample.helloworld.ui.test Bundle-Vendor: Avaloq Group AG -Bundle-Version: 15.4.0.qualifier +Bundle-Version: 15.4.0.v20250610-1134-REL Bundle-SymbolicName: com.avaloq.tools.ddk.sample.helloworld.ui.test;singleton:=true Bundle-ActivationPolicy: lazy Require-Bundle: com.avaloq.tools.ddk.sample.helloworld, diff --git a/com.avaloq.tools.ddk.sample.helloworld.ui.test/pom.xml b/com.avaloq.tools.ddk.sample.helloworld.ui.test/pom.xml index f2f92a26d..980d029ec 100644 --- a/com.avaloq.tools.ddk.sample.helloworld.ui.test/pom.xml +++ b/com.avaloq.tools.ddk.sample.helloworld.ui.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0-SNAPSHOT + 15.4.0.v20250610-1134-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.sample.helloworld.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.sample.helloworld.ui/META-INF/MANIFEST.MF index 0e92db711..0a8be75a2 100644 --- a/com.avaloq.tools.ddk.sample.helloworld.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.sample.helloworld.ui/META-INF/MANIFEST.MF @@ -3,7 +3,7 @@ Automatic-Module-Name: com.avaloq.tools.ddk.sample.helloworld.ui Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.sample.helloworld.ui Bundle-Vendor: Avaloq Group AG -Bundle-Version: 15.4.0.qualifier +Bundle-Version: 15.4.0.v20250610-1134-REL Bundle-SymbolicName: com.avaloq.tools.ddk.sample.helloworld.ui;singleton:=true Bundle-ActivationPolicy: lazy Require-Bundle: com.avaloq.tools.ddk.sample.helloworld, diff --git a/com.avaloq.tools.ddk.sample.helloworld.ui/pom.xml b/com.avaloq.tools.ddk.sample.helloworld.ui/pom.xml index 1413c780e..7b9a3a581 100644 --- a/com.avaloq.tools.ddk.sample.helloworld.ui/pom.xml +++ b/com.avaloq.tools.ddk.sample.helloworld.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0-SNAPSHOT + 15.4.0.v20250610-1134-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.sample.helloworld/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.sample.helloworld/META-INF/MANIFEST.MF index b68ce3580..0495647f0 100644 --- a/com.avaloq.tools.ddk.sample.helloworld/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.sample.helloworld/META-INF/MANIFEST.MF @@ -3,7 +3,7 @@ Automatic-Module-Name: com.avaloq.tools.ddk.sample.helloworld Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.sample.helloworld Bundle-Vendor: Avaloq Group AG -Bundle-Version: 15.4.0.qualifier +Bundle-Version: 15.4.0.v20250610-1134-REL Bundle-SymbolicName: com.avaloq.tools.ddk.sample.helloworld;singleton:=true Bundle-ActivationPolicy: lazy Require-Bundle: org.eclipse.xtext, diff --git a/com.avaloq.tools.ddk.sample.helloworld/pom.xml b/com.avaloq.tools.ddk.sample.helloworld/pom.xml index 0a9f8962f..4eecd8bd1 100644 --- a/com.avaloq.tools.ddk.sample.helloworld/pom.xml +++ b/com.avaloq.tools.ddk.sample.helloworld/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0-SNAPSHOT + 15.4.0.v20250610-1134-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.source.feature/feature.xml b/com.avaloq.tools.ddk.source.feature/feature.xml index b8ed97b69..b5226bf5e 100644 --- a/com.avaloq.tools.ddk.source.feature/feature.xml +++ b/com.avaloq.tools.ddk.source.feature/feature.xml @@ -2,7 +2,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0-SNAPSHOT + 15.4.0.v20250610-1134-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.test.core/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.test.core/META-INF/MANIFEST.MF index 0113893cb..1e80001c2 100644 --- a/com.avaloq.tools.ddk.test.core/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.test.core/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.test.core Bundle-SymbolicName: com.avaloq.tools.ddk.test.core;singleton:=true -Bundle-Version: 15.4.0.qualifier +Bundle-Version: 15.4.0.v20250610-1134-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.test.core/pom.xml b/com.avaloq.tools.ddk.test.core/pom.xml index 67dde5256..f212bae70 100644 --- a/com.avaloq.tools.ddk.test.core/pom.xml +++ b/com.avaloq.tools.ddk.test.core/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0-SNAPSHOT + 15.4.0.v20250610-1134-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.test.ui.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.test.ui.test/META-INF/MANIFEST.MF index 0095c9ea2..d1cb25fdc 100644 --- a/com.avaloq.tools.ddk.test.ui.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.test.ui.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.test.ui.test Bundle-SymbolicName: com.avaloq.tools.ddk.test.ui.test;singleton:=true -Bundle-Version: 15.4.0.qualifier +Bundle-Version: 15.4.0.v20250610-1134-REL Bundle-ActivationPolicy: lazy Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 diff --git a/com.avaloq.tools.ddk.test.ui.test/pom.xml b/com.avaloq.tools.ddk.test.ui.test/pom.xml index 1a944974f..916328429 100644 --- a/com.avaloq.tools.ddk.test.ui.test/pom.xml +++ b/com.avaloq.tools.ddk.test.ui.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0-SNAPSHOT + 15.4.0.v20250610-1134-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.test.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.test.ui/META-INF/MANIFEST.MF index e4039e4b2..9b029f2f7 100644 --- a/com.avaloq.tools.ddk.test.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.test.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.test.ui Bundle-SymbolicName: com.avaloq.tools.ddk.test.ui;singleton:=true -Bundle-Version: 15.4.0.qualifier +Bundle-Version: 15.4.0.v20250610-1134-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-Activator: com.avaloq.tools.ddk.test.ui.Activator diff --git a/com.avaloq.tools.ddk.test.ui/pom.xml b/com.avaloq.tools.ddk.test.ui/pom.xml index c7d8591e0..4980ca870 100644 --- a/com.avaloq.tools.ddk.test.ui/pom.xml +++ b/com.avaloq.tools.ddk.test.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0-SNAPSHOT + 15.4.0.v20250610-1134-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.typesystem.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.typesystem.test/META-INF/MANIFEST.MF index accbc0357..bffca6b33 100644 --- a/com.avaloq.tools.ddk.typesystem.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.typesystem.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.typesystem.test Bundle-SymbolicName: com.avaloq.tools.ddk.typesystem.test;singleton:=true -Bundle-Version: 15.4.0.qualifier +Bundle-Version: 15.4.0.v20250610-1134-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.typesystem.test/pom.xml b/com.avaloq.tools.ddk.typesystem.test/pom.xml index 532cdd449..56967d8eb 100644 --- a/com.avaloq.tools.ddk.typesystem.test/pom.xml +++ b/com.avaloq.tools.ddk.typesystem.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0-SNAPSHOT + 15.4.0.v20250610-1134-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.typesystem/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.typesystem/META-INF/MANIFEST.MF index 786ef8ff6..022a6055e 100644 --- a/com.avaloq.tools.ddk.typesystem/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.typesystem/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.typesystem Bundle-SymbolicName: com.avaloq.tools.ddk.typesystem;singleton:=true -Bundle-Version: 15.4.0.qualifier +Bundle-Version: 15.4.0.v20250610-1134-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Import-Package: org.apache.logging.log4j diff --git a/com.avaloq.tools.ddk.typesystem/pom.xml b/com.avaloq.tools.ddk.typesystem/pom.xml index 108d8ba4a..12cf85f4b 100644 --- a/com.avaloq.tools.ddk.typesystem/pom.xml +++ b/com.avaloq.tools.ddk.typesystem/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0-SNAPSHOT + 15.4.0.v20250610-1134-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.workflow/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.workflow/META-INF/MANIFEST.MF index c495efd50..5e5b7f655 100644 --- a/com.avaloq.tools.ddk.workflow/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.workflow/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.workflow Bundle-SymbolicName: com.avaloq.tools.ddk.workflow -Bundle-Version: 15.4.0.qualifier +Bundle-Version: 15.4.0.v20250610-1134-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Require-Bundle: com.avaloq.tools.ddk.xtext, diff --git a/com.avaloq.tools.ddk.workflow/pom.xml b/com.avaloq.tools.ddk.workflow/pom.xml index 127b6d44c..19a3da5f4 100644 --- a/com.avaloq.tools.ddk.workflow/pom.xml +++ b/com.avaloq.tools.ddk.workflow/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0-SNAPSHOT + 15.4.0.v20250610-1134-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.builder.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.builder.ui/META-INF/MANIFEST.MF index 6bf5a5495..8e6fbfd85 100644 --- a/com.avaloq.tools.ddk.xtext.builder.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.builder.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.builder.ui Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.builder.ui;singleton:=true -Bundle-Version: 15.4.0.qualifier +Bundle-Version: 15.4.0.v20250610-1134-REL Bundle-Vendor: Avaloq Group AG Require-Bundle: org.eclipse.core.runtime, org.eclipse.xtext, diff --git a/com.avaloq.tools.ddk.xtext.builder.ui/pom.xml b/com.avaloq.tools.ddk.xtext.builder.ui/pom.xml index d9f9ad5ba..a9b523c9f 100644 --- a/com.avaloq.tools.ddk.xtext.builder.ui/pom.xml +++ b/com.avaloq.tools.ddk.xtext.builder.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0-SNAPSHOT + 15.4.0.v20250610-1134-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.builder/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.builder/META-INF/MANIFEST.MF index e641e239b..119251b27 100644 --- a/com.avaloq.tools.ddk.xtext.builder/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.builder/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.builder Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.builder;singleton:=true -Bundle-Version: 15.4.0.qualifier +Bundle-Version: 15.4.0.v20250610-1134-REL Bundle-Vendor: Avaloq Group AG Require-Bundle: org.eclipse.xtext.builder, org.eclipse.xtext.ui, diff --git a/com.avaloq.tools.ddk.xtext.builder/pom.xml b/com.avaloq.tools.ddk.xtext.builder/pom.xml index f262407c3..cf901251e 100644 --- a/com.avaloq.tools.ddk.xtext.builder/pom.xml +++ b/com.avaloq.tools.ddk.xtext.builder/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0-SNAPSHOT + 15.4.0.v20250610-1134-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.check.generator/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.check.generator/META-INF/MANIFEST.MF index fb43250e9..2bd1c7743 100644 --- a/com.avaloq.tools.ddk.xtext.check.generator/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.check.generator/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.check.generator Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.check.generator;singleton:=true -Bundle-Version: 15.4.0.qualifier +Bundle-Version: 15.4.0.v20250610-1134-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.check.generator/pom.xml b/com.avaloq.tools.ddk.xtext.check.generator/pom.xml index 7c5ace172..ad2b46118 100644 --- a/com.avaloq.tools.ddk.xtext.check.generator/pom.xml +++ b/com.avaloq.tools.ddk.xtext.check.generator/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0-SNAPSHOT + 15.4.0.v20250610-1134-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.common.types.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.common.types.ui/META-INF/MANIFEST.MF index 4063a86bc..40f34471a 100644 --- a/com.avaloq.tools.ddk.xtext.common.types.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.common.types.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.common.types.ui Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.common.types.ui;singleton:=true -Bundle-Version: 15.4.0.qualifier +Bundle-Version: 15.4.0.v20250610-1134-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.common.types.ui/pom.xml b/com.avaloq.tools.ddk.xtext.common.types.ui/pom.xml index dcc853fad..38e0ca802 100644 --- a/com.avaloq.tools.ddk.xtext.common.types.ui/pom.xml +++ b/com.avaloq.tools.ddk.xtext.common.types.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0-SNAPSHOT + 15.4.0.v20250610-1134-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.common.types/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.common.types/META-INF/MANIFEST.MF index bbbe886c0..861b9c141 100644 --- a/com.avaloq.tools.ddk.xtext.common.types/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.common.types/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.common.types Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.common.types;singleton:=true -Bundle-Version: 15.4.0.qualifier +Bundle-Version: 15.4.0.v20250610-1134-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.common.types/pom.xml b/com.avaloq.tools.ddk.xtext.common.types/pom.xml index a0ed0eaf5..603c59d96 100644 --- a/com.avaloq.tools.ddk.xtext.common.types/pom.xml +++ b/com.avaloq.tools.ddk.xtext.common.types/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0-SNAPSHOT + 15.4.0.v20250610-1134-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.common.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.common.ui/META-INF/MANIFEST.MF index 0def6272c..24e061eb9 100644 --- a/com.avaloq.tools.ddk.xtext.common.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.common.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.common.ui Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.common.ui;singleton:=true -Bundle-Version: 15.4.0.qualifier +Bundle-Version: 15.4.0.v20250610-1134-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Export-Package: com.avaloq.tools.ddk.xtext.common.ui.contentassist diff --git a/com.avaloq.tools.ddk.xtext.common.ui/pom.xml b/com.avaloq.tools.ddk.xtext.common.ui/pom.xml index 6f2751216..6be1e95d1 100644 --- a/com.avaloq.tools.ddk.xtext.common.ui/pom.xml +++ b/com.avaloq.tools.ddk.xtext.common.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0-SNAPSHOT + 15.4.0.v20250610-1134-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.xtext.export.generator/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.export.generator/META-INF/MANIFEST.MF index 552050a73..4a0dddb63 100644 --- a/com.avaloq.tools.ddk.xtext.export.generator/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.export.generator/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.export.generator Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.export.generator;singleton:=true -Bundle-Version: 15.4.0.qualifier +Bundle-Version: 15.4.0.v20250610-1134-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Require-Bundle: org.eclipse.xtext, diff --git a/com.avaloq.tools.ddk.xtext.export.generator/pom.xml b/com.avaloq.tools.ddk.xtext.export.generator/pom.xml index d01caf67d..4ecb67d6b 100644 --- a/com.avaloq.tools.ddk.xtext.export.generator/pom.xml +++ b/com.avaloq.tools.ddk.xtext.export.generator/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0-SNAPSHOT + 15.4.0.v20250610-1134-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.export.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.export.ide/META-INF/MANIFEST.MF index 8c64aa0ab..40f6f7398 100644 --- a/com.avaloq.tools.ddk.xtext.export.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.export.ide/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.export.ide Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.export.ide;singleton:=true -Bundle-Version: 15.4.0.qualifier +Bundle-Version: 15.4.0.v20250610-1134-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.export.ide/pom.xml b/com.avaloq.tools.ddk.xtext.export.ide/pom.xml index 1d8d46a16..d89f06e3e 100644 --- a/com.avaloq.tools.ddk.xtext.export.ide/pom.xml +++ b/com.avaloq.tools.ddk.xtext.export.ide/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0-SNAPSHOT + 15.4.0.v20250610-1134-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.export.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.export.test/META-INF/MANIFEST.MF index 1005533b0..79ea4cc4b 100644 --- a/com.avaloq.tools.ddk.xtext.export.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.export.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.export.test Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.export.test;singleton:=true -Bundle-Version: 15.4.0.qualifier +Bundle-Version: 15.4.0.v20250610-1134-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.export.test/pom.xml b/com.avaloq.tools.ddk.xtext.export.test/pom.xml index 835c3eab0..d7fd18c8d 100644 --- a/com.avaloq.tools.ddk.xtext.export.test/pom.xml +++ b/com.avaloq.tools.ddk.xtext.export.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0-SNAPSHOT + 15.4.0.v20250610-1134-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.xtext.export.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.export.ui/META-INF/MANIFEST.MF index 30af814d8..e2c7d89c6 100644 --- a/com.avaloq.tools.ddk.xtext.export.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.export.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.export.ui Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.export.ui;singleton:=true -Bundle-Version: 15.4.0.qualifier +Bundle-Version: 15.4.0.v20250610-1134-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-Activator: com.avaloq.tools.ddk.xtext.export.ui.internal.ExportActivator diff --git a/com.avaloq.tools.ddk.xtext.export.ui/pom.xml b/com.avaloq.tools.ddk.xtext.export.ui/pom.xml index ffb6c4b4a..0508a7ea6 100644 --- a/com.avaloq.tools.ddk.xtext.export.ui/pom.xml +++ b/com.avaloq.tools.ddk.xtext.export.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0-SNAPSHOT + 15.4.0.v20250610-1134-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.export/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.export/META-INF/MANIFEST.MF index 8bb20a4aa..cb48ba211 100644 --- a/com.avaloq.tools.ddk.xtext.export/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.export/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.export Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.export;singleton:=true -Bundle-Version: 15.4.0.qualifier +Bundle-Version: 15.4.0.v20250610-1134-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.export/pom.xml b/com.avaloq.tools.ddk.xtext.export/pom.xml index 9901bbcd3..99987cdc2 100644 --- a/com.avaloq.tools.ddk.xtext.export/pom.xml +++ b/com.avaloq.tools.ddk.xtext.export/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0-SNAPSHOT + 15.4.0.v20250610-1134-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.expression.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.expression.ide/META-INF/MANIFEST.MF index 092e0acee..6435fe749 100644 --- a/com.avaloq.tools.ddk.xtext.expression.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.expression.ide/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.expression.ide Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.expression.ide;singleton:=true -Bundle-Version: 15.4.0.qualifier +Bundle-Version: 15.4.0.v20250610-1134-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.expression.ide/pom.xml b/com.avaloq.tools.ddk.xtext.expression.ide/pom.xml index 9a3cde0f3..356d6f942 100644 --- a/com.avaloq.tools.ddk.xtext.expression.ide/pom.xml +++ b/com.avaloq.tools.ddk.xtext.expression.ide/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0-SNAPSHOT + 15.4.0.v20250610-1134-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.expression.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.expression.ui/META-INF/MANIFEST.MF index a7cbda075..6a667029f 100644 --- a/com.avaloq.tools.ddk.xtext.expression.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.expression.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.expression.ui Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.expression.ui;singleton:=true -Bundle-Version: 15.4.0.qualifier +Bundle-Version: 15.4.0.v20250610-1134-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-Activator: com.avaloq.tools.ddk.xtext.expression.ui.internal.Activator diff --git a/com.avaloq.tools.ddk.xtext.expression.ui/pom.xml b/com.avaloq.tools.ddk.xtext.expression.ui/pom.xml index 3077557bc..a0a25012f 100644 --- a/com.avaloq.tools.ddk.xtext.expression.ui/pom.xml +++ b/com.avaloq.tools.ddk.xtext.expression.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0-SNAPSHOT + 15.4.0.v20250610-1134-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.expression/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.expression/META-INF/MANIFEST.MF index 7ae20e043..c536917eb 100644 --- a/com.avaloq.tools.ddk.xtext.expression/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.expression/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.expression Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.expression;singleton:=true -Bundle-Version: 15.4.0.qualifier +Bundle-Version: 15.4.0.v20250610-1134-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Require-Bundle: org.eclipse.xtext, diff --git a/com.avaloq.tools.ddk.xtext.expression/pom.xml b/com.avaloq.tools.ddk.xtext.expression/pom.xml index 5870cf930..c293cfdec 100644 --- a/com.avaloq.tools.ddk.xtext.expression/pom.xml +++ b/com.avaloq.tools.ddk.xtext.expression/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0-SNAPSHOT + 15.4.0.v20250610-1134-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.format.generator/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.format.generator/META-INF/MANIFEST.MF index 55e5cf1c6..21a8944c2 100644 --- a/com.avaloq.tools.ddk.xtext.format.generator/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.format.generator/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.format.generator Bundle-Vendor: Avaloq Group AG -Bundle-Version: 15.4.0.qualifier +Bundle-Version: 15.4.0.v20250610-1134-REL Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.format.generator;singleton:=true Require-Bundle: com.avaloq.tools.ddk.xtext.format;visibility:=reexport, org.eclipse.xpand, diff --git a/com.avaloq.tools.ddk.xtext.format.generator/pom.xml b/com.avaloq.tools.ddk.xtext.format.generator/pom.xml index 0f9959030..722f1d8e7 100644 --- a/com.avaloq.tools.ddk.xtext.format.generator/pom.xml +++ b/com.avaloq.tools.ddk.xtext.format.generator/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0-SNAPSHOT + 15.4.0.v20250610-1134-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.format.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.format.ide/META-INF/MANIFEST.MF index f197771c7..a2fa24d28 100644 --- a/com.avaloq.tools.ddk.xtext.format.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.format.ide/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.format.ide Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.format.ide;singleton:=true -Bundle-Version: 15.4.0.qualifier +Bundle-Version: 15.4.0.v20250610-1134-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.format.ide/pom.xml b/com.avaloq.tools.ddk.xtext.format.ide/pom.xml index 535f76a20..5c0502761 100644 --- a/com.avaloq.tools.ddk.xtext.format.ide/pom.xml +++ b/com.avaloq.tools.ddk.xtext.format.ide/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0-SNAPSHOT + 15.4.0.v20250610-1134-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.format.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.format.test/META-INF/MANIFEST.MF index 8973d2c9f..6a3a219b5 100644 --- a/com.avaloq.tools.ddk.xtext.format.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.format.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.format.test Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.format.test;singleton:=true -Bundle-Version: 15.4.0.qualifier +Bundle-Version: 15.4.0.v20250610-1134-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.format.test/pom.xml b/com.avaloq.tools.ddk.xtext.format.test/pom.xml index 187d7d11e..036c8ae45 100644 --- a/com.avaloq.tools.ddk.xtext.format.test/pom.xml +++ b/com.avaloq.tools.ddk.xtext.format.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0-SNAPSHOT + 15.4.0.v20250610-1134-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.xtext.format.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.format.ui/META-INF/MANIFEST.MF index ff22f1282..6896caebb 100644 --- a/com.avaloq.tools.ddk.xtext.format.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.format.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.format.ui Bundle-Vendor: Avaloq Group AG -Bundle-Version: 15.4.0.qualifier +Bundle-Version: 15.4.0.v20250610-1134-REL Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.format.ui;singleton:=true Bundle-ActivationPolicy: lazy Require-Bundle: com.avaloq.tools.ddk.xtext.format;visibility:=reexport, diff --git a/com.avaloq.tools.ddk.xtext.format.ui/pom.xml b/com.avaloq.tools.ddk.xtext.format.ui/pom.xml index 871f5e43c..497d61dfc 100644 --- a/com.avaloq.tools.ddk.xtext.format.ui/pom.xml +++ b/com.avaloq.tools.ddk.xtext.format.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0-SNAPSHOT + 15.4.0.v20250610-1134-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.format/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.format/META-INF/MANIFEST.MF index 9574d906a..01741102d 100644 --- a/com.avaloq.tools.ddk.xtext.format/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.format/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.format Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.format;singleton:=true -Bundle-Version: 15.4.0.qualifier +Bundle-Version: 15.4.0.v20250610-1134-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.format/pom.xml b/com.avaloq.tools.ddk.xtext.format/pom.xml index 273253555..f9b37f861 100644 --- a/com.avaloq.tools.ddk.xtext.format/pom.xml +++ b/com.avaloq.tools.ddk.xtext.format/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0-SNAPSHOT + 15.4.0.v20250610-1134-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.generator.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.generator.test/META-INF/MANIFEST.MF index 2eb04d417..8958180a4 100644 --- a/com.avaloq.tools.ddk.xtext.generator.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.generator.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.generator.test Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.generator.test;singleton:=true -Bundle-Version: 15.4.0.qualifier +Bundle-Version: 15.4.0.v20250610-1134-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.generator.test/pom.xml b/com.avaloq.tools.ddk.xtext.generator.test/pom.xml index 762f215c8..cd0075b2c 100644 --- a/com.avaloq.tools.ddk.xtext.generator.test/pom.xml +++ b/com.avaloq.tools.ddk.xtext.generator.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0-SNAPSHOT + 15.4.0.v20250610-1134-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.xtext.generator/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.generator/META-INF/MANIFEST.MF index c71b4057e..16d0a0f35 100644 --- a/com.avaloq.tools.ddk.xtext.generator/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.generator/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.generator Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.generator;singleton:=true -Bundle-Version: 15.4.0.qualifier +Bundle-Version: 15.4.0.v20250610-1134-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Require-Bundle: org.eclipse.jface, diff --git a/com.avaloq.tools.ddk.xtext.generator/pom.xml b/com.avaloq.tools.ddk.xtext.generator/pom.xml index 12c90b15f..3c877cfff 100644 --- a/com.avaloq.tools.ddk.xtext.generator/pom.xml +++ b/com.avaloq.tools.ddk.xtext.generator/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0-SNAPSHOT + 15.4.0.v20250610-1134-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.ide/META-INF/MANIFEST.MF index c767d7593..debe4b32b 100644 --- a/com.avaloq.tools.ddk.xtext.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.ide/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.ide Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.ide;singleton:=true -Bundle-Version: 15.4.0.qualifier +Bundle-Version: 15.4.0.v20250610-1134-REL Bundle-Vendor: Avaloq Group AG Require-Bundle: org.eclipse.lsp4j, org.eclipse.xtext.ide, diff --git a/com.avaloq.tools.ddk.xtext.ide/pom.xml b/com.avaloq.tools.ddk.xtext.ide/pom.xml index 00f05f71a..4cbfc44ff 100644 --- a/com.avaloq.tools.ddk.xtext.ide/pom.xml +++ b/com.avaloq.tools.ddk.xtext.ide/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0-SNAPSHOT + 15.4.0.v20250610-1134-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.scope.generator/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.scope.generator/META-INF/MANIFEST.MF index 5a5fe0eff..879735357 100644 --- a/com.avaloq.tools.ddk.xtext.scope.generator/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.scope.generator/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.scope.generator Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.scope.generator;singleton:=true -Bundle-Version: 15.4.0.qualifier +Bundle-Version: 15.4.0.v20250610-1134-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Require-Bundle: com.avaloq.tools.ddk.xtext.scope;visibility:=reexport, diff --git a/com.avaloq.tools.ddk.xtext.scope.generator/pom.xml b/com.avaloq.tools.ddk.xtext.scope.generator/pom.xml index b242be19d..f9e308ba1 100644 --- a/com.avaloq.tools.ddk.xtext.scope.generator/pom.xml +++ b/com.avaloq.tools.ddk.xtext.scope.generator/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0-SNAPSHOT + 15.4.0.v20250610-1134-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.scope.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.scope.ide/META-INF/MANIFEST.MF index 400163404..8e9ee7754 100644 --- a/com.avaloq.tools.ddk.xtext.scope.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.scope.ide/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.scope.ide Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.scope.ide;singleton:=true -Bundle-Version: 15.4.0.qualifier +Bundle-Version: 15.4.0.v20250610-1134-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.scope.ide/pom.xml b/com.avaloq.tools.ddk.xtext.scope.ide/pom.xml index a6a98a997..995467301 100644 --- a/com.avaloq.tools.ddk.xtext.scope.ide/pom.xml +++ b/com.avaloq.tools.ddk.xtext.scope.ide/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0-SNAPSHOT + 15.4.0.v20250610-1134-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.scope.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.scope.ui/META-INF/MANIFEST.MF index c21353349..5fca38a6a 100644 --- a/com.avaloq.tools.ddk.xtext.scope.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.scope.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.scope.ui Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.scope.ui;singleton:=true -Bundle-Version: 15.4.0.qualifier +Bundle-Version: 15.4.0.v20250610-1134-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-Activator: com.avaloq.tools.ddk.xtext.scope.ui.internal.ScopeActivator diff --git a/com.avaloq.tools.ddk.xtext.scope.ui/pom.xml b/com.avaloq.tools.ddk.xtext.scope.ui/pom.xml index 0ff8708ba..24d71dfef 100644 --- a/com.avaloq.tools.ddk.xtext.scope.ui/pom.xml +++ b/com.avaloq.tools.ddk.xtext.scope.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0-SNAPSHOT + 15.4.0.v20250610-1134-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.scope/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.scope/META-INF/MANIFEST.MF index 104c70dea..e1b886807 100644 --- a/com.avaloq.tools.ddk.xtext.scope/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.scope/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.scope Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.scope;singleton:=true -Bundle-Version: 15.4.0.qualifier +Bundle-Version: 15.4.0.v20250610-1134-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Require-Bundle: org.eclipse.xtext, diff --git a/com.avaloq.tools.ddk.xtext.scope/pom.xml b/com.avaloq.tools.ddk.xtext.scope/pom.xml index 08d00dc87..f747e5b4a 100644 --- a/com.avaloq.tools.ddk.xtext.scope/pom.xml +++ b/com.avaloq.tools.ddk.xtext.scope/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0-SNAPSHOT + 15.4.0.v20250610-1134-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.test.core/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.test.core/META-INF/MANIFEST.MF index 37b25d554..ff724e190 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.test.core/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.test.core Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.test.core;singleton:=true -Bundle-Version: 15.4.0.qualifier +Bundle-Version: 15.4.0.v20250610-1134-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Require-Bundle: com.avaloq.tools.ddk.xtext, diff --git a/com.avaloq.tools.ddk.xtext.test.core/pom.xml b/com.avaloq.tools.ddk.xtext.test.core/pom.xml index 7f3e7f969..b9d5e7c09 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/pom.xml +++ b/com.avaloq.tools.ddk.xtext.test.core/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0-SNAPSHOT + 15.4.0.v20250610-1134-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.xtext.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.test/META-INF/MANIFEST.MF index 240397e18..c406baf0e 100644 --- a/com.avaloq.tools.ddk.xtext.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.test Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.test;singleton:=true -Bundle-Version: 15.4.0.qualifier +Bundle-Version: 15.4.0.v20250610-1134-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.test/pom.xml b/com.avaloq.tools.ddk.xtext.test/pom.xml index dee97325f..a170835a4 100644 --- a/com.avaloq.tools.ddk.xtext.test/pom.xml +++ b/com.avaloq.tools.ddk.xtext.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0-SNAPSHOT + 15.4.0.v20250610-1134-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.xtext.ui.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.ui.test/META-INF/MANIFEST.MF index 87851d8d1..25a54787e 100644 --- a/com.avaloq.tools.ddk.xtext.ui.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.ui.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.ui.test Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.ui.test;singleton:=true -Bundle-Version: 15.4.0.qualifier +Bundle-Version: 15.4.0.v20250610-1134-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Require-Bundle: org.eclipse.xtext.ui, diff --git a/com.avaloq.tools.ddk.xtext.ui.test/pom.xml b/com.avaloq.tools.ddk.xtext.ui.test/pom.xml index 1fb64017d..b0527c633 100644 --- a/com.avaloq.tools.ddk.xtext.ui.test/pom.xml +++ b/com.avaloq.tools.ddk.xtext.ui.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0-SNAPSHOT + 15.4.0.v20250610-1134-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.xtext.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.ui/META-INF/MANIFEST.MF index 5da1607ee..8eb737ffe 100644 --- a/com.avaloq.tools.ddk.xtext.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.ui Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.ui;singleton:=true -Bundle-Version: 15.4.0.qualifier +Bundle-Version: 15.4.0.v20250610-1134-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.ui/pom.xml b/com.avaloq.tools.ddk.xtext.ui/pom.xml index e25fa6615..30305b530 100644 --- a/com.avaloq.tools.ddk.xtext.ui/pom.xml +++ b/com.avaloq.tools.ddk.xtext.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0-SNAPSHOT + 15.4.0.v20250610-1134-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.valid.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.valid.ide/META-INF/MANIFEST.MF index 4fed02229..6d80719ab 100644 --- a/com.avaloq.tools.ddk.xtext.valid.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.valid.ide/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.valid.ide Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.valid.ide;singleton:=true -Bundle-Version: 15.4.0.qualifier +Bundle-Version: 15.4.0.v20250610-1134-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.valid.ide/pom.xml b/com.avaloq.tools.ddk.xtext.valid.ide/pom.xml index 67cb8284b..fce0ea329 100644 --- a/com.avaloq.tools.ddk.xtext.valid.ide/pom.xml +++ b/com.avaloq.tools.ddk.xtext.valid.ide/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0-SNAPSHOT + 15.4.0.v20250610-1134-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.valid.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.valid.ui/META-INF/MANIFEST.MF index 7ca6584a2..daa8d8cac 100644 --- a/com.avaloq.tools.ddk.xtext.valid.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.valid.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.valid.ui Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.valid.ui;singleton:=true -Bundle-Version: 15.4.0.qualifier +Bundle-Version: 15.4.0.v20250610-1134-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.valid.ui/pom.xml b/com.avaloq.tools.ddk.xtext.valid.ui/pom.xml index eb84f0364..ba8a88632 100644 --- a/com.avaloq.tools.ddk.xtext.valid.ui/pom.xml +++ b/com.avaloq.tools.ddk.xtext.valid.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0-SNAPSHOT + 15.4.0.v20250610-1134-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.xtext.valid/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.valid/META-INF/MANIFEST.MF index db0e5b047..923c2f938 100644 --- a/com.avaloq.tools.ddk.xtext.valid/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.valid/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.valid Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.valid;singleton:=true -Bundle-Version: 15.4.0.qualifier +Bundle-Version: 15.4.0.v20250610-1134-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.valid/pom.xml b/com.avaloq.tools.ddk.xtext.valid/pom.xml index 93e1e1ecc..b0d91b58f 100644 --- a/com.avaloq.tools.ddk.xtext.valid/pom.xml +++ b/com.avaloq.tools.ddk.xtext.valid/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0-SNAPSHOT + 15.4.0.v20250610-1134-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.xtext/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext/META-INF/MANIFEST.MF index 376e4eb33..1dfd30666 100644 --- a/com.avaloq.tools.ddk.xtext/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext Bundle-SymbolicName: com.avaloq.tools.ddk.xtext;singleton:=true -Bundle-Version: 15.4.0.qualifier +Bundle-Version: 15.4.0.v20250610-1134-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext/pom.xml b/com.avaloq.tools.ddk.xtext/pom.xml index b5922bf30..7b5a078e8 100644 --- a/com.avaloq.tools.ddk.xtext/pom.xml +++ b/com.avaloq.tools.ddk.xtext/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0-SNAPSHOT + 15.4.0.v20250610-1134-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk/META-INF/MANIFEST.MF index 3a7cbb409..be6e3115f 100644 --- a/com.avaloq.tools.ddk/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk Bundle-SymbolicName: com.avaloq.tools.ddk;singleton:=true -Bundle-Version: 15.4.0.qualifier +Bundle-Version: 15.4.0.v20250610-1134-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk/pom.xml b/com.avaloq.tools.ddk/pom.xml index f1e6daf12..398b0b08e 100644 --- a/com.avaloq.tools.ddk/pom.xml +++ b/com.avaloq.tools.ddk/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0-SNAPSHOT + 15.4.0.v20250610-1134-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/ddk-parent/pom.xml b/ddk-parent/pom.xml index 3c815d862..d10f54dea 100644 --- a/ddk-parent/pom.xml +++ b/ddk-parent/pom.xml @@ -4,7 +4,7 @@ com.avaloq.tools.ddk ddk-parent - 15.4.0-SNAPSHOT + 15.4.0.v20250610-1134-REL pom diff --git a/ddk-repository/category.xml b/ddk-repository/category.xml index f61fc442a..39e28bf43 100644 --- a/ddk-repository/category.xml +++ b/ddk-repository/category.xml @@ -1,15 +1,15 @@ - + - + - + - + diff --git a/ddk-repository/pom.xml b/ddk-repository/pom.xml index 56726d306..3547441f4 100644 --- a/ddk-repository/pom.xml +++ b/ddk-repository/pom.xml @@ -4,7 +4,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0-SNAPSHOT + 15.4.0.v20250610-1134-REL ../ddk-parent diff --git a/ddk-target/pom.xml b/ddk-target/pom.xml index 8d080f884..195d61692 100644 --- a/ddk-target/pom.xml +++ b/ddk-target/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0-SNAPSHOT + 15.4.0.v20250610-1134-REL ../ddk-parent com.avaloq.tools.ddk From 9fc3595d2922f8e45b40b3aa5634d28e308617ac Mon Sep 17 00:00:00 2001 From: Jenkins Date: Tue, 10 Jun 2025 11:34:59 +0200 Subject: [PATCH 18/57] Next development version: 15.5.0-SNAPSHOT --- com.avaloq.tools.ddk.check.core.test/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.core.test/pom.xml | 2 +- com.avaloq.tools.ddk.check.core/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.core/pom.xml | 2 +- com.avaloq.tools.ddk.check.ide/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.ide/pom.xml | 2 +- com.avaloq.tools.ddk.check.lib/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.lib/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.runtime.core.test/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.runtime.core/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.runtime.ui/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.test.runtime.tests/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.test.runtime.ui/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.test.runtime/pom.xml | 2 +- com.avaloq.tools.ddk.check.ui.test/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.ui.test/pom.xml | 2 +- com.avaloq.tools.ddk.check.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.ui/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.checkcfg.core.test/pom.xml | 2 +- com.avaloq.tools.ddk.checkcfg.core/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.checkcfg.core/pom.xml | 2 +- com.avaloq.tools.ddk.checkcfg.ide/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.checkcfg.ide/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.checkcfg.ui.test/pom.xml | 2 +- com.avaloq.tools.ddk.checkcfg.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.checkcfg.ui/pom.xml | 2 +- com.avaloq.tools.ddk.feature/feature.xml | 2 +- com.avaloq.tools.ddk.feature/pom.xml | 2 +- com.avaloq.tools.ddk.runtime.feature/feature.xml | 2 +- com.avaloq.tools.ddk.runtime.feature/pom.xml | 2 +- com.avaloq.tools.ddk.runtime.source.feature/feature.xml | 2 +- com.avaloq.tools.ddk.runtime.source.feature/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.sample.helloworld.ide/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.sample.helloworld.ui.test/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.sample.helloworld.ui/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.sample.helloworld/pom.xml | 2 +- com.avaloq.tools.ddk.source.feature/feature.xml | 2 +- com.avaloq.tools.ddk.source.feature/pom.xml | 2 +- com.avaloq.tools.ddk.test.core/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.test.core/pom.xml | 2 +- com.avaloq.tools.ddk.test.ui.test/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.test.ui.test/pom.xml | 2 +- com.avaloq.tools.ddk.test.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.test.ui/pom.xml | 2 +- com.avaloq.tools.ddk.typesystem.test/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.typesystem.test/pom.xml | 2 +- com.avaloq.tools.ddk.typesystem/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.typesystem/pom.xml | 2 +- com.avaloq.tools.ddk.workflow/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.workflow/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.builder.ui/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.builder/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.builder/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.check.generator/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.common.types.ui/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.common.types/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.common.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.common.ui/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.export.generator/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.export.ide/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.export.test/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.export.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.export.ui/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.export/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.export/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.expression.ide/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.expression.ui/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.expression/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.format.generator/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.format.ide/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.format.test/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.format.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.format.ui/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.format/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.format/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.generator.test/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.generator/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.generator/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.ide/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.ide/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.scope.generator/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.scope.ide/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.scope.ide/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.scope.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.scope.ui/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.scope/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.scope/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.test.core/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.test.core/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.test/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.test/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.ui.test/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.ui.test/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.ui/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.valid.ide/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.valid.ide/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.valid.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.valid.ui/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.valid/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.valid/pom.xml | 2 +- com.avaloq.tools.ddk.xtext/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext/pom.xml | 2 +- com.avaloq.tools.ddk/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk/pom.xml | 2 +- ddk-parent/pom.xml | 2 +- ddk-repository/category.xml | 8 ++++---- ddk-repository/pom.xml | 2 +- ddk-target/pom.xml | 2 +- 136 files changed, 139 insertions(+), 139 deletions(-) diff --git a/com.avaloq.tools.ddk.check.core.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.core.test/META-INF/MANIFEST.MF index 639fed9e4..7fb3800b1 100644 --- a/com.avaloq.tools.ddk.check.core.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.core.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.core.test Bundle-SymbolicName: com.avaloq.tools.ddk.check.core.test;singleton:=true -Bundle-Version: 15.4.0.v20250610-1134-REL +Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.check.core.test/pom.xml b/com.avaloq.tools.ddk.check.core.test/pom.xml index 951c3bd6e..42a2bced3 100644 --- a/com.avaloq.tools.ddk.check.core.test/pom.xml +++ b/com.avaloq.tools.ddk.check.core.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0.v20250610-1134-REL + 15.5.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.check.core/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.core/META-INF/MANIFEST.MF index 0762a64a7..6dff0fc04 100644 --- a/com.avaloq.tools.ddk.check.core/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.core/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.core Bundle-SymbolicName: com.avaloq.tools.ddk.check.core;singleton:=true -Bundle-Version: 15.4.0.v20250610-1134-REL +Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.check.core/pom.xml b/com.avaloq.tools.ddk.check.core/pom.xml index e9b73c4f5..75aabd194 100644 --- a/com.avaloq.tools.ddk.check.core/pom.xml +++ b/com.avaloq.tools.ddk.check.core/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0.v20250610-1134-REL + 15.5.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.check.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.ide/META-INF/MANIFEST.MF index 488e19d8d..acea7c177 100644 --- a/com.avaloq.tools.ddk.check.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.ide/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.ide Bundle-SymbolicName: com.avaloq.tools.ddk.check.ide;singleton:=true -Bundle-Version: 15.4.0.v20250610-1134-REL +Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.check.ide/pom.xml b/com.avaloq.tools.ddk.check.ide/pom.xml index 69c197514..4c94f4ef8 100644 --- a/com.avaloq.tools.ddk.check.ide/pom.xml +++ b/com.avaloq.tools.ddk.check.ide/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0.v20250610-1134-REL + 15.5.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.check.lib/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.lib/META-INF/MANIFEST.MF index c1b44b07c..b81d4fe80 100644 --- a/com.avaloq.tools.ddk.check.lib/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.lib/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.lib Bundle-SymbolicName: com.avaloq.tools.ddk.check.lib -Bundle-Version: 15.4.0.v20250610-1134-REL +Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG Require-Bundle: org.eclipse.core.runtime, org.eclipse.xtext, diff --git a/com.avaloq.tools.ddk.check.lib/pom.xml b/com.avaloq.tools.ddk.check.lib/pom.xml index 3e949eeef..bfd7d394f 100644 --- a/com.avaloq.tools.ddk.check.lib/pom.xml +++ b/com.avaloq.tools.ddk.check.lib/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0.v20250610-1134-REL + 15.5.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.check.runtime.core.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.runtime.core.test/META-INF/MANIFEST.MF index 8223eb65a..237030205 100644 --- a/com.avaloq.tools.ddk.check.runtime.core.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.runtime.core.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.runtime.core.test Bundle-SymbolicName: com.avaloq.tools.ddk.check.runtime.core.test;singleton:=true -Bundle-Version: 15.4.0.v20250610-1134-REL +Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Require-Bundle: org.eclipse.ui, diff --git a/com.avaloq.tools.ddk.check.runtime.core.test/pom.xml b/com.avaloq.tools.ddk.check.runtime.core.test/pom.xml index 174352bf4..a8de98b92 100644 --- a/com.avaloq.tools.ddk.check.runtime.core.test/pom.xml +++ b/com.avaloq.tools.ddk.check.runtime.core.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0.v20250610-1134-REL + 15.5.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.check.runtime.core/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.runtime.core/META-INF/MANIFEST.MF index c509b5a82..f7971c6a2 100644 --- a/com.avaloq.tools.ddk.check.runtime.core/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.runtime.core/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.runtime.core Bundle-SymbolicName: com.avaloq.tools.ddk.check.runtime.core;singleton:=true -Bundle-Version: 15.4.0.v20250610-1134-REL +Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Require-Bundle: org.eclipse.core.resources, diff --git a/com.avaloq.tools.ddk.check.runtime.core/pom.xml b/com.avaloq.tools.ddk.check.runtime.core/pom.xml index 74dfc90ea..f965252b3 100644 --- a/com.avaloq.tools.ddk.check.runtime.core/pom.xml +++ b/com.avaloq.tools.ddk.check.runtime.core/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0.v20250610-1134-REL + 15.5.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.check.runtime.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.runtime.ui/META-INF/MANIFEST.MF index d948cec49..c259b5cb9 100644 --- a/com.avaloq.tools.ddk.check.runtime.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.runtime.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.runtime.ui Bundle-SymbolicName: com.avaloq.tools.ddk.check.runtime.ui;singleton:=true -Bundle-Version: 15.4.0.v20250610-1134-REL +Bundle-Version: 15.5.0.qualifier Bundle-Activator: com.avaloq.tools.ddk.check.runtime.ui.internal.Activator Bundle-Vendor: Avaloq Group AG Require-Bundle: org.eclipse.ui, diff --git a/com.avaloq.tools.ddk.check.runtime.ui/pom.xml b/com.avaloq.tools.ddk.check.runtime.ui/pom.xml index 79c8c5808..1363b6c8f 100644 --- a/com.avaloq.tools.ddk.check.runtime.ui/pom.xml +++ b/com.avaloq.tools.ddk.check.runtime.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0.v20250610-1134-REL + 15.5.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.check.test.runtime.tests/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.test.runtime.tests/META-INF/MANIFEST.MF index b8e90525d..a846d418d 100644 --- a/com.avaloq.tools.ddk.check.test.runtime.tests/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.test.runtime.tests/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.test.runtime.tests Bundle-Vendor: Avaloq Group AG -Bundle-Version: 15.4.0.v20250610-1134-REL +Bundle-Version: 15.5.0.qualifier Bundle-SymbolicName: com.avaloq.tools.ddk.check.test.runtime.tests; singleton:=true Bundle-ActivationPolicy: lazy Require-Bundle: com.avaloq.tools.ddk.check.runtime.core, diff --git a/com.avaloq.tools.ddk.check.test.runtime.tests/pom.xml b/com.avaloq.tools.ddk.check.test.runtime.tests/pom.xml index e45234e76..d4226294c 100644 --- a/com.avaloq.tools.ddk.check.test.runtime.tests/pom.xml +++ b/com.avaloq.tools.ddk.check.test.runtime.tests/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0.v20250610-1134-REL + 15.5.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.check.test.runtime.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.test.runtime.ui/META-INF/MANIFEST.MF index c4dd526aa..543986201 100644 --- a/com.avaloq.tools.ddk.check.test.runtime.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.test.runtime.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.test.runtime.ui Bundle-Vendor: Avaloq Group AG -Bundle-Version: 15.4.0.v20250610-1134-REL +Bundle-Version: 15.5.0.qualifier Bundle-SymbolicName: com.avaloq.tools.ddk.check.test.runtime.ui; singleton:=true Bundle-ActivationPolicy: lazy Require-Bundle: com.avaloq.tools.ddk.check.test.runtime;visibility:=reexport, diff --git a/com.avaloq.tools.ddk.check.test.runtime.ui/pom.xml b/com.avaloq.tools.ddk.check.test.runtime.ui/pom.xml index 4dfff9e51..920357c58 100644 --- a/com.avaloq.tools.ddk.check.test.runtime.ui/pom.xml +++ b/com.avaloq.tools.ddk.check.test.runtime.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0.v20250610-1134-REL + 15.5.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.check.test.runtime/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.test.runtime/META-INF/MANIFEST.MF index d84bae74b..091d9c9dd 100644 --- a/com.avaloq.tools.ddk.check.test.runtime/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.test.runtime/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.test.runtime Bundle-Vendor: Avaloq Group AG -Bundle-Version: 15.4.0.v20250610-1134-REL +Bundle-Version: 15.5.0.qualifier Bundle-SymbolicName: com.avaloq.tools.ddk.check.test.runtime;singleton:=true Bundle-ActivationPolicy: lazy Require-Bundle: org.eclipse.xtext;visibility:=reexport, diff --git a/com.avaloq.tools.ddk.check.test.runtime/pom.xml b/com.avaloq.tools.ddk.check.test.runtime/pom.xml index 9dd086c31..943eae3fb 100644 --- a/com.avaloq.tools.ddk.check.test.runtime/pom.xml +++ b/com.avaloq.tools.ddk.check.test.runtime/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0.v20250610-1134-REL + 15.5.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.check.ui.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.ui.test/META-INF/MANIFEST.MF index 3acd6accc..4ed937e9a 100644 --- a/com.avaloq.tools.ddk.check.ui.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.ui.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.ui.test Bundle-SymbolicName: com.avaloq.tools.ddk.check.ui.test -Bundle-Version: 15.4.0.v20250610-1134-REL +Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Require-Bundle: org.junit, diff --git a/com.avaloq.tools.ddk.check.ui.test/pom.xml b/com.avaloq.tools.ddk.check.ui.test/pom.xml index 81ed6c00c..d13384674 100644 --- a/com.avaloq.tools.ddk.check.ui.test/pom.xml +++ b/com.avaloq.tools.ddk.check.ui.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0.v20250610-1134-REL + 15.5.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.check.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.ui/META-INF/MANIFEST.MF index 70b8ca3d5..3b303899a 100644 --- a/com.avaloq.tools.ddk.check.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.ui Bundle-SymbolicName: com.avaloq.tools.ddk.check.ui;singleton:=true -Bundle-Version: 15.4.0.v20250610-1134-REL +Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-Activator: com.avaloq.tools.ddk.check.ui.internal.Activator diff --git a/com.avaloq.tools.ddk.check.ui/pom.xml b/com.avaloq.tools.ddk.check.ui/pom.xml index 53ccc6bae..fd1f3b1ae 100644 --- a/com.avaloq.tools.ddk.check.ui/pom.xml +++ b/com.avaloq.tools.ddk.check.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0.v20250610-1134-REL + 15.5.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.checkcfg.core.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.checkcfg.core.test/META-INF/MANIFEST.MF index 0244a7e8f..6da6d19b4 100644 --- a/com.avaloq.tools.ddk.checkcfg.core.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.checkcfg.core.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.checkcfg.core.test Bundle-Vendor: Avaloq Group AG -Bundle-Version: 15.4.0.v20250610-1134-REL +Bundle-Version: 15.5.0.qualifier Bundle-SymbolicName: com.avaloq.tools.ddk.checkcfg.core.test; singleton:=true Bundle-ActivationPolicy: lazy Require-Bundle: com.avaloq.tools.ddk.test.core, diff --git a/com.avaloq.tools.ddk.checkcfg.core.test/pom.xml b/com.avaloq.tools.ddk.checkcfg.core.test/pom.xml index 0b3d1a9d2..997c9da87 100644 --- a/com.avaloq.tools.ddk.checkcfg.core.test/pom.xml +++ b/com.avaloq.tools.ddk.checkcfg.core.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0.v20250610-1134-REL + 15.5.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.checkcfg.core/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.checkcfg.core/META-INF/MANIFEST.MF index 2c6d5852f..99eb7a660 100644 --- a/com.avaloq.tools.ddk.checkcfg.core/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.checkcfg.core/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.checkcfg.core Bundle-Vendor: Avaloq Group AG -Bundle-Version: 15.4.0.v20250610-1134-REL +Bundle-Version: 15.5.0.qualifier Bundle-SymbolicName: com.avaloq.tools.ddk.checkcfg.core; singleton:=true Bundle-ActivationPolicy: lazy Bundle-RequiredExecutionEnvironment: JavaSE-17 diff --git a/com.avaloq.tools.ddk.checkcfg.core/pom.xml b/com.avaloq.tools.ddk.checkcfg.core/pom.xml index 07650e971..4f3b46de7 100644 --- a/com.avaloq.tools.ddk.checkcfg.core/pom.xml +++ b/com.avaloq.tools.ddk.checkcfg.core/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0.v20250610-1134-REL + 15.5.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.checkcfg.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.checkcfg.ide/META-INF/MANIFEST.MF index e868c68a8..b23706bff 100644 --- a/com.avaloq.tools.ddk.checkcfg.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.checkcfg.ide/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.checkcfg.ide Bundle-SymbolicName: com.avaloq.tools.ddk.checkcfg.ide;singleton:=true -Bundle-Version: 15.4.0.v20250610-1134-REL +Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.checkcfg.ide/pom.xml b/com.avaloq.tools.ddk.checkcfg.ide/pom.xml index f1cb438a6..716eccc3f 100644 --- a/com.avaloq.tools.ddk.checkcfg.ide/pom.xml +++ b/com.avaloq.tools.ddk.checkcfg.ide/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0.v20250610-1134-REL + 15.5.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.checkcfg.ui.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.checkcfg.ui.test/META-INF/MANIFEST.MF index 108b5cb80..a96f5610a 100644 --- a/com.avaloq.tools.ddk.checkcfg.ui.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.checkcfg.ui.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.checkcfg.ui.test Bundle-SymbolicName: com.avaloq.tools.ddk.checkcfg.ui.test -Bundle-Version: 15.4.0.v20250610-1134-REL +Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Export-Package: com.avaloq.tools.ddk.checkcfg.ui.test diff --git a/com.avaloq.tools.ddk.checkcfg.ui.test/pom.xml b/com.avaloq.tools.ddk.checkcfg.ui.test/pom.xml index f499f850c..ba0965051 100644 --- a/com.avaloq.tools.ddk.checkcfg.ui.test/pom.xml +++ b/com.avaloq.tools.ddk.checkcfg.ui.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0.v20250610-1134-REL + 15.5.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.checkcfg.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.checkcfg.ui/META-INF/MANIFEST.MF index 63c13390b..dfbd2c9c2 100644 --- a/com.avaloq.tools.ddk.checkcfg.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.checkcfg.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.checkcfg.ui Bundle-SymbolicName: com.avaloq.tools.ddk.checkcfg.ui;singleton:=true -Bundle-Version: 15.4.0.v20250610-1134-REL +Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-Activator: com.avaloq.tools.ddk.checkcfg.ui.internal.Activator diff --git a/com.avaloq.tools.ddk.checkcfg.ui/pom.xml b/com.avaloq.tools.ddk.checkcfg.ui/pom.xml index a9a9a953c..1e1c2f2d1 100644 --- a/com.avaloq.tools.ddk.checkcfg.ui/pom.xml +++ b/com.avaloq.tools.ddk.checkcfg.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0.v20250610-1134-REL + 15.5.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.feature/feature.xml b/com.avaloq.tools.ddk.feature/feature.xml index d5d2b6742..7a6a12dcb 100644 --- a/com.avaloq.tools.ddk.feature/feature.xml +++ b/com.avaloq.tools.ddk.feature/feature.xml @@ -2,7 +2,7 @@ diff --git a/com.avaloq.tools.ddk.feature/pom.xml b/com.avaloq.tools.ddk.feature/pom.xml index 9ec187131..bb7d6d7f1 100644 --- a/com.avaloq.tools.ddk.feature/pom.xml +++ b/com.avaloq.tools.ddk.feature/pom.xml @@ -4,7 +4,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0.v20250610-1134-REL + 15.5.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.runtime.feature/feature.xml b/com.avaloq.tools.ddk.runtime.feature/feature.xml index f3fb72fd1..59cae179e 100644 --- a/com.avaloq.tools.ddk.runtime.feature/feature.xml +++ b/com.avaloq.tools.ddk.runtime.feature/feature.xml @@ -2,7 +2,7 @@ diff --git a/com.avaloq.tools.ddk.runtime.feature/pom.xml b/com.avaloq.tools.ddk.runtime.feature/pom.xml index 82d35b01b..d0754e1fd 100644 --- a/com.avaloq.tools.ddk.runtime.feature/pom.xml +++ b/com.avaloq.tools.ddk.runtime.feature/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0.v20250610-1134-REL + 15.5.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.runtime.source.feature/feature.xml b/com.avaloq.tools.ddk.runtime.source.feature/feature.xml index 8f20305c6..f16aecde1 100644 --- a/com.avaloq.tools.ddk.runtime.source.feature/feature.xml +++ b/com.avaloq.tools.ddk.runtime.source.feature/feature.xml @@ -2,7 +2,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0.v20250610-1134-REL + 15.5.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.sample.helloworld.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.sample.helloworld.ide/META-INF/MANIFEST.MF index b99b5591d..723f5b9a1 100644 --- a/com.avaloq.tools.ddk.sample.helloworld.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.sample.helloworld.ide/META-INF/MANIFEST.MF @@ -3,7 +3,7 @@ Automatic-Module-Name: com.avaloq.tools.ddk.sample.helloworld.ide Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.sample.helloworld.ide Bundle-Vendor: Avaloq Group AG -Bundle-Version: 15.4.0.v20250610-1134-REL +Bundle-Version: 15.5.0.qualifier Bundle-SymbolicName: com.avaloq.tools.ddk.sample.helloworld.ide;singleton:=true Bundle-ActivationPolicy: lazy Require-Bundle: com.avaloq.tools.ddk.sample.helloworld, diff --git a/com.avaloq.tools.ddk.sample.helloworld.ide/pom.xml b/com.avaloq.tools.ddk.sample.helloworld.ide/pom.xml index 93b6170ba..58cc23ef3 100644 --- a/com.avaloq.tools.ddk.sample.helloworld.ide/pom.xml +++ b/com.avaloq.tools.ddk.sample.helloworld.ide/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0.v20250610-1134-REL + 15.5.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.sample.helloworld.ui.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.sample.helloworld.ui.test/META-INF/MANIFEST.MF index 175753066..69bfaa9fd 100644 --- a/com.avaloq.tools.ddk.sample.helloworld.ui.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.sample.helloworld.ui.test/META-INF/MANIFEST.MF @@ -3,7 +3,7 @@ Automatic-Module-Name: com.avaloq.tools.ddk.sample.helloworld.ui.test Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.sample.helloworld.ui.test Bundle-Vendor: Avaloq Group AG -Bundle-Version: 15.4.0.v20250610-1134-REL +Bundle-Version: 15.5.0.qualifier Bundle-SymbolicName: com.avaloq.tools.ddk.sample.helloworld.ui.test;singleton:=true Bundle-ActivationPolicy: lazy Require-Bundle: com.avaloq.tools.ddk.sample.helloworld, diff --git a/com.avaloq.tools.ddk.sample.helloworld.ui.test/pom.xml b/com.avaloq.tools.ddk.sample.helloworld.ui.test/pom.xml index 980d029ec..61a4259a8 100644 --- a/com.avaloq.tools.ddk.sample.helloworld.ui.test/pom.xml +++ b/com.avaloq.tools.ddk.sample.helloworld.ui.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0.v20250610-1134-REL + 15.5.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.sample.helloworld.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.sample.helloworld.ui/META-INF/MANIFEST.MF index 0a8be75a2..169f9718a 100644 --- a/com.avaloq.tools.ddk.sample.helloworld.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.sample.helloworld.ui/META-INF/MANIFEST.MF @@ -3,7 +3,7 @@ Automatic-Module-Name: com.avaloq.tools.ddk.sample.helloworld.ui Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.sample.helloworld.ui Bundle-Vendor: Avaloq Group AG -Bundle-Version: 15.4.0.v20250610-1134-REL +Bundle-Version: 15.5.0.qualifier Bundle-SymbolicName: com.avaloq.tools.ddk.sample.helloworld.ui;singleton:=true Bundle-ActivationPolicy: lazy Require-Bundle: com.avaloq.tools.ddk.sample.helloworld, diff --git a/com.avaloq.tools.ddk.sample.helloworld.ui/pom.xml b/com.avaloq.tools.ddk.sample.helloworld.ui/pom.xml index 7b9a3a581..5f0cafd17 100644 --- a/com.avaloq.tools.ddk.sample.helloworld.ui/pom.xml +++ b/com.avaloq.tools.ddk.sample.helloworld.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0.v20250610-1134-REL + 15.5.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.sample.helloworld/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.sample.helloworld/META-INF/MANIFEST.MF index 0495647f0..c1b305b27 100644 --- a/com.avaloq.tools.ddk.sample.helloworld/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.sample.helloworld/META-INF/MANIFEST.MF @@ -3,7 +3,7 @@ Automatic-Module-Name: com.avaloq.tools.ddk.sample.helloworld Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.sample.helloworld Bundle-Vendor: Avaloq Group AG -Bundle-Version: 15.4.0.v20250610-1134-REL +Bundle-Version: 15.5.0.qualifier Bundle-SymbolicName: com.avaloq.tools.ddk.sample.helloworld;singleton:=true Bundle-ActivationPolicy: lazy Require-Bundle: org.eclipse.xtext, diff --git a/com.avaloq.tools.ddk.sample.helloworld/pom.xml b/com.avaloq.tools.ddk.sample.helloworld/pom.xml index 4eecd8bd1..079ecae7e 100644 --- a/com.avaloq.tools.ddk.sample.helloworld/pom.xml +++ b/com.avaloq.tools.ddk.sample.helloworld/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0.v20250610-1134-REL + 15.5.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.source.feature/feature.xml b/com.avaloq.tools.ddk.source.feature/feature.xml index b5226bf5e..eeed04711 100644 --- a/com.avaloq.tools.ddk.source.feature/feature.xml +++ b/com.avaloq.tools.ddk.source.feature/feature.xml @@ -2,7 +2,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0.v20250610-1134-REL + 15.5.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.test.core/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.test.core/META-INF/MANIFEST.MF index 1e80001c2..61f808f61 100644 --- a/com.avaloq.tools.ddk.test.core/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.test.core/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.test.core Bundle-SymbolicName: com.avaloq.tools.ddk.test.core;singleton:=true -Bundle-Version: 15.4.0.v20250610-1134-REL +Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.test.core/pom.xml b/com.avaloq.tools.ddk.test.core/pom.xml index f212bae70..e199a988e 100644 --- a/com.avaloq.tools.ddk.test.core/pom.xml +++ b/com.avaloq.tools.ddk.test.core/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0.v20250610-1134-REL + 15.5.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.test.ui.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.test.ui.test/META-INF/MANIFEST.MF index d1cb25fdc..1375e87e0 100644 --- a/com.avaloq.tools.ddk.test.ui.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.test.ui.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.test.ui.test Bundle-SymbolicName: com.avaloq.tools.ddk.test.ui.test;singleton:=true -Bundle-Version: 15.4.0.v20250610-1134-REL +Bundle-Version: 15.5.0.qualifier Bundle-ActivationPolicy: lazy Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 diff --git a/com.avaloq.tools.ddk.test.ui.test/pom.xml b/com.avaloq.tools.ddk.test.ui.test/pom.xml index 916328429..df95b44f9 100644 --- a/com.avaloq.tools.ddk.test.ui.test/pom.xml +++ b/com.avaloq.tools.ddk.test.ui.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0.v20250610-1134-REL + 15.5.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.test.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.test.ui/META-INF/MANIFEST.MF index 9b029f2f7..ed7d1595c 100644 --- a/com.avaloq.tools.ddk.test.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.test.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.test.ui Bundle-SymbolicName: com.avaloq.tools.ddk.test.ui;singleton:=true -Bundle-Version: 15.4.0.v20250610-1134-REL +Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-Activator: com.avaloq.tools.ddk.test.ui.Activator diff --git a/com.avaloq.tools.ddk.test.ui/pom.xml b/com.avaloq.tools.ddk.test.ui/pom.xml index 4980ca870..6ef6cb584 100644 --- a/com.avaloq.tools.ddk.test.ui/pom.xml +++ b/com.avaloq.tools.ddk.test.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0.v20250610-1134-REL + 15.5.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.typesystem.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.typesystem.test/META-INF/MANIFEST.MF index bffca6b33..c02b11373 100644 --- a/com.avaloq.tools.ddk.typesystem.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.typesystem.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.typesystem.test Bundle-SymbolicName: com.avaloq.tools.ddk.typesystem.test;singleton:=true -Bundle-Version: 15.4.0.v20250610-1134-REL +Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.typesystem.test/pom.xml b/com.avaloq.tools.ddk.typesystem.test/pom.xml index 56967d8eb..2cfa3b963 100644 --- a/com.avaloq.tools.ddk.typesystem.test/pom.xml +++ b/com.avaloq.tools.ddk.typesystem.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0.v20250610-1134-REL + 15.5.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.typesystem/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.typesystem/META-INF/MANIFEST.MF index 022a6055e..0fcf57c3d 100644 --- a/com.avaloq.tools.ddk.typesystem/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.typesystem/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.typesystem Bundle-SymbolicName: com.avaloq.tools.ddk.typesystem;singleton:=true -Bundle-Version: 15.4.0.v20250610-1134-REL +Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Import-Package: org.apache.logging.log4j diff --git a/com.avaloq.tools.ddk.typesystem/pom.xml b/com.avaloq.tools.ddk.typesystem/pom.xml index 12cf85f4b..fd979a3fb 100644 --- a/com.avaloq.tools.ddk.typesystem/pom.xml +++ b/com.avaloq.tools.ddk.typesystem/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0.v20250610-1134-REL + 15.5.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.workflow/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.workflow/META-INF/MANIFEST.MF index 5e5b7f655..f3fe06079 100644 --- a/com.avaloq.tools.ddk.workflow/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.workflow/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.workflow Bundle-SymbolicName: com.avaloq.tools.ddk.workflow -Bundle-Version: 15.4.0.v20250610-1134-REL +Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Require-Bundle: com.avaloq.tools.ddk.xtext, diff --git a/com.avaloq.tools.ddk.workflow/pom.xml b/com.avaloq.tools.ddk.workflow/pom.xml index 19a3da5f4..9feff61cd 100644 --- a/com.avaloq.tools.ddk.workflow/pom.xml +++ b/com.avaloq.tools.ddk.workflow/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0.v20250610-1134-REL + 15.5.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.builder.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.builder.ui/META-INF/MANIFEST.MF index 8e6fbfd85..d9fce7192 100644 --- a/com.avaloq.tools.ddk.xtext.builder.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.builder.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.builder.ui Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.builder.ui;singleton:=true -Bundle-Version: 15.4.0.v20250610-1134-REL +Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG Require-Bundle: org.eclipse.core.runtime, org.eclipse.xtext, diff --git a/com.avaloq.tools.ddk.xtext.builder.ui/pom.xml b/com.avaloq.tools.ddk.xtext.builder.ui/pom.xml index a9b523c9f..0bcddc63a 100644 --- a/com.avaloq.tools.ddk.xtext.builder.ui/pom.xml +++ b/com.avaloq.tools.ddk.xtext.builder.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0.v20250610-1134-REL + 15.5.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.builder/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.builder/META-INF/MANIFEST.MF index 119251b27..7c8b1d67a 100644 --- a/com.avaloq.tools.ddk.xtext.builder/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.builder/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.builder Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.builder;singleton:=true -Bundle-Version: 15.4.0.v20250610-1134-REL +Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG Require-Bundle: org.eclipse.xtext.builder, org.eclipse.xtext.ui, diff --git a/com.avaloq.tools.ddk.xtext.builder/pom.xml b/com.avaloq.tools.ddk.xtext.builder/pom.xml index cf901251e..c6029a88f 100644 --- a/com.avaloq.tools.ddk.xtext.builder/pom.xml +++ b/com.avaloq.tools.ddk.xtext.builder/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0.v20250610-1134-REL + 15.5.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.check.generator/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.check.generator/META-INF/MANIFEST.MF index 2bd1c7743..a5e4a2a18 100644 --- a/com.avaloq.tools.ddk.xtext.check.generator/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.check.generator/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.check.generator Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.check.generator;singleton:=true -Bundle-Version: 15.4.0.v20250610-1134-REL +Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.check.generator/pom.xml b/com.avaloq.tools.ddk.xtext.check.generator/pom.xml index ad2b46118..392a51d6d 100644 --- a/com.avaloq.tools.ddk.xtext.check.generator/pom.xml +++ b/com.avaloq.tools.ddk.xtext.check.generator/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0.v20250610-1134-REL + 15.5.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.common.types.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.common.types.ui/META-INF/MANIFEST.MF index 40f34471a..9fa6acf78 100644 --- a/com.avaloq.tools.ddk.xtext.common.types.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.common.types.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.common.types.ui Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.common.types.ui;singleton:=true -Bundle-Version: 15.4.0.v20250610-1134-REL +Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.common.types.ui/pom.xml b/com.avaloq.tools.ddk.xtext.common.types.ui/pom.xml index 38e0ca802..aaf3ddd63 100644 --- a/com.avaloq.tools.ddk.xtext.common.types.ui/pom.xml +++ b/com.avaloq.tools.ddk.xtext.common.types.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0.v20250610-1134-REL + 15.5.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.common.types/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.common.types/META-INF/MANIFEST.MF index 861b9c141..1772d276f 100644 --- a/com.avaloq.tools.ddk.xtext.common.types/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.common.types/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.common.types Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.common.types;singleton:=true -Bundle-Version: 15.4.0.v20250610-1134-REL +Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.common.types/pom.xml b/com.avaloq.tools.ddk.xtext.common.types/pom.xml index 603c59d96..29a88296a 100644 --- a/com.avaloq.tools.ddk.xtext.common.types/pom.xml +++ b/com.avaloq.tools.ddk.xtext.common.types/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0.v20250610-1134-REL + 15.5.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.common.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.common.ui/META-INF/MANIFEST.MF index 24e061eb9..855b327d5 100644 --- a/com.avaloq.tools.ddk.xtext.common.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.common.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.common.ui Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.common.ui;singleton:=true -Bundle-Version: 15.4.0.v20250610-1134-REL +Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Export-Package: com.avaloq.tools.ddk.xtext.common.ui.contentassist diff --git a/com.avaloq.tools.ddk.xtext.common.ui/pom.xml b/com.avaloq.tools.ddk.xtext.common.ui/pom.xml index 6be1e95d1..ed9dc15bb 100644 --- a/com.avaloq.tools.ddk.xtext.common.ui/pom.xml +++ b/com.avaloq.tools.ddk.xtext.common.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0.v20250610-1134-REL + 15.5.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.xtext.export.generator/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.export.generator/META-INF/MANIFEST.MF index 4a0dddb63..896534e21 100644 --- a/com.avaloq.tools.ddk.xtext.export.generator/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.export.generator/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.export.generator Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.export.generator;singleton:=true -Bundle-Version: 15.4.0.v20250610-1134-REL +Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Require-Bundle: org.eclipse.xtext, diff --git a/com.avaloq.tools.ddk.xtext.export.generator/pom.xml b/com.avaloq.tools.ddk.xtext.export.generator/pom.xml index 4ecb67d6b..bf095f4ca 100644 --- a/com.avaloq.tools.ddk.xtext.export.generator/pom.xml +++ b/com.avaloq.tools.ddk.xtext.export.generator/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0.v20250610-1134-REL + 15.5.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.export.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.export.ide/META-INF/MANIFEST.MF index 40f6f7398..e482f0f2b 100644 --- a/com.avaloq.tools.ddk.xtext.export.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.export.ide/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.export.ide Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.export.ide;singleton:=true -Bundle-Version: 15.4.0.v20250610-1134-REL +Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.export.ide/pom.xml b/com.avaloq.tools.ddk.xtext.export.ide/pom.xml index d89f06e3e..cb2ce1462 100644 --- a/com.avaloq.tools.ddk.xtext.export.ide/pom.xml +++ b/com.avaloq.tools.ddk.xtext.export.ide/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0.v20250610-1134-REL + 15.5.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.export.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.export.test/META-INF/MANIFEST.MF index 79ea4cc4b..8b7db288e 100644 --- a/com.avaloq.tools.ddk.xtext.export.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.export.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.export.test Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.export.test;singleton:=true -Bundle-Version: 15.4.0.v20250610-1134-REL +Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.export.test/pom.xml b/com.avaloq.tools.ddk.xtext.export.test/pom.xml index d7fd18c8d..daa499066 100644 --- a/com.avaloq.tools.ddk.xtext.export.test/pom.xml +++ b/com.avaloq.tools.ddk.xtext.export.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0.v20250610-1134-REL + 15.5.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.xtext.export.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.export.ui/META-INF/MANIFEST.MF index e2c7d89c6..2bc604206 100644 --- a/com.avaloq.tools.ddk.xtext.export.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.export.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.export.ui Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.export.ui;singleton:=true -Bundle-Version: 15.4.0.v20250610-1134-REL +Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-Activator: com.avaloq.tools.ddk.xtext.export.ui.internal.ExportActivator diff --git a/com.avaloq.tools.ddk.xtext.export.ui/pom.xml b/com.avaloq.tools.ddk.xtext.export.ui/pom.xml index 0508a7ea6..4a6c0476a 100644 --- a/com.avaloq.tools.ddk.xtext.export.ui/pom.xml +++ b/com.avaloq.tools.ddk.xtext.export.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0.v20250610-1134-REL + 15.5.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.export/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.export/META-INF/MANIFEST.MF index cb48ba211..8b2f9622b 100644 --- a/com.avaloq.tools.ddk.xtext.export/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.export/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.export Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.export;singleton:=true -Bundle-Version: 15.4.0.v20250610-1134-REL +Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.export/pom.xml b/com.avaloq.tools.ddk.xtext.export/pom.xml index 99987cdc2..7335180d8 100644 --- a/com.avaloq.tools.ddk.xtext.export/pom.xml +++ b/com.avaloq.tools.ddk.xtext.export/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0.v20250610-1134-REL + 15.5.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.expression.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.expression.ide/META-INF/MANIFEST.MF index 6435fe749..32d60ad01 100644 --- a/com.avaloq.tools.ddk.xtext.expression.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.expression.ide/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.expression.ide Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.expression.ide;singleton:=true -Bundle-Version: 15.4.0.v20250610-1134-REL +Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.expression.ide/pom.xml b/com.avaloq.tools.ddk.xtext.expression.ide/pom.xml index 356d6f942..22179dc55 100644 --- a/com.avaloq.tools.ddk.xtext.expression.ide/pom.xml +++ b/com.avaloq.tools.ddk.xtext.expression.ide/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0.v20250610-1134-REL + 15.5.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.expression.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.expression.ui/META-INF/MANIFEST.MF index 6a667029f..f59903387 100644 --- a/com.avaloq.tools.ddk.xtext.expression.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.expression.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.expression.ui Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.expression.ui;singleton:=true -Bundle-Version: 15.4.0.v20250610-1134-REL +Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-Activator: com.avaloq.tools.ddk.xtext.expression.ui.internal.Activator diff --git a/com.avaloq.tools.ddk.xtext.expression.ui/pom.xml b/com.avaloq.tools.ddk.xtext.expression.ui/pom.xml index a0a25012f..d08e6b1cb 100644 --- a/com.avaloq.tools.ddk.xtext.expression.ui/pom.xml +++ b/com.avaloq.tools.ddk.xtext.expression.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0.v20250610-1134-REL + 15.5.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.expression/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.expression/META-INF/MANIFEST.MF index c536917eb..1435417b6 100644 --- a/com.avaloq.tools.ddk.xtext.expression/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.expression/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.expression Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.expression;singleton:=true -Bundle-Version: 15.4.0.v20250610-1134-REL +Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Require-Bundle: org.eclipse.xtext, diff --git a/com.avaloq.tools.ddk.xtext.expression/pom.xml b/com.avaloq.tools.ddk.xtext.expression/pom.xml index c293cfdec..fd83f2df4 100644 --- a/com.avaloq.tools.ddk.xtext.expression/pom.xml +++ b/com.avaloq.tools.ddk.xtext.expression/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0.v20250610-1134-REL + 15.5.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.format.generator/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.format.generator/META-INF/MANIFEST.MF index 21a8944c2..5229a751b 100644 --- a/com.avaloq.tools.ddk.xtext.format.generator/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.format.generator/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.format.generator Bundle-Vendor: Avaloq Group AG -Bundle-Version: 15.4.0.v20250610-1134-REL +Bundle-Version: 15.5.0.qualifier Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.format.generator;singleton:=true Require-Bundle: com.avaloq.tools.ddk.xtext.format;visibility:=reexport, org.eclipse.xpand, diff --git a/com.avaloq.tools.ddk.xtext.format.generator/pom.xml b/com.avaloq.tools.ddk.xtext.format.generator/pom.xml index 722f1d8e7..ced109400 100644 --- a/com.avaloq.tools.ddk.xtext.format.generator/pom.xml +++ b/com.avaloq.tools.ddk.xtext.format.generator/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0.v20250610-1134-REL + 15.5.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.format.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.format.ide/META-INF/MANIFEST.MF index a2fa24d28..3176c9912 100644 --- a/com.avaloq.tools.ddk.xtext.format.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.format.ide/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.format.ide Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.format.ide;singleton:=true -Bundle-Version: 15.4.0.v20250610-1134-REL +Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.format.ide/pom.xml b/com.avaloq.tools.ddk.xtext.format.ide/pom.xml index 5c0502761..5a44c757a 100644 --- a/com.avaloq.tools.ddk.xtext.format.ide/pom.xml +++ b/com.avaloq.tools.ddk.xtext.format.ide/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0.v20250610-1134-REL + 15.5.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.format.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.format.test/META-INF/MANIFEST.MF index 6a3a219b5..e6c4b2a0c 100644 --- a/com.avaloq.tools.ddk.xtext.format.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.format.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.format.test Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.format.test;singleton:=true -Bundle-Version: 15.4.0.v20250610-1134-REL +Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.format.test/pom.xml b/com.avaloq.tools.ddk.xtext.format.test/pom.xml index 036c8ae45..7e3f4125d 100644 --- a/com.avaloq.tools.ddk.xtext.format.test/pom.xml +++ b/com.avaloq.tools.ddk.xtext.format.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0.v20250610-1134-REL + 15.5.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.xtext.format.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.format.ui/META-INF/MANIFEST.MF index 6896caebb..786990913 100644 --- a/com.avaloq.tools.ddk.xtext.format.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.format.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.format.ui Bundle-Vendor: Avaloq Group AG -Bundle-Version: 15.4.0.v20250610-1134-REL +Bundle-Version: 15.5.0.qualifier Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.format.ui;singleton:=true Bundle-ActivationPolicy: lazy Require-Bundle: com.avaloq.tools.ddk.xtext.format;visibility:=reexport, diff --git a/com.avaloq.tools.ddk.xtext.format.ui/pom.xml b/com.avaloq.tools.ddk.xtext.format.ui/pom.xml index 497d61dfc..8ee7edd57 100644 --- a/com.avaloq.tools.ddk.xtext.format.ui/pom.xml +++ b/com.avaloq.tools.ddk.xtext.format.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0.v20250610-1134-REL + 15.5.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.format/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.format/META-INF/MANIFEST.MF index 01741102d..d49275522 100644 --- a/com.avaloq.tools.ddk.xtext.format/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.format/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.format Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.format;singleton:=true -Bundle-Version: 15.4.0.v20250610-1134-REL +Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.format/pom.xml b/com.avaloq.tools.ddk.xtext.format/pom.xml index f9b37f861..800c4fb10 100644 --- a/com.avaloq.tools.ddk.xtext.format/pom.xml +++ b/com.avaloq.tools.ddk.xtext.format/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0.v20250610-1134-REL + 15.5.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.generator.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.generator.test/META-INF/MANIFEST.MF index 8958180a4..8ea96f808 100644 --- a/com.avaloq.tools.ddk.xtext.generator.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.generator.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.generator.test Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.generator.test;singleton:=true -Bundle-Version: 15.4.0.v20250610-1134-REL +Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.generator.test/pom.xml b/com.avaloq.tools.ddk.xtext.generator.test/pom.xml index cd0075b2c..32e976d42 100644 --- a/com.avaloq.tools.ddk.xtext.generator.test/pom.xml +++ b/com.avaloq.tools.ddk.xtext.generator.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0.v20250610-1134-REL + 15.5.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.xtext.generator/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.generator/META-INF/MANIFEST.MF index 16d0a0f35..c3306c52c 100644 --- a/com.avaloq.tools.ddk.xtext.generator/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.generator/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.generator Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.generator;singleton:=true -Bundle-Version: 15.4.0.v20250610-1134-REL +Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Require-Bundle: org.eclipse.jface, diff --git a/com.avaloq.tools.ddk.xtext.generator/pom.xml b/com.avaloq.tools.ddk.xtext.generator/pom.xml index 3c877cfff..d7641a6bb 100644 --- a/com.avaloq.tools.ddk.xtext.generator/pom.xml +++ b/com.avaloq.tools.ddk.xtext.generator/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0.v20250610-1134-REL + 15.5.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.ide/META-INF/MANIFEST.MF index debe4b32b..c9f1a1f6e 100644 --- a/com.avaloq.tools.ddk.xtext.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.ide/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.ide Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.ide;singleton:=true -Bundle-Version: 15.4.0.v20250610-1134-REL +Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG Require-Bundle: org.eclipse.lsp4j, org.eclipse.xtext.ide, diff --git a/com.avaloq.tools.ddk.xtext.ide/pom.xml b/com.avaloq.tools.ddk.xtext.ide/pom.xml index 4cbfc44ff..488e7859e 100644 --- a/com.avaloq.tools.ddk.xtext.ide/pom.xml +++ b/com.avaloq.tools.ddk.xtext.ide/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0.v20250610-1134-REL + 15.5.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.scope.generator/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.scope.generator/META-INF/MANIFEST.MF index 879735357..fd43325c0 100644 --- a/com.avaloq.tools.ddk.xtext.scope.generator/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.scope.generator/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.scope.generator Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.scope.generator;singleton:=true -Bundle-Version: 15.4.0.v20250610-1134-REL +Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Require-Bundle: com.avaloq.tools.ddk.xtext.scope;visibility:=reexport, diff --git a/com.avaloq.tools.ddk.xtext.scope.generator/pom.xml b/com.avaloq.tools.ddk.xtext.scope.generator/pom.xml index f9e308ba1..b05f5a153 100644 --- a/com.avaloq.tools.ddk.xtext.scope.generator/pom.xml +++ b/com.avaloq.tools.ddk.xtext.scope.generator/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0.v20250610-1134-REL + 15.5.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.scope.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.scope.ide/META-INF/MANIFEST.MF index 8e9ee7754..2d365f1f1 100644 --- a/com.avaloq.tools.ddk.xtext.scope.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.scope.ide/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.scope.ide Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.scope.ide;singleton:=true -Bundle-Version: 15.4.0.v20250610-1134-REL +Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.scope.ide/pom.xml b/com.avaloq.tools.ddk.xtext.scope.ide/pom.xml index 995467301..09f968066 100644 --- a/com.avaloq.tools.ddk.xtext.scope.ide/pom.xml +++ b/com.avaloq.tools.ddk.xtext.scope.ide/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0.v20250610-1134-REL + 15.5.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.scope.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.scope.ui/META-INF/MANIFEST.MF index 5fca38a6a..6245bb756 100644 --- a/com.avaloq.tools.ddk.xtext.scope.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.scope.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.scope.ui Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.scope.ui;singleton:=true -Bundle-Version: 15.4.0.v20250610-1134-REL +Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-Activator: com.avaloq.tools.ddk.xtext.scope.ui.internal.ScopeActivator diff --git a/com.avaloq.tools.ddk.xtext.scope.ui/pom.xml b/com.avaloq.tools.ddk.xtext.scope.ui/pom.xml index 24d71dfef..e62b038ae 100644 --- a/com.avaloq.tools.ddk.xtext.scope.ui/pom.xml +++ b/com.avaloq.tools.ddk.xtext.scope.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0.v20250610-1134-REL + 15.5.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.scope/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.scope/META-INF/MANIFEST.MF index e1b886807..ff56ad9d6 100644 --- a/com.avaloq.tools.ddk.xtext.scope/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.scope/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.scope Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.scope;singleton:=true -Bundle-Version: 15.4.0.v20250610-1134-REL +Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Require-Bundle: org.eclipse.xtext, diff --git a/com.avaloq.tools.ddk.xtext.scope/pom.xml b/com.avaloq.tools.ddk.xtext.scope/pom.xml index f747e5b4a..0c678ad11 100644 --- a/com.avaloq.tools.ddk.xtext.scope/pom.xml +++ b/com.avaloq.tools.ddk.xtext.scope/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0.v20250610-1134-REL + 15.5.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.test.core/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.test.core/META-INF/MANIFEST.MF index ff724e190..84df256fb 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.test.core/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.test.core Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.test.core;singleton:=true -Bundle-Version: 15.4.0.v20250610-1134-REL +Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Require-Bundle: com.avaloq.tools.ddk.xtext, diff --git a/com.avaloq.tools.ddk.xtext.test.core/pom.xml b/com.avaloq.tools.ddk.xtext.test.core/pom.xml index b9d5e7c09..6d4b38084 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/pom.xml +++ b/com.avaloq.tools.ddk.xtext.test.core/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0.v20250610-1134-REL + 15.5.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.xtext.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.test/META-INF/MANIFEST.MF index c406baf0e..14d9a029a 100644 --- a/com.avaloq.tools.ddk.xtext.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.test Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.test;singleton:=true -Bundle-Version: 15.4.0.v20250610-1134-REL +Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.test/pom.xml b/com.avaloq.tools.ddk.xtext.test/pom.xml index a170835a4..ec938da93 100644 --- a/com.avaloq.tools.ddk.xtext.test/pom.xml +++ b/com.avaloq.tools.ddk.xtext.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0.v20250610-1134-REL + 15.5.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.xtext.ui.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.ui.test/META-INF/MANIFEST.MF index 25a54787e..2877d07f7 100644 --- a/com.avaloq.tools.ddk.xtext.ui.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.ui.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.ui.test Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.ui.test;singleton:=true -Bundle-Version: 15.4.0.v20250610-1134-REL +Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Require-Bundle: org.eclipse.xtext.ui, diff --git a/com.avaloq.tools.ddk.xtext.ui.test/pom.xml b/com.avaloq.tools.ddk.xtext.ui.test/pom.xml index b0527c633..31e02a72e 100644 --- a/com.avaloq.tools.ddk.xtext.ui.test/pom.xml +++ b/com.avaloq.tools.ddk.xtext.ui.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0.v20250610-1134-REL + 15.5.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.xtext.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.ui/META-INF/MANIFEST.MF index 8eb737ffe..079a91071 100644 --- a/com.avaloq.tools.ddk.xtext.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.ui Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.ui;singleton:=true -Bundle-Version: 15.4.0.v20250610-1134-REL +Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.ui/pom.xml b/com.avaloq.tools.ddk.xtext.ui/pom.xml index 30305b530..d5d8f5adc 100644 --- a/com.avaloq.tools.ddk.xtext.ui/pom.xml +++ b/com.avaloq.tools.ddk.xtext.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0.v20250610-1134-REL + 15.5.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.valid.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.valid.ide/META-INF/MANIFEST.MF index 6d80719ab..5e833386f 100644 --- a/com.avaloq.tools.ddk.xtext.valid.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.valid.ide/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.valid.ide Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.valid.ide;singleton:=true -Bundle-Version: 15.4.0.v20250610-1134-REL +Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.valid.ide/pom.xml b/com.avaloq.tools.ddk.xtext.valid.ide/pom.xml index fce0ea329..fc9b6246c 100644 --- a/com.avaloq.tools.ddk.xtext.valid.ide/pom.xml +++ b/com.avaloq.tools.ddk.xtext.valid.ide/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0.v20250610-1134-REL + 15.5.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.valid.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.valid.ui/META-INF/MANIFEST.MF index daa8d8cac..b3d84f692 100644 --- a/com.avaloq.tools.ddk.xtext.valid.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.valid.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.valid.ui Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.valid.ui;singleton:=true -Bundle-Version: 15.4.0.v20250610-1134-REL +Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.valid.ui/pom.xml b/com.avaloq.tools.ddk.xtext.valid.ui/pom.xml index ba8a88632..792f21e79 100644 --- a/com.avaloq.tools.ddk.xtext.valid.ui/pom.xml +++ b/com.avaloq.tools.ddk.xtext.valid.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0.v20250610-1134-REL + 15.5.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.xtext.valid/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.valid/META-INF/MANIFEST.MF index 923c2f938..b213e51df 100644 --- a/com.avaloq.tools.ddk.xtext.valid/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.valid/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.valid Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.valid;singleton:=true -Bundle-Version: 15.4.0.v20250610-1134-REL +Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.valid/pom.xml b/com.avaloq.tools.ddk.xtext.valid/pom.xml index b0d91b58f..f119f28a7 100644 --- a/com.avaloq.tools.ddk.xtext.valid/pom.xml +++ b/com.avaloq.tools.ddk.xtext.valid/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0.v20250610-1134-REL + 15.5.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.xtext/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext/META-INF/MANIFEST.MF index 1dfd30666..dec900576 100644 --- a/com.avaloq.tools.ddk.xtext/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext Bundle-SymbolicName: com.avaloq.tools.ddk.xtext;singleton:=true -Bundle-Version: 15.4.0.v20250610-1134-REL +Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext/pom.xml b/com.avaloq.tools.ddk.xtext/pom.xml index 7b5a078e8..76e6a69c7 100644 --- a/com.avaloq.tools.ddk.xtext/pom.xml +++ b/com.avaloq.tools.ddk.xtext/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0.v20250610-1134-REL + 15.5.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk/META-INF/MANIFEST.MF index be6e3115f..1875ad637 100644 --- a/com.avaloq.tools.ddk/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk Bundle-SymbolicName: com.avaloq.tools.ddk;singleton:=true -Bundle-Version: 15.4.0.v20250610-1134-REL +Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk/pom.xml b/com.avaloq.tools.ddk/pom.xml index 398b0b08e..1d18c2a00 100644 --- a/com.avaloq.tools.ddk/pom.xml +++ b/com.avaloq.tools.ddk/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0.v20250610-1134-REL + 15.5.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/ddk-parent/pom.xml b/ddk-parent/pom.xml index d10f54dea..47752238b 100644 --- a/ddk-parent/pom.xml +++ b/ddk-parent/pom.xml @@ -4,7 +4,7 @@ com.avaloq.tools.ddk ddk-parent - 15.4.0.v20250610-1134-REL + 15.5.0-SNAPSHOT pom diff --git a/ddk-repository/category.xml b/ddk-repository/category.xml index 39e28bf43..7fe225241 100644 --- a/ddk-repository/category.xml +++ b/ddk-repository/category.xml @@ -1,15 +1,15 @@ - + - + - + - + diff --git a/ddk-repository/pom.xml b/ddk-repository/pom.xml index 3547441f4..84a089edc 100644 --- a/ddk-repository/pom.xml +++ b/ddk-repository/pom.xml @@ -4,7 +4,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0.v20250610-1134-REL + 15.5.0-SNAPSHOT ../ddk-parent diff --git a/ddk-target/pom.xml b/ddk-target/pom.xml index 195d61692..814bf8803 100644 --- a/ddk-target/pom.xml +++ b/ddk-target/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.4.0.v20250610-1134-REL + 15.5.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk From 351b260c7b4f634684bdd0c83d94b3f5690d0ace Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 10 Jun 2025 11:52:54 +0000 Subject: [PATCH 19/57] chore(deps): bump org.codehaus.mojo:build-helper-maven-plugin Bumps [org.codehaus.mojo:build-helper-maven-plugin](https://github.com/mojohaus/build-helper-maven-plugin) from 3.6.0 to 3.6.1. - [Release notes](https://github.com/mojohaus/build-helper-maven-plugin/releases) - [Commits](https://github.com/mojohaus/build-helper-maven-plugin/compare/3.6.0...3.6.1) --- updated-dependencies: - dependency-name: org.codehaus.mojo:build-helper-maven-plugin dependency-version: 3.6.1 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- ddk-target/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ddk-target/pom.xml b/ddk-target/pom.xml index 814bf8803..cdc27f7e6 100644 --- a/ddk-target/pom.xml +++ b/ddk-target/pom.xml @@ -14,7 +14,7 @@ org.codehaus.mojo build-helper-maven-plugin - 3.6.0 + 3.6.1 attach-artifacts From 3420ffb8fa557d56d78fe9e8d95852065558ac06 Mon Sep 17 00:00:00 2001 From: Fredi Pfister Date: Mon, 16 Jun 2025 14:42:02 +0200 Subject: [PATCH 20/57] chore: upgrade Xtext to 2.39 Take advantage of a new feature in Xtext, see https://github.com/eclipse-xtext/xtext/pull/3329 --- .../tools/ddk/xtext/linking/LazyLinkingResource2.java | 6 ++++++ ddk-parent/pom.xml | 2 +- ddk-target/ddk.target | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/linking/LazyLinkingResource2.java b/com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/linking/LazyLinkingResource2.java index 0ae7db7e8..6a5639112 100644 --- a/com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/linking/LazyLinkingResource2.java +++ b/com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/linking/LazyLinkingResource2.java @@ -13,6 +13,7 @@ import java.io.IOException; import java.util.Arrays; import java.util.HashMap; +import java.util.LinkedHashSet; import java.util.Map; import java.util.Set; @@ -123,6 +124,11 @@ public String getSourceText() throws IOException { return SerializationUtil.getCompleteContent(this); } + @Override + protected LinkedHashSet> getResolvingSet(final boolean initial) { + return resolving; + } + /** * Sets whether this resource is currently being loaded. *

diff --git a/ddk-parent/pom.xml b/ddk-parent/pom.xml index 47752238b..3305a25c7 100644 --- a/ddk-parent/pom.xml +++ b/ddk-parent/pom.xml @@ -55,7 +55,7 @@ 3.26.0 7.13.0 4.0.13 - 2.38.0 + 2.39.0 diff --git a/ddk-target/ddk.target b/ddk-target/ddk.target index f4647b262..8b800c0ec 100644 --- a/ddk-target/ddk.target +++ b/ddk-target/ddk.target @@ -37,7 +37,7 @@ - + From cfe4bec8ab0a179c023fa3d2202889cf7799fb4a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 23 Jun 2025 13:20:04 +0000 Subject: [PATCH 21/57] chore(deps): bump com.puppycrawl.tools:checkstyle in /ddk-parent Bumps [com.puppycrawl.tools:checkstyle](https://github.com/checkstyle/checkstyle) from 10.24.0 to 10.25.1. - [Release notes](https://github.com/checkstyle/checkstyle/releases) - [Commits](https://github.com/checkstyle/checkstyle/compare/checkstyle-10.24.0...checkstyle-10.25.1) --- updated-dependencies: - dependency-name: com.puppycrawl.tools:checkstyle dependency-version: 10.25.1 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- ddk-parent/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ddk-parent/pom.xml b/ddk-parent/pom.xml index 3305a25c7..5efb4d3b2 100644 --- a/ddk-parent/pom.xml +++ b/ddk-parent/pom.xml @@ -47,7 +47,7 @@ 3.6.0 - 10.24.0 + 10.25.1 3.5.0 3.1.4 4.9.3.0 From 7a3ee34ec7d0a9691e614e1ff1badfc309b13119 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Porras=20Campo?= Date: Tue, 24 Jun 2025 09:30:15 +0200 Subject: [PATCH 22/57] chore(deps): bump pmd.version from 7.13.0 to 7.14.0 --- ddk-configuration/pmd/ruleset.xml | 1 + ddk-parent/pom.xml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ddk-configuration/pmd/ruleset.xml b/ddk-configuration/pmd/ruleset.xml index 716edcd49..e969f3727 100644 --- a/ddk-configuration/pmd/ruleset.xml +++ b/ddk-configuration/pmd/ruleset.xml @@ -85,6 +85,7 @@ + diff --git a/ddk-parent/pom.xml b/ddk-parent/pom.xml index 5efb4d3b2..d07b8f212 100644 --- a/ddk-parent/pom.xml +++ b/ddk-parent/pom.xml @@ -53,7 +53,7 @@ 4.9.3.0 4.9.3 3.26.0 - 7.13.0 + 7.14.0 4.0.13 2.39.0 From ae62ec7547e00eba2a10b3186db4feccdd5874d9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 30 Jun 2025 15:22:58 +0000 Subject: [PATCH 23/57] chore(deps): bump com.github.spotbugs:spotbugs-maven-plugin Bumps [com.github.spotbugs:spotbugs-maven-plugin](https://github.com/spotbugs/spotbugs-maven-plugin) from 4.9.3.0 to 4.9.3.2. - [Release notes](https://github.com/spotbugs/spotbugs-maven-plugin/releases) - [Commits](https://github.com/spotbugs/spotbugs-maven-plugin/compare/spotbugs-maven-plugin-4.9.3.0...spotbugs-maven-plugin-4.9.3.2) --- updated-dependencies: - dependency-name: com.github.spotbugs:spotbugs-maven-plugin dependency-version: 4.9.3.2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- ddk-parent/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ddk-parent/pom.xml b/ddk-parent/pom.xml index d07b8f212..9164f5af7 100644 --- a/ddk-parent/pom.xml +++ b/ddk-parent/pom.xml @@ -50,7 +50,7 @@ 10.25.1 3.5.0 3.1.4 - 4.9.3.0 + 4.9.3.2 4.9.3 3.26.0 7.14.0 From 07eeb5375205d1e530ee92d487580629378259e2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 30 Jun 2025 15:30:46 +0000 Subject: [PATCH 24/57] chore(deps): bump pmd.version from 7.14.0 to 7.15.0 in /ddk-parent Bumps `pmd.version` from 7.14.0 to 7.15.0. Updates `net.sourceforge.pmd:pmd-core` from 7.14.0 to 7.15.0 - [Release notes](https://github.com/pmd/pmd/releases) - [Changelog](https://github.com/pmd/pmd/blob/main/docs/render_release_notes.rb) - [Commits](https://github.com/pmd/pmd/compare/pmd_releases/7.14.0...pmd_releases/7.15.0) Updates `net.sourceforge.pmd:pmd-java` from 7.14.0 to 7.15.0 - [Release notes](https://github.com/pmd/pmd/releases) - [Changelog](https://github.com/pmd/pmd/blob/main/docs/render_release_notes.rb) - [Commits](https://github.com/pmd/pmd/compare/pmd_releases/7.14.0...pmd_releases/7.15.0) --- updated-dependencies: - dependency-name: net.sourceforge.pmd:pmd-core dependency-version: 7.15.0 dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: net.sourceforge.pmd:pmd-java dependency-version: 7.15.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- ddk-parent/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ddk-parent/pom.xml b/ddk-parent/pom.xml index d07b8f212..f7ca7ee54 100644 --- a/ddk-parent/pom.xml +++ b/ddk-parent/pom.xml @@ -53,7 +53,7 @@ 4.9.3.0 4.9.3 3.26.0 - 7.14.0 + 7.15.0 4.0.13 2.39.0 From a614879b46beee5497b8e82044b1a9468e436139 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 1 Jul 2025 05:51:32 +0000 Subject: [PATCH 25/57] chore(deps): bump org.apache.maven.plugins:maven-pmd-plugin Bumps [org.apache.maven.plugins:maven-pmd-plugin](https://github.com/apache/maven-pmd-plugin) from 3.26.0 to 3.27.0. - [Release notes](https://github.com/apache/maven-pmd-plugin/releases) - [Commits](https://github.com/apache/maven-pmd-plugin/compare/maven-pmd-plugin-3.26.0...maven-pmd-plugin-3.27.0) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-pmd-plugin dependency-version: 3.27.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- ddk-parent/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ddk-parent/pom.xml b/ddk-parent/pom.xml index a782d9a1e..ddefc927d 100644 --- a/ddk-parent/pom.xml +++ b/ddk-parent/pom.xml @@ -52,7 +52,7 @@ 3.1.4 4.9.3.2 4.9.3 - 3.26.0 + 3.27.0 7.15.0 4.0.13 2.39.0 From 15327378a84484be60b80a47419ab51aa18ca67b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 1 Jul 2025 07:03:35 +0000 Subject: [PATCH 26/57] chore(deps): bump com.puppycrawl.tools:checkstyle in /ddk-parent Bumps [com.puppycrawl.tools:checkstyle](https://github.com/checkstyle/checkstyle) from 10.25.1 to 10.26.1. - [Release notes](https://github.com/checkstyle/checkstyle/releases) - [Commits](https://github.com/checkstyle/checkstyle/compare/checkstyle-10.25.1...checkstyle-10.26.1) --- updated-dependencies: - dependency-name: com.puppycrawl.tools:checkstyle dependency-version: 10.26.1 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- ddk-parent/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ddk-parent/pom.xml b/ddk-parent/pom.xml index ddefc927d..bbad6500e 100644 --- a/ddk-parent/pom.xml +++ b/ddk-parent/pom.xml @@ -47,7 +47,7 @@ 3.6.0 - 10.25.1 + 10.26.1 3.5.0 3.1.4 4.9.3.2 From 6106a8b9e1113f8ac24c898e79d1d569fa94eb24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Porras=20Campo?= Date: Tue, 1 Jul 2025 16:47:51 +0200 Subject: [PATCH 27/57] fix: update launch, classpath and MANIFEST.MF files to specify Java 21 --- com.avaloq.tools.ddk.check.core.test/.classpath | 2 +- com.avaloq.tools.ddk.check.core.test/CheckCoreTestSuite.launch | 2 +- com.avaloq.tools.ddk.check.core.test/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.core/.classpath | 2 +- com.avaloq.tools.ddk.check.core/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.ide/.classpath | 2 +- com.avaloq.tools.ddk.check.ide/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.lib/.classpath | 2 +- com.avaloq.tools.ddk.check.lib/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.runtime.core.test/.classpath | 2 +- .../CheckRuntimeTestSuite.launch | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.runtime.core/.classpath | 2 +- com.avaloq.tools.ddk.check.runtime.core/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.runtime.ui/.classpath | 2 +- com.avaloq.tools.ddk.check.runtime.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.test.runtime.tests/.classpath | 2 +- .../CheckExecutionEnvironmentTestSuite.launch | 2 +- .../CheckLibraryChecksTestSuite.launch | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.test.runtime.ui/.classpath | 2 +- com.avaloq.tools.ddk.check.test.runtime.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.test.runtime/.classpath | 2 +- .../GenerateTestLanguage.mwe2.launch | 2 +- com.avaloq.tools.ddk.check.test.runtime/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.ui.test/.classpath | 2 +- com.avaloq.tools.ddk.check.ui.test/CheckUiTestSuite.launch | 2 +- com.avaloq.tools.ddk.check.ui.test/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.ui/.classpath | 2 +- com.avaloq.tools.ddk.check.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.checkcfg.core.test/.classpath | 2 +- .../CheckCfgTestSuite.launch | 2 +- com.avaloq.tools.ddk.checkcfg.core.test/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.checkcfg.core/.classpath | 2 +- com.avaloq.tools.ddk.checkcfg.core/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.checkcfg.ide/.classpath | 2 +- com.avaloq.tools.ddk.checkcfg.ide/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.checkcfg.ui.test/.classpath | 2 +- .../CheckCfgUiTestSuite.launch | 2 +- com.avaloq.tools.ddk.checkcfg.ui.test/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.checkcfg.ui/.classpath | 2 +- com.avaloq.tools.ddk.checkcfg.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.sample.helloworld.ide/.classpath | 2 +- com.avaloq.tools.ddk.sample.helloworld.ide/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.sample.helloworld.ui.test/.classpath | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.sample.helloworld.ui/.classpath | 2 +- com.avaloq.tools.ddk.sample.helloworld.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.sample.helloworld/.classpath | 2 +- .../.launch/Launch Runtime Eclipse.launch | 2 +- com.avaloq.tools.ddk.sample.helloworld/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.test.core/.classpath | 2 +- com.avaloq.tools.ddk.test.core/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.test.ui.test/.classpath | 2 +- com.avaloq.tools.ddk.test.ui.test/AllTests.launch | 2 +- com.avaloq.tools.ddk.test.ui.test/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.test.ui/.classpath | 2 +- com.avaloq.tools.ddk.test.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.typesystem.test/.classpath | 2 +- com.avaloq.tools.ddk.typesystem.test/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.typesystem.test/TypeSystemTestSuite.launch | 2 +- com.avaloq.tools.ddk.typesystem/.classpath | 2 +- com.avaloq.tools.ddk.typesystem/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.workflow/.classpath | 2 +- com.avaloq.tools.ddk.workflow/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.builder.ui/.classpath | 2 +- com.avaloq.tools.ddk.xtext.builder.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.builder/.classpath | 2 +- com.avaloq.tools.ddk.xtext.builder/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.check.generator/.classpath | 2 +- com.avaloq.tools.ddk.xtext.check.generator/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.common.types.ui/.classpath | 2 +- com.avaloq.tools.ddk.xtext.common.types.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.common.types/.classpath | 2 +- com.avaloq.tools.ddk.xtext.common.types/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.common.ui/.classpath | 2 +- com.avaloq.tools.ddk.xtext.common.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.export.generator/.classpath | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.export.ide/.classpath | 2 +- com.avaloq.tools.ddk.xtext.export.ide/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.export.test/.classpath | 2 +- com.avaloq.tools.ddk.xtext.export.test/ExportTestSuite.launch | 2 +- com.avaloq.tools.ddk.xtext.export.test/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.export.ui/.classpath | 2 +- com.avaloq.tools.ddk.xtext.export.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.export/.classpath | 2 +- com.avaloq.tools.ddk.xtext.export/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.expression.ide/.classpath | 2 +- com.avaloq.tools.ddk.xtext.expression.ide/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.expression.ui/.classpath | 2 +- com.avaloq.tools.ddk.xtext.expression.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.expression/.classpath | 2 +- com.avaloq.tools.ddk.xtext.expression/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.format.generator/.classpath | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.format.ide/.classpath | 2 +- com.avaloq.tools.ddk.xtext.format.ide/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.format.test/.classpath | 2 +- com.avaloq.tools.ddk.xtext.format.test/FormatTestSuite.launch | 2 +- com.avaloq.tools.ddk.xtext.format.test/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.format.ui.test/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.format.ui/.classpath | 2 +- com.avaloq.tools.ddk.xtext.format.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.format/.classpath | 2 +- com.avaloq.tools.ddk.xtext.format/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.generator.test/.classpath | 2 +- .../GeneratorTestSuite.launch | 2 +- com.avaloq.tools.ddk.xtext.generator.test/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.generator/.classpath | 2 +- com.avaloq.tools.ddk.xtext.generator/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.ide/.classpath | 2 +- com.avaloq.tools.ddk.xtext.ide/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.scope.generator/.classpath | 2 +- com.avaloq.tools.ddk.xtext.scope.generator/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.scope.ide/.classpath | 2 +- com.avaloq.tools.ddk.xtext.scope.ide/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.scope.ui/.classpath | 2 +- com.avaloq.tools.ddk.xtext.scope.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.scope/.classpath | 2 +- com.avaloq.tools.ddk.xtext.scope/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.test.core/.classpath | 2 +- com.avaloq.tools.ddk.xtext.test.core/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.test/.classpath | 2 +- com.avaloq.tools.ddk.xtext.test/AllTests DDK.launch | 2 +- com.avaloq.tools.ddk.xtext.test/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.ui.test/.classpath | 2 +- com.avaloq.tools.ddk.xtext.ui.test/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.ui.test/XtextUiTestSuite.launch | 2 +- com.avaloq.tools.ddk.xtext.ui/.classpath | 2 +- com.avaloq.tools.ddk.xtext.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.valid.ide/.classpath | 2 +- com.avaloq.tools.ddk.xtext.valid.ide/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.valid.ui/.classpath | 2 +- com.avaloq.tools.ddk.xtext.valid.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.valid/.classpath | 2 +- com.avaloq.tools.ddk.xtext.valid/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext/.classpath | 2 +- com.avaloq.tools.ddk.xtext/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk/.classpath | 2 +- com.avaloq.tools.ddk/META-INF/MANIFEST.MF | 2 +- ddk-configuration/launches/Maven Clean.launch | 2 +- ddk-configuration/launches/Maven Verify.launch | 2 +- ddk-configuration/launches/devkit-run.launch | 2 +- 144 files changed, 144 insertions(+), 144 deletions(-) diff --git a/com.avaloq.tools.ddk.check.core.test/.classpath b/com.avaloq.tools.ddk.check.core.test/.classpath index 999bc6996..3450ddaac 100644 --- a/com.avaloq.tools.ddk.check.core.test/.classpath +++ b/com.avaloq.tools.ddk.check.core.test/.classpath @@ -1,6 +1,6 @@ - + diff --git a/com.avaloq.tools.ddk.check.core.test/CheckCoreTestSuite.launch b/com.avaloq.tools.ddk.check.core.test/CheckCoreTestSuite.launch index af5e37f28..2328824ee 100644 --- a/com.avaloq.tools.ddk.check.core.test/CheckCoreTestSuite.launch +++ b/com.avaloq.tools.ddk.check.core.test/CheckCoreTestSuite.launch @@ -23,7 +23,7 @@ - + diff --git a/com.avaloq.tools.ddk.check.core.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.core.test/META-INF/MANIFEST.MF index 7fb3800b1..b71d3a3b3 100644 --- a/com.avaloq.tools.ddk.check.core.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.core.test/META-INF/MANIFEST.MF @@ -4,7 +4,7 @@ Bundle-Name: com.avaloq.tools.ddk.check.core.test Bundle-SymbolicName: com.avaloq.tools.ddk.check.core.test;singleton:=true Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG -Bundle-RequiredExecutionEnvironment: JavaSE-17 +Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy Require-Bundle: com.avaloq.tools.ddk.check.core, com.avaloq.tools.ddk.xtext.test.core, diff --git a/com.avaloq.tools.ddk.check.core/.classpath b/com.avaloq.tools.ddk.check.core/.classpath index d0bab55ad..0c82b2437 100644 --- a/com.avaloq.tools.ddk.check.core/.classpath +++ b/com.avaloq.tools.ddk.check.core/.classpath @@ -11,7 +11,7 @@ - + diff --git a/com.avaloq.tools.ddk.check.core/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.core/META-INF/MANIFEST.MF index 6dff0fc04..c14123d41 100644 --- a/com.avaloq.tools.ddk.check.core/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.core/META-INF/MANIFEST.MF @@ -4,7 +4,7 @@ Bundle-Name: com.avaloq.tools.ddk.check.core Bundle-SymbolicName: com.avaloq.tools.ddk.check.core;singleton:=true Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG -Bundle-RequiredExecutionEnvironment: JavaSE-17 +Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy Require-Bundle: org.eclipse.xtext, org.eclipse.xtext.xtext.generator, diff --git a/com.avaloq.tools.ddk.check.ide/.classpath b/com.avaloq.tools.ddk.check.ide/.classpath index 8ad1f7818..5a4d66ff3 100644 --- a/com.avaloq.tools.ddk.check.ide/.classpath +++ b/com.avaloq.tools.ddk.check.ide/.classpath @@ -11,7 +11,7 @@ - + diff --git a/com.avaloq.tools.ddk.check.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.ide/META-INF/MANIFEST.MF index acea7c177..c0f332cf7 100644 --- a/com.avaloq.tools.ddk.check.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.ide/META-INF/MANIFEST.MF @@ -4,7 +4,7 @@ Bundle-Name: com.avaloq.tools.ddk.check.ide Bundle-SymbolicName: com.avaloq.tools.ddk.check.ide;singleton:=true Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG -Bundle-RequiredExecutionEnvironment: JavaSE-17 +Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy Require-Bundle: com.avaloq.tools.ddk.check.core, com.avaloq.tools.ddk.check.runtime.core, diff --git a/com.avaloq.tools.ddk.check.lib/.classpath b/com.avaloq.tools.ddk.check.lib/.classpath index b6ada0807..0aa1aa099 100644 --- a/com.avaloq.tools.ddk.check.lib/.classpath +++ b/com.avaloq.tools.ddk.check.lib/.classpath @@ -1,6 +1,6 @@ - + diff --git a/com.avaloq.tools.ddk.check.lib/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.lib/META-INF/MANIFEST.MF index b81d4fe80..cc1eff685 100644 --- a/com.avaloq.tools.ddk.check.lib/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.lib/META-INF/MANIFEST.MF @@ -7,6 +7,6 @@ Bundle-Vendor: Avaloq Group AG Require-Bundle: org.eclipse.core.runtime, org.eclipse.xtext, com.avaloq.tools.ddk.xtext -Bundle-RequiredExecutionEnvironment: JavaSE-17 +Bundle-RequiredExecutionEnvironment: JavaSE-21 Export-Package: com.avaloq.tools.ddk.check.lib Automatic-Module-Name: com.avaloq.tools.ddk.check.lib diff --git a/com.avaloq.tools.ddk.check.runtime.core.test/.classpath b/com.avaloq.tools.ddk.check.runtime.core.test/.classpath index b6ada0807..0aa1aa099 100644 --- a/com.avaloq.tools.ddk.check.runtime.core.test/.classpath +++ b/com.avaloq.tools.ddk.check.runtime.core.test/.classpath @@ -1,6 +1,6 @@ - + diff --git a/com.avaloq.tools.ddk.check.runtime.core.test/CheckRuntimeTestSuite.launch b/com.avaloq.tools.ddk.check.runtime.core.test/CheckRuntimeTestSuite.launch index 2f7e0d59a..c1f082532 100644 --- a/com.avaloq.tools.ddk.check.runtime.core.test/CheckRuntimeTestSuite.launch +++ b/com.avaloq.tools.ddk.check.runtime.core.test/CheckRuntimeTestSuite.launch @@ -23,7 +23,7 @@ - + diff --git a/com.avaloq.tools.ddk.check.runtime.core.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.runtime.core.test/META-INF/MANIFEST.MF index 237030205..41eedf4b2 100644 --- a/com.avaloq.tools.ddk.check.runtime.core.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.runtime.core.test/META-INF/MANIFEST.MF @@ -4,7 +4,7 @@ Bundle-Name: com.avaloq.tools.ddk.check.runtime.core.test Bundle-SymbolicName: com.avaloq.tools.ddk.check.runtime.core.test;singleton:=true Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG -Bundle-RequiredExecutionEnvironment: JavaSE-17 +Bundle-RequiredExecutionEnvironment: JavaSE-21 Require-Bundle: org.eclipse.ui, org.eclipse.core.runtime, org.eclipse.xtext, diff --git a/com.avaloq.tools.ddk.check.runtime.core/.classpath b/com.avaloq.tools.ddk.check.runtime.core/.classpath index b6ada0807..0aa1aa099 100644 --- a/com.avaloq.tools.ddk.check.runtime.core/.classpath +++ b/com.avaloq.tools.ddk.check.runtime.core/.classpath @@ -1,6 +1,6 @@ - + diff --git a/com.avaloq.tools.ddk.check.runtime.core/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.runtime.core/META-INF/MANIFEST.MF index f7971c6a2..a9f4aff7b 100644 --- a/com.avaloq.tools.ddk.check.runtime.core/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.runtime.core/META-INF/MANIFEST.MF @@ -4,7 +4,7 @@ Bundle-Name: com.avaloq.tools.ddk.check.runtime.core Bundle-SymbolicName: com.avaloq.tools.ddk.check.runtime.core;singleton:=true Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG -Bundle-RequiredExecutionEnvironment: JavaSE-17 +Bundle-RequiredExecutionEnvironment: JavaSE-21 Require-Bundle: org.eclipse.core.resources, org.eclipse.core.runtime, org.eclipse.xtext, diff --git a/com.avaloq.tools.ddk.check.runtime.ui/.classpath b/com.avaloq.tools.ddk.check.runtime.ui/.classpath index b6ada0807..0aa1aa099 100644 --- a/com.avaloq.tools.ddk.check.runtime.ui/.classpath +++ b/com.avaloq.tools.ddk.check.runtime.ui/.classpath @@ -1,6 +1,6 @@ - + diff --git a/com.avaloq.tools.ddk.check.runtime.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.runtime.ui/META-INF/MANIFEST.MF index c259b5cb9..94250d031 100644 --- a/com.avaloq.tools.ddk.check.runtime.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.runtime.ui/META-INF/MANIFEST.MF @@ -10,7 +10,7 @@ Require-Bundle: org.eclipse.ui, org.eclipse.xtext.ui, com.avaloq.tools.ddk.check.runtime.core, org.eclipse.ui.ide -Bundle-RequiredExecutionEnvironment: JavaSE-17 +Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy Import-Package: org.apache.logging.log4j Export-Package: com.avaloq.tools.ddk.check.runtime.ui.editor, diff --git a/com.avaloq.tools.ddk.check.test.runtime.tests/.classpath b/com.avaloq.tools.ddk.check.test.runtime.tests/.classpath index 4dbd9052d..1b454394e 100644 --- a/com.avaloq.tools.ddk.check.test.runtime.tests/.classpath +++ b/com.avaloq.tools.ddk.check.test.runtime.tests/.classpath @@ -7,7 +7,7 @@ - + diff --git a/com.avaloq.tools.ddk.check.test.runtime.tests/CheckExecutionEnvironmentTestSuite.launch b/com.avaloq.tools.ddk.check.test.runtime.tests/CheckExecutionEnvironmentTestSuite.launch index 8d995662a..155ab47de 100644 --- a/com.avaloq.tools.ddk.check.test.runtime.tests/CheckExecutionEnvironmentTestSuite.launch +++ b/com.avaloq.tools.ddk.check.test.runtime.tests/CheckExecutionEnvironmentTestSuite.launch @@ -23,7 +23,7 @@ - + diff --git a/com.avaloq.tools.ddk.check.test.runtime.tests/CheckLibraryChecksTestSuite.launch b/com.avaloq.tools.ddk.check.test.runtime.tests/CheckLibraryChecksTestSuite.launch index b641c0def..2773f800f 100644 --- a/com.avaloq.tools.ddk.check.test.runtime.tests/CheckLibraryChecksTestSuite.launch +++ b/com.avaloq.tools.ddk.check.test.runtime.tests/CheckLibraryChecksTestSuite.launch @@ -23,7 +23,7 @@ - + diff --git a/com.avaloq.tools.ddk.check.test.runtime.tests/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.test.runtime.tests/META-INF/MANIFEST.MF index a846d418d..b34273b0a 100644 --- a/com.avaloq.tools.ddk.check.test.runtime.tests/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.test.runtime.tests/META-INF/MANIFEST.MF @@ -24,7 +24,7 @@ Import-Package: org.junit.runner;version="4.5.0", org.junit.runners;version="4.5.0", org.junit.runners.model;version="4.5.0", org.hamcrest.core -Bundle-RequiredExecutionEnvironment: JavaSE-17 +Bundle-RequiredExecutionEnvironment: JavaSE-21 Export-Package: com.avaloq.tools.ddk.check.test.runtime, com.avaloq.tools.ddk.check.test.runtime.tests, com.avaloq.tools.ddk.check diff --git a/com.avaloq.tools.ddk.check.test.runtime.ui/.classpath b/com.avaloq.tools.ddk.check.test.runtime.ui/.classpath index c3e106958..7887a7ed7 100644 --- a/com.avaloq.tools.ddk.check.test.runtime.ui/.classpath +++ b/com.avaloq.tools.ddk.check.test.runtime.ui/.classpath @@ -6,7 +6,7 @@ - + diff --git a/com.avaloq.tools.ddk.check.test.runtime.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.test.runtime.ui/META-INF/MANIFEST.MF index 543986201..2bc3862c3 100644 --- a/com.avaloq.tools.ddk.check.test.runtime.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.test.runtime.ui/META-INF/MANIFEST.MF @@ -20,7 +20,7 @@ Require-Bundle: com.avaloq.tools.ddk.check.test.runtime;visibility:=reexport, org.apache.log4j Import-Package: org.apache.commons.logging, org.apache.log4j -Bundle-RequiredExecutionEnvironment: JavaSE-17 +Bundle-RequiredExecutionEnvironment: JavaSE-21 Export-Package: com.avaloq.tools.ddk.check.ui.contentassist.antlr, com.avaloq.tools.ddk.check.ui.internal, com.avaloq.tools.ddk.check.ui.contentassist, diff --git a/com.avaloq.tools.ddk.check.test.runtime/.classpath b/com.avaloq.tools.ddk.check.test.runtime/.classpath index 7ce81897b..fc183f78b 100644 --- a/com.avaloq.tools.ddk.check.test.runtime/.classpath +++ b/com.avaloq.tools.ddk.check.test.runtime/.classpath @@ -11,7 +11,7 @@ - + diff --git a/com.avaloq.tools.ddk.check.test.runtime/GenerateTestLanguage.mwe2.launch b/com.avaloq.tools.ddk.check.test.runtime/GenerateTestLanguage.mwe2.launch index 23ce20710..4080a91c7 100644 --- a/com.avaloq.tools.ddk.check.test.runtime/GenerateTestLanguage.mwe2.launch +++ b/com.avaloq.tools.ddk.check.test.runtime/GenerateTestLanguage.mwe2.launch @@ -8,7 +8,7 @@ - + diff --git a/com.avaloq.tools.ddk.check.test.runtime/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.test.runtime/META-INF/MANIFEST.MF index 091d9c9dd..f8b6a9365 100644 --- a/com.avaloq.tools.ddk.check.test.runtime/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.test.runtime/META-INF/MANIFEST.MF @@ -27,7 +27,7 @@ Require-Bundle: org.eclipse.xtext;visibility:=reexport, Import-Package: org.apache.log4j, org.apache.logging.log4j, org.eclipse.xtext.xbase.lib -Bundle-RequiredExecutionEnvironment: JavaSE-17 +Bundle-RequiredExecutionEnvironment: JavaSE-21 Export-Package: com.avaloq.tools.ddk.check, com.avaloq.tools.ddk.check.formatting, com.avaloq.tools.ddk.check.generator, diff --git a/com.avaloq.tools.ddk.check.ui.test/.classpath b/com.avaloq.tools.ddk.check.ui.test/.classpath index aaafcc186..aa502e196 100644 --- a/com.avaloq.tools.ddk.check.ui.test/.classpath +++ b/com.avaloq.tools.ddk.check.ui.test/.classpath @@ -6,7 +6,7 @@ - + diff --git a/com.avaloq.tools.ddk.check.ui.test/CheckUiTestSuite.launch b/com.avaloq.tools.ddk.check.ui.test/CheckUiTestSuite.launch index 04e7490f3..8a8daff4b 100644 --- a/com.avaloq.tools.ddk.check.ui.test/CheckUiTestSuite.launch +++ b/com.avaloq.tools.ddk.check.ui.test/CheckUiTestSuite.launch @@ -23,7 +23,7 @@ - + diff --git a/com.avaloq.tools.ddk.check.ui.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.ui.test/META-INF/MANIFEST.MF index 4ed937e9a..e557579bb 100644 --- a/com.avaloq.tools.ddk.check.ui.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.ui.test/META-INF/MANIFEST.MF @@ -4,7 +4,7 @@ Bundle-Name: com.avaloq.tools.ddk.check.ui.test Bundle-SymbolicName: com.avaloq.tools.ddk.check.ui.test Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG -Bundle-RequiredExecutionEnvironment: JavaSE-17 +Bundle-RequiredExecutionEnvironment: JavaSE-21 Require-Bundle: org.junit, com.avaloq.tools.ddk.check.ui, com.avaloq.tools.ddk.xtext.test.core, diff --git a/com.avaloq.tools.ddk.check.ui/.classpath b/com.avaloq.tools.ddk.check.ui/.classpath index 8ad1f7818..5a4d66ff3 100644 --- a/com.avaloq.tools.ddk.check.ui/.classpath +++ b/com.avaloq.tools.ddk.check.ui/.classpath @@ -11,7 +11,7 @@ - + diff --git a/com.avaloq.tools.ddk.check.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.ui/META-INF/MANIFEST.MF index 3b303899a..9cbc7fd09 100644 --- a/com.avaloq.tools.ddk.check.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.ui/META-INF/MANIFEST.MF @@ -4,7 +4,7 @@ Bundle-Name: com.avaloq.tools.ddk.check.ui Bundle-SymbolicName: com.avaloq.tools.ddk.check.ui;singleton:=true Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG -Bundle-RequiredExecutionEnvironment: JavaSE-17 +Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-Activator: com.avaloq.tools.ddk.check.ui.internal.Activator Bundle-ActivationPolicy: lazy Require-Bundle: com.avaloq.tools.ddk.xtext.builder, diff --git a/com.avaloq.tools.ddk.checkcfg.core.test/.classpath b/com.avaloq.tools.ddk.checkcfg.core.test/.classpath index 2aa982295..fa768afab 100644 --- a/com.avaloq.tools.ddk.checkcfg.core.test/.classpath +++ b/com.avaloq.tools.ddk.checkcfg.core.test/.classpath @@ -6,7 +6,7 @@ - + diff --git a/com.avaloq.tools.ddk.checkcfg.core.test/CheckCfgTestSuite.launch b/com.avaloq.tools.ddk.checkcfg.core.test/CheckCfgTestSuite.launch index 9c26ae0e3..b58b0e6ac 100644 --- a/com.avaloq.tools.ddk.checkcfg.core.test/CheckCfgTestSuite.launch +++ b/com.avaloq.tools.ddk.checkcfg.core.test/CheckCfgTestSuite.launch @@ -23,7 +23,7 @@ - + diff --git a/com.avaloq.tools.ddk.checkcfg.core.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.checkcfg.core.test/META-INF/MANIFEST.MF index 6da6d19b4..f77d0cef8 100644 --- a/com.avaloq.tools.ddk.checkcfg.core.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.checkcfg.core.test/META-INF/MANIFEST.MF @@ -30,5 +30,5 @@ Import-Package: org.hamcrest.core, org.junit.runners.model;version="4.5.0" Export-Package: com.avaloq.tools.ddk.checkcfg.test, com.avaloq.tools.ddk.checkcfg.util -Bundle-RequiredExecutionEnvironment: JavaSE-17 +Bundle-RequiredExecutionEnvironment: JavaSE-21 Automatic-Module-Name: com.avaloq.tools.ddk.checkcfg.core.test diff --git a/com.avaloq.tools.ddk.checkcfg.core/.classpath b/com.avaloq.tools.ddk.checkcfg.core/.classpath index 8ad1f7818..5a4d66ff3 100644 --- a/com.avaloq.tools.ddk.checkcfg.core/.classpath +++ b/com.avaloq.tools.ddk.checkcfg.core/.classpath @@ -11,7 +11,7 @@ - + diff --git a/com.avaloq.tools.ddk.checkcfg.core/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.checkcfg.core/META-INF/MANIFEST.MF index 99eb7a660..9b9510682 100644 --- a/com.avaloq.tools.ddk.checkcfg.core/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.checkcfg.core/META-INF/MANIFEST.MF @@ -5,7 +5,7 @@ Bundle-Vendor: Avaloq Group AG Bundle-Version: 15.5.0.qualifier Bundle-SymbolicName: com.avaloq.tools.ddk.checkcfg.core; singleton:=true Bundle-ActivationPolicy: lazy -Bundle-RequiredExecutionEnvironment: JavaSE-17 +Bundle-RequiredExecutionEnvironment: JavaSE-21 Require-Bundle: org.eclipse.xtext, org.eclipse.xtext.util, org.eclipse.emf.ecore, diff --git a/com.avaloq.tools.ddk.checkcfg.ide/.classpath b/com.avaloq.tools.ddk.checkcfg.ide/.classpath index 8ad1f7818..5a4d66ff3 100644 --- a/com.avaloq.tools.ddk.checkcfg.ide/.classpath +++ b/com.avaloq.tools.ddk.checkcfg.ide/.classpath @@ -11,7 +11,7 @@ - + diff --git a/com.avaloq.tools.ddk.checkcfg.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.checkcfg.ide/META-INF/MANIFEST.MF index b23706bff..25a571d93 100644 --- a/com.avaloq.tools.ddk.checkcfg.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.checkcfg.ide/META-INF/MANIFEST.MF @@ -4,7 +4,7 @@ Bundle-Name: com.avaloq.tools.ddk.checkcfg.ide Bundle-SymbolicName: com.avaloq.tools.ddk.checkcfg.ide;singleton:=true Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG -Bundle-RequiredExecutionEnvironment: JavaSE-17 +Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy Require-Bundle: com.avaloq.tools.ddk.checkcfg.core, com.avaloq.tools.ddk.check.runtime.core, diff --git a/com.avaloq.tools.ddk.checkcfg.ui.test/.classpath b/com.avaloq.tools.ddk.checkcfg.ui.test/.classpath index b6ada0807..0aa1aa099 100644 --- a/com.avaloq.tools.ddk.checkcfg.ui.test/.classpath +++ b/com.avaloq.tools.ddk.checkcfg.ui.test/.classpath @@ -1,6 +1,6 @@ - + diff --git a/com.avaloq.tools.ddk.checkcfg.ui.test/CheckCfgUiTestSuite.launch b/com.avaloq.tools.ddk.checkcfg.ui.test/CheckCfgUiTestSuite.launch index 50cfae473..509eda7de 100644 --- a/com.avaloq.tools.ddk.checkcfg.ui.test/CheckCfgUiTestSuite.launch +++ b/com.avaloq.tools.ddk.checkcfg.ui.test/CheckCfgUiTestSuite.launch @@ -23,7 +23,7 @@ - + diff --git a/com.avaloq.tools.ddk.checkcfg.ui.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.checkcfg.ui.test/META-INF/MANIFEST.MF index a96f5610a..4186c4961 100644 --- a/com.avaloq.tools.ddk.checkcfg.ui.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.checkcfg.ui.test/META-INF/MANIFEST.MF @@ -4,7 +4,7 @@ Bundle-Name: com.avaloq.tools.ddk.checkcfg.ui.test Bundle-SymbolicName: com.avaloq.tools.ddk.checkcfg.ui.test Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG -Bundle-RequiredExecutionEnvironment: JavaSE-17 +Bundle-RequiredExecutionEnvironment: JavaSE-21 Export-Package: com.avaloq.tools.ddk.checkcfg.ui.test Require-Bundle: org.junit Automatic-Module-Name: com.avaloq.tools.ddk.checkcfg.ui.test diff --git a/com.avaloq.tools.ddk.checkcfg.ui/.classpath b/com.avaloq.tools.ddk.checkcfg.ui/.classpath index 1bd646a2d..19a2036d3 100644 --- a/com.avaloq.tools.ddk.checkcfg.ui/.classpath +++ b/com.avaloq.tools.ddk.checkcfg.ui/.classpath @@ -6,7 +6,7 @@ - + diff --git a/com.avaloq.tools.ddk.checkcfg.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.checkcfg.ui/META-INF/MANIFEST.MF index dfbd2c9c2..ca858f7ca 100644 --- a/com.avaloq.tools.ddk.checkcfg.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.checkcfg.ui/META-INF/MANIFEST.MF @@ -4,7 +4,7 @@ Bundle-Name: com.avaloq.tools.ddk.checkcfg.ui Bundle-SymbolicName: com.avaloq.tools.ddk.checkcfg.ui;singleton:=true Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG -Bundle-RequiredExecutionEnvironment: JavaSE-17 +Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-Activator: com.avaloq.tools.ddk.checkcfg.ui.internal.Activator Bundle-ActivationPolicy: lazy Require-Bundle: com.avaloq.tools.ddk.checkcfg.core, diff --git a/com.avaloq.tools.ddk.sample.helloworld.ide/.classpath b/com.avaloq.tools.ddk.sample.helloworld.ide/.classpath index f227a417b..22caad00c 100644 --- a/com.avaloq.tools.ddk.sample.helloworld.ide/.classpath +++ b/com.avaloq.tools.ddk.sample.helloworld.ide/.classpath @@ -2,7 +2,7 @@ - + diff --git a/com.avaloq.tools.ddk.sample.helloworld.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.sample.helloworld.ide/META-INF/MANIFEST.MF index 723f5b9a1..297c8d1fa 100644 --- a/com.avaloq.tools.ddk.sample.helloworld.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.sample.helloworld.ide/META-INF/MANIFEST.MF @@ -19,7 +19,7 @@ Require-Bundle: com.avaloq.tools.ddk.sample.helloworld, com.avaloq.tools.ddk.xtext.ide, com.avaloq.tools.ddk.xtext Import-Package: org.apache.log4j -Bundle-RequiredExecutionEnvironment: JavaSE-17 +Bundle-RequiredExecutionEnvironment: JavaSE-21 Export-Package: com.avaloq.tools.ddk.sample.helloworld.ide, com.avaloq.tools.ddk.sample.helloworld.ide.contentassist.antlr, com.avaloq.tools.ddk.sample.helloworld.ide.contentassist.antlr.internal diff --git a/com.avaloq.tools.ddk.sample.helloworld.ui.test/.classpath b/com.avaloq.tools.ddk.sample.helloworld.ui.test/.classpath index 5169b9fe7..7b1ace8da 100644 --- a/com.avaloq.tools.ddk.sample.helloworld.ui.test/.classpath +++ b/com.avaloq.tools.ddk.sample.helloworld.ui.test/.classpath @@ -4,7 +4,7 @@ - + diff --git a/com.avaloq.tools.ddk.sample.helloworld.ui.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.sample.helloworld.ui.test/META-INF/MANIFEST.MF index 69bfaa9fd..26117711f 100644 --- a/com.avaloq.tools.ddk.sample.helloworld.ui.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.sample.helloworld.ui.test/META-INF/MANIFEST.MF @@ -19,6 +19,6 @@ Require-Bundle: com.avaloq.tools.ddk.sample.helloworld, com.avaloq.tools.ddk.check.runtime.ui, com.avaloq.tools.ddk.check.core.test, org.eclipse.xtext.xbase.ui.testing -Bundle-RequiredExecutionEnvironment: JavaSE-17 +Bundle-RequiredExecutionEnvironment: JavaSE-21 Export-Package: com.avaloq.tools.ddk.sample.helloworld.test, com.avaloq.tools.ddk.sample.helloworld.ui;x-internal=true diff --git a/com.avaloq.tools.ddk.sample.helloworld.ui/.classpath b/com.avaloq.tools.ddk.sample.helloworld.ui/.classpath index f227a417b..22caad00c 100644 --- a/com.avaloq.tools.ddk.sample.helloworld.ui/.classpath +++ b/com.avaloq.tools.ddk.sample.helloworld.ui/.classpath @@ -2,7 +2,7 @@ - + diff --git a/com.avaloq.tools.ddk.sample.helloworld.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.sample.helloworld.ui/META-INF/MANIFEST.MF index 169f9718a..541947b72 100644 --- a/com.avaloq.tools.ddk.sample.helloworld.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.sample.helloworld.ui/META-INF/MANIFEST.MF @@ -23,7 +23,7 @@ Require-Bundle: com.avaloq.tools.ddk.sample.helloworld, com.avaloq.tools.ddk.sample.helloworld.ide, com.avaloq.tools.ddk.xtext.ide Import-Package: org.apache.log4j -Bundle-RequiredExecutionEnvironment: JavaSE-17 +Bundle-RequiredExecutionEnvironment: JavaSE-21 Export-Package: com.avaloq.tools.ddk.sample.helloworld.ui.quickfix, com.avaloq.tools.ddk.sample.helloworld.ui.contentassist, com.avaloq.tools.ddk.sample.helloworld.ui.internal diff --git a/com.avaloq.tools.ddk.sample.helloworld/.classpath b/com.avaloq.tools.ddk.sample.helloworld/.classpath index b8e5a71ae..46818254c 100644 --- a/com.avaloq.tools.ddk.sample.helloworld/.classpath +++ b/com.avaloq.tools.ddk.sample.helloworld/.classpath @@ -3,7 +3,7 @@ - + diff --git a/com.avaloq.tools.ddk.sample.helloworld/.launch/Launch Runtime Eclipse.launch b/com.avaloq.tools.ddk.sample.helloworld/.launch/Launch Runtime Eclipse.launch index 1c2989b10..1a56ffc86 100644 --- a/com.avaloq.tools.ddk.sample.helloworld/.launch/Launch Runtime Eclipse.launch +++ b/com.avaloq.tools.ddk.sample.helloworld/.launch/Launch Runtime Eclipse.launch @@ -18,7 +18,7 @@ - + diff --git a/com.avaloq.tools.ddk.sample.helloworld/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.sample.helloworld/META-INF/MANIFEST.MF index c1b305b27..07606f16a 100644 --- a/com.avaloq.tools.ddk.sample.helloworld/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.sample.helloworld/META-INF/MANIFEST.MF @@ -24,7 +24,7 @@ Require-Bundle: org.eclipse.xtext, com.avaloq.tools.ddk.check.core, com.avaloq.tools.ddk.xtext.generator;resolution:=optional, org.eclipse.xtext.xtext.generator;resolution:=optional -Bundle-RequiredExecutionEnvironment: JavaSE-17 +Bundle-RequiredExecutionEnvironment: JavaSE-21 Export-Package: com.avaloq.tools.ddk.sample.helloworld.helloWorld, com.avaloq.tools.ddk.sample.helloworld.serializer, com.avaloq.tools.ddk.sample.helloworld.helloWorld.util, diff --git a/com.avaloq.tools.ddk.test.core/.classpath b/com.avaloq.tools.ddk.test.core/.classpath index b6ada0807..0aa1aa099 100644 --- a/com.avaloq.tools.ddk.test.core/.classpath +++ b/com.avaloq.tools.ddk.test.core/.classpath @@ -1,6 +1,6 @@ - + diff --git a/com.avaloq.tools.ddk.test.core/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.test.core/META-INF/MANIFEST.MF index 61f808f61..486a9ad0a 100644 --- a/com.avaloq.tools.ddk.test.core/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.test.core/META-INF/MANIFEST.MF @@ -4,7 +4,7 @@ Bundle-Name: com.avaloq.tools.ddk.test.core Bundle-SymbolicName: com.avaloq.tools.ddk.test.core;singleton:=true Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG -Bundle-RequiredExecutionEnvironment: JavaSE-17 +Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy Require-Bundle: org.eclipse.core.runtime, org.eclipse.core.resources, diff --git a/com.avaloq.tools.ddk.test.ui.test/.classpath b/com.avaloq.tools.ddk.test.ui.test/.classpath index b6ada0807..0aa1aa099 100644 --- a/com.avaloq.tools.ddk.test.ui.test/.classpath +++ b/com.avaloq.tools.ddk.test.ui.test/.classpath @@ -1,6 +1,6 @@ - + diff --git a/com.avaloq.tools.ddk.test.ui.test/AllTests.launch b/com.avaloq.tools.ddk.test.ui.test/AllTests.launch index efbffb162..56067c7ec 100644 --- a/com.avaloq.tools.ddk.test.ui.test/AllTests.launch +++ b/com.avaloq.tools.ddk.test.ui.test/AllTests.launch @@ -23,7 +23,7 @@ - + diff --git a/com.avaloq.tools.ddk.test.ui.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.test.ui.test/META-INF/MANIFEST.MF index 1375e87e0..3760abf80 100644 --- a/com.avaloq.tools.ddk.test.ui.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.test.ui.test/META-INF/MANIFEST.MF @@ -5,7 +5,7 @@ Bundle-SymbolicName: com.avaloq.tools.ddk.test.ui.test;singleton:=true Bundle-Version: 15.5.0.qualifier Bundle-ActivationPolicy: lazy Bundle-Vendor: Avaloq Group AG -Bundle-RequiredExecutionEnvironment: JavaSE-17 +Bundle-RequiredExecutionEnvironment: JavaSE-21 Require-Bundle: org.junit, org.eclipse.swtbot.eclipse.finder, org.eclipse.swt, diff --git a/com.avaloq.tools.ddk.test.ui/.classpath b/com.avaloq.tools.ddk.test.ui/.classpath index b6ada0807..0aa1aa099 100644 --- a/com.avaloq.tools.ddk.test.ui/.classpath +++ b/com.avaloq.tools.ddk.test.ui/.classpath @@ -1,6 +1,6 @@ - + diff --git a/com.avaloq.tools.ddk.test.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.test.ui/META-INF/MANIFEST.MF index ed7d1595c..36c320344 100644 --- a/com.avaloq.tools.ddk.test.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.test.ui/META-INF/MANIFEST.MF @@ -4,7 +4,7 @@ Bundle-Name: com.avaloq.tools.ddk.test.ui Bundle-SymbolicName: com.avaloq.tools.ddk.test.ui;singleton:=true Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG -Bundle-RequiredExecutionEnvironment: JavaSE-17 +Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-Activator: com.avaloq.tools.ddk.test.ui.Activator Bundle-ActivationPolicy: lazy Require-Bundle: com.avaloq.tools.ddk.test.core, diff --git a/com.avaloq.tools.ddk.typesystem.test/.classpath b/com.avaloq.tools.ddk.typesystem.test/.classpath index b6ada0807..0aa1aa099 100644 --- a/com.avaloq.tools.ddk.typesystem.test/.classpath +++ b/com.avaloq.tools.ddk.typesystem.test/.classpath @@ -1,6 +1,6 @@ - + diff --git a/com.avaloq.tools.ddk.typesystem.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.typesystem.test/META-INF/MANIFEST.MF index c02b11373..f65d2aa05 100644 --- a/com.avaloq.tools.ddk.typesystem.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.typesystem.test/META-INF/MANIFEST.MF @@ -4,7 +4,7 @@ Bundle-Name: com.avaloq.tools.ddk.typesystem.test Bundle-SymbolicName: com.avaloq.tools.ddk.typesystem.test;singleton:=true Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG -Bundle-RequiredExecutionEnvironment: JavaSE-17 +Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy Fragment-Host: com.avaloq.tools.ddk.typesystem Require-Bundle: com.google.inject, diff --git a/com.avaloq.tools.ddk.typesystem.test/TypeSystemTestSuite.launch b/com.avaloq.tools.ddk.typesystem.test/TypeSystemTestSuite.launch index 746652ea9..12b7406b6 100644 --- a/com.avaloq.tools.ddk.typesystem.test/TypeSystemTestSuite.launch +++ b/com.avaloq.tools.ddk.typesystem.test/TypeSystemTestSuite.launch @@ -23,7 +23,7 @@ - + diff --git a/com.avaloq.tools.ddk.typesystem/.classpath b/com.avaloq.tools.ddk.typesystem/.classpath index c5154d80b..c36791f98 100644 --- a/com.avaloq.tools.ddk.typesystem/.classpath +++ b/com.avaloq.tools.ddk.typesystem/.classpath @@ -7,7 +7,7 @@ - + diff --git a/com.avaloq.tools.ddk.typesystem/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.typesystem/META-INF/MANIFEST.MF index 0fcf57c3d..54c5ce52b 100644 --- a/com.avaloq.tools.ddk.typesystem/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.typesystem/META-INF/MANIFEST.MF @@ -4,7 +4,7 @@ Bundle-Name: com.avaloq.tools.ddk.typesystem Bundle-SymbolicName: com.avaloq.tools.ddk.typesystem;singleton:=true Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG -Bundle-RequiredExecutionEnvironment: JavaSE-17 +Bundle-RequiredExecutionEnvironment: JavaSE-21 Import-Package: org.apache.logging.log4j Require-Bundle: org.eclipse.xtext, org.eclipse.core.runtime, diff --git a/com.avaloq.tools.ddk.workflow/.classpath b/com.avaloq.tools.ddk.workflow/.classpath index b0bfa5067..5540ec29d 100644 --- a/com.avaloq.tools.ddk.workflow/.classpath +++ b/com.avaloq.tools.ddk.workflow/.classpath @@ -1,7 +1,7 @@ - + diff --git a/com.avaloq.tools.ddk.workflow/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.workflow/META-INF/MANIFEST.MF index f3fe06079..d8373a3a2 100644 --- a/com.avaloq.tools.ddk.workflow/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.workflow/META-INF/MANIFEST.MF @@ -4,7 +4,7 @@ Bundle-Name: com.avaloq.tools.ddk.workflow Bundle-SymbolicName: com.avaloq.tools.ddk.workflow Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG -Bundle-RequiredExecutionEnvironment: JavaSE-17 +Bundle-RequiredExecutionEnvironment: JavaSE-21 Require-Bundle: com.avaloq.tools.ddk.xtext, com.avaloq.tools.ddk.xtext.check.generator, com.avaloq.tools.ddk.xtext.export, diff --git a/com.avaloq.tools.ddk.xtext.builder.ui/.classpath b/com.avaloq.tools.ddk.xtext.builder.ui/.classpath index a8ff086a3..25c660d31 100644 --- a/com.avaloq.tools.ddk.xtext.builder.ui/.classpath +++ b/com.avaloq.tools.ddk.xtext.builder.ui/.classpath @@ -1,6 +1,6 @@ - + diff --git a/com.avaloq.tools.ddk.xtext.builder.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.builder.ui/META-INF/MANIFEST.MF index d9fce7192..825d0d937 100644 --- a/com.avaloq.tools.ddk.xtext.builder.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.builder.ui/META-INF/MANIFEST.MF @@ -9,6 +9,6 @@ Require-Bundle: org.eclipse.core.runtime, org.eclipse.xtext.builder, org.eclipse.xtext.ui Export-Package: com.avaloq.tools.ddk.xtext.builder.ui.shared -Bundle-RequiredExecutionEnvironment: JavaSE-17 +Bundle-RequiredExecutionEnvironment: JavaSE-21 Import-Package: org.apache.logging.log4j Automatic-Module-Name: com.avaloq.tools.ddk.xtext.builder.ui diff --git a/com.avaloq.tools.ddk.xtext.builder/.classpath b/com.avaloq.tools.ddk.xtext.builder/.classpath index a8ff086a3..25c660d31 100644 --- a/com.avaloq.tools.ddk.xtext.builder/.classpath +++ b/com.avaloq.tools.ddk.xtext.builder/.classpath @@ -1,6 +1,6 @@ - + diff --git a/com.avaloq.tools.ddk.xtext.builder/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.builder/META-INF/MANIFEST.MF index 7c8b1d67a..28f730416 100644 --- a/com.avaloq.tools.ddk.xtext.builder/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.builder/META-INF/MANIFEST.MF @@ -9,7 +9,7 @@ Require-Bundle: org.eclipse.xtext.builder, com.avaloq.tools.ddk, com.avaloq.tools.ddk.xtext, org.eclipse.xtext.common.types.ui -Bundle-RequiredExecutionEnvironment: JavaSE-17 +Bundle-RequiredExecutionEnvironment: JavaSE-21 Export-Package: com.avaloq.tools.ddk.xtext.builder, com.avaloq.tools.ddk.xtext.builder.layered, com.avaloq.tools.ddk.xtext.builder.resourceloader, diff --git a/com.avaloq.tools.ddk.xtext.check.generator/.classpath b/com.avaloq.tools.ddk.xtext.check.generator/.classpath index f73a0454f..26f051475 100644 --- a/com.avaloq.tools.ddk.xtext.check.generator/.classpath +++ b/com.avaloq.tools.ddk.xtext.check.generator/.classpath @@ -3,7 +3,7 @@ - + diff --git a/com.avaloq.tools.ddk.xtext.check.generator/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.check.generator/META-INF/MANIFEST.MF index a5e4a2a18..6f7c4802b 100644 --- a/com.avaloq.tools.ddk.xtext.check.generator/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.check.generator/META-INF/MANIFEST.MF @@ -4,7 +4,7 @@ Bundle-Name: com.avaloq.tools.ddk.xtext.check.generator Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.check.generator;singleton:=true Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG -Bundle-RequiredExecutionEnvironment: JavaSE-17 +Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy Require-Bundle: org.eclipse.xtext, org.eclipse.xtext.xtext.generator, diff --git a/com.avaloq.tools.ddk.xtext.common.types.ui/.classpath b/com.avaloq.tools.ddk.xtext.common.types.ui/.classpath index 18a74ffc9..1ba37a025 100644 --- a/com.avaloq.tools.ddk.xtext.common.types.ui/.classpath +++ b/com.avaloq.tools.ddk.xtext.common.types.ui/.classpath @@ -1,7 +1,7 @@ - + diff --git a/com.avaloq.tools.ddk.xtext.common.types.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.common.types.ui/META-INF/MANIFEST.MF index 9fa6acf78..089eaa585 100644 --- a/com.avaloq.tools.ddk.xtext.common.types.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.common.types.ui/META-INF/MANIFEST.MF @@ -4,7 +4,7 @@ Bundle-Name: com.avaloq.tools.ddk.xtext.common.types.ui Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.common.types.ui;singleton:=true Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG -Bundle-RequiredExecutionEnvironment: JavaSE-17 +Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy Require-Bundle: com.avaloq.tools.ddk.xtext.common.types, org.eclipse.jdt.core, diff --git a/com.avaloq.tools.ddk.xtext.common.types/.classpath b/com.avaloq.tools.ddk.xtext.common.types/.classpath index 18a74ffc9..1ba37a025 100644 --- a/com.avaloq.tools.ddk.xtext.common.types/.classpath +++ b/com.avaloq.tools.ddk.xtext.common.types/.classpath @@ -1,7 +1,7 @@ - + diff --git a/com.avaloq.tools.ddk.xtext.common.types/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.common.types/META-INF/MANIFEST.MF index 1772d276f..7185c0a74 100644 --- a/com.avaloq.tools.ddk.xtext.common.types/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.common.types/META-INF/MANIFEST.MF @@ -4,7 +4,7 @@ Bundle-Name: com.avaloq.tools.ddk.xtext.common.types Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.common.types;singleton:=true Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG -Bundle-RequiredExecutionEnvironment: JavaSE-17 +Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy Require-Bundle: com.avaloq.tools.ddk.xtext, org.eclipse.jdt.core, diff --git a/com.avaloq.tools.ddk.xtext.common.ui/.classpath b/com.avaloq.tools.ddk.xtext.common.ui/.classpath index b0bfa5067..5540ec29d 100644 --- a/com.avaloq.tools.ddk.xtext.common.ui/.classpath +++ b/com.avaloq.tools.ddk.xtext.common.ui/.classpath @@ -1,7 +1,7 @@ - + diff --git a/com.avaloq.tools.ddk.xtext.common.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.common.ui/META-INF/MANIFEST.MF index 855b327d5..09be818e2 100644 --- a/com.avaloq.tools.ddk.xtext.common.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.common.ui/META-INF/MANIFEST.MF @@ -4,7 +4,7 @@ Bundle-Name: com.avaloq.tools.ddk.xtext.common.ui Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.common.ui;singleton:=true Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG -Bundle-RequiredExecutionEnvironment: JavaSE-17 +Bundle-RequiredExecutionEnvironment: JavaSE-21 Export-Package: com.avaloq.tools.ddk.xtext.common.ui.contentassist Require-Bundle: org.eclipse.xtext.ui Automatic-Module-Name: com.avaloq.tools.ddk.xtext.common.ui diff --git a/com.avaloq.tools.ddk.xtext.export.generator/.classpath b/com.avaloq.tools.ddk.xtext.export.generator/.classpath index b9e2af03c..8d8d75407 100644 --- a/com.avaloq.tools.ddk.xtext.export.generator/.classpath +++ b/com.avaloq.tools.ddk.xtext.export.generator/.classpath @@ -1,6 +1,6 @@ - + diff --git a/com.avaloq.tools.ddk.xtext.export.generator/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.export.generator/META-INF/MANIFEST.MF index 896534e21..188915b59 100644 --- a/com.avaloq.tools.ddk.xtext.export.generator/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.export.generator/META-INF/MANIFEST.MF @@ -4,7 +4,7 @@ Bundle-Name: com.avaloq.tools.ddk.xtext.export.generator Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.export.generator;singleton:=true Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG -Bundle-RequiredExecutionEnvironment: JavaSE-17 +Bundle-RequiredExecutionEnvironment: JavaSE-21 Require-Bundle: org.eclipse.xtext, org.eclipse.xtext.xtext.generator, org.eclipse.emf.codegen.ecore;resolution:=optional, diff --git a/com.avaloq.tools.ddk.xtext.export.ide/.classpath b/com.avaloq.tools.ddk.xtext.export.ide/.classpath index 7ce81897b..fc183f78b 100644 --- a/com.avaloq.tools.ddk.xtext.export.ide/.classpath +++ b/com.avaloq.tools.ddk.xtext.export.ide/.classpath @@ -11,7 +11,7 @@ - + diff --git a/com.avaloq.tools.ddk.xtext.export.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.export.ide/META-INF/MANIFEST.MF index e482f0f2b..504fb2198 100644 --- a/com.avaloq.tools.ddk.xtext.export.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.export.ide/META-INF/MANIFEST.MF @@ -4,7 +4,7 @@ Bundle-Name: com.avaloq.tools.ddk.xtext.export.ide Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.export.ide;singleton:=true Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG -Bundle-RequiredExecutionEnvironment: JavaSE-17 +Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy Export-Package: com.avaloq.tools.ddk.xtext.export.ide.contentassist.antlr, com.avaloq.tools.ddk.xtext.export.ide.contentassist.antlr.internal diff --git a/com.avaloq.tools.ddk.xtext.export.test/.classpath b/com.avaloq.tools.ddk.xtext.export.test/.classpath index cb0da6517..7bd8e591b 100644 --- a/com.avaloq.tools.ddk.xtext.export.test/.classpath +++ b/com.avaloq.tools.ddk.xtext.export.test/.classpath @@ -1,6 +1,6 @@ - + diff --git a/com.avaloq.tools.ddk.xtext.export.test/ExportTestSuite.launch b/com.avaloq.tools.ddk.xtext.export.test/ExportTestSuite.launch index ff3b55aa2..701a7a1cd 100644 --- a/com.avaloq.tools.ddk.xtext.export.test/ExportTestSuite.launch +++ b/com.avaloq.tools.ddk.xtext.export.test/ExportTestSuite.launch @@ -23,7 +23,7 @@ - + diff --git a/com.avaloq.tools.ddk.xtext.export.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.export.test/META-INF/MANIFEST.MF index 8b7db288e..95cbe8572 100644 --- a/com.avaloq.tools.ddk.xtext.export.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.export.test/META-INF/MANIFEST.MF @@ -4,7 +4,7 @@ Bundle-Name: com.avaloq.tools.ddk.xtext.export.test Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.export.test;singleton:=true Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG -Bundle-RequiredExecutionEnvironment: JavaSE-17 +Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy Fragment-Host: com.avaloq.tools.ddk.xtext.export.ui Require-Bundle: com.avaloq.tools.ddk.xtext.export, diff --git a/com.avaloq.tools.ddk.xtext.export.ui/.classpath b/com.avaloq.tools.ddk.xtext.export.ui/.classpath index c3e106958..7887a7ed7 100644 --- a/com.avaloq.tools.ddk.xtext.export.ui/.classpath +++ b/com.avaloq.tools.ddk.xtext.export.ui/.classpath @@ -6,7 +6,7 @@ - + diff --git a/com.avaloq.tools.ddk.xtext.export.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.export.ui/META-INF/MANIFEST.MF index 2bc604206..26b0d9d0c 100644 --- a/com.avaloq.tools.ddk.xtext.export.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.export.ui/META-INF/MANIFEST.MF @@ -4,7 +4,7 @@ Bundle-Name: com.avaloq.tools.ddk.xtext.export.ui Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.export.ui;singleton:=true Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG -Bundle-RequiredExecutionEnvironment: JavaSE-17 +Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-Activator: com.avaloq.tools.ddk.xtext.export.ui.internal.ExportActivator Bundle-ActivationPolicy: lazy Eclipse-ExtensibleAPI: true diff --git a/com.avaloq.tools.ddk.xtext.export/.classpath b/com.avaloq.tools.ddk.xtext.export/.classpath index 7ce81897b..fc183f78b 100644 --- a/com.avaloq.tools.ddk.xtext.export/.classpath +++ b/com.avaloq.tools.ddk.xtext.export/.classpath @@ -11,7 +11,7 @@ - + diff --git a/com.avaloq.tools.ddk.xtext.export/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.export/META-INF/MANIFEST.MF index 8b2f9622b..46bc43e4f 100644 --- a/com.avaloq.tools.ddk.xtext.export/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.export/META-INF/MANIFEST.MF @@ -4,7 +4,7 @@ Bundle-Name: com.avaloq.tools.ddk.xtext.export Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.export;singleton:=true Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG -Bundle-RequiredExecutionEnvironment: JavaSE-17 +Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy Require-Bundle: org.eclipse.xtext, org.eclipse.xtend, diff --git a/com.avaloq.tools.ddk.xtext.expression.ide/.classpath b/com.avaloq.tools.ddk.xtext.expression.ide/.classpath index 7ce81897b..fc183f78b 100644 --- a/com.avaloq.tools.ddk.xtext.expression.ide/.classpath +++ b/com.avaloq.tools.ddk.xtext.expression.ide/.classpath @@ -11,7 +11,7 @@ - + diff --git a/com.avaloq.tools.ddk.xtext.expression.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.expression.ide/META-INF/MANIFEST.MF index 32d60ad01..108d82579 100644 --- a/com.avaloq.tools.ddk.xtext.expression.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.expression.ide/META-INF/MANIFEST.MF @@ -4,7 +4,7 @@ Bundle-Name: com.avaloq.tools.ddk.xtext.expression.ide Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.expression.ide;singleton:=true Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG -Bundle-RequiredExecutionEnvironment: JavaSE-17 +Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy Export-Package: com.avaloq.tools.ddk.xtext.expression.ide.contentassist.antlr, com.avaloq.tools.ddk.xtext.expression.ide.contentassist.antlr.internal diff --git a/com.avaloq.tools.ddk.xtext.expression.ui/.classpath b/com.avaloq.tools.ddk.xtext.expression.ui/.classpath index c3e106958..7887a7ed7 100644 --- a/com.avaloq.tools.ddk.xtext.expression.ui/.classpath +++ b/com.avaloq.tools.ddk.xtext.expression.ui/.classpath @@ -6,7 +6,7 @@ - + diff --git a/com.avaloq.tools.ddk.xtext.expression.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.expression.ui/META-INF/MANIFEST.MF index f59903387..df283c4db 100644 --- a/com.avaloq.tools.ddk.xtext.expression.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.expression.ui/META-INF/MANIFEST.MF @@ -4,7 +4,7 @@ Bundle-Name: com.avaloq.tools.ddk.xtext.expression.ui Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.expression.ui;singleton:=true Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG -Bundle-RequiredExecutionEnvironment: JavaSE-17 +Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-Activator: com.avaloq.tools.ddk.xtext.expression.ui.internal.Activator Bundle-ActivationPolicy: lazy Require-Bundle: org.eclipse.xtext.ui, diff --git a/com.avaloq.tools.ddk.xtext.expression/.classpath b/com.avaloq.tools.ddk.xtext.expression/.classpath index 7ce81897b..fc183f78b 100644 --- a/com.avaloq.tools.ddk.xtext.expression/.classpath +++ b/com.avaloq.tools.ddk.xtext.expression/.classpath @@ -11,7 +11,7 @@ - + diff --git a/com.avaloq.tools.ddk.xtext.expression/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.expression/META-INF/MANIFEST.MF index 1435417b6..0b8f53f19 100644 --- a/com.avaloq.tools.ddk.xtext.expression/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.expression/META-INF/MANIFEST.MF @@ -4,7 +4,7 @@ Bundle-Name: com.avaloq.tools.ddk.xtext.expression Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.expression;singleton:=true Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG -Bundle-RequiredExecutionEnvironment: JavaSE-17 +Bundle-RequiredExecutionEnvironment: JavaSE-21 Require-Bundle: org.eclipse.xtext, org.eclipse.xtend, org.eclipse.xtend.typesystem.emf, diff --git a/com.avaloq.tools.ddk.xtext.format.generator/.classpath b/com.avaloq.tools.ddk.xtext.format.generator/.classpath index b9e2af03c..8d8d75407 100644 --- a/com.avaloq.tools.ddk.xtext.format.generator/.classpath +++ b/com.avaloq.tools.ddk.xtext.format.generator/.classpath @@ -1,6 +1,6 @@ - + diff --git a/com.avaloq.tools.ddk.xtext.format.generator/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.format.generator/META-INF/MANIFEST.MF index 5229a751b..6a291cadb 100644 --- a/com.avaloq.tools.ddk.xtext.format.generator/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.format.generator/META-INF/MANIFEST.MF @@ -15,6 +15,6 @@ Require-Bundle: com.avaloq.tools.ddk.xtext.format;visibility:=reexport, org.eclipse.jdt.core;visibility:=reexport, org.apache.commons.logging Import-Package: org.apache.logging.log4j,org.apache.log4j -Bundle-RequiredExecutionEnvironment: JavaSE-17 +Bundle-RequiredExecutionEnvironment: JavaSE-21 Export-Package: com.avaloq.tools.ddk.xtext.format.generator Automatic-Module-Name: com.avaloq.tools.ddk.xtext.format.generator diff --git a/com.avaloq.tools.ddk.xtext.format.ide/.classpath b/com.avaloq.tools.ddk.xtext.format.ide/.classpath index 8ec3ddfe0..66b475530 100644 --- a/com.avaloq.tools.ddk.xtext.format.ide/.classpath +++ b/com.avaloq.tools.ddk.xtext.format.ide/.classpath @@ -1,6 +1,6 @@ - + diff --git a/com.avaloq.tools.ddk.xtext.format.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.format.ide/META-INF/MANIFEST.MF index 3176c9912..4201279b5 100644 --- a/com.avaloq.tools.ddk.xtext.format.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.format.ide/META-INF/MANIFEST.MF @@ -4,7 +4,7 @@ Bundle-Name: com.avaloq.tools.ddk.xtext.format.ide Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.format.ide;singleton:=true Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG -Bundle-RequiredExecutionEnvironment: JavaSE-17 +Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy Require-Bundle: org.antlr.runtime, org.eclipse.xtext.xbase.ide, diff --git a/com.avaloq.tools.ddk.xtext.format.test/.classpath b/com.avaloq.tools.ddk.xtext.format.test/.classpath index 7ca755775..bc8caf168 100644 --- a/com.avaloq.tools.ddk.xtext.format.test/.classpath +++ b/com.avaloq.tools.ddk.xtext.format.test/.classpath @@ -1,6 +1,6 @@ - + diff --git a/com.avaloq.tools.ddk.xtext.format.test/FormatTestSuite.launch b/com.avaloq.tools.ddk.xtext.format.test/FormatTestSuite.launch index e54b391a3..bfcf09a16 100644 --- a/com.avaloq.tools.ddk.xtext.format.test/FormatTestSuite.launch +++ b/com.avaloq.tools.ddk.xtext.format.test/FormatTestSuite.launch @@ -23,7 +23,7 @@ - + diff --git a/com.avaloq.tools.ddk.xtext.format.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.format.test/META-INF/MANIFEST.MF index e6c4b2a0c..ca17732e4 100644 --- a/com.avaloq.tools.ddk.xtext.format.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.format.test/META-INF/MANIFEST.MF @@ -4,7 +4,7 @@ Bundle-Name: com.avaloq.tools.ddk.xtext.format.test Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.format.test;singleton:=true Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG -Bundle-RequiredExecutionEnvironment: JavaSE-17 +Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy Fragment-Host: com.avaloq.tools.ddk.xtext.format.ui Require-Bundle: com.avaloq.tools.ddk.xtext.format, diff --git a/com.avaloq.tools.ddk.xtext.format.ui.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.format.ui.test/META-INF/MANIFEST.MF index 1e6934ff1..737b05a50 100644 --- a/com.avaloq.tools.ddk.xtext.format.ui.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.format.ui.test/META-INF/MANIFEST.MF @@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.format.ui.test Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.format.ui.test;singleton:=true Bundle-Version: 0.0.1.qualifier -Bundle-RequiredExecutionEnvironment: JavaSE-17 +Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy Export-Package: com.avaloq.tools.ddk.xtext.format.ui;x-internal=true Require-Bundle: org.eclipse.core.runtime, diff --git a/com.avaloq.tools.ddk.xtext.format.ui/.classpath b/com.avaloq.tools.ddk.xtext.format.ui/.classpath index f54589fac..9e1b01881 100644 --- a/com.avaloq.tools.ddk.xtext.format.ui/.classpath +++ b/com.avaloq.tools.ddk.xtext.format.ui/.classpath @@ -1,6 +1,6 @@ - + diff --git a/com.avaloq.tools.ddk.xtext.format.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.format.ui/META-INF/MANIFEST.MF index 786990913..d73e646f9 100644 --- a/com.avaloq.tools.ddk.xtext.format.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.format.ui/META-INF/MANIFEST.MF @@ -28,7 +28,7 @@ Require-Bundle: com.avaloq.tools.ddk.xtext.format;visibility:=reexport, org.eclipse.xtext.ui.codetemplates.ui, org.eclipse.xtend.lib;resolution:=optional Import-Package: org.apache.log4j -Bundle-RequiredExecutionEnvironment: JavaSE-17 +Bundle-RequiredExecutionEnvironment: JavaSE-21 Export-Package: com.avaloq.tools.ddk.xtext.format.ui.builder, com.avaloq.tools.ddk.xtext.format.ui.contentassist, com.avaloq.tools.ddk.xtext.format.ui.quickfix, diff --git a/com.avaloq.tools.ddk.xtext.format/.classpath b/com.avaloq.tools.ddk.xtext.format/.classpath index 5b73d99c4..7e674d9ee 100644 --- a/com.avaloq.tools.ddk.xtext.format/.classpath +++ b/com.avaloq.tools.ddk.xtext.format/.classpath @@ -1,6 +1,6 @@ - + diff --git a/com.avaloq.tools.ddk.xtext.format/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.format/META-INF/MANIFEST.MF index d49275522..5323965eb 100644 --- a/com.avaloq.tools.ddk.xtext.format/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.format/META-INF/MANIFEST.MF @@ -4,7 +4,7 @@ Bundle-Name: com.avaloq.tools.ddk.xtext.format Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.format;singleton:=true Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG -Bundle-RequiredExecutionEnvironment: JavaSE-17 +Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy Require-Bundle: org.eclipse.xtext, org.eclipse.xtext.xtext.generator, diff --git a/com.avaloq.tools.ddk.xtext.generator.test/.classpath b/com.avaloq.tools.ddk.xtext.generator.test/.classpath index 634cf2fe1..ed47baa3c 100644 --- a/com.avaloq.tools.ddk.xtext.generator.test/.classpath +++ b/com.avaloq.tools.ddk.xtext.generator.test/.classpath @@ -1,7 +1,7 @@ - + diff --git a/com.avaloq.tools.ddk.xtext.generator.test/GeneratorTestSuite.launch b/com.avaloq.tools.ddk.xtext.generator.test/GeneratorTestSuite.launch index 284c59cf0..f9d99a2b7 100644 --- a/com.avaloq.tools.ddk.xtext.generator.test/GeneratorTestSuite.launch +++ b/com.avaloq.tools.ddk.xtext.generator.test/GeneratorTestSuite.launch @@ -23,7 +23,7 @@ - + diff --git a/com.avaloq.tools.ddk.xtext.generator.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.generator.test/META-INF/MANIFEST.MF index 8ea96f808..0f73abcc4 100644 --- a/com.avaloq.tools.ddk.xtext.generator.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.generator.test/META-INF/MANIFEST.MF @@ -4,7 +4,7 @@ Bundle-Name: com.avaloq.tools.ddk.xtext.generator.test Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.generator.test;singleton:=true Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG -Bundle-RequiredExecutionEnvironment: JavaSE-17 +Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy Fragment-Host: com.avaloq.tools.ddk.xtext.generator Require-Bundle: com.avaloq.tools.ddk.test.core, diff --git a/com.avaloq.tools.ddk.xtext.generator/.classpath b/com.avaloq.tools.ddk.xtext.generator/.classpath index e4c926b70..aba0d9bb2 100644 --- a/com.avaloq.tools.ddk.xtext.generator/.classpath +++ b/com.avaloq.tools.ddk.xtext.generator/.classpath @@ -6,7 +6,7 @@ - + diff --git a/com.avaloq.tools.ddk.xtext.generator/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.generator/META-INF/MANIFEST.MF index c3306c52c..925ffa0f1 100644 --- a/com.avaloq.tools.ddk.xtext.generator/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.generator/META-INF/MANIFEST.MF @@ -4,7 +4,7 @@ Bundle-Name: com.avaloq.tools.ddk.xtext.generator Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.generator;singleton:=true Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG -Bundle-RequiredExecutionEnvironment: JavaSE-17 +Bundle-RequiredExecutionEnvironment: JavaSE-21 Require-Bundle: org.eclipse.jface, org.eclipse.ui.views, org.eclipse.emf.codegen.ecore, diff --git a/com.avaloq.tools.ddk.xtext.ide/.classpath b/com.avaloq.tools.ddk.xtext.ide/.classpath index a8ff086a3..25c660d31 100644 --- a/com.avaloq.tools.ddk.xtext.ide/.classpath +++ b/com.avaloq.tools.ddk.xtext.ide/.classpath @@ -1,6 +1,6 @@ - + diff --git a/com.avaloq.tools.ddk.xtext.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.ide/META-INF/MANIFEST.MF index c9f1a1f6e..5c4fb91a8 100644 --- a/com.avaloq.tools.ddk.xtext.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.ide/META-INF/MANIFEST.MF @@ -7,7 +7,7 @@ Bundle-Vendor: Avaloq Group AG Require-Bundle: org.eclipse.lsp4j, org.eclipse.xtext.ide, com.avaloq.tools.ddk.xtext -Bundle-RequiredExecutionEnvironment: JavaSE-17 +Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy Export-Package: com.avaloq.tools.ddk.xtext.ide.contentAssist, com.avaloq.tools.ddk.xtext.ide.formatting, diff --git a/com.avaloq.tools.ddk.xtext.scope.generator/.classpath b/com.avaloq.tools.ddk.xtext.scope.generator/.classpath index e785c372b..f70b2088b 100644 --- a/com.avaloq.tools.ddk.xtext.scope.generator/.classpath +++ b/com.avaloq.tools.ddk.xtext.scope.generator/.classpath @@ -2,7 +2,7 @@ - + diff --git a/com.avaloq.tools.ddk.xtext.scope.generator/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.scope.generator/META-INF/MANIFEST.MF index fd43325c0..ba3c192b5 100644 --- a/com.avaloq.tools.ddk.xtext.scope.generator/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.scope.generator/META-INF/MANIFEST.MF @@ -4,7 +4,7 @@ Bundle-Name: com.avaloq.tools.ddk.xtext.scope.generator Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.scope.generator;singleton:=true Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG -Bundle-RequiredExecutionEnvironment: JavaSE-17 +Bundle-RequiredExecutionEnvironment: JavaSE-21 Require-Bundle: com.avaloq.tools.ddk.xtext.scope;visibility:=reexport, org.eclipse.xtext, org.eclipse.xtext.xtext.generator, diff --git a/com.avaloq.tools.ddk.xtext.scope.ide/.classpath b/com.avaloq.tools.ddk.xtext.scope.ide/.classpath index 7ce81897b..fc183f78b 100644 --- a/com.avaloq.tools.ddk.xtext.scope.ide/.classpath +++ b/com.avaloq.tools.ddk.xtext.scope.ide/.classpath @@ -11,7 +11,7 @@ - + diff --git a/com.avaloq.tools.ddk.xtext.scope.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.scope.ide/META-INF/MANIFEST.MF index 2d365f1f1..cc552dd1b 100644 --- a/com.avaloq.tools.ddk.xtext.scope.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.scope.ide/META-INF/MANIFEST.MF @@ -4,7 +4,7 @@ Bundle-Name: com.avaloq.tools.ddk.xtext.scope.ide Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.scope.ide;singleton:=true Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG -Bundle-RequiredExecutionEnvironment: JavaSE-17 +Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy Export-Package: com.avaloq.tools.ddk.xtext.scope.ide.contentassist.antlr, com.avaloq.tools.ddk.xtext.scope.ide.contentassist.antlr.internal diff --git a/com.avaloq.tools.ddk.xtext.scope.ui/.classpath b/com.avaloq.tools.ddk.xtext.scope.ui/.classpath index c3e106958..7887a7ed7 100644 --- a/com.avaloq.tools.ddk.xtext.scope.ui/.classpath +++ b/com.avaloq.tools.ddk.xtext.scope.ui/.classpath @@ -6,7 +6,7 @@ - + diff --git a/com.avaloq.tools.ddk.xtext.scope.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.scope.ui/META-INF/MANIFEST.MF index 6245bb756..2bc9dfea2 100644 --- a/com.avaloq.tools.ddk.xtext.scope.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.scope.ui/META-INF/MANIFEST.MF @@ -4,7 +4,7 @@ Bundle-Name: com.avaloq.tools.ddk.xtext.scope.ui Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.scope.ui;singleton:=true Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG -Bundle-RequiredExecutionEnvironment: JavaSE-17 +Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-Activator: com.avaloq.tools.ddk.xtext.scope.ui.internal.ScopeActivator Bundle-ActivationPolicy: lazy Require-Bundle: org.eclipse.xtext.ui, diff --git a/com.avaloq.tools.ddk.xtext.scope/.classpath b/com.avaloq.tools.ddk.xtext.scope/.classpath index 7ce81897b..fc183f78b 100644 --- a/com.avaloq.tools.ddk.xtext.scope/.classpath +++ b/com.avaloq.tools.ddk.xtext.scope/.classpath @@ -11,7 +11,7 @@ - + diff --git a/com.avaloq.tools.ddk.xtext.scope/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.scope/META-INF/MANIFEST.MF index ff56ad9d6..f66cf3ec3 100644 --- a/com.avaloq.tools.ddk.xtext.scope/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.scope/META-INF/MANIFEST.MF @@ -4,7 +4,7 @@ Bundle-Name: com.avaloq.tools.ddk.xtext.scope Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.scope;singleton:=true Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG -Bundle-RequiredExecutionEnvironment: JavaSE-17 +Bundle-RequiredExecutionEnvironment: JavaSE-21 Require-Bundle: org.eclipse.xtext, com.avaloq.tools.ddk.xtext.expression;visibility:=reexport, org.eclipse.xtend, diff --git a/com.avaloq.tools.ddk.xtext.test.core/.classpath b/com.avaloq.tools.ddk.xtext.test.core/.classpath index be88556be..d651646e4 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/.classpath +++ b/com.avaloq.tools.ddk.xtext.test.core/.classpath @@ -6,7 +6,7 @@ - + diff --git a/com.avaloq.tools.ddk.xtext.test.core/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.test.core/META-INF/MANIFEST.MF index 84df256fb..fd7d12c1f 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.test.core/META-INF/MANIFEST.MF @@ -4,7 +4,7 @@ Bundle-Name: com.avaloq.tools.ddk.xtext.test.core Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.test.core;singleton:=true Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG -Bundle-RequiredExecutionEnvironment: JavaSE-17 +Bundle-RequiredExecutionEnvironment: JavaSE-21 Require-Bundle: com.avaloq.tools.ddk.xtext, com.avaloq.tools.ddk.xtext.common.ui, com.avaloq.tools.ddk.xtext.ui, diff --git a/com.avaloq.tools.ddk.xtext.test/.classpath b/com.avaloq.tools.ddk.xtext.test/.classpath index ed271aa37..1054ffe60 100644 --- a/com.avaloq.tools.ddk.xtext.test/.classpath +++ b/com.avaloq.tools.ddk.xtext.test/.classpath @@ -11,7 +11,7 @@ - + diff --git a/com.avaloq.tools.ddk.xtext.test/AllTests DDK.launch b/com.avaloq.tools.ddk.xtext.test/AllTests DDK.launch index 4e32526a5..8caf78ec1 100644 --- a/com.avaloq.tools.ddk.xtext.test/AllTests DDK.launch +++ b/com.avaloq.tools.ddk.xtext.test/AllTests DDK.launch @@ -26,7 +26,7 @@ - + diff --git a/com.avaloq.tools.ddk.xtext.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.test/META-INF/MANIFEST.MF index 14d9a029a..11d3745b3 100644 --- a/com.avaloq.tools.ddk.xtext.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.test/META-INF/MANIFEST.MF @@ -4,7 +4,7 @@ Bundle-Name: com.avaloq.tools.ddk.xtext.test Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.test;singleton:=true Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG -Bundle-RequiredExecutionEnvironment: JavaSE-17 +Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy Require-Bundle: com.avaloq.tools.ddk.xtext, com.avaloq.tools.ddk.xtext.test.core, diff --git a/com.avaloq.tools.ddk.xtext.ui.test/.classpath b/com.avaloq.tools.ddk.xtext.ui.test/.classpath index 61c6d0a93..338476cab 100644 --- a/com.avaloq.tools.ddk.xtext.ui.test/.classpath +++ b/com.avaloq.tools.ddk.xtext.ui.test/.classpath @@ -2,7 +2,7 @@ - + diff --git a/com.avaloq.tools.ddk.xtext.ui.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.ui.test/META-INF/MANIFEST.MF index 2877d07f7..1c230e0af 100644 --- a/com.avaloq.tools.ddk.xtext.ui.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.ui.test/META-INF/MANIFEST.MF @@ -4,7 +4,7 @@ Bundle-Name: com.avaloq.tools.ddk.xtext.ui.test Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.ui.test;singleton:=true Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG -Bundle-RequiredExecutionEnvironment: JavaSE-17 +Bundle-RequiredExecutionEnvironment: JavaSE-21 Require-Bundle: org.eclipse.xtext.ui, org.eclipse.xtext.xbase.lib, org.eclipse.xtext.testing, diff --git a/com.avaloq.tools.ddk.xtext.ui.test/XtextUiTestSuite.launch b/com.avaloq.tools.ddk.xtext.ui.test/XtextUiTestSuite.launch index a3e15eb12..0d284814a 100644 --- a/com.avaloq.tools.ddk.xtext.ui.test/XtextUiTestSuite.launch +++ b/com.avaloq.tools.ddk.xtext.ui.test/XtextUiTestSuite.launch @@ -23,7 +23,7 @@ - + diff --git a/com.avaloq.tools.ddk.xtext.ui/.classpath b/com.avaloq.tools.ddk.xtext.ui/.classpath index a0c10c21f..7b0f1225c 100644 --- a/com.avaloq.tools.ddk.xtext.ui/.classpath +++ b/com.avaloq.tools.ddk.xtext.ui/.classpath @@ -2,7 +2,7 @@ - + diff --git a/com.avaloq.tools.ddk.xtext.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.ui/META-INF/MANIFEST.MF index 079a91071..d20ddef88 100644 --- a/com.avaloq.tools.ddk.xtext.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.ui/META-INF/MANIFEST.MF @@ -4,7 +4,7 @@ Bundle-Name: com.avaloq.tools.ddk.xtext.ui Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.ui;singleton:=true Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG -Bundle-RequiredExecutionEnvironment: JavaSE-17 +Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy Require-Bundle: com.avaloq.tools.ddk.xtext, org.eclipse.jdt.core, diff --git a/com.avaloq.tools.ddk.xtext.valid.ide/.classpath b/com.avaloq.tools.ddk.xtext.valid.ide/.classpath index 7ce81897b..fc183f78b 100644 --- a/com.avaloq.tools.ddk.xtext.valid.ide/.classpath +++ b/com.avaloq.tools.ddk.xtext.valid.ide/.classpath @@ -11,7 +11,7 @@ - + diff --git a/com.avaloq.tools.ddk.xtext.valid.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.valid.ide/META-INF/MANIFEST.MF index 5e833386f..ba9a00206 100644 --- a/com.avaloq.tools.ddk.xtext.valid.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.valid.ide/META-INF/MANIFEST.MF @@ -4,7 +4,7 @@ Bundle-Name: com.avaloq.tools.ddk.xtext.valid.ide Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.valid.ide;singleton:=true Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG -Bundle-RequiredExecutionEnvironment: JavaSE-17 +Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy Export-Package: com.avaloq.tools.ddk.xtext.valid.ide.contentassist.antlr, com.avaloq.tools.ddk.xtext.valid.ide.contentassist.antlr.internal diff --git a/com.avaloq.tools.ddk.xtext.valid.ui/.classpath b/com.avaloq.tools.ddk.xtext.valid.ui/.classpath index c3e106958..7887a7ed7 100644 --- a/com.avaloq.tools.ddk.xtext.valid.ui/.classpath +++ b/com.avaloq.tools.ddk.xtext.valid.ui/.classpath @@ -6,7 +6,7 @@ - + diff --git a/com.avaloq.tools.ddk.xtext.valid.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.valid.ui/META-INF/MANIFEST.MF index b3d84f692..c1200eff7 100644 --- a/com.avaloq.tools.ddk.xtext.valid.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.valid.ui/META-INF/MANIFEST.MF @@ -4,7 +4,7 @@ Bundle-Name: com.avaloq.tools.ddk.xtext.valid.ui Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.valid.ui;singleton:=true Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG -Bundle-RequiredExecutionEnvironment: JavaSE-17 +Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy Require-Bundle: com.avaloq.tools.ddk.xtext.ui, com.avaloq.tools.ddk.xtext.valid.ide;visibility:=reexport, diff --git a/com.avaloq.tools.ddk.xtext.valid/.classpath b/com.avaloq.tools.ddk.xtext.valid/.classpath index c3e106958..7887a7ed7 100644 --- a/com.avaloq.tools.ddk.xtext.valid/.classpath +++ b/com.avaloq.tools.ddk.xtext.valid/.classpath @@ -6,7 +6,7 @@ - + diff --git a/com.avaloq.tools.ddk.xtext.valid/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.valid/META-INF/MANIFEST.MF index b213e51df..6d9655149 100644 --- a/com.avaloq.tools.ddk.xtext.valid/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.valid/META-INF/MANIFEST.MF @@ -4,7 +4,7 @@ Bundle-Name: com.avaloq.tools.ddk.xtext.valid Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.valid;singleton:=true Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG -Bundle-RequiredExecutionEnvironment: JavaSE-17 +Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy Require-Bundle: org.eclipse.xtext, org.eclipse.xtext.xtext.generator;resolution:=optional, diff --git a/com.avaloq.tools.ddk.xtext/.classpath b/com.avaloq.tools.ddk.xtext/.classpath index cd13ba9b5..fc3dcad58 100644 --- a/com.avaloq.tools.ddk.xtext/.classpath +++ b/com.avaloq.tools.ddk.xtext/.classpath @@ -1,6 +1,6 @@ - + diff --git a/com.avaloq.tools.ddk.xtext/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext/META-INF/MANIFEST.MF index dec900576..682340b00 100644 --- a/com.avaloq.tools.ddk.xtext/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext/META-INF/MANIFEST.MF @@ -4,7 +4,7 @@ Bundle-Name: com.avaloq.tools.ddk.xtext Bundle-SymbolicName: com.avaloq.tools.ddk.xtext;singleton:=true Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG -Bundle-RequiredExecutionEnvironment: JavaSE-17 +Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy Require-Bundle: com.google.guava, org.apache.commons.lang, diff --git a/com.avaloq.tools.ddk/.classpath b/com.avaloq.tools.ddk/.classpath index 7292aafec..7b23e03fb 100644 --- a/com.avaloq.tools.ddk/.classpath +++ b/com.avaloq.tools.ddk/.classpath @@ -1,6 +1,6 @@ - + diff --git a/com.avaloq.tools.ddk/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk/META-INF/MANIFEST.MF index 1875ad637..97776ed93 100644 --- a/com.avaloq.tools.ddk/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk/META-INF/MANIFEST.MF @@ -4,7 +4,7 @@ Bundle-Name: com.avaloq.tools.ddk Bundle-SymbolicName: com.avaloq.tools.ddk;singleton:=true Bundle-Version: 15.5.0.qualifier Bundle-Vendor: Avaloq Group AG -Bundle-RequiredExecutionEnvironment: JavaSE-17 +Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy Require-Bundle: com.google.guava, org.apache.commons.lang, diff --git a/ddk-configuration/launches/Maven Clean.launch b/ddk-configuration/launches/Maven Clean.launch index 6af34bdbc..c3457b20c 100644 --- a/ddk-configuration/launches/Maven Clean.launch +++ b/ddk-configuration/launches/Maven Clean.launch @@ -15,6 +15,6 @@ - + diff --git a/ddk-configuration/launches/Maven Verify.launch b/ddk-configuration/launches/Maven Verify.launch index b333ad09b..79cb9627e 100644 --- a/ddk-configuration/launches/Maven Verify.launch +++ b/ddk-configuration/launches/Maven Verify.launch @@ -15,6 +15,6 @@ - + diff --git a/ddk-configuration/launches/devkit-run.launch b/ddk-configuration/launches/devkit-run.launch index 8ae7d2f0f..7dbe6c51b 100644 --- a/ddk-configuration/launches/devkit-run.launch +++ b/ddk-configuration/launches/devkit-run.launch @@ -17,7 +17,7 @@ - + From da707bd67fdf86e53d572f2b20a55ec939bf8bf1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Porras=20Campo?= Date: Wed, 2 Jul 2025 10:45:35 +0200 Subject: [PATCH 28/57] feat: Change the compilation target to Java 21 --- ddk-configuration/.settings/org.eclipse.jdt.core.prefs | 6 +++--- ddk-parent/pom.xml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ddk-configuration/.settings/org.eclipse.jdt.core.prefs b/ddk-configuration/.settings/org.eclipse.jdt.core.prefs index 86b3548c6..5f5715f33 100644 --- a/ddk-configuration/.settings/org.eclipse.jdt.core.prefs +++ b/ddk-configuration/.settings/org.eclipse.jdt.core.prefs @@ -10,9 +10,9 @@ org.eclipse.jdt.core.compiler.annotation.nullable.secondary= org.eclipse.jdt.core.compiler.annotation.nullanalysis=disabled org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled org.eclipse.jdt.core.compiler.codegen.methodParameters=do not generate -org.eclipse.jdt.core.compiler.codegen.targetPlatform=17 +org.eclipse.jdt.core.compiler.codegen.targetPlatform=21 org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve -org.eclipse.jdt.core.compiler.compliance=17 +org.eclipse.jdt.core.compiler.compliance=21 org.eclipse.jdt.core.compiler.debug.lineNumber=generate org.eclipse.jdt.core.compiler.debug.localVariable=generate org.eclipse.jdt.core.compiler.debug.sourceFile=generate @@ -114,7 +114,7 @@ org.eclipse.jdt.core.compiler.problem.unusedTypeParameter=ignore org.eclipse.jdt.core.compiler.problem.unusedWarningToken=warning org.eclipse.jdt.core.compiler.problem.varargsArgumentNeedCast=warning org.eclipse.jdt.core.compiler.release=disabled -org.eclipse.jdt.core.compiler.source=17 +org.eclipse.jdt.core.compiler.source=21 org.eclipse.jdt.core.compiler.taskCaseSensitive=enabled org.eclipse.jdt.core.compiler.taskPriorities=LOW,HIGH,NORMAL org.eclipse.jdt.core.compiler.taskTags=TODO,FIXME,XXX diff --git a/ddk-parent/pom.xml b/ddk-parent/pom.xml index bbad6500e..a47654d5f 100644 --- a/ddk-parent/pom.xml +++ b/ddk-parent/pom.xml @@ -8,7 +8,7 @@ pom - 17 + 21 true From cbe59348b2a5b931546730a280ac04c5c17295c9 Mon Sep 17 00:00:00 2001 From: Jenkins Date: Mon, 7 Jul 2025 13:02:49 +0200 Subject: [PATCH 29/57] Release 15.5.0.v20250707-1302-REL --- com.avaloq.tools.ddk.check.core.test/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.core.test/pom.xml | 2 +- com.avaloq.tools.ddk.check.core/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.core/pom.xml | 2 +- com.avaloq.tools.ddk.check.ide/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.ide/pom.xml | 2 +- com.avaloq.tools.ddk.check.lib/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.lib/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.runtime.core.test/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.runtime.core/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.runtime.ui/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.test.runtime.tests/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.test.runtime.ui/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.test.runtime/pom.xml | 2 +- com.avaloq.tools.ddk.check.ui.test/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.ui.test/pom.xml | 2 +- com.avaloq.tools.ddk.check.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.ui/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.checkcfg.core.test/pom.xml | 2 +- com.avaloq.tools.ddk.checkcfg.core/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.checkcfg.core/pom.xml | 2 +- com.avaloq.tools.ddk.checkcfg.ide/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.checkcfg.ide/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.checkcfg.ui.test/pom.xml | 2 +- com.avaloq.tools.ddk.checkcfg.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.checkcfg.ui/pom.xml | 2 +- com.avaloq.tools.ddk.feature/feature.xml | 2 +- com.avaloq.tools.ddk.feature/pom.xml | 2 +- com.avaloq.tools.ddk.runtime.feature/feature.xml | 2 +- com.avaloq.tools.ddk.runtime.feature/pom.xml | 2 +- com.avaloq.tools.ddk.runtime.source.feature/feature.xml | 2 +- com.avaloq.tools.ddk.runtime.source.feature/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.sample.helloworld.ide/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.sample.helloworld.ui.test/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.sample.helloworld.ui/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.sample.helloworld/pom.xml | 2 +- com.avaloq.tools.ddk.source.feature/feature.xml | 2 +- com.avaloq.tools.ddk.source.feature/pom.xml | 2 +- com.avaloq.tools.ddk.test.core/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.test.core/pom.xml | 2 +- com.avaloq.tools.ddk.test.ui.test/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.test.ui.test/pom.xml | 2 +- com.avaloq.tools.ddk.test.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.test.ui/pom.xml | 2 +- com.avaloq.tools.ddk.typesystem.test/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.typesystem.test/pom.xml | 2 +- com.avaloq.tools.ddk.typesystem/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.typesystem/pom.xml | 2 +- com.avaloq.tools.ddk.workflow/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.workflow/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.builder.ui/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.builder/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.builder/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.check.generator/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.common.types.ui/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.common.types/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.common.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.common.ui/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.export.generator/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.export.ide/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.export.test/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.export.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.export.ui/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.export/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.export/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.expression.ide/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.expression.ui/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.expression/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.format.generator/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.format.ide/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.format.test/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.format.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.format.ui/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.format/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.format/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.generator.test/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.generator/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.generator/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.ide/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.ide/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.scope.generator/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.scope.ide/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.scope.ide/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.scope.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.scope.ui/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.scope/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.scope/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.test.core/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.test.core/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.test/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.test/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.ui.test/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.ui.test/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.ui/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.valid.ide/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.valid.ide/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.valid.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.valid.ui/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.valid/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.valid/pom.xml | 2 +- com.avaloq.tools.ddk.xtext/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext/pom.xml | 2 +- com.avaloq.tools.ddk/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk/pom.xml | 2 +- ddk-parent/pom.xml | 2 +- ddk-repository/category.xml | 8 ++++---- ddk-repository/pom.xml | 2 +- ddk-target/pom.xml | 2 +- 136 files changed, 139 insertions(+), 139 deletions(-) diff --git a/com.avaloq.tools.ddk.check.core.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.core.test/META-INF/MANIFEST.MF index b71d3a3b3..c53fd0ef9 100644 --- a/com.avaloq.tools.ddk.check.core.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.core.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.core.test Bundle-SymbolicName: com.avaloq.tools.ddk.check.core.test;singleton:=true -Bundle-Version: 15.5.0.qualifier +Bundle-Version: 15.5.0.v20250707-1302-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.check.core.test/pom.xml b/com.avaloq.tools.ddk.check.core.test/pom.xml index 42a2bced3..9f33f67d5 100644 --- a/com.avaloq.tools.ddk.check.core.test/pom.xml +++ b/com.avaloq.tools.ddk.check.core.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0-SNAPSHOT + 15.5.0.v20250707-1302-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.check.core/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.core/META-INF/MANIFEST.MF index c14123d41..89c30a3d4 100644 --- a/com.avaloq.tools.ddk.check.core/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.core/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.core Bundle-SymbolicName: com.avaloq.tools.ddk.check.core;singleton:=true -Bundle-Version: 15.5.0.qualifier +Bundle-Version: 15.5.0.v20250707-1302-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.check.core/pom.xml b/com.avaloq.tools.ddk.check.core/pom.xml index 75aabd194..6c39a991e 100644 --- a/com.avaloq.tools.ddk.check.core/pom.xml +++ b/com.avaloq.tools.ddk.check.core/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0-SNAPSHOT + 15.5.0.v20250707-1302-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.check.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.ide/META-INF/MANIFEST.MF index c0f332cf7..a4984f7b9 100644 --- a/com.avaloq.tools.ddk.check.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.ide/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.ide Bundle-SymbolicName: com.avaloq.tools.ddk.check.ide;singleton:=true -Bundle-Version: 15.5.0.qualifier +Bundle-Version: 15.5.0.v20250707-1302-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.check.ide/pom.xml b/com.avaloq.tools.ddk.check.ide/pom.xml index 4c94f4ef8..9c4f1533a 100644 --- a/com.avaloq.tools.ddk.check.ide/pom.xml +++ b/com.avaloq.tools.ddk.check.ide/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0-SNAPSHOT + 15.5.0.v20250707-1302-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.check.lib/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.lib/META-INF/MANIFEST.MF index cc1eff685..2ec37bd95 100644 --- a/com.avaloq.tools.ddk.check.lib/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.lib/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.lib Bundle-SymbolicName: com.avaloq.tools.ddk.check.lib -Bundle-Version: 15.5.0.qualifier +Bundle-Version: 15.5.0.v20250707-1302-REL Bundle-Vendor: Avaloq Group AG Require-Bundle: org.eclipse.core.runtime, org.eclipse.xtext, diff --git a/com.avaloq.tools.ddk.check.lib/pom.xml b/com.avaloq.tools.ddk.check.lib/pom.xml index bfd7d394f..b2dc84004 100644 --- a/com.avaloq.tools.ddk.check.lib/pom.xml +++ b/com.avaloq.tools.ddk.check.lib/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0-SNAPSHOT + 15.5.0.v20250707-1302-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.check.runtime.core.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.runtime.core.test/META-INF/MANIFEST.MF index 41eedf4b2..a2f803ac1 100644 --- a/com.avaloq.tools.ddk.check.runtime.core.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.runtime.core.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.runtime.core.test Bundle-SymbolicName: com.avaloq.tools.ddk.check.runtime.core.test;singleton:=true -Bundle-Version: 15.5.0.qualifier +Bundle-Version: 15.5.0.v20250707-1302-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Require-Bundle: org.eclipse.ui, diff --git a/com.avaloq.tools.ddk.check.runtime.core.test/pom.xml b/com.avaloq.tools.ddk.check.runtime.core.test/pom.xml index a8de98b92..f1100a0c6 100644 --- a/com.avaloq.tools.ddk.check.runtime.core.test/pom.xml +++ b/com.avaloq.tools.ddk.check.runtime.core.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0-SNAPSHOT + 15.5.0.v20250707-1302-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.check.runtime.core/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.runtime.core/META-INF/MANIFEST.MF index a9f4aff7b..f7d7a9666 100644 --- a/com.avaloq.tools.ddk.check.runtime.core/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.runtime.core/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.runtime.core Bundle-SymbolicName: com.avaloq.tools.ddk.check.runtime.core;singleton:=true -Bundle-Version: 15.5.0.qualifier +Bundle-Version: 15.5.0.v20250707-1302-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Require-Bundle: org.eclipse.core.resources, diff --git a/com.avaloq.tools.ddk.check.runtime.core/pom.xml b/com.avaloq.tools.ddk.check.runtime.core/pom.xml index f965252b3..107b8c2c3 100644 --- a/com.avaloq.tools.ddk.check.runtime.core/pom.xml +++ b/com.avaloq.tools.ddk.check.runtime.core/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0-SNAPSHOT + 15.5.0.v20250707-1302-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.check.runtime.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.runtime.ui/META-INF/MANIFEST.MF index 94250d031..571493c11 100644 --- a/com.avaloq.tools.ddk.check.runtime.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.runtime.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.runtime.ui Bundle-SymbolicName: com.avaloq.tools.ddk.check.runtime.ui;singleton:=true -Bundle-Version: 15.5.0.qualifier +Bundle-Version: 15.5.0.v20250707-1302-REL Bundle-Activator: com.avaloq.tools.ddk.check.runtime.ui.internal.Activator Bundle-Vendor: Avaloq Group AG Require-Bundle: org.eclipse.ui, diff --git a/com.avaloq.tools.ddk.check.runtime.ui/pom.xml b/com.avaloq.tools.ddk.check.runtime.ui/pom.xml index 1363b6c8f..985b820e9 100644 --- a/com.avaloq.tools.ddk.check.runtime.ui/pom.xml +++ b/com.avaloq.tools.ddk.check.runtime.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0-SNAPSHOT + 15.5.0.v20250707-1302-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.check.test.runtime.tests/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.test.runtime.tests/META-INF/MANIFEST.MF index b34273b0a..3ba3d96fa 100644 --- a/com.avaloq.tools.ddk.check.test.runtime.tests/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.test.runtime.tests/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.test.runtime.tests Bundle-Vendor: Avaloq Group AG -Bundle-Version: 15.5.0.qualifier +Bundle-Version: 15.5.0.v20250707-1302-REL Bundle-SymbolicName: com.avaloq.tools.ddk.check.test.runtime.tests; singleton:=true Bundle-ActivationPolicy: lazy Require-Bundle: com.avaloq.tools.ddk.check.runtime.core, diff --git a/com.avaloq.tools.ddk.check.test.runtime.tests/pom.xml b/com.avaloq.tools.ddk.check.test.runtime.tests/pom.xml index d4226294c..e6cc70b7e 100644 --- a/com.avaloq.tools.ddk.check.test.runtime.tests/pom.xml +++ b/com.avaloq.tools.ddk.check.test.runtime.tests/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0-SNAPSHOT + 15.5.0.v20250707-1302-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.check.test.runtime.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.test.runtime.ui/META-INF/MANIFEST.MF index 2bc3862c3..25ad89cc6 100644 --- a/com.avaloq.tools.ddk.check.test.runtime.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.test.runtime.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.test.runtime.ui Bundle-Vendor: Avaloq Group AG -Bundle-Version: 15.5.0.qualifier +Bundle-Version: 15.5.0.v20250707-1302-REL Bundle-SymbolicName: com.avaloq.tools.ddk.check.test.runtime.ui; singleton:=true Bundle-ActivationPolicy: lazy Require-Bundle: com.avaloq.tools.ddk.check.test.runtime;visibility:=reexport, diff --git a/com.avaloq.tools.ddk.check.test.runtime.ui/pom.xml b/com.avaloq.tools.ddk.check.test.runtime.ui/pom.xml index 920357c58..760e9aeb9 100644 --- a/com.avaloq.tools.ddk.check.test.runtime.ui/pom.xml +++ b/com.avaloq.tools.ddk.check.test.runtime.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0-SNAPSHOT + 15.5.0.v20250707-1302-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.check.test.runtime/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.test.runtime/META-INF/MANIFEST.MF index f8b6a9365..29499757a 100644 --- a/com.avaloq.tools.ddk.check.test.runtime/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.test.runtime/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.test.runtime Bundle-Vendor: Avaloq Group AG -Bundle-Version: 15.5.0.qualifier +Bundle-Version: 15.5.0.v20250707-1302-REL Bundle-SymbolicName: com.avaloq.tools.ddk.check.test.runtime;singleton:=true Bundle-ActivationPolicy: lazy Require-Bundle: org.eclipse.xtext;visibility:=reexport, diff --git a/com.avaloq.tools.ddk.check.test.runtime/pom.xml b/com.avaloq.tools.ddk.check.test.runtime/pom.xml index 943eae3fb..aebcfd886 100644 --- a/com.avaloq.tools.ddk.check.test.runtime/pom.xml +++ b/com.avaloq.tools.ddk.check.test.runtime/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0-SNAPSHOT + 15.5.0.v20250707-1302-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.check.ui.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.ui.test/META-INF/MANIFEST.MF index e557579bb..af06a5dd8 100644 --- a/com.avaloq.tools.ddk.check.ui.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.ui.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.ui.test Bundle-SymbolicName: com.avaloq.tools.ddk.check.ui.test -Bundle-Version: 15.5.0.qualifier +Bundle-Version: 15.5.0.v20250707-1302-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Require-Bundle: org.junit, diff --git a/com.avaloq.tools.ddk.check.ui.test/pom.xml b/com.avaloq.tools.ddk.check.ui.test/pom.xml index d13384674..bda13eade 100644 --- a/com.avaloq.tools.ddk.check.ui.test/pom.xml +++ b/com.avaloq.tools.ddk.check.ui.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0-SNAPSHOT + 15.5.0.v20250707-1302-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.check.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.ui/META-INF/MANIFEST.MF index 9cbc7fd09..faa526de8 100644 --- a/com.avaloq.tools.ddk.check.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.ui Bundle-SymbolicName: com.avaloq.tools.ddk.check.ui;singleton:=true -Bundle-Version: 15.5.0.qualifier +Bundle-Version: 15.5.0.v20250707-1302-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-Activator: com.avaloq.tools.ddk.check.ui.internal.Activator diff --git a/com.avaloq.tools.ddk.check.ui/pom.xml b/com.avaloq.tools.ddk.check.ui/pom.xml index fd1f3b1ae..8254d7608 100644 --- a/com.avaloq.tools.ddk.check.ui/pom.xml +++ b/com.avaloq.tools.ddk.check.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0-SNAPSHOT + 15.5.0.v20250707-1302-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.checkcfg.core.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.checkcfg.core.test/META-INF/MANIFEST.MF index f77d0cef8..b8ab1174f 100644 --- a/com.avaloq.tools.ddk.checkcfg.core.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.checkcfg.core.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.checkcfg.core.test Bundle-Vendor: Avaloq Group AG -Bundle-Version: 15.5.0.qualifier +Bundle-Version: 15.5.0.v20250707-1302-REL Bundle-SymbolicName: com.avaloq.tools.ddk.checkcfg.core.test; singleton:=true Bundle-ActivationPolicy: lazy Require-Bundle: com.avaloq.tools.ddk.test.core, diff --git a/com.avaloq.tools.ddk.checkcfg.core.test/pom.xml b/com.avaloq.tools.ddk.checkcfg.core.test/pom.xml index 997c9da87..36c08a9c1 100644 --- a/com.avaloq.tools.ddk.checkcfg.core.test/pom.xml +++ b/com.avaloq.tools.ddk.checkcfg.core.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0-SNAPSHOT + 15.5.0.v20250707-1302-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.checkcfg.core/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.checkcfg.core/META-INF/MANIFEST.MF index 9b9510682..cde8194d8 100644 --- a/com.avaloq.tools.ddk.checkcfg.core/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.checkcfg.core/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.checkcfg.core Bundle-Vendor: Avaloq Group AG -Bundle-Version: 15.5.0.qualifier +Bundle-Version: 15.5.0.v20250707-1302-REL Bundle-SymbolicName: com.avaloq.tools.ddk.checkcfg.core; singleton:=true Bundle-ActivationPolicy: lazy Bundle-RequiredExecutionEnvironment: JavaSE-21 diff --git a/com.avaloq.tools.ddk.checkcfg.core/pom.xml b/com.avaloq.tools.ddk.checkcfg.core/pom.xml index 4f3b46de7..654f5f570 100644 --- a/com.avaloq.tools.ddk.checkcfg.core/pom.xml +++ b/com.avaloq.tools.ddk.checkcfg.core/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0-SNAPSHOT + 15.5.0.v20250707-1302-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.checkcfg.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.checkcfg.ide/META-INF/MANIFEST.MF index 25a571d93..7fc670cbc 100644 --- a/com.avaloq.tools.ddk.checkcfg.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.checkcfg.ide/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.checkcfg.ide Bundle-SymbolicName: com.avaloq.tools.ddk.checkcfg.ide;singleton:=true -Bundle-Version: 15.5.0.qualifier +Bundle-Version: 15.5.0.v20250707-1302-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.checkcfg.ide/pom.xml b/com.avaloq.tools.ddk.checkcfg.ide/pom.xml index 716eccc3f..39e4f3575 100644 --- a/com.avaloq.tools.ddk.checkcfg.ide/pom.xml +++ b/com.avaloq.tools.ddk.checkcfg.ide/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0-SNAPSHOT + 15.5.0.v20250707-1302-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.checkcfg.ui.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.checkcfg.ui.test/META-INF/MANIFEST.MF index 4186c4961..015285f28 100644 --- a/com.avaloq.tools.ddk.checkcfg.ui.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.checkcfg.ui.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.checkcfg.ui.test Bundle-SymbolicName: com.avaloq.tools.ddk.checkcfg.ui.test -Bundle-Version: 15.5.0.qualifier +Bundle-Version: 15.5.0.v20250707-1302-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Export-Package: com.avaloq.tools.ddk.checkcfg.ui.test diff --git a/com.avaloq.tools.ddk.checkcfg.ui.test/pom.xml b/com.avaloq.tools.ddk.checkcfg.ui.test/pom.xml index ba0965051..74a17e72d 100644 --- a/com.avaloq.tools.ddk.checkcfg.ui.test/pom.xml +++ b/com.avaloq.tools.ddk.checkcfg.ui.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0-SNAPSHOT + 15.5.0.v20250707-1302-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.checkcfg.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.checkcfg.ui/META-INF/MANIFEST.MF index ca858f7ca..9e3f38392 100644 --- a/com.avaloq.tools.ddk.checkcfg.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.checkcfg.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.checkcfg.ui Bundle-SymbolicName: com.avaloq.tools.ddk.checkcfg.ui;singleton:=true -Bundle-Version: 15.5.0.qualifier +Bundle-Version: 15.5.0.v20250707-1302-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-Activator: com.avaloq.tools.ddk.checkcfg.ui.internal.Activator diff --git a/com.avaloq.tools.ddk.checkcfg.ui/pom.xml b/com.avaloq.tools.ddk.checkcfg.ui/pom.xml index 1e1c2f2d1..8de1904b0 100644 --- a/com.avaloq.tools.ddk.checkcfg.ui/pom.xml +++ b/com.avaloq.tools.ddk.checkcfg.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0-SNAPSHOT + 15.5.0.v20250707-1302-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.feature/feature.xml b/com.avaloq.tools.ddk.feature/feature.xml index 7a6a12dcb..e941e39b5 100644 --- a/com.avaloq.tools.ddk.feature/feature.xml +++ b/com.avaloq.tools.ddk.feature/feature.xml @@ -2,7 +2,7 @@ diff --git a/com.avaloq.tools.ddk.feature/pom.xml b/com.avaloq.tools.ddk.feature/pom.xml index bb7d6d7f1..660ae60ee 100644 --- a/com.avaloq.tools.ddk.feature/pom.xml +++ b/com.avaloq.tools.ddk.feature/pom.xml @@ -4,7 +4,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0-SNAPSHOT + 15.5.0.v20250707-1302-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.runtime.feature/feature.xml b/com.avaloq.tools.ddk.runtime.feature/feature.xml index 59cae179e..80f26529d 100644 --- a/com.avaloq.tools.ddk.runtime.feature/feature.xml +++ b/com.avaloq.tools.ddk.runtime.feature/feature.xml @@ -2,7 +2,7 @@ diff --git a/com.avaloq.tools.ddk.runtime.feature/pom.xml b/com.avaloq.tools.ddk.runtime.feature/pom.xml index d0754e1fd..f0d67280e 100644 --- a/com.avaloq.tools.ddk.runtime.feature/pom.xml +++ b/com.avaloq.tools.ddk.runtime.feature/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0-SNAPSHOT + 15.5.0.v20250707-1302-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.runtime.source.feature/feature.xml b/com.avaloq.tools.ddk.runtime.source.feature/feature.xml index f16aecde1..6c2489cd9 100644 --- a/com.avaloq.tools.ddk.runtime.source.feature/feature.xml +++ b/com.avaloq.tools.ddk.runtime.source.feature/feature.xml @@ -2,7 +2,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0-SNAPSHOT + 15.5.0.v20250707-1302-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.sample.helloworld.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.sample.helloworld.ide/META-INF/MANIFEST.MF index 297c8d1fa..a11cb349c 100644 --- a/com.avaloq.tools.ddk.sample.helloworld.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.sample.helloworld.ide/META-INF/MANIFEST.MF @@ -3,7 +3,7 @@ Automatic-Module-Name: com.avaloq.tools.ddk.sample.helloworld.ide Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.sample.helloworld.ide Bundle-Vendor: Avaloq Group AG -Bundle-Version: 15.5.0.qualifier +Bundle-Version: 15.5.0.v20250707-1302-REL Bundle-SymbolicName: com.avaloq.tools.ddk.sample.helloworld.ide;singleton:=true Bundle-ActivationPolicy: lazy Require-Bundle: com.avaloq.tools.ddk.sample.helloworld, diff --git a/com.avaloq.tools.ddk.sample.helloworld.ide/pom.xml b/com.avaloq.tools.ddk.sample.helloworld.ide/pom.xml index 58cc23ef3..3331bfb4a 100644 --- a/com.avaloq.tools.ddk.sample.helloworld.ide/pom.xml +++ b/com.avaloq.tools.ddk.sample.helloworld.ide/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0-SNAPSHOT + 15.5.0.v20250707-1302-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.sample.helloworld.ui.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.sample.helloworld.ui.test/META-INF/MANIFEST.MF index 26117711f..b8f73a5f3 100644 --- a/com.avaloq.tools.ddk.sample.helloworld.ui.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.sample.helloworld.ui.test/META-INF/MANIFEST.MF @@ -3,7 +3,7 @@ Automatic-Module-Name: com.avaloq.tools.ddk.sample.helloworld.ui.test Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.sample.helloworld.ui.test Bundle-Vendor: Avaloq Group AG -Bundle-Version: 15.5.0.qualifier +Bundle-Version: 15.5.0.v20250707-1302-REL Bundle-SymbolicName: com.avaloq.tools.ddk.sample.helloworld.ui.test;singleton:=true Bundle-ActivationPolicy: lazy Require-Bundle: com.avaloq.tools.ddk.sample.helloworld, diff --git a/com.avaloq.tools.ddk.sample.helloworld.ui.test/pom.xml b/com.avaloq.tools.ddk.sample.helloworld.ui.test/pom.xml index 61a4259a8..0e26eeb0a 100644 --- a/com.avaloq.tools.ddk.sample.helloworld.ui.test/pom.xml +++ b/com.avaloq.tools.ddk.sample.helloworld.ui.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0-SNAPSHOT + 15.5.0.v20250707-1302-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.sample.helloworld.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.sample.helloworld.ui/META-INF/MANIFEST.MF index 541947b72..a2a60f66f 100644 --- a/com.avaloq.tools.ddk.sample.helloworld.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.sample.helloworld.ui/META-INF/MANIFEST.MF @@ -3,7 +3,7 @@ Automatic-Module-Name: com.avaloq.tools.ddk.sample.helloworld.ui Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.sample.helloworld.ui Bundle-Vendor: Avaloq Group AG -Bundle-Version: 15.5.0.qualifier +Bundle-Version: 15.5.0.v20250707-1302-REL Bundle-SymbolicName: com.avaloq.tools.ddk.sample.helloworld.ui;singleton:=true Bundle-ActivationPolicy: lazy Require-Bundle: com.avaloq.tools.ddk.sample.helloworld, diff --git a/com.avaloq.tools.ddk.sample.helloworld.ui/pom.xml b/com.avaloq.tools.ddk.sample.helloworld.ui/pom.xml index 5f0cafd17..f3d211d0a 100644 --- a/com.avaloq.tools.ddk.sample.helloworld.ui/pom.xml +++ b/com.avaloq.tools.ddk.sample.helloworld.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0-SNAPSHOT + 15.5.0.v20250707-1302-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.sample.helloworld/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.sample.helloworld/META-INF/MANIFEST.MF index 07606f16a..37e8edf38 100644 --- a/com.avaloq.tools.ddk.sample.helloworld/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.sample.helloworld/META-INF/MANIFEST.MF @@ -3,7 +3,7 @@ Automatic-Module-Name: com.avaloq.tools.ddk.sample.helloworld Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.sample.helloworld Bundle-Vendor: Avaloq Group AG -Bundle-Version: 15.5.0.qualifier +Bundle-Version: 15.5.0.v20250707-1302-REL Bundle-SymbolicName: com.avaloq.tools.ddk.sample.helloworld;singleton:=true Bundle-ActivationPolicy: lazy Require-Bundle: org.eclipse.xtext, diff --git a/com.avaloq.tools.ddk.sample.helloworld/pom.xml b/com.avaloq.tools.ddk.sample.helloworld/pom.xml index 079ecae7e..fc949ab59 100644 --- a/com.avaloq.tools.ddk.sample.helloworld/pom.xml +++ b/com.avaloq.tools.ddk.sample.helloworld/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0-SNAPSHOT + 15.5.0.v20250707-1302-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.source.feature/feature.xml b/com.avaloq.tools.ddk.source.feature/feature.xml index eeed04711..bf5a63c1b 100644 --- a/com.avaloq.tools.ddk.source.feature/feature.xml +++ b/com.avaloq.tools.ddk.source.feature/feature.xml @@ -2,7 +2,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0-SNAPSHOT + 15.5.0.v20250707-1302-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.test.core/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.test.core/META-INF/MANIFEST.MF index 486a9ad0a..f459807c3 100644 --- a/com.avaloq.tools.ddk.test.core/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.test.core/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.test.core Bundle-SymbolicName: com.avaloq.tools.ddk.test.core;singleton:=true -Bundle-Version: 15.5.0.qualifier +Bundle-Version: 15.5.0.v20250707-1302-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.test.core/pom.xml b/com.avaloq.tools.ddk.test.core/pom.xml index e199a988e..8ae7b6856 100644 --- a/com.avaloq.tools.ddk.test.core/pom.xml +++ b/com.avaloq.tools.ddk.test.core/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0-SNAPSHOT + 15.5.0.v20250707-1302-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.test.ui.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.test.ui.test/META-INF/MANIFEST.MF index 3760abf80..269bee0cc 100644 --- a/com.avaloq.tools.ddk.test.ui.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.test.ui.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.test.ui.test Bundle-SymbolicName: com.avaloq.tools.ddk.test.ui.test;singleton:=true -Bundle-Version: 15.5.0.qualifier +Bundle-Version: 15.5.0.v20250707-1302-REL Bundle-ActivationPolicy: lazy Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 diff --git a/com.avaloq.tools.ddk.test.ui.test/pom.xml b/com.avaloq.tools.ddk.test.ui.test/pom.xml index df95b44f9..8493440db 100644 --- a/com.avaloq.tools.ddk.test.ui.test/pom.xml +++ b/com.avaloq.tools.ddk.test.ui.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0-SNAPSHOT + 15.5.0.v20250707-1302-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.test.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.test.ui/META-INF/MANIFEST.MF index 36c320344..bca6bb625 100644 --- a/com.avaloq.tools.ddk.test.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.test.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.test.ui Bundle-SymbolicName: com.avaloq.tools.ddk.test.ui;singleton:=true -Bundle-Version: 15.5.0.qualifier +Bundle-Version: 15.5.0.v20250707-1302-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-Activator: com.avaloq.tools.ddk.test.ui.Activator diff --git a/com.avaloq.tools.ddk.test.ui/pom.xml b/com.avaloq.tools.ddk.test.ui/pom.xml index 6ef6cb584..7178502b1 100644 --- a/com.avaloq.tools.ddk.test.ui/pom.xml +++ b/com.avaloq.tools.ddk.test.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0-SNAPSHOT + 15.5.0.v20250707-1302-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.typesystem.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.typesystem.test/META-INF/MANIFEST.MF index f65d2aa05..f43b7920a 100644 --- a/com.avaloq.tools.ddk.typesystem.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.typesystem.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.typesystem.test Bundle-SymbolicName: com.avaloq.tools.ddk.typesystem.test;singleton:=true -Bundle-Version: 15.5.0.qualifier +Bundle-Version: 15.5.0.v20250707-1302-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.typesystem.test/pom.xml b/com.avaloq.tools.ddk.typesystem.test/pom.xml index 2cfa3b963..63a237be5 100644 --- a/com.avaloq.tools.ddk.typesystem.test/pom.xml +++ b/com.avaloq.tools.ddk.typesystem.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0-SNAPSHOT + 15.5.0.v20250707-1302-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.typesystem/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.typesystem/META-INF/MANIFEST.MF index 54c5ce52b..428d17c03 100644 --- a/com.avaloq.tools.ddk.typesystem/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.typesystem/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.typesystem Bundle-SymbolicName: com.avaloq.tools.ddk.typesystem;singleton:=true -Bundle-Version: 15.5.0.qualifier +Bundle-Version: 15.5.0.v20250707-1302-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Import-Package: org.apache.logging.log4j diff --git a/com.avaloq.tools.ddk.typesystem/pom.xml b/com.avaloq.tools.ddk.typesystem/pom.xml index fd979a3fb..31bec7741 100644 --- a/com.avaloq.tools.ddk.typesystem/pom.xml +++ b/com.avaloq.tools.ddk.typesystem/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0-SNAPSHOT + 15.5.0.v20250707-1302-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.workflow/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.workflow/META-INF/MANIFEST.MF index d8373a3a2..a85ddda0a 100644 --- a/com.avaloq.tools.ddk.workflow/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.workflow/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.workflow Bundle-SymbolicName: com.avaloq.tools.ddk.workflow -Bundle-Version: 15.5.0.qualifier +Bundle-Version: 15.5.0.v20250707-1302-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Require-Bundle: com.avaloq.tools.ddk.xtext, diff --git a/com.avaloq.tools.ddk.workflow/pom.xml b/com.avaloq.tools.ddk.workflow/pom.xml index 9feff61cd..9480f5d80 100644 --- a/com.avaloq.tools.ddk.workflow/pom.xml +++ b/com.avaloq.tools.ddk.workflow/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0-SNAPSHOT + 15.5.0.v20250707-1302-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.builder.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.builder.ui/META-INF/MANIFEST.MF index 825d0d937..df0b17fa2 100644 --- a/com.avaloq.tools.ddk.xtext.builder.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.builder.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.builder.ui Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.builder.ui;singleton:=true -Bundle-Version: 15.5.0.qualifier +Bundle-Version: 15.5.0.v20250707-1302-REL Bundle-Vendor: Avaloq Group AG Require-Bundle: org.eclipse.core.runtime, org.eclipse.xtext, diff --git a/com.avaloq.tools.ddk.xtext.builder.ui/pom.xml b/com.avaloq.tools.ddk.xtext.builder.ui/pom.xml index 0bcddc63a..fbe2f9bc9 100644 --- a/com.avaloq.tools.ddk.xtext.builder.ui/pom.xml +++ b/com.avaloq.tools.ddk.xtext.builder.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0-SNAPSHOT + 15.5.0.v20250707-1302-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.builder/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.builder/META-INF/MANIFEST.MF index 28f730416..31e9d264c 100644 --- a/com.avaloq.tools.ddk.xtext.builder/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.builder/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.builder Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.builder;singleton:=true -Bundle-Version: 15.5.0.qualifier +Bundle-Version: 15.5.0.v20250707-1302-REL Bundle-Vendor: Avaloq Group AG Require-Bundle: org.eclipse.xtext.builder, org.eclipse.xtext.ui, diff --git a/com.avaloq.tools.ddk.xtext.builder/pom.xml b/com.avaloq.tools.ddk.xtext.builder/pom.xml index c6029a88f..0f58c72ce 100644 --- a/com.avaloq.tools.ddk.xtext.builder/pom.xml +++ b/com.avaloq.tools.ddk.xtext.builder/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0-SNAPSHOT + 15.5.0.v20250707-1302-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.check.generator/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.check.generator/META-INF/MANIFEST.MF index 6f7c4802b..136c25507 100644 --- a/com.avaloq.tools.ddk.xtext.check.generator/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.check.generator/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.check.generator Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.check.generator;singleton:=true -Bundle-Version: 15.5.0.qualifier +Bundle-Version: 15.5.0.v20250707-1302-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.check.generator/pom.xml b/com.avaloq.tools.ddk.xtext.check.generator/pom.xml index 392a51d6d..48ee08055 100644 --- a/com.avaloq.tools.ddk.xtext.check.generator/pom.xml +++ b/com.avaloq.tools.ddk.xtext.check.generator/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0-SNAPSHOT + 15.5.0.v20250707-1302-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.common.types.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.common.types.ui/META-INF/MANIFEST.MF index 089eaa585..cbbd5754d 100644 --- a/com.avaloq.tools.ddk.xtext.common.types.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.common.types.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.common.types.ui Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.common.types.ui;singleton:=true -Bundle-Version: 15.5.0.qualifier +Bundle-Version: 15.5.0.v20250707-1302-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.common.types.ui/pom.xml b/com.avaloq.tools.ddk.xtext.common.types.ui/pom.xml index aaf3ddd63..4b558c5f6 100644 --- a/com.avaloq.tools.ddk.xtext.common.types.ui/pom.xml +++ b/com.avaloq.tools.ddk.xtext.common.types.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0-SNAPSHOT + 15.5.0.v20250707-1302-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.common.types/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.common.types/META-INF/MANIFEST.MF index 7185c0a74..118def374 100644 --- a/com.avaloq.tools.ddk.xtext.common.types/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.common.types/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.common.types Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.common.types;singleton:=true -Bundle-Version: 15.5.0.qualifier +Bundle-Version: 15.5.0.v20250707-1302-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.common.types/pom.xml b/com.avaloq.tools.ddk.xtext.common.types/pom.xml index 29a88296a..e2ac74fe5 100644 --- a/com.avaloq.tools.ddk.xtext.common.types/pom.xml +++ b/com.avaloq.tools.ddk.xtext.common.types/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0-SNAPSHOT + 15.5.0.v20250707-1302-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.common.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.common.ui/META-INF/MANIFEST.MF index 09be818e2..d0418bd4d 100644 --- a/com.avaloq.tools.ddk.xtext.common.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.common.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.common.ui Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.common.ui;singleton:=true -Bundle-Version: 15.5.0.qualifier +Bundle-Version: 15.5.0.v20250707-1302-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Export-Package: com.avaloq.tools.ddk.xtext.common.ui.contentassist diff --git a/com.avaloq.tools.ddk.xtext.common.ui/pom.xml b/com.avaloq.tools.ddk.xtext.common.ui/pom.xml index ed9dc15bb..8d446bbde 100644 --- a/com.avaloq.tools.ddk.xtext.common.ui/pom.xml +++ b/com.avaloq.tools.ddk.xtext.common.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0-SNAPSHOT + 15.5.0.v20250707-1302-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.xtext.export.generator/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.export.generator/META-INF/MANIFEST.MF index 188915b59..e2366c85e 100644 --- a/com.avaloq.tools.ddk.xtext.export.generator/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.export.generator/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.export.generator Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.export.generator;singleton:=true -Bundle-Version: 15.5.0.qualifier +Bundle-Version: 15.5.0.v20250707-1302-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Require-Bundle: org.eclipse.xtext, diff --git a/com.avaloq.tools.ddk.xtext.export.generator/pom.xml b/com.avaloq.tools.ddk.xtext.export.generator/pom.xml index bf095f4ca..1c7562017 100644 --- a/com.avaloq.tools.ddk.xtext.export.generator/pom.xml +++ b/com.avaloq.tools.ddk.xtext.export.generator/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0-SNAPSHOT + 15.5.0.v20250707-1302-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.export.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.export.ide/META-INF/MANIFEST.MF index 504fb2198..9ab9a8fd2 100644 --- a/com.avaloq.tools.ddk.xtext.export.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.export.ide/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.export.ide Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.export.ide;singleton:=true -Bundle-Version: 15.5.0.qualifier +Bundle-Version: 15.5.0.v20250707-1302-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.export.ide/pom.xml b/com.avaloq.tools.ddk.xtext.export.ide/pom.xml index cb2ce1462..01afb3ea5 100644 --- a/com.avaloq.tools.ddk.xtext.export.ide/pom.xml +++ b/com.avaloq.tools.ddk.xtext.export.ide/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0-SNAPSHOT + 15.5.0.v20250707-1302-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.export.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.export.test/META-INF/MANIFEST.MF index 95cbe8572..c2454236e 100644 --- a/com.avaloq.tools.ddk.xtext.export.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.export.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.export.test Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.export.test;singleton:=true -Bundle-Version: 15.5.0.qualifier +Bundle-Version: 15.5.0.v20250707-1302-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.export.test/pom.xml b/com.avaloq.tools.ddk.xtext.export.test/pom.xml index daa499066..54b2af4e0 100644 --- a/com.avaloq.tools.ddk.xtext.export.test/pom.xml +++ b/com.avaloq.tools.ddk.xtext.export.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0-SNAPSHOT + 15.5.0.v20250707-1302-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.xtext.export.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.export.ui/META-INF/MANIFEST.MF index 26b0d9d0c..271762c47 100644 --- a/com.avaloq.tools.ddk.xtext.export.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.export.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.export.ui Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.export.ui;singleton:=true -Bundle-Version: 15.5.0.qualifier +Bundle-Version: 15.5.0.v20250707-1302-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-Activator: com.avaloq.tools.ddk.xtext.export.ui.internal.ExportActivator diff --git a/com.avaloq.tools.ddk.xtext.export.ui/pom.xml b/com.avaloq.tools.ddk.xtext.export.ui/pom.xml index 4a6c0476a..364ed3be8 100644 --- a/com.avaloq.tools.ddk.xtext.export.ui/pom.xml +++ b/com.avaloq.tools.ddk.xtext.export.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0-SNAPSHOT + 15.5.0.v20250707-1302-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.export/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.export/META-INF/MANIFEST.MF index 46bc43e4f..b506a9e03 100644 --- a/com.avaloq.tools.ddk.xtext.export/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.export/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.export Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.export;singleton:=true -Bundle-Version: 15.5.0.qualifier +Bundle-Version: 15.5.0.v20250707-1302-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.export/pom.xml b/com.avaloq.tools.ddk.xtext.export/pom.xml index 7335180d8..43f71874e 100644 --- a/com.avaloq.tools.ddk.xtext.export/pom.xml +++ b/com.avaloq.tools.ddk.xtext.export/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0-SNAPSHOT + 15.5.0.v20250707-1302-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.expression.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.expression.ide/META-INF/MANIFEST.MF index 108d82579..0c356bc3d 100644 --- a/com.avaloq.tools.ddk.xtext.expression.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.expression.ide/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.expression.ide Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.expression.ide;singleton:=true -Bundle-Version: 15.5.0.qualifier +Bundle-Version: 15.5.0.v20250707-1302-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.expression.ide/pom.xml b/com.avaloq.tools.ddk.xtext.expression.ide/pom.xml index 22179dc55..f75c6ae9a 100644 --- a/com.avaloq.tools.ddk.xtext.expression.ide/pom.xml +++ b/com.avaloq.tools.ddk.xtext.expression.ide/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0-SNAPSHOT + 15.5.0.v20250707-1302-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.expression.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.expression.ui/META-INF/MANIFEST.MF index df283c4db..5d5f5bea2 100644 --- a/com.avaloq.tools.ddk.xtext.expression.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.expression.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.expression.ui Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.expression.ui;singleton:=true -Bundle-Version: 15.5.0.qualifier +Bundle-Version: 15.5.0.v20250707-1302-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-Activator: com.avaloq.tools.ddk.xtext.expression.ui.internal.Activator diff --git a/com.avaloq.tools.ddk.xtext.expression.ui/pom.xml b/com.avaloq.tools.ddk.xtext.expression.ui/pom.xml index d08e6b1cb..4c6896739 100644 --- a/com.avaloq.tools.ddk.xtext.expression.ui/pom.xml +++ b/com.avaloq.tools.ddk.xtext.expression.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0-SNAPSHOT + 15.5.0.v20250707-1302-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.expression/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.expression/META-INF/MANIFEST.MF index 0b8f53f19..5a3cc77fc 100644 --- a/com.avaloq.tools.ddk.xtext.expression/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.expression/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.expression Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.expression;singleton:=true -Bundle-Version: 15.5.0.qualifier +Bundle-Version: 15.5.0.v20250707-1302-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Require-Bundle: org.eclipse.xtext, diff --git a/com.avaloq.tools.ddk.xtext.expression/pom.xml b/com.avaloq.tools.ddk.xtext.expression/pom.xml index fd83f2df4..b7f3c7cf7 100644 --- a/com.avaloq.tools.ddk.xtext.expression/pom.xml +++ b/com.avaloq.tools.ddk.xtext.expression/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0-SNAPSHOT + 15.5.0.v20250707-1302-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.format.generator/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.format.generator/META-INF/MANIFEST.MF index 6a291cadb..cc53b27ba 100644 --- a/com.avaloq.tools.ddk.xtext.format.generator/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.format.generator/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.format.generator Bundle-Vendor: Avaloq Group AG -Bundle-Version: 15.5.0.qualifier +Bundle-Version: 15.5.0.v20250707-1302-REL Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.format.generator;singleton:=true Require-Bundle: com.avaloq.tools.ddk.xtext.format;visibility:=reexport, org.eclipse.xpand, diff --git a/com.avaloq.tools.ddk.xtext.format.generator/pom.xml b/com.avaloq.tools.ddk.xtext.format.generator/pom.xml index ced109400..fa549b645 100644 --- a/com.avaloq.tools.ddk.xtext.format.generator/pom.xml +++ b/com.avaloq.tools.ddk.xtext.format.generator/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0-SNAPSHOT + 15.5.0.v20250707-1302-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.format.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.format.ide/META-INF/MANIFEST.MF index 4201279b5..757caecac 100644 --- a/com.avaloq.tools.ddk.xtext.format.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.format.ide/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.format.ide Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.format.ide;singleton:=true -Bundle-Version: 15.5.0.qualifier +Bundle-Version: 15.5.0.v20250707-1302-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.format.ide/pom.xml b/com.avaloq.tools.ddk.xtext.format.ide/pom.xml index 5a44c757a..76d31dc72 100644 --- a/com.avaloq.tools.ddk.xtext.format.ide/pom.xml +++ b/com.avaloq.tools.ddk.xtext.format.ide/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0-SNAPSHOT + 15.5.0.v20250707-1302-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.format.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.format.test/META-INF/MANIFEST.MF index ca17732e4..ee58bc93e 100644 --- a/com.avaloq.tools.ddk.xtext.format.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.format.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.format.test Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.format.test;singleton:=true -Bundle-Version: 15.5.0.qualifier +Bundle-Version: 15.5.0.v20250707-1302-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.format.test/pom.xml b/com.avaloq.tools.ddk.xtext.format.test/pom.xml index 7e3f4125d..b9ecb00eb 100644 --- a/com.avaloq.tools.ddk.xtext.format.test/pom.xml +++ b/com.avaloq.tools.ddk.xtext.format.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0-SNAPSHOT + 15.5.0.v20250707-1302-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.xtext.format.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.format.ui/META-INF/MANIFEST.MF index d73e646f9..e9303c746 100644 --- a/com.avaloq.tools.ddk.xtext.format.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.format.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.format.ui Bundle-Vendor: Avaloq Group AG -Bundle-Version: 15.5.0.qualifier +Bundle-Version: 15.5.0.v20250707-1302-REL Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.format.ui;singleton:=true Bundle-ActivationPolicy: lazy Require-Bundle: com.avaloq.tools.ddk.xtext.format;visibility:=reexport, diff --git a/com.avaloq.tools.ddk.xtext.format.ui/pom.xml b/com.avaloq.tools.ddk.xtext.format.ui/pom.xml index 8ee7edd57..2fd772bc4 100644 --- a/com.avaloq.tools.ddk.xtext.format.ui/pom.xml +++ b/com.avaloq.tools.ddk.xtext.format.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0-SNAPSHOT + 15.5.0.v20250707-1302-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.format/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.format/META-INF/MANIFEST.MF index 5323965eb..0294ca102 100644 --- a/com.avaloq.tools.ddk.xtext.format/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.format/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.format Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.format;singleton:=true -Bundle-Version: 15.5.0.qualifier +Bundle-Version: 15.5.0.v20250707-1302-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.format/pom.xml b/com.avaloq.tools.ddk.xtext.format/pom.xml index 800c4fb10..6e53bf7df 100644 --- a/com.avaloq.tools.ddk.xtext.format/pom.xml +++ b/com.avaloq.tools.ddk.xtext.format/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0-SNAPSHOT + 15.5.0.v20250707-1302-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.generator.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.generator.test/META-INF/MANIFEST.MF index 0f73abcc4..268a25af7 100644 --- a/com.avaloq.tools.ddk.xtext.generator.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.generator.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.generator.test Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.generator.test;singleton:=true -Bundle-Version: 15.5.0.qualifier +Bundle-Version: 15.5.0.v20250707-1302-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.generator.test/pom.xml b/com.avaloq.tools.ddk.xtext.generator.test/pom.xml index 32e976d42..5bfd27380 100644 --- a/com.avaloq.tools.ddk.xtext.generator.test/pom.xml +++ b/com.avaloq.tools.ddk.xtext.generator.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0-SNAPSHOT + 15.5.0.v20250707-1302-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.xtext.generator/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.generator/META-INF/MANIFEST.MF index 925ffa0f1..dc1f99e4c 100644 --- a/com.avaloq.tools.ddk.xtext.generator/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.generator/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.generator Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.generator;singleton:=true -Bundle-Version: 15.5.0.qualifier +Bundle-Version: 15.5.0.v20250707-1302-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Require-Bundle: org.eclipse.jface, diff --git a/com.avaloq.tools.ddk.xtext.generator/pom.xml b/com.avaloq.tools.ddk.xtext.generator/pom.xml index d7641a6bb..deca26dc4 100644 --- a/com.avaloq.tools.ddk.xtext.generator/pom.xml +++ b/com.avaloq.tools.ddk.xtext.generator/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0-SNAPSHOT + 15.5.0.v20250707-1302-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.ide/META-INF/MANIFEST.MF index 5c4fb91a8..508d7db10 100644 --- a/com.avaloq.tools.ddk.xtext.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.ide/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.ide Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.ide;singleton:=true -Bundle-Version: 15.5.0.qualifier +Bundle-Version: 15.5.0.v20250707-1302-REL Bundle-Vendor: Avaloq Group AG Require-Bundle: org.eclipse.lsp4j, org.eclipse.xtext.ide, diff --git a/com.avaloq.tools.ddk.xtext.ide/pom.xml b/com.avaloq.tools.ddk.xtext.ide/pom.xml index 488e7859e..ee5717316 100644 --- a/com.avaloq.tools.ddk.xtext.ide/pom.xml +++ b/com.avaloq.tools.ddk.xtext.ide/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0-SNAPSHOT + 15.5.0.v20250707-1302-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.scope.generator/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.scope.generator/META-INF/MANIFEST.MF index ba3c192b5..43c4864a9 100644 --- a/com.avaloq.tools.ddk.xtext.scope.generator/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.scope.generator/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.scope.generator Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.scope.generator;singleton:=true -Bundle-Version: 15.5.0.qualifier +Bundle-Version: 15.5.0.v20250707-1302-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Require-Bundle: com.avaloq.tools.ddk.xtext.scope;visibility:=reexport, diff --git a/com.avaloq.tools.ddk.xtext.scope.generator/pom.xml b/com.avaloq.tools.ddk.xtext.scope.generator/pom.xml index b05f5a153..d4c6c1bc8 100644 --- a/com.avaloq.tools.ddk.xtext.scope.generator/pom.xml +++ b/com.avaloq.tools.ddk.xtext.scope.generator/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0-SNAPSHOT + 15.5.0.v20250707-1302-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.scope.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.scope.ide/META-INF/MANIFEST.MF index cc552dd1b..e7d6e7e3b 100644 --- a/com.avaloq.tools.ddk.xtext.scope.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.scope.ide/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.scope.ide Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.scope.ide;singleton:=true -Bundle-Version: 15.5.0.qualifier +Bundle-Version: 15.5.0.v20250707-1302-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.scope.ide/pom.xml b/com.avaloq.tools.ddk.xtext.scope.ide/pom.xml index 09f968066..11d06fc84 100644 --- a/com.avaloq.tools.ddk.xtext.scope.ide/pom.xml +++ b/com.avaloq.tools.ddk.xtext.scope.ide/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0-SNAPSHOT + 15.5.0.v20250707-1302-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.scope.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.scope.ui/META-INF/MANIFEST.MF index 2bc9dfea2..eba30c367 100644 --- a/com.avaloq.tools.ddk.xtext.scope.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.scope.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.scope.ui Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.scope.ui;singleton:=true -Bundle-Version: 15.5.0.qualifier +Bundle-Version: 15.5.0.v20250707-1302-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-Activator: com.avaloq.tools.ddk.xtext.scope.ui.internal.ScopeActivator diff --git a/com.avaloq.tools.ddk.xtext.scope.ui/pom.xml b/com.avaloq.tools.ddk.xtext.scope.ui/pom.xml index e62b038ae..35fdb8d5a 100644 --- a/com.avaloq.tools.ddk.xtext.scope.ui/pom.xml +++ b/com.avaloq.tools.ddk.xtext.scope.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0-SNAPSHOT + 15.5.0.v20250707-1302-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.scope/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.scope/META-INF/MANIFEST.MF index f66cf3ec3..869b6d191 100644 --- a/com.avaloq.tools.ddk.xtext.scope/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.scope/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.scope Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.scope;singleton:=true -Bundle-Version: 15.5.0.qualifier +Bundle-Version: 15.5.0.v20250707-1302-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Require-Bundle: org.eclipse.xtext, diff --git a/com.avaloq.tools.ddk.xtext.scope/pom.xml b/com.avaloq.tools.ddk.xtext.scope/pom.xml index 0c678ad11..eabe9ae4a 100644 --- a/com.avaloq.tools.ddk.xtext.scope/pom.xml +++ b/com.avaloq.tools.ddk.xtext.scope/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0-SNAPSHOT + 15.5.0.v20250707-1302-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.test.core/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.test.core/META-INF/MANIFEST.MF index fd7d12c1f..994e3d724 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.test.core/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.test.core Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.test.core;singleton:=true -Bundle-Version: 15.5.0.qualifier +Bundle-Version: 15.5.0.v20250707-1302-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Require-Bundle: com.avaloq.tools.ddk.xtext, diff --git a/com.avaloq.tools.ddk.xtext.test.core/pom.xml b/com.avaloq.tools.ddk.xtext.test.core/pom.xml index 6d4b38084..3917943d1 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/pom.xml +++ b/com.avaloq.tools.ddk.xtext.test.core/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0-SNAPSHOT + 15.5.0.v20250707-1302-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.xtext.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.test/META-INF/MANIFEST.MF index 11d3745b3..2872477c3 100644 --- a/com.avaloq.tools.ddk.xtext.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.test Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.test;singleton:=true -Bundle-Version: 15.5.0.qualifier +Bundle-Version: 15.5.0.v20250707-1302-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.test/pom.xml b/com.avaloq.tools.ddk.xtext.test/pom.xml index ec938da93..e36b875c8 100644 --- a/com.avaloq.tools.ddk.xtext.test/pom.xml +++ b/com.avaloq.tools.ddk.xtext.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0-SNAPSHOT + 15.5.0.v20250707-1302-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.xtext.ui.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.ui.test/META-INF/MANIFEST.MF index 1c230e0af..9bf0d9e79 100644 --- a/com.avaloq.tools.ddk.xtext.ui.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.ui.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.ui.test Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.ui.test;singleton:=true -Bundle-Version: 15.5.0.qualifier +Bundle-Version: 15.5.0.v20250707-1302-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Require-Bundle: org.eclipse.xtext.ui, diff --git a/com.avaloq.tools.ddk.xtext.ui.test/pom.xml b/com.avaloq.tools.ddk.xtext.ui.test/pom.xml index 31e02a72e..a3d620207 100644 --- a/com.avaloq.tools.ddk.xtext.ui.test/pom.xml +++ b/com.avaloq.tools.ddk.xtext.ui.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0-SNAPSHOT + 15.5.0.v20250707-1302-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.xtext.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.ui/META-INF/MANIFEST.MF index d20ddef88..72d47d162 100644 --- a/com.avaloq.tools.ddk.xtext.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.ui Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.ui;singleton:=true -Bundle-Version: 15.5.0.qualifier +Bundle-Version: 15.5.0.v20250707-1302-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.ui/pom.xml b/com.avaloq.tools.ddk.xtext.ui/pom.xml index d5d8f5adc..acf369bc5 100644 --- a/com.avaloq.tools.ddk.xtext.ui/pom.xml +++ b/com.avaloq.tools.ddk.xtext.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0-SNAPSHOT + 15.5.0.v20250707-1302-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.valid.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.valid.ide/META-INF/MANIFEST.MF index ba9a00206..f5649b236 100644 --- a/com.avaloq.tools.ddk.xtext.valid.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.valid.ide/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.valid.ide Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.valid.ide;singleton:=true -Bundle-Version: 15.5.0.qualifier +Bundle-Version: 15.5.0.v20250707-1302-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.valid.ide/pom.xml b/com.avaloq.tools.ddk.xtext.valid.ide/pom.xml index fc9b6246c..ea5002870 100644 --- a/com.avaloq.tools.ddk.xtext.valid.ide/pom.xml +++ b/com.avaloq.tools.ddk.xtext.valid.ide/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0-SNAPSHOT + 15.5.0.v20250707-1302-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.valid.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.valid.ui/META-INF/MANIFEST.MF index c1200eff7..7ecdfcab0 100644 --- a/com.avaloq.tools.ddk.xtext.valid.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.valid.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.valid.ui Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.valid.ui;singleton:=true -Bundle-Version: 15.5.0.qualifier +Bundle-Version: 15.5.0.v20250707-1302-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.valid.ui/pom.xml b/com.avaloq.tools.ddk.xtext.valid.ui/pom.xml index 792f21e79..6ed422116 100644 --- a/com.avaloq.tools.ddk.xtext.valid.ui/pom.xml +++ b/com.avaloq.tools.ddk.xtext.valid.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0-SNAPSHOT + 15.5.0.v20250707-1302-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.xtext.valid/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.valid/META-INF/MANIFEST.MF index 6d9655149..eac385b8e 100644 --- a/com.avaloq.tools.ddk.xtext.valid/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.valid/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.valid Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.valid;singleton:=true -Bundle-Version: 15.5.0.qualifier +Bundle-Version: 15.5.0.v20250707-1302-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.valid/pom.xml b/com.avaloq.tools.ddk.xtext.valid/pom.xml index f119f28a7..99c02eea9 100644 --- a/com.avaloq.tools.ddk.xtext.valid/pom.xml +++ b/com.avaloq.tools.ddk.xtext.valid/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0-SNAPSHOT + 15.5.0.v20250707-1302-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.xtext/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext/META-INF/MANIFEST.MF index 682340b00..6b8a8372f 100644 --- a/com.avaloq.tools.ddk.xtext/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext Bundle-SymbolicName: com.avaloq.tools.ddk.xtext;singleton:=true -Bundle-Version: 15.5.0.qualifier +Bundle-Version: 15.5.0.v20250707-1302-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext/pom.xml b/com.avaloq.tools.ddk.xtext/pom.xml index 76e6a69c7..0bd1e898a 100644 --- a/com.avaloq.tools.ddk.xtext/pom.xml +++ b/com.avaloq.tools.ddk.xtext/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0-SNAPSHOT + 15.5.0.v20250707-1302-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk/META-INF/MANIFEST.MF index 97776ed93..198ea2fb8 100644 --- a/com.avaloq.tools.ddk/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk Bundle-SymbolicName: com.avaloq.tools.ddk;singleton:=true -Bundle-Version: 15.5.0.qualifier +Bundle-Version: 15.5.0.v20250707-1302-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk/pom.xml b/com.avaloq.tools.ddk/pom.xml index 1d18c2a00..994b28803 100644 --- a/com.avaloq.tools.ddk/pom.xml +++ b/com.avaloq.tools.ddk/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0-SNAPSHOT + 15.5.0.v20250707-1302-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/ddk-parent/pom.xml b/ddk-parent/pom.xml index a47654d5f..b6eefd756 100644 --- a/ddk-parent/pom.xml +++ b/ddk-parent/pom.xml @@ -4,7 +4,7 @@ com.avaloq.tools.ddk ddk-parent - 15.5.0-SNAPSHOT + 15.5.0.v20250707-1302-REL pom diff --git a/ddk-repository/category.xml b/ddk-repository/category.xml index 7fe225241..b3f407bc6 100644 --- a/ddk-repository/category.xml +++ b/ddk-repository/category.xml @@ -1,15 +1,15 @@ - + - + - + - + diff --git a/ddk-repository/pom.xml b/ddk-repository/pom.xml index 84a089edc..0c2d0f76a 100644 --- a/ddk-repository/pom.xml +++ b/ddk-repository/pom.xml @@ -4,7 +4,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0-SNAPSHOT + 15.5.0.v20250707-1302-REL ../ddk-parent diff --git a/ddk-target/pom.xml b/ddk-target/pom.xml index cdc27f7e6..63de08243 100644 --- a/ddk-target/pom.xml +++ b/ddk-target/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0-SNAPSHOT + 15.5.0.v20250707-1302-REL ../ddk-parent com.avaloq.tools.ddk From edb5b263aa6fe4a699d123d8cecbdaf199e54240 Mon Sep 17 00:00:00 2001 From: Jenkins Date: Mon, 7 Jul 2025 13:02:49 +0200 Subject: [PATCH 30/57] Next development version: 16.0.0-SNAPSHOT --- com.avaloq.tools.ddk.check.core.test/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.core.test/pom.xml | 2 +- com.avaloq.tools.ddk.check.core/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.core/pom.xml | 2 +- com.avaloq.tools.ddk.check.ide/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.ide/pom.xml | 2 +- com.avaloq.tools.ddk.check.lib/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.lib/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.runtime.core.test/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.runtime.core/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.runtime.ui/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.test.runtime.tests/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.test.runtime.ui/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.test.runtime/pom.xml | 2 +- com.avaloq.tools.ddk.check.ui.test/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.ui.test/pom.xml | 2 +- com.avaloq.tools.ddk.check.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.ui/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.checkcfg.core.test/pom.xml | 2 +- com.avaloq.tools.ddk.checkcfg.core/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.checkcfg.core/pom.xml | 2 +- com.avaloq.tools.ddk.checkcfg.ide/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.checkcfg.ide/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.checkcfg.ui.test/pom.xml | 2 +- com.avaloq.tools.ddk.checkcfg.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.checkcfg.ui/pom.xml | 2 +- com.avaloq.tools.ddk.feature/feature.xml | 2 +- com.avaloq.tools.ddk.feature/pom.xml | 2 +- com.avaloq.tools.ddk.runtime.feature/feature.xml | 2 +- com.avaloq.tools.ddk.runtime.feature/pom.xml | 2 +- com.avaloq.tools.ddk.runtime.source.feature/feature.xml | 2 +- com.avaloq.tools.ddk.runtime.source.feature/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.sample.helloworld.ide/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.sample.helloworld.ui.test/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.sample.helloworld.ui/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.sample.helloworld/pom.xml | 2 +- com.avaloq.tools.ddk.source.feature/feature.xml | 2 +- com.avaloq.tools.ddk.source.feature/pom.xml | 2 +- com.avaloq.tools.ddk.test.core/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.test.core/pom.xml | 2 +- com.avaloq.tools.ddk.test.ui.test/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.test.ui.test/pom.xml | 2 +- com.avaloq.tools.ddk.test.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.test.ui/pom.xml | 2 +- com.avaloq.tools.ddk.typesystem.test/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.typesystem.test/pom.xml | 2 +- com.avaloq.tools.ddk.typesystem/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.typesystem/pom.xml | 2 +- com.avaloq.tools.ddk.workflow/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.workflow/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.builder.ui/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.builder/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.builder/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.check.generator/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.common.types.ui/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.common.types/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.common.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.common.ui/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.export.generator/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.export.ide/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.export.test/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.export.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.export.ui/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.export/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.export/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.expression.ide/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.expression.ui/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.expression/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.format.generator/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.format.ide/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.format.test/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.format.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.format.ui/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.format/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.format/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.generator.test/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.generator/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.generator/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.ide/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.ide/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.scope.generator/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.scope.ide/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.scope.ide/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.scope.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.scope.ui/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.scope/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.scope/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.test.core/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.test.core/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.test/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.test/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.ui.test/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.ui.test/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.ui/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.valid.ide/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.valid.ide/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.valid.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.valid.ui/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.valid/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.valid/pom.xml | 2 +- com.avaloq.tools.ddk.xtext/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext/pom.xml | 2 +- com.avaloq.tools.ddk/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk/pom.xml | 2 +- ddk-parent/pom.xml | 2 +- ddk-repository/category.xml | 8 ++++---- ddk-repository/pom.xml | 2 +- ddk-target/pom.xml | 2 +- 136 files changed, 139 insertions(+), 139 deletions(-) diff --git a/com.avaloq.tools.ddk.check.core.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.core.test/META-INF/MANIFEST.MF index c53fd0ef9..386dbc256 100644 --- a/com.avaloq.tools.ddk.check.core.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.core.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.core.test Bundle-SymbolicName: com.avaloq.tools.ddk.check.core.test;singleton:=true -Bundle-Version: 15.5.0.v20250707-1302-REL +Bundle-Version: 16.0.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.check.core.test/pom.xml b/com.avaloq.tools.ddk.check.core.test/pom.xml index 9f33f67d5..e0eb3fb6b 100644 --- a/com.avaloq.tools.ddk.check.core.test/pom.xml +++ b/com.avaloq.tools.ddk.check.core.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0.v20250707-1302-REL + 16.0.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.check.core/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.core/META-INF/MANIFEST.MF index 89c30a3d4..92ed3eb0d 100644 --- a/com.avaloq.tools.ddk.check.core/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.core/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.core Bundle-SymbolicName: com.avaloq.tools.ddk.check.core;singleton:=true -Bundle-Version: 15.5.0.v20250707-1302-REL +Bundle-Version: 16.0.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.check.core/pom.xml b/com.avaloq.tools.ddk.check.core/pom.xml index 6c39a991e..9932ea5c0 100644 --- a/com.avaloq.tools.ddk.check.core/pom.xml +++ b/com.avaloq.tools.ddk.check.core/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0.v20250707-1302-REL + 16.0.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.check.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.ide/META-INF/MANIFEST.MF index a4984f7b9..7ac305083 100644 --- a/com.avaloq.tools.ddk.check.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.ide/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.ide Bundle-SymbolicName: com.avaloq.tools.ddk.check.ide;singleton:=true -Bundle-Version: 15.5.0.v20250707-1302-REL +Bundle-Version: 16.0.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.check.ide/pom.xml b/com.avaloq.tools.ddk.check.ide/pom.xml index 9c4f1533a..8b621bd93 100644 --- a/com.avaloq.tools.ddk.check.ide/pom.xml +++ b/com.avaloq.tools.ddk.check.ide/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0.v20250707-1302-REL + 16.0.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.check.lib/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.lib/META-INF/MANIFEST.MF index 2ec37bd95..c53d28256 100644 --- a/com.avaloq.tools.ddk.check.lib/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.lib/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.lib Bundle-SymbolicName: com.avaloq.tools.ddk.check.lib -Bundle-Version: 15.5.0.v20250707-1302-REL +Bundle-Version: 16.0.0.qualifier Bundle-Vendor: Avaloq Group AG Require-Bundle: org.eclipse.core.runtime, org.eclipse.xtext, diff --git a/com.avaloq.tools.ddk.check.lib/pom.xml b/com.avaloq.tools.ddk.check.lib/pom.xml index b2dc84004..3eaba20c1 100644 --- a/com.avaloq.tools.ddk.check.lib/pom.xml +++ b/com.avaloq.tools.ddk.check.lib/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0.v20250707-1302-REL + 16.0.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.check.runtime.core.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.runtime.core.test/META-INF/MANIFEST.MF index a2f803ac1..6cf735b16 100644 --- a/com.avaloq.tools.ddk.check.runtime.core.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.runtime.core.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.runtime.core.test Bundle-SymbolicName: com.avaloq.tools.ddk.check.runtime.core.test;singleton:=true -Bundle-Version: 15.5.0.v20250707-1302-REL +Bundle-Version: 16.0.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Require-Bundle: org.eclipse.ui, diff --git a/com.avaloq.tools.ddk.check.runtime.core.test/pom.xml b/com.avaloq.tools.ddk.check.runtime.core.test/pom.xml index f1100a0c6..5d9b1b05d 100644 --- a/com.avaloq.tools.ddk.check.runtime.core.test/pom.xml +++ b/com.avaloq.tools.ddk.check.runtime.core.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0.v20250707-1302-REL + 16.0.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.check.runtime.core/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.runtime.core/META-INF/MANIFEST.MF index f7d7a9666..07f931f7d 100644 --- a/com.avaloq.tools.ddk.check.runtime.core/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.runtime.core/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.runtime.core Bundle-SymbolicName: com.avaloq.tools.ddk.check.runtime.core;singleton:=true -Bundle-Version: 15.5.0.v20250707-1302-REL +Bundle-Version: 16.0.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Require-Bundle: org.eclipse.core.resources, diff --git a/com.avaloq.tools.ddk.check.runtime.core/pom.xml b/com.avaloq.tools.ddk.check.runtime.core/pom.xml index 107b8c2c3..0be078dac 100644 --- a/com.avaloq.tools.ddk.check.runtime.core/pom.xml +++ b/com.avaloq.tools.ddk.check.runtime.core/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0.v20250707-1302-REL + 16.0.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.check.runtime.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.runtime.ui/META-INF/MANIFEST.MF index 571493c11..463ed7c88 100644 --- a/com.avaloq.tools.ddk.check.runtime.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.runtime.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.runtime.ui Bundle-SymbolicName: com.avaloq.tools.ddk.check.runtime.ui;singleton:=true -Bundle-Version: 15.5.0.v20250707-1302-REL +Bundle-Version: 16.0.0.qualifier Bundle-Activator: com.avaloq.tools.ddk.check.runtime.ui.internal.Activator Bundle-Vendor: Avaloq Group AG Require-Bundle: org.eclipse.ui, diff --git a/com.avaloq.tools.ddk.check.runtime.ui/pom.xml b/com.avaloq.tools.ddk.check.runtime.ui/pom.xml index 985b820e9..a3636b1c8 100644 --- a/com.avaloq.tools.ddk.check.runtime.ui/pom.xml +++ b/com.avaloq.tools.ddk.check.runtime.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0.v20250707-1302-REL + 16.0.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.check.test.runtime.tests/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.test.runtime.tests/META-INF/MANIFEST.MF index 3ba3d96fa..38bc25cac 100644 --- a/com.avaloq.tools.ddk.check.test.runtime.tests/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.test.runtime.tests/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.test.runtime.tests Bundle-Vendor: Avaloq Group AG -Bundle-Version: 15.5.0.v20250707-1302-REL +Bundle-Version: 16.0.0.qualifier Bundle-SymbolicName: com.avaloq.tools.ddk.check.test.runtime.tests; singleton:=true Bundle-ActivationPolicy: lazy Require-Bundle: com.avaloq.tools.ddk.check.runtime.core, diff --git a/com.avaloq.tools.ddk.check.test.runtime.tests/pom.xml b/com.avaloq.tools.ddk.check.test.runtime.tests/pom.xml index e6cc70b7e..265c77a74 100644 --- a/com.avaloq.tools.ddk.check.test.runtime.tests/pom.xml +++ b/com.avaloq.tools.ddk.check.test.runtime.tests/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0.v20250707-1302-REL + 16.0.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.check.test.runtime.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.test.runtime.ui/META-INF/MANIFEST.MF index 25ad89cc6..aa74c6dd4 100644 --- a/com.avaloq.tools.ddk.check.test.runtime.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.test.runtime.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.test.runtime.ui Bundle-Vendor: Avaloq Group AG -Bundle-Version: 15.5.0.v20250707-1302-REL +Bundle-Version: 16.0.0.qualifier Bundle-SymbolicName: com.avaloq.tools.ddk.check.test.runtime.ui; singleton:=true Bundle-ActivationPolicy: lazy Require-Bundle: com.avaloq.tools.ddk.check.test.runtime;visibility:=reexport, diff --git a/com.avaloq.tools.ddk.check.test.runtime.ui/pom.xml b/com.avaloq.tools.ddk.check.test.runtime.ui/pom.xml index 760e9aeb9..9a2b427d5 100644 --- a/com.avaloq.tools.ddk.check.test.runtime.ui/pom.xml +++ b/com.avaloq.tools.ddk.check.test.runtime.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0.v20250707-1302-REL + 16.0.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.check.test.runtime/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.test.runtime/META-INF/MANIFEST.MF index 29499757a..ff8f4a667 100644 --- a/com.avaloq.tools.ddk.check.test.runtime/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.test.runtime/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.test.runtime Bundle-Vendor: Avaloq Group AG -Bundle-Version: 15.5.0.v20250707-1302-REL +Bundle-Version: 16.0.0.qualifier Bundle-SymbolicName: com.avaloq.tools.ddk.check.test.runtime;singleton:=true Bundle-ActivationPolicy: lazy Require-Bundle: org.eclipse.xtext;visibility:=reexport, diff --git a/com.avaloq.tools.ddk.check.test.runtime/pom.xml b/com.avaloq.tools.ddk.check.test.runtime/pom.xml index aebcfd886..31b16f47e 100644 --- a/com.avaloq.tools.ddk.check.test.runtime/pom.xml +++ b/com.avaloq.tools.ddk.check.test.runtime/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0.v20250707-1302-REL + 16.0.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.check.ui.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.ui.test/META-INF/MANIFEST.MF index af06a5dd8..f34972d6b 100644 --- a/com.avaloq.tools.ddk.check.ui.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.ui.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.ui.test Bundle-SymbolicName: com.avaloq.tools.ddk.check.ui.test -Bundle-Version: 15.5.0.v20250707-1302-REL +Bundle-Version: 16.0.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Require-Bundle: org.junit, diff --git a/com.avaloq.tools.ddk.check.ui.test/pom.xml b/com.avaloq.tools.ddk.check.ui.test/pom.xml index bda13eade..067910786 100644 --- a/com.avaloq.tools.ddk.check.ui.test/pom.xml +++ b/com.avaloq.tools.ddk.check.ui.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0.v20250707-1302-REL + 16.0.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.check.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.ui/META-INF/MANIFEST.MF index faa526de8..7d56920e6 100644 --- a/com.avaloq.tools.ddk.check.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.ui Bundle-SymbolicName: com.avaloq.tools.ddk.check.ui;singleton:=true -Bundle-Version: 15.5.0.v20250707-1302-REL +Bundle-Version: 16.0.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-Activator: com.avaloq.tools.ddk.check.ui.internal.Activator diff --git a/com.avaloq.tools.ddk.check.ui/pom.xml b/com.avaloq.tools.ddk.check.ui/pom.xml index 8254d7608..fa61bd08b 100644 --- a/com.avaloq.tools.ddk.check.ui/pom.xml +++ b/com.avaloq.tools.ddk.check.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0.v20250707-1302-REL + 16.0.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.checkcfg.core.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.checkcfg.core.test/META-INF/MANIFEST.MF index b8ab1174f..a61a24dbd 100644 --- a/com.avaloq.tools.ddk.checkcfg.core.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.checkcfg.core.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.checkcfg.core.test Bundle-Vendor: Avaloq Group AG -Bundle-Version: 15.5.0.v20250707-1302-REL +Bundle-Version: 16.0.0.qualifier Bundle-SymbolicName: com.avaloq.tools.ddk.checkcfg.core.test; singleton:=true Bundle-ActivationPolicy: lazy Require-Bundle: com.avaloq.tools.ddk.test.core, diff --git a/com.avaloq.tools.ddk.checkcfg.core.test/pom.xml b/com.avaloq.tools.ddk.checkcfg.core.test/pom.xml index 36c08a9c1..0eb8facea 100644 --- a/com.avaloq.tools.ddk.checkcfg.core.test/pom.xml +++ b/com.avaloq.tools.ddk.checkcfg.core.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0.v20250707-1302-REL + 16.0.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.checkcfg.core/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.checkcfg.core/META-INF/MANIFEST.MF index cde8194d8..786a10b33 100644 --- a/com.avaloq.tools.ddk.checkcfg.core/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.checkcfg.core/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.checkcfg.core Bundle-Vendor: Avaloq Group AG -Bundle-Version: 15.5.0.v20250707-1302-REL +Bundle-Version: 16.0.0.qualifier Bundle-SymbolicName: com.avaloq.tools.ddk.checkcfg.core; singleton:=true Bundle-ActivationPolicy: lazy Bundle-RequiredExecutionEnvironment: JavaSE-21 diff --git a/com.avaloq.tools.ddk.checkcfg.core/pom.xml b/com.avaloq.tools.ddk.checkcfg.core/pom.xml index 654f5f570..7d55dc020 100644 --- a/com.avaloq.tools.ddk.checkcfg.core/pom.xml +++ b/com.avaloq.tools.ddk.checkcfg.core/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0.v20250707-1302-REL + 16.0.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.checkcfg.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.checkcfg.ide/META-INF/MANIFEST.MF index 7fc670cbc..c6415c05e 100644 --- a/com.avaloq.tools.ddk.checkcfg.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.checkcfg.ide/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.checkcfg.ide Bundle-SymbolicName: com.avaloq.tools.ddk.checkcfg.ide;singleton:=true -Bundle-Version: 15.5.0.v20250707-1302-REL +Bundle-Version: 16.0.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.checkcfg.ide/pom.xml b/com.avaloq.tools.ddk.checkcfg.ide/pom.xml index 39e4f3575..50635c53c 100644 --- a/com.avaloq.tools.ddk.checkcfg.ide/pom.xml +++ b/com.avaloq.tools.ddk.checkcfg.ide/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0.v20250707-1302-REL + 16.0.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.checkcfg.ui.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.checkcfg.ui.test/META-INF/MANIFEST.MF index 015285f28..432c80719 100644 --- a/com.avaloq.tools.ddk.checkcfg.ui.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.checkcfg.ui.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.checkcfg.ui.test Bundle-SymbolicName: com.avaloq.tools.ddk.checkcfg.ui.test -Bundle-Version: 15.5.0.v20250707-1302-REL +Bundle-Version: 16.0.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Export-Package: com.avaloq.tools.ddk.checkcfg.ui.test diff --git a/com.avaloq.tools.ddk.checkcfg.ui.test/pom.xml b/com.avaloq.tools.ddk.checkcfg.ui.test/pom.xml index 74a17e72d..dc799ec01 100644 --- a/com.avaloq.tools.ddk.checkcfg.ui.test/pom.xml +++ b/com.avaloq.tools.ddk.checkcfg.ui.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0.v20250707-1302-REL + 16.0.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.checkcfg.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.checkcfg.ui/META-INF/MANIFEST.MF index 9e3f38392..0016684c3 100644 --- a/com.avaloq.tools.ddk.checkcfg.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.checkcfg.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.checkcfg.ui Bundle-SymbolicName: com.avaloq.tools.ddk.checkcfg.ui;singleton:=true -Bundle-Version: 15.5.0.v20250707-1302-REL +Bundle-Version: 16.0.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-Activator: com.avaloq.tools.ddk.checkcfg.ui.internal.Activator diff --git a/com.avaloq.tools.ddk.checkcfg.ui/pom.xml b/com.avaloq.tools.ddk.checkcfg.ui/pom.xml index 8de1904b0..7d3411b0b 100644 --- a/com.avaloq.tools.ddk.checkcfg.ui/pom.xml +++ b/com.avaloq.tools.ddk.checkcfg.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0.v20250707-1302-REL + 16.0.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.feature/feature.xml b/com.avaloq.tools.ddk.feature/feature.xml index e941e39b5..fd43d442e 100644 --- a/com.avaloq.tools.ddk.feature/feature.xml +++ b/com.avaloq.tools.ddk.feature/feature.xml @@ -2,7 +2,7 @@ diff --git a/com.avaloq.tools.ddk.feature/pom.xml b/com.avaloq.tools.ddk.feature/pom.xml index 660ae60ee..50553f783 100644 --- a/com.avaloq.tools.ddk.feature/pom.xml +++ b/com.avaloq.tools.ddk.feature/pom.xml @@ -4,7 +4,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0.v20250707-1302-REL + 16.0.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.runtime.feature/feature.xml b/com.avaloq.tools.ddk.runtime.feature/feature.xml index 80f26529d..dc6246b04 100644 --- a/com.avaloq.tools.ddk.runtime.feature/feature.xml +++ b/com.avaloq.tools.ddk.runtime.feature/feature.xml @@ -2,7 +2,7 @@ diff --git a/com.avaloq.tools.ddk.runtime.feature/pom.xml b/com.avaloq.tools.ddk.runtime.feature/pom.xml index f0d67280e..573f0aec0 100644 --- a/com.avaloq.tools.ddk.runtime.feature/pom.xml +++ b/com.avaloq.tools.ddk.runtime.feature/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0.v20250707-1302-REL + 16.0.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.runtime.source.feature/feature.xml b/com.avaloq.tools.ddk.runtime.source.feature/feature.xml index 6c2489cd9..1ed7ae1c6 100644 --- a/com.avaloq.tools.ddk.runtime.source.feature/feature.xml +++ b/com.avaloq.tools.ddk.runtime.source.feature/feature.xml @@ -2,7 +2,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0.v20250707-1302-REL + 16.0.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.sample.helloworld.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.sample.helloworld.ide/META-INF/MANIFEST.MF index a11cb349c..01c9c9eef 100644 --- a/com.avaloq.tools.ddk.sample.helloworld.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.sample.helloworld.ide/META-INF/MANIFEST.MF @@ -3,7 +3,7 @@ Automatic-Module-Name: com.avaloq.tools.ddk.sample.helloworld.ide Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.sample.helloworld.ide Bundle-Vendor: Avaloq Group AG -Bundle-Version: 15.5.0.v20250707-1302-REL +Bundle-Version: 16.0.0.qualifier Bundle-SymbolicName: com.avaloq.tools.ddk.sample.helloworld.ide;singleton:=true Bundle-ActivationPolicy: lazy Require-Bundle: com.avaloq.tools.ddk.sample.helloworld, diff --git a/com.avaloq.tools.ddk.sample.helloworld.ide/pom.xml b/com.avaloq.tools.ddk.sample.helloworld.ide/pom.xml index 3331bfb4a..3b38e2f28 100644 --- a/com.avaloq.tools.ddk.sample.helloworld.ide/pom.xml +++ b/com.avaloq.tools.ddk.sample.helloworld.ide/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0.v20250707-1302-REL + 16.0.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.sample.helloworld.ui.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.sample.helloworld.ui.test/META-INF/MANIFEST.MF index b8f73a5f3..d6b62ff9a 100644 --- a/com.avaloq.tools.ddk.sample.helloworld.ui.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.sample.helloworld.ui.test/META-INF/MANIFEST.MF @@ -3,7 +3,7 @@ Automatic-Module-Name: com.avaloq.tools.ddk.sample.helloworld.ui.test Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.sample.helloworld.ui.test Bundle-Vendor: Avaloq Group AG -Bundle-Version: 15.5.0.v20250707-1302-REL +Bundle-Version: 16.0.0.qualifier Bundle-SymbolicName: com.avaloq.tools.ddk.sample.helloworld.ui.test;singleton:=true Bundle-ActivationPolicy: lazy Require-Bundle: com.avaloq.tools.ddk.sample.helloworld, diff --git a/com.avaloq.tools.ddk.sample.helloworld.ui.test/pom.xml b/com.avaloq.tools.ddk.sample.helloworld.ui.test/pom.xml index 0e26eeb0a..979fdd649 100644 --- a/com.avaloq.tools.ddk.sample.helloworld.ui.test/pom.xml +++ b/com.avaloq.tools.ddk.sample.helloworld.ui.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0.v20250707-1302-REL + 16.0.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.sample.helloworld.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.sample.helloworld.ui/META-INF/MANIFEST.MF index a2a60f66f..91735a0a9 100644 --- a/com.avaloq.tools.ddk.sample.helloworld.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.sample.helloworld.ui/META-INF/MANIFEST.MF @@ -3,7 +3,7 @@ Automatic-Module-Name: com.avaloq.tools.ddk.sample.helloworld.ui Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.sample.helloworld.ui Bundle-Vendor: Avaloq Group AG -Bundle-Version: 15.5.0.v20250707-1302-REL +Bundle-Version: 16.0.0.qualifier Bundle-SymbolicName: com.avaloq.tools.ddk.sample.helloworld.ui;singleton:=true Bundle-ActivationPolicy: lazy Require-Bundle: com.avaloq.tools.ddk.sample.helloworld, diff --git a/com.avaloq.tools.ddk.sample.helloworld.ui/pom.xml b/com.avaloq.tools.ddk.sample.helloworld.ui/pom.xml index f3d211d0a..631ddcfa4 100644 --- a/com.avaloq.tools.ddk.sample.helloworld.ui/pom.xml +++ b/com.avaloq.tools.ddk.sample.helloworld.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0.v20250707-1302-REL + 16.0.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.sample.helloworld/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.sample.helloworld/META-INF/MANIFEST.MF index 37e8edf38..9ba409317 100644 --- a/com.avaloq.tools.ddk.sample.helloworld/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.sample.helloworld/META-INF/MANIFEST.MF @@ -3,7 +3,7 @@ Automatic-Module-Name: com.avaloq.tools.ddk.sample.helloworld Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.sample.helloworld Bundle-Vendor: Avaloq Group AG -Bundle-Version: 15.5.0.v20250707-1302-REL +Bundle-Version: 16.0.0.qualifier Bundle-SymbolicName: com.avaloq.tools.ddk.sample.helloworld;singleton:=true Bundle-ActivationPolicy: lazy Require-Bundle: org.eclipse.xtext, diff --git a/com.avaloq.tools.ddk.sample.helloworld/pom.xml b/com.avaloq.tools.ddk.sample.helloworld/pom.xml index fc949ab59..2a9c71217 100644 --- a/com.avaloq.tools.ddk.sample.helloworld/pom.xml +++ b/com.avaloq.tools.ddk.sample.helloworld/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0.v20250707-1302-REL + 16.0.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.source.feature/feature.xml b/com.avaloq.tools.ddk.source.feature/feature.xml index bf5a63c1b..e21b37b78 100644 --- a/com.avaloq.tools.ddk.source.feature/feature.xml +++ b/com.avaloq.tools.ddk.source.feature/feature.xml @@ -2,7 +2,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0.v20250707-1302-REL + 16.0.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.test.core/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.test.core/META-INF/MANIFEST.MF index f459807c3..46ffdfc74 100644 --- a/com.avaloq.tools.ddk.test.core/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.test.core/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.test.core Bundle-SymbolicName: com.avaloq.tools.ddk.test.core;singleton:=true -Bundle-Version: 15.5.0.v20250707-1302-REL +Bundle-Version: 16.0.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.test.core/pom.xml b/com.avaloq.tools.ddk.test.core/pom.xml index 8ae7b6856..2ab97bd0a 100644 --- a/com.avaloq.tools.ddk.test.core/pom.xml +++ b/com.avaloq.tools.ddk.test.core/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0.v20250707-1302-REL + 16.0.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.test.ui.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.test.ui.test/META-INF/MANIFEST.MF index 269bee0cc..92f2cbaea 100644 --- a/com.avaloq.tools.ddk.test.ui.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.test.ui.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.test.ui.test Bundle-SymbolicName: com.avaloq.tools.ddk.test.ui.test;singleton:=true -Bundle-Version: 15.5.0.v20250707-1302-REL +Bundle-Version: 16.0.0.qualifier Bundle-ActivationPolicy: lazy Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 diff --git a/com.avaloq.tools.ddk.test.ui.test/pom.xml b/com.avaloq.tools.ddk.test.ui.test/pom.xml index 8493440db..948db2897 100644 --- a/com.avaloq.tools.ddk.test.ui.test/pom.xml +++ b/com.avaloq.tools.ddk.test.ui.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0.v20250707-1302-REL + 16.0.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.test.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.test.ui/META-INF/MANIFEST.MF index bca6bb625..6b081804a 100644 --- a/com.avaloq.tools.ddk.test.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.test.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.test.ui Bundle-SymbolicName: com.avaloq.tools.ddk.test.ui;singleton:=true -Bundle-Version: 15.5.0.v20250707-1302-REL +Bundle-Version: 16.0.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-Activator: com.avaloq.tools.ddk.test.ui.Activator diff --git a/com.avaloq.tools.ddk.test.ui/pom.xml b/com.avaloq.tools.ddk.test.ui/pom.xml index 7178502b1..fd4419663 100644 --- a/com.avaloq.tools.ddk.test.ui/pom.xml +++ b/com.avaloq.tools.ddk.test.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0.v20250707-1302-REL + 16.0.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.typesystem.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.typesystem.test/META-INF/MANIFEST.MF index f43b7920a..4d40aa588 100644 --- a/com.avaloq.tools.ddk.typesystem.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.typesystem.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.typesystem.test Bundle-SymbolicName: com.avaloq.tools.ddk.typesystem.test;singleton:=true -Bundle-Version: 15.5.0.v20250707-1302-REL +Bundle-Version: 16.0.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.typesystem.test/pom.xml b/com.avaloq.tools.ddk.typesystem.test/pom.xml index 63a237be5..73d075ca8 100644 --- a/com.avaloq.tools.ddk.typesystem.test/pom.xml +++ b/com.avaloq.tools.ddk.typesystem.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0.v20250707-1302-REL + 16.0.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.typesystem/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.typesystem/META-INF/MANIFEST.MF index 428d17c03..7fea6fd21 100644 --- a/com.avaloq.tools.ddk.typesystem/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.typesystem/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.typesystem Bundle-SymbolicName: com.avaloq.tools.ddk.typesystem;singleton:=true -Bundle-Version: 15.5.0.v20250707-1302-REL +Bundle-Version: 16.0.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Import-Package: org.apache.logging.log4j diff --git a/com.avaloq.tools.ddk.typesystem/pom.xml b/com.avaloq.tools.ddk.typesystem/pom.xml index 31bec7741..c1c0d1537 100644 --- a/com.avaloq.tools.ddk.typesystem/pom.xml +++ b/com.avaloq.tools.ddk.typesystem/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0.v20250707-1302-REL + 16.0.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.workflow/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.workflow/META-INF/MANIFEST.MF index a85ddda0a..de63bcebd 100644 --- a/com.avaloq.tools.ddk.workflow/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.workflow/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.workflow Bundle-SymbolicName: com.avaloq.tools.ddk.workflow -Bundle-Version: 15.5.0.v20250707-1302-REL +Bundle-Version: 16.0.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Require-Bundle: com.avaloq.tools.ddk.xtext, diff --git a/com.avaloq.tools.ddk.workflow/pom.xml b/com.avaloq.tools.ddk.workflow/pom.xml index 9480f5d80..16210a107 100644 --- a/com.avaloq.tools.ddk.workflow/pom.xml +++ b/com.avaloq.tools.ddk.workflow/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0.v20250707-1302-REL + 16.0.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.builder.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.builder.ui/META-INF/MANIFEST.MF index df0b17fa2..755c8c852 100644 --- a/com.avaloq.tools.ddk.xtext.builder.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.builder.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.builder.ui Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.builder.ui;singleton:=true -Bundle-Version: 15.5.0.v20250707-1302-REL +Bundle-Version: 16.0.0.qualifier Bundle-Vendor: Avaloq Group AG Require-Bundle: org.eclipse.core.runtime, org.eclipse.xtext, diff --git a/com.avaloq.tools.ddk.xtext.builder.ui/pom.xml b/com.avaloq.tools.ddk.xtext.builder.ui/pom.xml index fbe2f9bc9..fb0f50c44 100644 --- a/com.avaloq.tools.ddk.xtext.builder.ui/pom.xml +++ b/com.avaloq.tools.ddk.xtext.builder.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0.v20250707-1302-REL + 16.0.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.builder/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.builder/META-INF/MANIFEST.MF index 31e9d264c..8545d20f5 100644 --- a/com.avaloq.tools.ddk.xtext.builder/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.builder/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.builder Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.builder;singleton:=true -Bundle-Version: 15.5.0.v20250707-1302-REL +Bundle-Version: 16.0.0.qualifier Bundle-Vendor: Avaloq Group AG Require-Bundle: org.eclipse.xtext.builder, org.eclipse.xtext.ui, diff --git a/com.avaloq.tools.ddk.xtext.builder/pom.xml b/com.avaloq.tools.ddk.xtext.builder/pom.xml index 0f58c72ce..a59594056 100644 --- a/com.avaloq.tools.ddk.xtext.builder/pom.xml +++ b/com.avaloq.tools.ddk.xtext.builder/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0.v20250707-1302-REL + 16.0.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.check.generator/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.check.generator/META-INF/MANIFEST.MF index 136c25507..93a4ef367 100644 --- a/com.avaloq.tools.ddk.xtext.check.generator/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.check.generator/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.check.generator Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.check.generator;singleton:=true -Bundle-Version: 15.5.0.v20250707-1302-REL +Bundle-Version: 16.0.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.check.generator/pom.xml b/com.avaloq.tools.ddk.xtext.check.generator/pom.xml index 48ee08055..202235976 100644 --- a/com.avaloq.tools.ddk.xtext.check.generator/pom.xml +++ b/com.avaloq.tools.ddk.xtext.check.generator/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0.v20250707-1302-REL + 16.0.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.common.types.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.common.types.ui/META-INF/MANIFEST.MF index cbbd5754d..87c9bd74d 100644 --- a/com.avaloq.tools.ddk.xtext.common.types.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.common.types.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.common.types.ui Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.common.types.ui;singleton:=true -Bundle-Version: 15.5.0.v20250707-1302-REL +Bundle-Version: 16.0.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.common.types.ui/pom.xml b/com.avaloq.tools.ddk.xtext.common.types.ui/pom.xml index 4b558c5f6..0b7428e86 100644 --- a/com.avaloq.tools.ddk.xtext.common.types.ui/pom.xml +++ b/com.avaloq.tools.ddk.xtext.common.types.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0.v20250707-1302-REL + 16.0.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.common.types/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.common.types/META-INF/MANIFEST.MF index 118def374..5a8e1af87 100644 --- a/com.avaloq.tools.ddk.xtext.common.types/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.common.types/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.common.types Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.common.types;singleton:=true -Bundle-Version: 15.5.0.v20250707-1302-REL +Bundle-Version: 16.0.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.common.types/pom.xml b/com.avaloq.tools.ddk.xtext.common.types/pom.xml index e2ac74fe5..6e14d6af2 100644 --- a/com.avaloq.tools.ddk.xtext.common.types/pom.xml +++ b/com.avaloq.tools.ddk.xtext.common.types/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0.v20250707-1302-REL + 16.0.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.common.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.common.ui/META-INF/MANIFEST.MF index d0418bd4d..5fd59bd4d 100644 --- a/com.avaloq.tools.ddk.xtext.common.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.common.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.common.ui Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.common.ui;singleton:=true -Bundle-Version: 15.5.0.v20250707-1302-REL +Bundle-Version: 16.0.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Export-Package: com.avaloq.tools.ddk.xtext.common.ui.contentassist diff --git a/com.avaloq.tools.ddk.xtext.common.ui/pom.xml b/com.avaloq.tools.ddk.xtext.common.ui/pom.xml index 8d446bbde..90529320c 100644 --- a/com.avaloq.tools.ddk.xtext.common.ui/pom.xml +++ b/com.avaloq.tools.ddk.xtext.common.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0.v20250707-1302-REL + 16.0.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.xtext.export.generator/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.export.generator/META-INF/MANIFEST.MF index e2366c85e..8f813534c 100644 --- a/com.avaloq.tools.ddk.xtext.export.generator/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.export.generator/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.export.generator Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.export.generator;singleton:=true -Bundle-Version: 15.5.0.v20250707-1302-REL +Bundle-Version: 16.0.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Require-Bundle: org.eclipse.xtext, diff --git a/com.avaloq.tools.ddk.xtext.export.generator/pom.xml b/com.avaloq.tools.ddk.xtext.export.generator/pom.xml index 1c7562017..fab694ea8 100644 --- a/com.avaloq.tools.ddk.xtext.export.generator/pom.xml +++ b/com.avaloq.tools.ddk.xtext.export.generator/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0.v20250707-1302-REL + 16.0.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.export.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.export.ide/META-INF/MANIFEST.MF index 9ab9a8fd2..5a4d8fa4f 100644 --- a/com.avaloq.tools.ddk.xtext.export.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.export.ide/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.export.ide Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.export.ide;singleton:=true -Bundle-Version: 15.5.0.v20250707-1302-REL +Bundle-Version: 16.0.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.export.ide/pom.xml b/com.avaloq.tools.ddk.xtext.export.ide/pom.xml index 01afb3ea5..a3d977cc0 100644 --- a/com.avaloq.tools.ddk.xtext.export.ide/pom.xml +++ b/com.avaloq.tools.ddk.xtext.export.ide/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0.v20250707-1302-REL + 16.0.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.export.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.export.test/META-INF/MANIFEST.MF index c2454236e..eaa7580e1 100644 --- a/com.avaloq.tools.ddk.xtext.export.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.export.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.export.test Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.export.test;singleton:=true -Bundle-Version: 15.5.0.v20250707-1302-REL +Bundle-Version: 16.0.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.export.test/pom.xml b/com.avaloq.tools.ddk.xtext.export.test/pom.xml index 54b2af4e0..ecd5bc412 100644 --- a/com.avaloq.tools.ddk.xtext.export.test/pom.xml +++ b/com.avaloq.tools.ddk.xtext.export.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0.v20250707-1302-REL + 16.0.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.xtext.export.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.export.ui/META-INF/MANIFEST.MF index 271762c47..8ed503546 100644 --- a/com.avaloq.tools.ddk.xtext.export.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.export.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.export.ui Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.export.ui;singleton:=true -Bundle-Version: 15.5.0.v20250707-1302-REL +Bundle-Version: 16.0.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-Activator: com.avaloq.tools.ddk.xtext.export.ui.internal.ExportActivator diff --git a/com.avaloq.tools.ddk.xtext.export.ui/pom.xml b/com.avaloq.tools.ddk.xtext.export.ui/pom.xml index 364ed3be8..750bf2ffc 100644 --- a/com.avaloq.tools.ddk.xtext.export.ui/pom.xml +++ b/com.avaloq.tools.ddk.xtext.export.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0.v20250707-1302-REL + 16.0.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.export/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.export/META-INF/MANIFEST.MF index b506a9e03..c4dddefe1 100644 --- a/com.avaloq.tools.ddk.xtext.export/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.export/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.export Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.export;singleton:=true -Bundle-Version: 15.5.0.v20250707-1302-REL +Bundle-Version: 16.0.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.export/pom.xml b/com.avaloq.tools.ddk.xtext.export/pom.xml index 43f71874e..1957b7e14 100644 --- a/com.avaloq.tools.ddk.xtext.export/pom.xml +++ b/com.avaloq.tools.ddk.xtext.export/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0.v20250707-1302-REL + 16.0.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.expression.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.expression.ide/META-INF/MANIFEST.MF index 0c356bc3d..9f1aa8909 100644 --- a/com.avaloq.tools.ddk.xtext.expression.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.expression.ide/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.expression.ide Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.expression.ide;singleton:=true -Bundle-Version: 15.5.0.v20250707-1302-REL +Bundle-Version: 16.0.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.expression.ide/pom.xml b/com.avaloq.tools.ddk.xtext.expression.ide/pom.xml index f75c6ae9a..78d2fb5e0 100644 --- a/com.avaloq.tools.ddk.xtext.expression.ide/pom.xml +++ b/com.avaloq.tools.ddk.xtext.expression.ide/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0.v20250707-1302-REL + 16.0.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.expression.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.expression.ui/META-INF/MANIFEST.MF index 5d5f5bea2..361e68a23 100644 --- a/com.avaloq.tools.ddk.xtext.expression.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.expression.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.expression.ui Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.expression.ui;singleton:=true -Bundle-Version: 15.5.0.v20250707-1302-REL +Bundle-Version: 16.0.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-Activator: com.avaloq.tools.ddk.xtext.expression.ui.internal.Activator diff --git a/com.avaloq.tools.ddk.xtext.expression.ui/pom.xml b/com.avaloq.tools.ddk.xtext.expression.ui/pom.xml index 4c6896739..d47b26d3b 100644 --- a/com.avaloq.tools.ddk.xtext.expression.ui/pom.xml +++ b/com.avaloq.tools.ddk.xtext.expression.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0.v20250707-1302-REL + 16.0.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.expression/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.expression/META-INF/MANIFEST.MF index 5a3cc77fc..8a898b8ce 100644 --- a/com.avaloq.tools.ddk.xtext.expression/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.expression/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.expression Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.expression;singleton:=true -Bundle-Version: 15.5.0.v20250707-1302-REL +Bundle-Version: 16.0.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Require-Bundle: org.eclipse.xtext, diff --git a/com.avaloq.tools.ddk.xtext.expression/pom.xml b/com.avaloq.tools.ddk.xtext.expression/pom.xml index b7f3c7cf7..c3fde9840 100644 --- a/com.avaloq.tools.ddk.xtext.expression/pom.xml +++ b/com.avaloq.tools.ddk.xtext.expression/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0.v20250707-1302-REL + 16.0.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.format.generator/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.format.generator/META-INF/MANIFEST.MF index cc53b27ba..af75de810 100644 --- a/com.avaloq.tools.ddk.xtext.format.generator/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.format.generator/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.format.generator Bundle-Vendor: Avaloq Group AG -Bundle-Version: 15.5.0.v20250707-1302-REL +Bundle-Version: 16.0.0.qualifier Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.format.generator;singleton:=true Require-Bundle: com.avaloq.tools.ddk.xtext.format;visibility:=reexport, org.eclipse.xpand, diff --git a/com.avaloq.tools.ddk.xtext.format.generator/pom.xml b/com.avaloq.tools.ddk.xtext.format.generator/pom.xml index fa549b645..1a18ac665 100644 --- a/com.avaloq.tools.ddk.xtext.format.generator/pom.xml +++ b/com.avaloq.tools.ddk.xtext.format.generator/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0.v20250707-1302-REL + 16.0.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.format.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.format.ide/META-INF/MANIFEST.MF index 757caecac..fa42134c3 100644 --- a/com.avaloq.tools.ddk.xtext.format.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.format.ide/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.format.ide Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.format.ide;singleton:=true -Bundle-Version: 15.5.0.v20250707-1302-REL +Bundle-Version: 16.0.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.format.ide/pom.xml b/com.avaloq.tools.ddk.xtext.format.ide/pom.xml index 76d31dc72..7195fbe11 100644 --- a/com.avaloq.tools.ddk.xtext.format.ide/pom.xml +++ b/com.avaloq.tools.ddk.xtext.format.ide/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0.v20250707-1302-REL + 16.0.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.format.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.format.test/META-INF/MANIFEST.MF index ee58bc93e..7b994030f 100644 --- a/com.avaloq.tools.ddk.xtext.format.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.format.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.format.test Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.format.test;singleton:=true -Bundle-Version: 15.5.0.v20250707-1302-REL +Bundle-Version: 16.0.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.format.test/pom.xml b/com.avaloq.tools.ddk.xtext.format.test/pom.xml index b9ecb00eb..84313d537 100644 --- a/com.avaloq.tools.ddk.xtext.format.test/pom.xml +++ b/com.avaloq.tools.ddk.xtext.format.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0.v20250707-1302-REL + 16.0.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.xtext.format.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.format.ui/META-INF/MANIFEST.MF index e9303c746..1b6e75114 100644 --- a/com.avaloq.tools.ddk.xtext.format.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.format.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.format.ui Bundle-Vendor: Avaloq Group AG -Bundle-Version: 15.5.0.v20250707-1302-REL +Bundle-Version: 16.0.0.qualifier Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.format.ui;singleton:=true Bundle-ActivationPolicy: lazy Require-Bundle: com.avaloq.tools.ddk.xtext.format;visibility:=reexport, diff --git a/com.avaloq.tools.ddk.xtext.format.ui/pom.xml b/com.avaloq.tools.ddk.xtext.format.ui/pom.xml index 2fd772bc4..0616a9e60 100644 --- a/com.avaloq.tools.ddk.xtext.format.ui/pom.xml +++ b/com.avaloq.tools.ddk.xtext.format.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0.v20250707-1302-REL + 16.0.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.format/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.format/META-INF/MANIFEST.MF index 0294ca102..0368ecd11 100644 --- a/com.avaloq.tools.ddk.xtext.format/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.format/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.format Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.format;singleton:=true -Bundle-Version: 15.5.0.v20250707-1302-REL +Bundle-Version: 16.0.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.format/pom.xml b/com.avaloq.tools.ddk.xtext.format/pom.xml index 6e53bf7df..38c61c704 100644 --- a/com.avaloq.tools.ddk.xtext.format/pom.xml +++ b/com.avaloq.tools.ddk.xtext.format/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0.v20250707-1302-REL + 16.0.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.generator.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.generator.test/META-INF/MANIFEST.MF index 268a25af7..87503dd7f 100644 --- a/com.avaloq.tools.ddk.xtext.generator.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.generator.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.generator.test Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.generator.test;singleton:=true -Bundle-Version: 15.5.0.v20250707-1302-REL +Bundle-Version: 16.0.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.generator.test/pom.xml b/com.avaloq.tools.ddk.xtext.generator.test/pom.xml index 5bfd27380..03246b098 100644 --- a/com.avaloq.tools.ddk.xtext.generator.test/pom.xml +++ b/com.avaloq.tools.ddk.xtext.generator.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0.v20250707-1302-REL + 16.0.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.xtext.generator/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.generator/META-INF/MANIFEST.MF index dc1f99e4c..9b19e4d63 100644 --- a/com.avaloq.tools.ddk.xtext.generator/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.generator/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.generator Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.generator;singleton:=true -Bundle-Version: 15.5.0.v20250707-1302-REL +Bundle-Version: 16.0.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Require-Bundle: org.eclipse.jface, diff --git a/com.avaloq.tools.ddk.xtext.generator/pom.xml b/com.avaloq.tools.ddk.xtext.generator/pom.xml index deca26dc4..9eb28cf18 100644 --- a/com.avaloq.tools.ddk.xtext.generator/pom.xml +++ b/com.avaloq.tools.ddk.xtext.generator/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0.v20250707-1302-REL + 16.0.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.ide/META-INF/MANIFEST.MF index 508d7db10..189d81500 100644 --- a/com.avaloq.tools.ddk.xtext.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.ide/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.ide Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.ide;singleton:=true -Bundle-Version: 15.5.0.v20250707-1302-REL +Bundle-Version: 16.0.0.qualifier Bundle-Vendor: Avaloq Group AG Require-Bundle: org.eclipse.lsp4j, org.eclipse.xtext.ide, diff --git a/com.avaloq.tools.ddk.xtext.ide/pom.xml b/com.avaloq.tools.ddk.xtext.ide/pom.xml index ee5717316..809bafd67 100644 --- a/com.avaloq.tools.ddk.xtext.ide/pom.xml +++ b/com.avaloq.tools.ddk.xtext.ide/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0.v20250707-1302-REL + 16.0.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.scope.generator/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.scope.generator/META-INF/MANIFEST.MF index 43c4864a9..ae1f0d159 100644 --- a/com.avaloq.tools.ddk.xtext.scope.generator/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.scope.generator/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.scope.generator Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.scope.generator;singleton:=true -Bundle-Version: 15.5.0.v20250707-1302-REL +Bundle-Version: 16.0.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Require-Bundle: com.avaloq.tools.ddk.xtext.scope;visibility:=reexport, diff --git a/com.avaloq.tools.ddk.xtext.scope.generator/pom.xml b/com.avaloq.tools.ddk.xtext.scope.generator/pom.xml index d4c6c1bc8..125e7c530 100644 --- a/com.avaloq.tools.ddk.xtext.scope.generator/pom.xml +++ b/com.avaloq.tools.ddk.xtext.scope.generator/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0.v20250707-1302-REL + 16.0.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.scope.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.scope.ide/META-INF/MANIFEST.MF index e7d6e7e3b..c9cce04ae 100644 --- a/com.avaloq.tools.ddk.xtext.scope.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.scope.ide/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.scope.ide Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.scope.ide;singleton:=true -Bundle-Version: 15.5.0.v20250707-1302-REL +Bundle-Version: 16.0.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.scope.ide/pom.xml b/com.avaloq.tools.ddk.xtext.scope.ide/pom.xml index 11d06fc84..7493b442b 100644 --- a/com.avaloq.tools.ddk.xtext.scope.ide/pom.xml +++ b/com.avaloq.tools.ddk.xtext.scope.ide/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0.v20250707-1302-REL + 16.0.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.scope.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.scope.ui/META-INF/MANIFEST.MF index eba30c367..ebfc9d88a 100644 --- a/com.avaloq.tools.ddk.xtext.scope.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.scope.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.scope.ui Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.scope.ui;singleton:=true -Bundle-Version: 15.5.0.v20250707-1302-REL +Bundle-Version: 16.0.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-Activator: com.avaloq.tools.ddk.xtext.scope.ui.internal.ScopeActivator diff --git a/com.avaloq.tools.ddk.xtext.scope.ui/pom.xml b/com.avaloq.tools.ddk.xtext.scope.ui/pom.xml index 35fdb8d5a..50786d72e 100644 --- a/com.avaloq.tools.ddk.xtext.scope.ui/pom.xml +++ b/com.avaloq.tools.ddk.xtext.scope.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0.v20250707-1302-REL + 16.0.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.scope/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.scope/META-INF/MANIFEST.MF index 869b6d191..ed742fd10 100644 --- a/com.avaloq.tools.ddk.xtext.scope/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.scope/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.scope Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.scope;singleton:=true -Bundle-Version: 15.5.0.v20250707-1302-REL +Bundle-Version: 16.0.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Require-Bundle: org.eclipse.xtext, diff --git a/com.avaloq.tools.ddk.xtext.scope/pom.xml b/com.avaloq.tools.ddk.xtext.scope/pom.xml index eabe9ae4a..141716c4f 100644 --- a/com.avaloq.tools.ddk.xtext.scope/pom.xml +++ b/com.avaloq.tools.ddk.xtext.scope/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0.v20250707-1302-REL + 16.0.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.test.core/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.test.core/META-INF/MANIFEST.MF index 994e3d724..e79d4d66e 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.test.core/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.test.core Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.test.core;singleton:=true -Bundle-Version: 15.5.0.v20250707-1302-REL +Bundle-Version: 16.0.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Require-Bundle: com.avaloq.tools.ddk.xtext, diff --git a/com.avaloq.tools.ddk.xtext.test.core/pom.xml b/com.avaloq.tools.ddk.xtext.test.core/pom.xml index 3917943d1..00b0d3f6c 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/pom.xml +++ b/com.avaloq.tools.ddk.xtext.test.core/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0.v20250707-1302-REL + 16.0.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.xtext.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.test/META-INF/MANIFEST.MF index 2872477c3..57e6a48b3 100644 --- a/com.avaloq.tools.ddk.xtext.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.test Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.test;singleton:=true -Bundle-Version: 15.5.0.v20250707-1302-REL +Bundle-Version: 16.0.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.test/pom.xml b/com.avaloq.tools.ddk.xtext.test/pom.xml index e36b875c8..8d2d92254 100644 --- a/com.avaloq.tools.ddk.xtext.test/pom.xml +++ b/com.avaloq.tools.ddk.xtext.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0.v20250707-1302-REL + 16.0.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.xtext.ui.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.ui.test/META-INF/MANIFEST.MF index 9bf0d9e79..e07f1b279 100644 --- a/com.avaloq.tools.ddk.xtext.ui.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.ui.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.ui.test Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.ui.test;singleton:=true -Bundle-Version: 15.5.0.v20250707-1302-REL +Bundle-Version: 16.0.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Require-Bundle: org.eclipse.xtext.ui, diff --git a/com.avaloq.tools.ddk.xtext.ui.test/pom.xml b/com.avaloq.tools.ddk.xtext.ui.test/pom.xml index a3d620207..971259365 100644 --- a/com.avaloq.tools.ddk.xtext.ui.test/pom.xml +++ b/com.avaloq.tools.ddk.xtext.ui.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0.v20250707-1302-REL + 16.0.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.xtext.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.ui/META-INF/MANIFEST.MF index 72d47d162..474632b4e 100644 --- a/com.avaloq.tools.ddk.xtext.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.ui Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.ui;singleton:=true -Bundle-Version: 15.5.0.v20250707-1302-REL +Bundle-Version: 16.0.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.ui/pom.xml b/com.avaloq.tools.ddk.xtext.ui/pom.xml index acf369bc5..5ac5a82e7 100644 --- a/com.avaloq.tools.ddk.xtext.ui/pom.xml +++ b/com.avaloq.tools.ddk.xtext.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0.v20250707-1302-REL + 16.0.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.valid.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.valid.ide/META-INF/MANIFEST.MF index f5649b236..744ae7bf8 100644 --- a/com.avaloq.tools.ddk.xtext.valid.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.valid.ide/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.valid.ide Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.valid.ide;singleton:=true -Bundle-Version: 15.5.0.v20250707-1302-REL +Bundle-Version: 16.0.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.valid.ide/pom.xml b/com.avaloq.tools.ddk.xtext.valid.ide/pom.xml index ea5002870..f22d98d99 100644 --- a/com.avaloq.tools.ddk.xtext.valid.ide/pom.xml +++ b/com.avaloq.tools.ddk.xtext.valid.ide/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0.v20250707-1302-REL + 16.0.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.valid.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.valid.ui/META-INF/MANIFEST.MF index 7ecdfcab0..f2413179b 100644 --- a/com.avaloq.tools.ddk.xtext.valid.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.valid.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.valid.ui Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.valid.ui;singleton:=true -Bundle-Version: 15.5.0.v20250707-1302-REL +Bundle-Version: 16.0.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.valid.ui/pom.xml b/com.avaloq.tools.ddk.xtext.valid.ui/pom.xml index 6ed422116..9f5422bc1 100644 --- a/com.avaloq.tools.ddk.xtext.valid.ui/pom.xml +++ b/com.avaloq.tools.ddk.xtext.valid.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0.v20250707-1302-REL + 16.0.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.xtext.valid/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.valid/META-INF/MANIFEST.MF index eac385b8e..2e50d35ea 100644 --- a/com.avaloq.tools.ddk.xtext.valid/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.valid/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.valid Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.valid;singleton:=true -Bundle-Version: 15.5.0.v20250707-1302-REL +Bundle-Version: 16.0.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.valid/pom.xml b/com.avaloq.tools.ddk.xtext.valid/pom.xml index 99c02eea9..c73522695 100644 --- a/com.avaloq.tools.ddk.xtext.valid/pom.xml +++ b/com.avaloq.tools.ddk.xtext.valid/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0.v20250707-1302-REL + 16.0.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.xtext/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext/META-INF/MANIFEST.MF index 6b8a8372f..e5d218dbe 100644 --- a/com.avaloq.tools.ddk.xtext/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext Bundle-SymbolicName: com.avaloq.tools.ddk.xtext;singleton:=true -Bundle-Version: 15.5.0.v20250707-1302-REL +Bundle-Version: 16.0.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext/pom.xml b/com.avaloq.tools.ddk.xtext/pom.xml index 0bd1e898a..926727aa3 100644 --- a/com.avaloq.tools.ddk.xtext/pom.xml +++ b/com.avaloq.tools.ddk.xtext/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0.v20250707-1302-REL + 16.0.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk/META-INF/MANIFEST.MF index 198ea2fb8..7dd0d2ff5 100644 --- a/com.avaloq.tools.ddk/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk Bundle-SymbolicName: com.avaloq.tools.ddk;singleton:=true -Bundle-Version: 15.5.0.v20250707-1302-REL +Bundle-Version: 16.0.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk/pom.xml b/com.avaloq.tools.ddk/pom.xml index 994b28803..9f438bb98 100644 --- a/com.avaloq.tools.ddk/pom.xml +++ b/com.avaloq.tools.ddk/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0.v20250707-1302-REL + 16.0.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/ddk-parent/pom.xml b/ddk-parent/pom.xml index b6eefd756..3f86ea1a8 100644 --- a/ddk-parent/pom.xml +++ b/ddk-parent/pom.xml @@ -4,7 +4,7 @@ com.avaloq.tools.ddk ddk-parent - 15.5.0.v20250707-1302-REL + 16.0.0-SNAPSHOT pom diff --git a/ddk-repository/category.xml b/ddk-repository/category.xml index b3f407bc6..7be7b3683 100644 --- a/ddk-repository/category.xml +++ b/ddk-repository/category.xml @@ -1,15 +1,15 @@ - + - + - + - + diff --git a/ddk-repository/pom.xml b/ddk-repository/pom.xml index 0c2d0f76a..f0a895ae1 100644 --- a/ddk-repository/pom.xml +++ b/ddk-repository/pom.xml @@ -4,7 +4,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0.v20250707-1302-REL + 16.0.0-SNAPSHOT ../ddk-parent diff --git a/ddk-target/pom.xml b/ddk-target/pom.xml index 63de08243..1a4422d1a 100644 --- a/ddk-target/pom.xml +++ b/ddk-target/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 15.5.0.v20250707-1302-REL + 16.0.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk From 21a88d30637941461774fe778ffdf78b075306a5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 7 Jul 2025 15:07:24 +0000 Subject: [PATCH 31/57] chore(deps): bump org.apache.maven.plugins:maven-enforcer-plugin --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-enforcer-plugin dependency-version: 3.6.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- ddk-parent/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ddk-parent/pom.xml b/ddk-parent/pom.xml index 3f86ea1a8..c601e7894 100644 --- a/ddk-parent/pom.xml +++ b/ddk-parent/pom.xml @@ -146,7 +146,7 @@ org.apache.maven.plugins maven-enforcer-plugin - 3.5.0 + 3.6.0 enforce-versions From 205b04645c192159431bc3a8395f3a4e9e1163fa Mon Sep 17 00:00:00 2001 From: gregdyke Date: Thu, 10 Jul 2025 18:04:29 +0100 Subject: [PATCH 32/57] chore: fix deprecated use of URL constructor --- .../com/avaloq/tools/ddk/check/core/test/BugAig1314.java | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/core/test/BugAig1314.java b/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/core/test/BugAig1314.java index 83255e3a0..6aa9bd1f8 100644 --- a/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/core/test/BugAig1314.java +++ b/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/core/test/BugAig1314.java @@ -16,6 +16,7 @@ import java.io.InputStream; import java.net.MalformedURLException; +import java.net.URISyntaxException; import java.net.URL; import org.eclipse.emf.common.util.URI; @@ -57,8 +58,8 @@ private static class TestScope extends CatalogFromExtensionPointScope { * * @return Some syntactically correct but otherwise meaningless URL. */ - private URL createURL() throws MalformedURLException { - return new URL("http://" + TEST_CATALOG_FILE + TEST_CATALOG_EXTENSION); + private URL createURL() throws MalformedURLException, URISyntaxException { + return new java.net.URI("http://" + TEST_CATALOG_FILE + TEST_CATALOG_EXTENSION).toURL(); } /** @@ -121,7 +122,7 @@ private void assertIterableNotEmpty(final Iterable iterable) { * Tests that querying the same scope twice doesn't make the resource set grow. */ @Test - public void testSameScopeUseTwice() throws MalformedURLException { + public void testSameScopeUseTwice() throws MalformedURLException, URISyntaxException { XtextResourceSet rs = new XtextResourceSet(); URL url = createURL(); ModelLocation modelLocation = createModelLocation(url); @@ -140,7 +141,7 @@ public void testSameScopeUseTwice() throws MalformedURLException { * Tests that querying two different scopes doesn't make the resource set grow. That one was the real cause of bug AIG-1314. */ @Test - public void testDifferentScopeUseTwice() throws MalformedURLException { + public void testDifferentScopeUseTwice() throws MalformedURLException, URISyntaxException { XtextResourceSet rs = new XtextResourceSet(); URL url = createURL(); ModelLocation modelLocation = createModelLocation(url); From 968db281d880af473a01bb048dc906b34f97ab26 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 21 Jul 2025 12:54:21 +0000 Subject: [PATCH 33/57] chore(deps): bump org.apache.maven.plugins:maven-enforcer-plugin Bumps [org.apache.maven.plugins:maven-enforcer-plugin](https://github.com/apache/maven-enforcer) from 3.6.0 to 3.6.1. - [Release notes](https://github.com/apache/maven-enforcer/releases) - [Commits](https://github.com/apache/maven-enforcer/compare/enforcer-3.6.0...enforcer-3.6.1) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-enforcer-plugin dependency-version: 3.6.1 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- ddk-parent/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ddk-parent/pom.xml b/ddk-parent/pom.xml index c601e7894..672875b92 100644 --- a/ddk-parent/pom.xml +++ b/ddk-parent/pom.xml @@ -146,7 +146,7 @@ org.apache.maven.plugins maven-enforcer-plugin - 3.6.0 + 3.6.1 enforce-versions From f7a6fad2612df83079f961495fb59fc2c335d5b0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 Aug 2025 17:20:04 +0000 Subject: [PATCH 34/57] chore(deps): bump com.puppycrawl.tools:checkstyle in /ddk-parent Bumps [com.puppycrawl.tools:checkstyle](https://github.com/checkstyle/checkstyle) from 10.26.1 to 11.0.0. - [Release notes](https://github.com/checkstyle/checkstyle/releases) - [Commits](https://github.com/checkstyle/checkstyle/compare/checkstyle-10.26.1...checkstyle-11.0.0) --- updated-dependencies: - dependency-name: com.puppycrawl.tools:checkstyle dependency-version: 11.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- ddk-parent/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ddk-parent/pom.xml b/ddk-parent/pom.xml index 672875b92..9bf786544 100644 --- a/ddk-parent/pom.xml +++ b/ddk-parent/pom.xml @@ -47,7 +47,7 @@ 3.6.0 - 10.26.1 + 11.0.0 3.5.0 3.1.4 4.9.3.2 From db7f99deae519150d6182728dce261160b54560e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 Aug 2025 17:29:11 +0000 Subject: [PATCH 35/57] chore(deps): bump com.github.spotbugs:spotbugs in /ddk-parent Bumps [com.github.spotbugs:spotbugs](https://github.com/spotbugs/spotbugs) from 4.9.3 to 4.9.4. - [Release notes](https://github.com/spotbugs/spotbugs/releases) - [Changelog](https://github.com/spotbugs/spotbugs/blob/master/CHANGELOG.md) - [Commits](https://github.com/spotbugs/spotbugs/compare/4.9.3...4.9.4) --- updated-dependencies: - dependency-name: com.github.spotbugs:spotbugs dependency-version: 4.9.4 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- ddk-parent/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ddk-parent/pom.xml b/ddk-parent/pom.xml index 672875b92..fe0ab4e30 100644 --- a/ddk-parent/pom.xml +++ b/ddk-parent/pom.xml @@ -51,7 +51,7 @@ 3.5.0 3.1.4 4.9.3.2 - 4.9.3 + 4.9.4 3.27.0 7.15.0 4.0.13 From 6e2fb3d5e7ab7df868b57d9ada3c51ef05cdd000 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 Aug 2025 22:20:03 +0000 Subject: [PATCH 36/57] chore(deps): bump com.puppycrawl.tools:checkstyle in /ddk-parent Bumps [com.puppycrawl.tools:checkstyle](https://github.com/checkstyle/checkstyle) from 10.26.1 to 11.0.0. - [Release notes](https://github.com/checkstyle/checkstyle/releases) - [Commits](https://github.com/checkstyle/checkstyle/compare/checkstyle-10.26.1...checkstyle-11.0.0) --- updated-dependencies: - dependency-name: com.puppycrawl.tools:checkstyle dependency-version: 11.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- ddk-parent/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ddk-parent/pom.xml b/ddk-parent/pom.xml index a47654d5f..b1aa89a84 100644 --- a/ddk-parent/pom.xml +++ b/ddk-parent/pom.xml @@ -47,7 +47,7 @@ 3.6.0 - 10.26.1 + 11.0.0 3.5.0 3.1.4 4.9.3.2 From 9c2a7a9a056456307ca158e08ecd7d36fc7d361f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 12 Aug 2025 17:10:07 +0000 Subject: [PATCH 37/57] chore(deps): bump actions/checkout from 4 to 5 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/verify.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml index 6a90a1a8b..cf488c510 100644 --- a/.github/workflows/verify.yml +++ b/.github/workflows/verify.yml @@ -4,7 +4,7 @@ jobs: pmd: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: actions/setup-java@v4 with: distribution: 'temurin' @@ -26,7 +26,7 @@ jobs: uses: stCarolas/setup-maven@v5 with: maven-version: 3.9.9 - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Set up JDK 21 uses: actions/setup-java@v4 with: From acf106827bf55b35064fd3beb35cd48c778e4e05 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 21 Aug 2025 12:24:26 +0000 Subject: [PATCH 38/57] chore(deps): bump actions/setup-java from 4 to 5 Bumps [actions/setup-java](https://github.com/actions/setup-java) from 4 to 5. - [Release notes](https://github.com/actions/setup-java/releases) - [Commits](https://github.com/actions/setup-java/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/setup-java dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/verify.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml index cf488c510..a7e85e946 100644 --- a/.github/workflows/verify.yml +++ b/.github/workflows/verify.yml @@ -5,7 +5,7 @@ jobs: runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v5 - - uses: actions/setup-java@v4 + - uses: actions/setup-java@v5 with: distribution: 'temurin' java-version: '21' @@ -28,7 +28,7 @@ jobs: maven-version: 3.9.9 - uses: actions/checkout@v5 - name: Set up JDK 21 - uses: actions/setup-java@v4 + uses: actions/setup-java@v5 with: distribution: 'temurin' java-version: '21' From 7a9e403a756e7979e6446f8f964ca271617050b9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 26 Aug 2025 03:09:23 +0000 Subject: [PATCH 39/57] chore(deps): bump com.github.spotbugs:spotbugs-maven-plugin Bumps [com.github.spotbugs:spotbugs-maven-plugin](https://github.com/spotbugs/spotbugs-maven-plugin) from 4.9.3.2 to 4.9.4.0. - [Release notes](https://github.com/spotbugs/spotbugs-maven-plugin/releases) - [Commits](https://github.com/spotbugs/spotbugs-maven-plugin/compare/spotbugs-maven-plugin-4.9.3.2...spotbugs-maven-plugin-4.9.4.0) --- updated-dependencies: - dependency-name: com.github.spotbugs:spotbugs-maven-plugin dependency-version: 4.9.4.0 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- ddk-parent/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ddk-parent/pom.xml b/ddk-parent/pom.xml index a9c8135ce..053b7329b 100644 --- a/ddk-parent/pom.xml +++ b/ddk-parent/pom.xml @@ -50,7 +50,7 @@ 11.0.0 3.5.0 3.1.4 - 4.9.3.2 + 4.9.4.0 4.9.4 3.27.0 7.15.0 From 24b5b967b9b5ab7ade2bd14aa94bce89f1f09159 Mon Sep 17 00:00:00 2001 From: rubenporras <43636626+rubenporras@users.noreply.github.com> Date: Wed, 27 Aug 2025 10:58:08 +0200 Subject: [PATCH 40/57] Force CR LF in text files --- .gitattributes | 1 + 1 file changed, 1 insertion(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 000000000..0c441a28a --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +text eol=crlf \ No newline at end of file From 60b11d3ee442d4844c87f6c850ca473c96f58c4d Mon Sep 17 00:00:00 2001 From: Jenkins Date: Tue, 2 Sep 2025 12:29:31 +0200 Subject: [PATCH 41/57] Release 16.0.0.v20250902-1229-REL --- com.avaloq.tools.ddk.check.core.test/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.core.test/pom.xml | 2 +- com.avaloq.tools.ddk.check.core/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.core/pom.xml | 2 +- com.avaloq.tools.ddk.check.ide/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.ide/pom.xml | 2 +- com.avaloq.tools.ddk.check.lib/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.lib/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.runtime.core.test/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.runtime.core/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.runtime.ui/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.test.runtime.tests/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.test.runtime.ui/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.test.runtime/pom.xml | 2 +- com.avaloq.tools.ddk.check.ui.test/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.ui.test/pom.xml | 2 +- com.avaloq.tools.ddk.check.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.ui/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.checkcfg.core.test/pom.xml | 2 +- com.avaloq.tools.ddk.checkcfg.core/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.checkcfg.core/pom.xml | 2 +- com.avaloq.tools.ddk.checkcfg.ide/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.checkcfg.ide/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.checkcfg.ui.test/pom.xml | 2 +- com.avaloq.tools.ddk.checkcfg.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.checkcfg.ui/pom.xml | 2 +- com.avaloq.tools.ddk.feature/feature.xml | 2 +- com.avaloq.tools.ddk.feature/pom.xml | 2 +- com.avaloq.tools.ddk.runtime.feature/feature.xml | 2 +- com.avaloq.tools.ddk.runtime.feature/pom.xml | 2 +- com.avaloq.tools.ddk.runtime.source.feature/feature.xml | 2 +- com.avaloq.tools.ddk.runtime.source.feature/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.sample.helloworld.ide/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.sample.helloworld.ui.test/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.sample.helloworld.ui/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.sample.helloworld/pom.xml | 2 +- com.avaloq.tools.ddk.source.feature/feature.xml | 2 +- com.avaloq.tools.ddk.source.feature/pom.xml | 2 +- com.avaloq.tools.ddk.test.core/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.test.core/pom.xml | 2 +- com.avaloq.tools.ddk.test.ui.test/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.test.ui.test/pom.xml | 2 +- com.avaloq.tools.ddk.test.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.test.ui/pom.xml | 2 +- com.avaloq.tools.ddk.typesystem.test/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.typesystem.test/pom.xml | 2 +- com.avaloq.tools.ddk.typesystem/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.typesystem/pom.xml | 2 +- com.avaloq.tools.ddk.workflow/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.workflow/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.builder.ui/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.builder/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.builder/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.check.generator/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.common.types.ui/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.common.types/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.common.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.common.ui/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.export.generator/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.export.ide/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.export.test/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.export.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.export.ui/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.export/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.export/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.expression.ide/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.expression.ui/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.expression/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.format.generator/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.format.ide/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.format.test/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.format.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.format.ui/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.format/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.format/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.generator.test/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.generator/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.generator/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.ide/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.ide/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.scope.generator/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.scope.ide/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.scope.ide/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.scope.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.scope.ui/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.scope/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.scope/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.test.core/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.test.core/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.test/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.test/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.ui.test/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.ui.test/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.ui/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.valid.ide/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.valid.ide/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.valid.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.valid.ui/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.valid/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.valid/pom.xml | 2 +- com.avaloq.tools.ddk.xtext/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext/pom.xml | 2 +- com.avaloq.tools.ddk/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk/pom.xml | 2 +- ddk-parent/pom.xml | 2 +- ddk-repository/category.xml | 8 ++++---- ddk-repository/pom.xml | 2 +- ddk-target/pom.xml | 2 +- 136 files changed, 139 insertions(+), 139 deletions(-) diff --git a/com.avaloq.tools.ddk.check.core.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.core.test/META-INF/MANIFEST.MF index 386dbc256..bf729d901 100644 --- a/com.avaloq.tools.ddk.check.core.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.core.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.core.test Bundle-SymbolicName: com.avaloq.tools.ddk.check.core.test;singleton:=true -Bundle-Version: 16.0.0.qualifier +Bundle-Version: 16.0.0.v20250902-1229-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.check.core.test/pom.xml b/com.avaloq.tools.ddk.check.core.test/pom.xml index e0eb3fb6b..22cdef316 100644 --- a/com.avaloq.tools.ddk.check.core.test/pom.xml +++ b/com.avaloq.tools.ddk.check.core.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0-SNAPSHOT + 16.0.0.v20250902-1229-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.check.core/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.core/META-INF/MANIFEST.MF index 92ed3eb0d..820b80c90 100644 --- a/com.avaloq.tools.ddk.check.core/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.core/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.core Bundle-SymbolicName: com.avaloq.tools.ddk.check.core;singleton:=true -Bundle-Version: 16.0.0.qualifier +Bundle-Version: 16.0.0.v20250902-1229-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.check.core/pom.xml b/com.avaloq.tools.ddk.check.core/pom.xml index 9932ea5c0..610f1113a 100644 --- a/com.avaloq.tools.ddk.check.core/pom.xml +++ b/com.avaloq.tools.ddk.check.core/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0-SNAPSHOT + 16.0.0.v20250902-1229-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.check.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.ide/META-INF/MANIFEST.MF index 7ac305083..a5d5d1be0 100644 --- a/com.avaloq.tools.ddk.check.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.ide/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.ide Bundle-SymbolicName: com.avaloq.tools.ddk.check.ide;singleton:=true -Bundle-Version: 16.0.0.qualifier +Bundle-Version: 16.0.0.v20250902-1229-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.check.ide/pom.xml b/com.avaloq.tools.ddk.check.ide/pom.xml index 8b621bd93..ef2f6ae1a 100644 --- a/com.avaloq.tools.ddk.check.ide/pom.xml +++ b/com.avaloq.tools.ddk.check.ide/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0-SNAPSHOT + 16.0.0.v20250902-1229-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.check.lib/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.lib/META-INF/MANIFEST.MF index c53d28256..3a9c2953e 100644 --- a/com.avaloq.tools.ddk.check.lib/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.lib/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.lib Bundle-SymbolicName: com.avaloq.tools.ddk.check.lib -Bundle-Version: 16.0.0.qualifier +Bundle-Version: 16.0.0.v20250902-1229-REL Bundle-Vendor: Avaloq Group AG Require-Bundle: org.eclipse.core.runtime, org.eclipse.xtext, diff --git a/com.avaloq.tools.ddk.check.lib/pom.xml b/com.avaloq.tools.ddk.check.lib/pom.xml index 3eaba20c1..46fce7c7a 100644 --- a/com.avaloq.tools.ddk.check.lib/pom.xml +++ b/com.avaloq.tools.ddk.check.lib/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0-SNAPSHOT + 16.0.0.v20250902-1229-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.check.runtime.core.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.runtime.core.test/META-INF/MANIFEST.MF index 6cf735b16..2f74fc7c6 100644 --- a/com.avaloq.tools.ddk.check.runtime.core.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.runtime.core.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.runtime.core.test Bundle-SymbolicName: com.avaloq.tools.ddk.check.runtime.core.test;singleton:=true -Bundle-Version: 16.0.0.qualifier +Bundle-Version: 16.0.0.v20250902-1229-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Require-Bundle: org.eclipse.ui, diff --git a/com.avaloq.tools.ddk.check.runtime.core.test/pom.xml b/com.avaloq.tools.ddk.check.runtime.core.test/pom.xml index 5d9b1b05d..3ea08a63c 100644 --- a/com.avaloq.tools.ddk.check.runtime.core.test/pom.xml +++ b/com.avaloq.tools.ddk.check.runtime.core.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0-SNAPSHOT + 16.0.0.v20250902-1229-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.check.runtime.core/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.runtime.core/META-INF/MANIFEST.MF index 07f931f7d..1ce0421cd 100644 --- a/com.avaloq.tools.ddk.check.runtime.core/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.runtime.core/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.runtime.core Bundle-SymbolicName: com.avaloq.tools.ddk.check.runtime.core;singleton:=true -Bundle-Version: 16.0.0.qualifier +Bundle-Version: 16.0.0.v20250902-1229-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Require-Bundle: org.eclipse.core.resources, diff --git a/com.avaloq.tools.ddk.check.runtime.core/pom.xml b/com.avaloq.tools.ddk.check.runtime.core/pom.xml index 0be078dac..796736357 100644 --- a/com.avaloq.tools.ddk.check.runtime.core/pom.xml +++ b/com.avaloq.tools.ddk.check.runtime.core/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0-SNAPSHOT + 16.0.0.v20250902-1229-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.check.runtime.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.runtime.ui/META-INF/MANIFEST.MF index 463ed7c88..8c45ff229 100644 --- a/com.avaloq.tools.ddk.check.runtime.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.runtime.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.runtime.ui Bundle-SymbolicName: com.avaloq.tools.ddk.check.runtime.ui;singleton:=true -Bundle-Version: 16.0.0.qualifier +Bundle-Version: 16.0.0.v20250902-1229-REL Bundle-Activator: com.avaloq.tools.ddk.check.runtime.ui.internal.Activator Bundle-Vendor: Avaloq Group AG Require-Bundle: org.eclipse.ui, diff --git a/com.avaloq.tools.ddk.check.runtime.ui/pom.xml b/com.avaloq.tools.ddk.check.runtime.ui/pom.xml index a3636b1c8..5fd9c4516 100644 --- a/com.avaloq.tools.ddk.check.runtime.ui/pom.xml +++ b/com.avaloq.tools.ddk.check.runtime.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0-SNAPSHOT + 16.0.0.v20250902-1229-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.check.test.runtime.tests/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.test.runtime.tests/META-INF/MANIFEST.MF index 38bc25cac..fcd09c85f 100644 --- a/com.avaloq.tools.ddk.check.test.runtime.tests/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.test.runtime.tests/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.test.runtime.tests Bundle-Vendor: Avaloq Group AG -Bundle-Version: 16.0.0.qualifier +Bundle-Version: 16.0.0.v20250902-1229-REL Bundle-SymbolicName: com.avaloq.tools.ddk.check.test.runtime.tests; singleton:=true Bundle-ActivationPolicy: lazy Require-Bundle: com.avaloq.tools.ddk.check.runtime.core, diff --git a/com.avaloq.tools.ddk.check.test.runtime.tests/pom.xml b/com.avaloq.tools.ddk.check.test.runtime.tests/pom.xml index 265c77a74..30cd76870 100644 --- a/com.avaloq.tools.ddk.check.test.runtime.tests/pom.xml +++ b/com.avaloq.tools.ddk.check.test.runtime.tests/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0-SNAPSHOT + 16.0.0.v20250902-1229-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.check.test.runtime.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.test.runtime.ui/META-INF/MANIFEST.MF index aa74c6dd4..db4874898 100644 --- a/com.avaloq.tools.ddk.check.test.runtime.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.test.runtime.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.test.runtime.ui Bundle-Vendor: Avaloq Group AG -Bundle-Version: 16.0.0.qualifier +Bundle-Version: 16.0.0.v20250902-1229-REL Bundle-SymbolicName: com.avaloq.tools.ddk.check.test.runtime.ui; singleton:=true Bundle-ActivationPolicy: lazy Require-Bundle: com.avaloq.tools.ddk.check.test.runtime;visibility:=reexport, diff --git a/com.avaloq.tools.ddk.check.test.runtime.ui/pom.xml b/com.avaloq.tools.ddk.check.test.runtime.ui/pom.xml index 9a2b427d5..450a0898c 100644 --- a/com.avaloq.tools.ddk.check.test.runtime.ui/pom.xml +++ b/com.avaloq.tools.ddk.check.test.runtime.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0-SNAPSHOT + 16.0.0.v20250902-1229-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.check.test.runtime/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.test.runtime/META-INF/MANIFEST.MF index ff8f4a667..645a485a8 100644 --- a/com.avaloq.tools.ddk.check.test.runtime/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.test.runtime/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.test.runtime Bundle-Vendor: Avaloq Group AG -Bundle-Version: 16.0.0.qualifier +Bundle-Version: 16.0.0.v20250902-1229-REL Bundle-SymbolicName: com.avaloq.tools.ddk.check.test.runtime;singleton:=true Bundle-ActivationPolicy: lazy Require-Bundle: org.eclipse.xtext;visibility:=reexport, diff --git a/com.avaloq.tools.ddk.check.test.runtime/pom.xml b/com.avaloq.tools.ddk.check.test.runtime/pom.xml index 31b16f47e..aa00ec513 100644 --- a/com.avaloq.tools.ddk.check.test.runtime/pom.xml +++ b/com.avaloq.tools.ddk.check.test.runtime/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0-SNAPSHOT + 16.0.0.v20250902-1229-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.check.ui.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.ui.test/META-INF/MANIFEST.MF index f34972d6b..72f15d56c 100644 --- a/com.avaloq.tools.ddk.check.ui.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.ui.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.ui.test Bundle-SymbolicName: com.avaloq.tools.ddk.check.ui.test -Bundle-Version: 16.0.0.qualifier +Bundle-Version: 16.0.0.v20250902-1229-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Require-Bundle: org.junit, diff --git a/com.avaloq.tools.ddk.check.ui.test/pom.xml b/com.avaloq.tools.ddk.check.ui.test/pom.xml index 067910786..1d132bdde 100644 --- a/com.avaloq.tools.ddk.check.ui.test/pom.xml +++ b/com.avaloq.tools.ddk.check.ui.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0-SNAPSHOT + 16.0.0.v20250902-1229-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.check.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.ui/META-INF/MANIFEST.MF index 7d56920e6..b780f0c9f 100644 --- a/com.avaloq.tools.ddk.check.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.ui Bundle-SymbolicName: com.avaloq.tools.ddk.check.ui;singleton:=true -Bundle-Version: 16.0.0.qualifier +Bundle-Version: 16.0.0.v20250902-1229-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-Activator: com.avaloq.tools.ddk.check.ui.internal.Activator diff --git a/com.avaloq.tools.ddk.check.ui/pom.xml b/com.avaloq.tools.ddk.check.ui/pom.xml index fa61bd08b..6f6066797 100644 --- a/com.avaloq.tools.ddk.check.ui/pom.xml +++ b/com.avaloq.tools.ddk.check.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0-SNAPSHOT + 16.0.0.v20250902-1229-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.checkcfg.core.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.checkcfg.core.test/META-INF/MANIFEST.MF index a61a24dbd..9fc6e513a 100644 --- a/com.avaloq.tools.ddk.checkcfg.core.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.checkcfg.core.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.checkcfg.core.test Bundle-Vendor: Avaloq Group AG -Bundle-Version: 16.0.0.qualifier +Bundle-Version: 16.0.0.v20250902-1229-REL Bundle-SymbolicName: com.avaloq.tools.ddk.checkcfg.core.test; singleton:=true Bundle-ActivationPolicy: lazy Require-Bundle: com.avaloq.tools.ddk.test.core, diff --git a/com.avaloq.tools.ddk.checkcfg.core.test/pom.xml b/com.avaloq.tools.ddk.checkcfg.core.test/pom.xml index 0eb8facea..5e6e1bead 100644 --- a/com.avaloq.tools.ddk.checkcfg.core.test/pom.xml +++ b/com.avaloq.tools.ddk.checkcfg.core.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0-SNAPSHOT + 16.0.0.v20250902-1229-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.checkcfg.core/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.checkcfg.core/META-INF/MANIFEST.MF index 786a10b33..59fdb1015 100644 --- a/com.avaloq.tools.ddk.checkcfg.core/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.checkcfg.core/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.checkcfg.core Bundle-Vendor: Avaloq Group AG -Bundle-Version: 16.0.0.qualifier +Bundle-Version: 16.0.0.v20250902-1229-REL Bundle-SymbolicName: com.avaloq.tools.ddk.checkcfg.core; singleton:=true Bundle-ActivationPolicy: lazy Bundle-RequiredExecutionEnvironment: JavaSE-21 diff --git a/com.avaloq.tools.ddk.checkcfg.core/pom.xml b/com.avaloq.tools.ddk.checkcfg.core/pom.xml index 7d55dc020..495a46802 100644 --- a/com.avaloq.tools.ddk.checkcfg.core/pom.xml +++ b/com.avaloq.tools.ddk.checkcfg.core/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0-SNAPSHOT + 16.0.0.v20250902-1229-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.checkcfg.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.checkcfg.ide/META-INF/MANIFEST.MF index c6415c05e..37284f761 100644 --- a/com.avaloq.tools.ddk.checkcfg.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.checkcfg.ide/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.checkcfg.ide Bundle-SymbolicName: com.avaloq.tools.ddk.checkcfg.ide;singleton:=true -Bundle-Version: 16.0.0.qualifier +Bundle-Version: 16.0.0.v20250902-1229-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.checkcfg.ide/pom.xml b/com.avaloq.tools.ddk.checkcfg.ide/pom.xml index 50635c53c..4c02ce4fa 100644 --- a/com.avaloq.tools.ddk.checkcfg.ide/pom.xml +++ b/com.avaloq.tools.ddk.checkcfg.ide/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0-SNAPSHOT + 16.0.0.v20250902-1229-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.checkcfg.ui.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.checkcfg.ui.test/META-INF/MANIFEST.MF index 432c80719..7982c967d 100644 --- a/com.avaloq.tools.ddk.checkcfg.ui.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.checkcfg.ui.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.checkcfg.ui.test Bundle-SymbolicName: com.avaloq.tools.ddk.checkcfg.ui.test -Bundle-Version: 16.0.0.qualifier +Bundle-Version: 16.0.0.v20250902-1229-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Export-Package: com.avaloq.tools.ddk.checkcfg.ui.test diff --git a/com.avaloq.tools.ddk.checkcfg.ui.test/pom.xml b/com.avaloq.tools.ddk.checkcfg.ui.test/pom.xml index dc799ec01..3a8ff5be5 100644 --- a/com.avaloq.tools.ddk.checkcfg.ui.test/pom.xml +++ b/com.avaloq.tools.ddk.checkcfg.ui.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0-SNAPSHOT + 16.0.0.v20250902-1229-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.checkcfg.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.checkcfg.ui/META-INF/MANIFEST.MF index 0016684c3..56858b97b 100644 --- a/com.avaloq.tools.ddk.checkcfg.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.checkcfg.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.checkcfg.ui Bundle-SymbolicName: com.avaloq.tools.ddk.checkcfg.ui;singleton:=true -Bundle-Version: 16.0.0.qualifier +Bundle-Version: 16.0.0.v20250902-1229-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-Activator: com.avaloq.tools.ddk.checkcfg.ui.internal.Activator diff --git a/com.avaloq.tools.ddk.checkcfg.ui/pom.xml b/com.avaloq.tools.ddk.checkcfg.ui/pom.xml index 7d3411b0b..ef584f31a 100644 --- a/com.avaloq.tools.ddk.checkcfg.ui/pom.xml +++ b/com.avaloq.tools.ddk.checkcfg.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0-SNAPSHOT + 16.0.0.v20250902-1229-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.feature/feature.xml b/com.avaloq.tools.ddk.feature/feature.xml index fd43d442e..baed05354 100644 --- a/com.avaloq.tools.ddk.feature/feature.xml +++ b/com.avaloq.tools.ddk.feature/feature.xml @@ -2,7 +2,7 @@ diff --git a/com.avaloq.tools.ddk.feature/pom.xml b/com.avaloq.tools.ddk.feature/pom.xml index 50553f783..cca68d8cb 100644 --- a/com.avaloq.tools.ddk.feature/pom.xml +++ b/com.avaloq.tools.ddk.feature/pom.xml @@ -4,7 +4,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0-SNAPSHOT + 16.0.0.v20250902-1229-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.runtime.feature/feature.xml b/com.avaloq.tools.ddk.runtime.feature/feature.xml index dc6246b04..e7af787e9 100644 --- a/com.avaloq.tools.ddk.runtime.feature/feature.xml +++ b/com.avaloq.tools.ddk.runtime.feature/feature.xml @@ -2,7 +2,7 @@ diff --git a/com.avaloq.tools.ddk.runtime.feature/pom.xml b/com.avaloq.tools.ddk.runtime.feature/pom.xml index 573f0aec0..05cd009d7 100644 --- a/com.avaloq.tools.ddk.runtime.feature/pom.xml +++ b/com.avaloq.tools.ddk.runtime.feature/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0-SNAPSHOT + 16.0.0.v20250902-1229-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.runtime.source.feature/feature.xml b/com.avaloq.tools.ddk.runtime.source.feature/feature.xml index 1ed7ae1c6..f78027825 100644 --- a/com.avaloq.tools.ddk.runtime.source.feature/feature.xml +++ b/com.avaloq.tools.ddk.runtime.source.feature/feature.xml @@ -2,7 +2,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0-SNAPSHOT + 16.0.0.v20250902-1229-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.sample.helloworld.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.sample.helloworld.ide/META-INF/MANIFEST.MF index 01c9c9eef..b6393126c 100644 --- a/com.avaloq.tools.ddk.sample.helloworld.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.sample.helloworld.ide/META-INF/MANIFEST.MF @@ -3,7 +3,7 @@ Automatic-Module-Name: com.avaloq.tools.ddk.sample.helloworld.ide Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.sample.helloworld.ide Bundle-Vendor: Avaloq Group AG -Bundle-Version: 16.0.0.qualifier +Bundle-Version: 16.0.0.v20250902-1229-REL Bundle-SymbolicName: com.avaloq.tools.ddk.sample.helloworld.ide;singleton:=true Bundle-ActivationPolicy: lazy Require-Bundle: com.avaloq.tools.ddk.sample.helloworld, diff --git a/com.avaloq.tools.ddk.sample.helloworld.ide/pom.xml b/com.avaloq.tools.ddk.sample.helloworld.ide/pom.xml index 3b38e2f28..7034706ea 100644 --- a/com.avaloq.tools.ddk.sample.helloworld.ide/pom.xml +++ b/com.avaloq.tools.ddk.sample.helloworld.ide/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0-SNAPSHOT + 16.0.0.v20250902-1229-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.sample.helloworld.ui.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.sample.helloworld.ui.test/META-INF/MANIFEST.MF index d6b62ff9a..c507ab18e 100644 --- a/com.avaloq.tools.ddk.sample.helloworld.ui.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.sample.helloworld.ui.test/META-INF/MANIFEST.MF @@ -3,7 +3,7 @@ Automatic-Module-Name: com.avaloq.tools.ddk.sample.helloworld.ui.test Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.sample.helloworld.ui.test Bundle-Vendor: Avaloq Group AG -Bundle-Version: 16.0.0.qualifier +Bundle-Version: 16.0.0.v20250902-1229-REL Bundle-SymbolicName: com.avaloq.tools.ddk.sample.helloworld.ui.test;singleton:=true Bundle-ActivationPolicy: lazy Require-Bundle: com.avaloq.tools.ddk.sample.helloworld, diff --git a/com.avaloq.tools.ddk.sample.helloworld.ui.test/pom.xml b/com.avaloq.tools.ddk.sample.helloworld.ui.test/pom.xml index 979fdd649..9fda99f93 100644 --- a/com.avaloq.tools.ddk.sample.helloworld.ui.test/pom.xml +++ b/com.avaloq.tools.ddk.sample.helloworld.ui.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0-SNAPSHOT + 16.0.0.v20250902-1229-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.sample.helloworld.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.sample.helloworld.ui/META-INF/MANIFEST.MF index 91735a0a9..dbe0cbb30 100644 --- a/com.avaloq.tools.ddk.sample.helloworld.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.sample.helloworld.ui/META-INF/MANIFEST.MF @@ -3,7 +3,7 @@ Automatic-Module-Name: com.avaloq.tools.ddk.sample.helloworld.ui Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.sample.helloworld.ui Bundle-Vendor: Avaloq Group AG -Bundle-Version: 16.0.0.qualifier +Bundle-Version: 16.0.0.v20250902-1229-REL Bundle-SymbolicName: com.avaloq.tools.ddk.sample.helloworld.ui;singleton:=true Bundle-ActivationPolicy: lazy Require-Bundle: com.avaloq.tools.ddk.sample.helloworld, diff --git a/com.avaloq.tools.ddk.sample.helloworld.ui/pom.xml b/com.avaloq.tools.ddk.sample.helloworld.ui/pom.xml index 631ddcfa4..10f94a9e9 100644 --- a/com.avaloq.tools.ddk.sample.helloworld.ui/pom.xml +++ b/com.avaloq.tools.ddk.sample.helloworld.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0-SNAPSHOT + 16.0.0.v20250902-1229-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.sample.helloworld/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.sample.helloworld/META-INF/MANIFEST.MF index 9ba409317..b4a5b164b 100644 --- a/com.avaloq.tools.ddk.sample.helloworld/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.sample.helloworld/META-INF/MANIFEST.MF @@ -3,7 +3,7 @@ Automatic-Module-Name: com.avaloq.tools.ddk.sample.helloworld Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.sample.helloworld Bundle-Vendor: Avaloq Group AG -Bundle-Version: 16.0.0.qualifier +Bundle-Version: 16.0.0.v20250902-1229-REL Bundle-SymbolicName: com.avaloq.tools.ddk.sample.helloworld;singleton:=true Bundle-ActivationPolicy: lazy Require-Bundle: org.eclipse.xtext, diff --git a/com.avaloq.tools.ddk.sample.helloworld/pom.xml b/com.avaloq.tools.ddk.sample.helloworld/pom.xml index 2a9c71217..8f756be1f 100644 --- a/com.avaloq.tools.ddk.sample.helloworld/pom.xml +++ b/com.avaloq.tools.ddk.sample.helloworld/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0-SNAPSHOT + 16.0.0.v20250902-1229-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.source.feature/feature.xml b/com.avaloq.tools.ddk.source.feature/feature.xml index e21b37b78..44ff70768 100644 --- a/com.avaloq.tools.ddk.source.feature/feature.xml +++ b/com.avaloq.tools.ddk.source.feature/feature.xml @@ -2,7 +2,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0-SNAPSHOT + 16.0.0.v20250902-1229-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.test.core/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.test.core/META-INF/MANIFEST.MF index 46ffdfc74..a7fca7927 100644 --- a/com.avaloq.tools.ddk.test.core/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.test.core/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.test.core Bundle-SymbolicName: com.avaloq.tools.ddk.test.core;singleton:=true -Bundle-Version: 16.0.0.qualifier +Bundle-Version: 16.0.0.v20250902-1229-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.test.core/pom.xml b/com.avaloq.tools.ddk.test.core/pom.xml index 2ab97bd0a..bd2152529 100644 --- a/com.avaloq.tools.ddk.test.core/pom.xml +++ b/com.avaloq.tools.ddk.test.core/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0-SNAPSHOT + 16.0.0.v20250902-1229-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.test.ui.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.test.ui.test/META-INF/MANIFEST.MF index 92f2cbaea..6500576ba 100644 --- a/com.avaloq.tools.ddk.test.ui.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.test.ui.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.test.ui.test Bundle-SymbolicName: com.avaloq.tools.ddk.test.ui.test;singleton:=true -Bundle-Version: 16.0.0.qualifier +Bundle-Version: 16.0.0.v20250902-1229-REL Bundle-ActivationPolicy: lazy Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 diff --git a/com.avaloq.tools.ddk.test.ui.test/pom.xml b/com.avaloq.tools.ddk.test.ui.test/pom.xml index 948db2897..37e5d027d 100644 --- a/com.avaloq.tools.ddk.test.ui.test/pom.xml +++ b/com.avaloq.tools.ddk.test.ui.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0-SNAPSHOT + 16.0.0.v20250902-1229-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.test.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.test.ui/META-INF/MANIFEST.MF index 6b081804a..6c8636aba 100644 --- a/com.avaloq.tools.ddk.test.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.test.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.test.ui Bundle-SymbolicName: com.avaloq.tools.ddk.test.ui;singleton:=true -Bundle-Version: 16.0.0.qualifier +Bundle-Version: 16.0.0.v20250902-1229-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-Activator: com.avaloq.tools.ddk.test.ui.Activator diff --git a/com.avaloq.tools.ddk.test.ui/pom.xml b/com.avaloq.tools.ddk.test.ui/pom.xml index fd4419663..3dd30e33f 100644 --- a/com.avaloq.tools.ddk.test.ui/pom.xml +++ b/com.avaloq.tools.ddk.test.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0-SNAPSHOT + 16.0.0.v20250902-1229-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.typesystem.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.typesystem.test/META-INF/MANIFEST.MF index 4d40aa588..50d4cd718 100644 --- a/com.avaloq.tools.ddk.typesystem.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.typesystem.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.typesystem.test Bundle-SymbolicName: com.avaloq.tools.ddk.typesystem.test;singleton:=true -Bundle-Version: 16.0.0.qualifier +Bundle-Version: 16.0.0.v20250902-1229-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.typesystem.test/pom.xml b/com.avaloq.tools.ddk.typesystem.test/pom.xml index 73d075ca8..cd326b516 100644 --- a/com.avaloq.tools.ddk.typesystem.test/pom.xml +++ b/com.avaloq.tools.ddk.typesystem.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0-SNAPSHOT + 16.0.0.v20250902-1229-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.typesystem/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.typesystem/META-INF/MANIFEST.MF index 7fea6fd21..54764a9bb 100644 --- a/com.avaloq.tools.ddk.typesystem/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.typesystem/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.typesystem Bundle-SymbolicName: com.avaloq.tools.ddk.typesystem;singleton:=true -Bundle-Version: 16.0.0.qualifier +Bundle-Version: 16.0.0.v20250902-1229-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Import-Package: org.apache.logging.log4j diff --git a/com.avaloq.tools.ddk.typesystem/pom.xml b/com.avaloq.tools.ddk.typesystem/pom.xml index c1c0d1537..f6c7bcbff 100644 --- a/com.avaloq.tools.ddk.typesystem/pom.xml +++ b/com.avaloq.tools.ddk.typesystem/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0-SNAPSHOT + 16.0.0.v20250902-1229-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.workflow/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.workflow/META-INF/MANIFEST.MF index de63bcebd..250a21ea6 100644 --- a/com.avaloq.tools.ddk.workflow/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.workflow/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.workflow Bundle-SymbolicName: com.avaloq.tools.ddk.workflow -Bundle-Version: 16.0.0.qualifier +Bundle-Version: 16.0.0.v20250902-1229-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Require-Bundle: com.avaloq.tools.ddk.xtext, diff --git a/com.avaloq.tools.ddk.workflow/pom.xml b/com.avaloq.tools.ddk.workflow/pom.xml index 16210a107..00e1bce04 100644 --- a/com.avaloq.tools.ddk.workflow/pom.xml +++ b/com.avaloq.tools.ddk.workflow/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0-SNAPSHOT + 16.0.0.v20250902-1229-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.builder.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.builder.ui/META-INF/MANIFEST.MF index 755c8c852..ada8cf946 100644 --- a/com.avaloq.tools.ddk.xtext.builder.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.builder.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.builder.ui Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.builder.ui;singleton:=true -Bundle-Version: 16.0.0.qualifier +Bundle-Version: 16.0.0.v20250902-1229-REL Bundle-Vendor: Avaloq Group AG Require-Bundle: org.eclipse.core.runtime, org.eclipse.xtext, diff --git a/com.avaloq.tools.ddk.xtext.builder.ui/pom.xml b/com.avaloq.tools.ddk.xtext.builder.ui/pom.xml index fb0f50c44..9aed080d2 100644 --- a/com.avaloq.tools.ddk.xtext.builder.ui/pom.xml +++ b/com.avaloq.tools.ddk.xtext.builder.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0-SNAPSHOT + 16.0.0.v20250902-1229-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.builder/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.builder/META-INF/MANIFEST.MF index 8545d20f5..99a4941f2 100644 --- a/com.avaloq.tools.ddk.xtext.builder/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.builder/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.builder Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.builder;singleton:=true -Bundle-Version: 16.0.0.qualifier +Bundle-Version: 16.0.0.v20250902-1229-REL Bundle-Vendor: Avaloq Group AG Require-Bundle: org.eclipse.xtext.builder, org.eclipse.xtext.ui, diff --git a/com.avaloq.tools.ddk.xtext.builder/pom.xml b/com.avaloq.tools.ddk.xtext.builder/pom.xml index a59594056..e16e4cced 100644 --- a/com.avaloq.tools.ddk.xtext.builder/pom.xml +++ b/com.avaloq.tools.ddk.xtext.builder/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0-SNAPSHOT + 16.0.0.v20250902-1229-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.check.generator/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.check.generator/META-INF/MANIFEST.MF index 93a4ef367..4bfc09444 100644 --- a/com.avaloq.tools.ddk.xtext.check.generator/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.check.generator/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.check.generator Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.check.generator;singleton:=true -Bundle-Version: 16.0.0.qualifier +Bundle-Version: 16.0.0.v20250902-1229-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.check.generator/pom.xml b/com.avaloq.tools.ddk.xtext.check.generator/pom.xml index 202235976..42f1adb7a 100644 --- a/com.avaloq.tools.ddk.xtext.check.generator/pom.xml +++ b/com.avaloq.tools.ddk.xtext.check.generator/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0-SNAPSHOT + 16.0.0.v20250902-1229-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.common.types.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.common.types.ui/META-INF/MANIFEST.MF index 87c9bd74d..810326ced 100644 --- a/com.avaloq.tools.ddk.xtext.common.types.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.common.types.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.common.types.ui Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.common.types.ui;singleton:=true -Bundle-Version: 16.0.0.qualifier +Bundle-Version: 16.0.0.v20250902-1229-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.common.types.ui/pom.xml b/com.avaloq.tools.ddk.xtext.common.types.ui/pom.xml index 0b7428e86..511306302 100644 --- a/com.avaloq.tools.ddk.xtext.common.types.ui/pom.xml +++ b/com.avaloq.tools.ddk.xtext.common.types.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0-SNAPSHOT + 16.0.0.v20250902-1229-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.common.types/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.common.types/META-INF/MANIFEST.MF index 5a8e1af87..512b7a18c 100644 --- a/com.avaloq.tools.ddk.xtext.common.types/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.common.types/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.common.types Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.common.types;singleton:=true -Bundle-Version: 16.0.0.qualifier +Bundle-Version: 16.0.0.v20250902-1229-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.common.types/pom.xml b/com.avaloq.tools.ddk.xtext.common.types/pom.xml index 6e14d6af2..071673c50 100644 --- a/com.avaloq.tools.ddk.xtext.common.types/pom.xml +++ b/com.avaloq.tools.ddk.xtext.common.types/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0-SNAPSHOT + 16.0.0.v20250902-1229-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.common.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.common.ui/META-INF/MANIFEST.MF index 5fd59bd4d..fee014f70 100644 --- a/com.avaloq.tools.ddk.xtext.common.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.common.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.common.ui Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.common.ui;singleton:=true -Bundle-Version: 16.0.0.qualifier +Bundle-Version: 16.0.0.v20250902-1229-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Export-Package: com.avaloq.tools.ddk.xtext.common.ui.contentassist diff --git a/com.avaloq.tools.ddk.xtext.common.ui/pom.xml b/com.avaloq.tools.ddk.xtext.common.ui/pom.xml index 90529320c..0db267385 100644 --- a/com.avaloq.tools.ddk.xtext.common.ui/pom.xml +++ b/com.avaloq.tools.ddk.xtext.common.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0-SNAPSHOT + 16.0.0.v20250902-1229-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.xtext.export.generator/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.export.generator/META-INF/MANIFEST.MF index 8f813534c..6c3fde518 100644 --- a/com.avaloq.tools.ddk.xtext.export.generator/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.export.generator/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.export.generator Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.export.generator;singleton:=true -Bundle-Version: 16.0.0.qualifier +Bundle-Version: 16.0.0.v20250902-1229-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Require-Bundle: org.eclipse.xtext, diff --git a/com.avaloq.tools.ddk.xtext.export.generator/pom.xml b/com.avaloq.tools.ddk.xtext.export.generator/pom.xml index fab694ea8..885917ecc 100644 --- a/com.avaloq.tools.ddk.xtext.export.generator/pom.xml +++ b/com.avaloq.tools.ddk.xtext.export.generator/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0-SNAPSHOT + 16.0.0.v20250902-1229-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.export.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.export.ide/META-INF/MANIFEST.MF index 5a4d8fa4f..2b7636389 100644 --- a/com.avaloq.tools.ddk.xtext.export.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.export.ide/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.export.ide Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.export.ide;singleton:=true -Bundle-Version: 16.0.0.qualifier +Bundle-Version: 16.0.0.v20250902-1229-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.export.ide/pom.xml b/com.avaloq.tools.ddk.xtext.export.ide/pom.xml index a3d977cc0..6c57a0644 100644 --- a/com.avaloq.tools.ddk.xtext.export.ide/pom.xml +++ b/com.avaloq.tools.ddk.xtext.export.ide/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0-SNAPSHOT + 16.0.0.v20250902-1229-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.export.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.export.test/META-INF/MANIFEST.MF index eaa7580e1..f4ab3aa33 100644 --- a/com.avaloq.tools.ddk.xtext.export.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.export.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.export.test Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.export.test;singleton:=true -Bundle-Version: 16.0.0.qualifier +Bundle-Version: 16.0.0.v20250902-1229-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.export.test/pom.xml b/com.avaloq.tools.ddk.xtext.export.test/pom.xml index ecd5bc412..15b1391de 100644 --- a/com.avaloq.tools.ddk.xtext.export.test/pom.xml +++ b/com.avaloq.tools.ddk.xtext.export.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0-SNAPSHOT + 16.0.0.v20250902-1229-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.xtext.export.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.export.ui/META-INF/MANIFEST.MF index 8ed503546..7f24dcffd 100644 --- a/com.avaloq.tools.ddk.xtext.export.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.export.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.export.ui Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.export.ui;singleton:=true -Bundle-Version: 16.0.0.qualifier +Bundle-Version: 16.0.0.v20250902-1229-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-Activator: com.avaloq.tools.ddk.xtext.export.ui.internal.ExportActivator diff --git a/com.avaloq.tools.ddk.xtext.export.ui/pom.xml b/com.avaloq.tools.ddk.xtext.export.ui/pom.xml index 750bf2ffc..9731f8149 100644 --- a/com.avaloq.tools.ddk.xtext.export.ui/pom.xml +++ b/com.avaloq.tools.ddk.xtext.export.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0-SNAPSHOT + 16.0.0.v20250902-1229-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.export/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.export/META-INF/MANIFEST.MF index c4dddefe1..7fad2e85e 100644 --- a/com.avaloq.tools.ddk.xtext.export/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.export/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.export Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.export;singleton:=true -Bundle-Version: 16.0.0.qualifier +Bundle-Version: 16.0.0.v20250902-1229-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.export/pom.xml b/com.avaloq.tools.ddk.xtext.export/pom.xml index 1957b7e14..6ae3a0568 100644 --- a/com.avaloq.tools.ddk.xtext.export/pom.xml +++ b/com.avaloq.tools.ddk.xtext.export/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0-SNAPSHOT + 16.0.0.v20250902-1229-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.expression.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.expression.ide/META-INF/MANIFEST.MF index 9f1aa8909..07e756f0e 100644 --- a/com.avaloq.tools.ddk.xtext.expression.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.expression.ide/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.expression.ide Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.expression.ide;singleton:=true -Bundle-Version: 16.0.0.qualifier +Bundle-Version: 16.0.0.v20250902-1229-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.expression.ide/pom.xml b/com.avaloq.tools.ddk.xtext.expression.ide/pom.xml index 78d2fb5e0..ec54b2a64 100644 --- a/com.avaloq.tools.ddk.xtext.expression.ide/pom.xml +++ b/com.avaloq.tools.ddk.xtext.expression.ide/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0-SNAPSHOT + 16.0.0.v20250902-1229-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.expression.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.expression.ui/META-INF/MANIFEST.MF index 361e68a23..089c563e9 100644 --- a/com.avaloq.tools.ddk.xtext.expression.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.expression.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.expression.ui Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.expression.ui;singleton:=true -Bundle-Version: 16.0.0.qualifier +Bundle-Version: 16.0.0.v20250902-1229-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-Activator: com.avaloq.tools.ddk.xtext.expression.ui.internal.Activator diff --git a/com.avaloq.tools.ddk.xtext.expression.ui/pom.xml b/com.avaloq.tools.ddk.xtext.expression.ui/pom.xml index d47b26d3b..a9d5c6a98 100644 --- a/com.avaloq.tools.ddk.xtext.expression.ui/pom.xml +++ b/com.avaloq.tools.ddk.xtext.expression.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0-SNAPSHOT + 16.0.0.v20250902-1229-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.expression/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.expression/META-INF/MANIFEST.MF index 8a898b8ce..568609c0f 100644 --- a/com.avaloq.tools.ddk.xtext.expression/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.expression/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.expression Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.expression;singleton:=true -Bundle-Version: 16.0.0.qualifier +Bundle-Version: 16.0.0.v20250902-1229-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Require-Bundle: org.eclipse.xtext, diff --git a/com.avaloq.tools.ddk.xtext.expression/pom.xml b/com.avaloq.tools.ddk.xtext.expression/pom.xml index c3fde9840..65cde879f 100644 --- a/com.avaloq.tools.ddk.xtext.expression/pom.xml +++ b/com.avaloq.tools.ddk.xtext.expression/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0-SNAPSHOT + 16.0.0.v20250902-1229-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.format.generator/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.format.generator/META-INF/MANIFEST.MF index af75de810..7ea9ce1bb 100644 --- a/com.avaloq.tools.ddk.xtext.format.generator/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.format.generator/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.format.generator Bundle-Vendor: Avaloq Group AG -Bundle-Version: 16.0.0.qualifier +Bundle-Version: 16.0.0.v20250902-1229-REL Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.format.generator;singleton:=true Require-Bundle: com.avaloq.tools.ddk.xtext.format;visibility:=reexport, org.eclipse.xpand, diff --git a/com.avaloq.tools.ddk.xtext.format.generator/pom.xml b/com.avaloq.tools.ddk.xtext.format.generator/pom.xml index 1a18ac665..9cdcf75ec 100644 --- a/com.avaloq.tools.ddk.xtext.format.generator/pom.xml +++ b/com.avaloq.tools.ddk.xtext.format.generator/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0-SNAPSHOT + 16.0.0.v20250902-1229-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.format.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.format.ide/META-INF/MANIFEST.MF index fa42134c3..ffb4583fb 100644 --- a/com.avaloq.tools.ddk.xtext.format.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.format.ide/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.format.ide Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.format.ide;singleton:=true -Bundle-Version: 16.0.0.qualifier +Bundle-Version: 16.0.0.v20250902-1229-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.format.ide/pom.xml b/com.avaloq.tools.ddk.xtext.format.ide/pom.xml index 7195fbe11..671f3ed31 100644 --- a/com.avaloq.tools.ddk.xtext.format.ide/pom.xml +++ b/com.avaloq.tools.ddk.xtext.format.ide/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0-SNAPSHOT + 16.0.0.v20250902-1229-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.format.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.format.test/META-INF/MANIFEST.MF index 7b994030f..5feb95897 100644 --- a/com.avaloq.tools.ddk.xtext.format.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.format.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.format.test Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.format.test;singleton:=true -Bundle-Version: 16.0.0.qualifier +Bundle-Version: 16.0.0.v20250902-1229-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.format.test/pom.xml b/com.avaloq.tools.ddk.xtext.format.test/pom.xml index 84313d537..12bd4ffab 100644 --- a/com.avaloq.tools.ddk.xtext.format.test/pom.xml +++ b/com.avaloq.tools.ddk.xtext.format.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0-SNAPSHOT + 16.0.0.v20250902-1229-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.xtext.format.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.format.ui/META-INF/MANIFEST.MF index 1b6e75114..d724696e0 100644 --- a/com.avaloq.tools.ddk.xtext.format.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.format.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.format.ui Bundle-Vendor: Avaloq Group AG -Bundle-Version: 16.0.0.qualifier +Bundle-Version: 16.0.0.v20250902-1229-REL Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.format.ui;singleton:=true Bundle-ActivationPolicy: lazy Require-Bundle: com.avaloq.tools.ddk.xtext.format;visibility:=reexport, diff --git a/com.avaloq.tools.ddk.xtext.format.ui/pom.xml b/com.avaloq.tools.ddk.xtext.format.ui/pom.xml index 0616a9e60..d60b0db61 100644 --- a/com.avaloq.tools.ddk.xtext.format.ui/pom.xml +++ b/com.avaloq.tools.ddk.xtext.format.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0-SNAPSHOT + 16.0.0.v20250902-1229-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.format/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.format/META-INF/MANIFEST.MF index 0368ecd11..34c1a9dee 100644 --- a/com.avaloq.tools.ddk.xtext.format/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.format/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.format Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.format;singleton:=true -Bundle-Version: 16.0.0.qualifier +Bundle-Version: 16.0.0.v20250902-1229-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.format/pom.xml b/com.avaloq.tools.ddk.xtext.format/pom.xml index 38c61c704..bbf7cefdd 100644 --- a/com.avaloq.tools.ddk.xtext.format/pom.xml +++ b/com.avaloq.tools.ddk.xtext.format/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0-SNAPSHOT + 16.0.0.v20250902-1229-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.generator.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.generator.test/META-INF/MANIFEST.MF index 87503dd7f..a53dc01ea 100644 --- a/com.avaloq.tools.ddk.xtext.generator.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.generator.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.generator.test Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.generator.test;singleton:=true -Bundle-Version: 16.0.0.qualifier +Bundle-Version: 16.0.0.v20250902-1229-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.generator.test/pom.xml b/com.avaloq.tools.ddk.xtext.generator.test/pom.xml index 03246b098..2e262d8ef 100644 --- a/com.avaloq.tools.ddk.xtext.generator.test/pom.xml +++ b/com.avaloq.tools.ddk.xtext.generator.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0-SNAPSHOT + 16.0.0.v20250902-1229-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.xtext.generator/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.generator/META-INF/MANIFEST.MF index 9b19e4d63..ab30eff95 100644 --- a/com.avaloq.tools.ddk.xtext.generator/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.generator/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.generator Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.generator;singleton:=true -Bundle-Version: 16.0.0.qualifier +Bundle-Version: 16.0.0.v20250902-1229-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Require-Bundle: org.eclipse.jface, diff --git a/com.avaloq.tools.ddk.xtext.generator/pom.xml b/com.avaloq.tools.ddk.xtext.generator/pom.xml index 9eb28cf18..d9ee8137c 100644 --- a/com.avaloq.tools.ddk.xtext.generator/pom.xml +++ b/com.avaloq.tools.ddk.xtext.generator/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0-SNAPSHOT + 16.0.0.v20250902-1229-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.ide/META-INF/MANIFEST.MF index 189d81500..eefa48e8f 100644 --- a/com.avaloq.tools.ddk.xtext.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.ide/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.ide Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.ide;singleton:=true -Bundle-Version: 16.0.0.qualifier +Bundle-Version: 16.0.0.v20250902-1229-REL Bundle-Vendor: Avaloq Group AG Require-Bundle: org.eclipse.lsp4j, org.eclipse.xtext.ide, diff --git a/com.avaloq.tools.ddk.xtext.ide/pom.xml b/com.avaloq.tools.ddk.xtext.ide/pom.xml index 809bafd67..8879e115b 100644 --- a/com.avaloq.tools.ddk.xtext.ide/pom.xml +++ b/com.avaloq.tools.ddk.xtext.ide/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0-SNAPSHOT + 16.0.0.v20250902-1229-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.scope.generator/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.scope.generator/META-INF/MANIFEST.MF index ae1f0d159..ca3d3a763 100644 --- a/com.avaloq.tools.ddk.xtext.scope.generator/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.scope.generator/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.scope.generator Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.scope.generator;singleton:=true -Bundle-Version: 16.0.0.qualifier +Bundle-Version: 16.0.0.v20250902-1229-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Require-Bundle: com.avaloq.tools.ddk.xtext.scope;visibility:=reexport, diff --git a/com.avaloq.tools.ddk.xtext.scope.generator/pom.xml b/com.avaloq.tools.ddk.xtext.scope.generator/pom.xml index 125e7c530..92134aac4 100644 --- a/com.avaloq.tools.ddk.xtext.scope.generator/pom.xml +++ b/com.avaloq.tools.ddk.xtext.scope.generator/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0-SNAPSHOT + 16.0.0.v20250902-1229-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.scope.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.scope.ide/META-INF/MANIFEST.MF index c9cce04ae..a4966d7bb 100644 --- a/com.avaloq.tools.ddk.xtext.scope.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.scope.ide/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.scope.ide Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.scope.ide;singleton:=true -Bundle-Version: 16.0.0.qualifier +Bundle-Version: 16.0.0.v20250902-1229-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.scope.ide/pom.xml b/com.avaloq.tools.ddk.xtext.scope.ide/pom.xml index 7493b442b..96196cfd3 100644 --- a/com.avaloq.tools.ddk.xtext.scope.ide/pom.xml +++ b/com.avaloq.tools.ddk.xtext.scope.ide/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0-SNAPSHOT + 16.0.0.v20250902-1229-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.scope.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.scope.ui/META-INF/MANIFEST.MF index ebfc9d88a..2b8448d45 100644 --- a/com.avaloq.tools.ddk.xtext.scope.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.scope.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.scope.ui Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.scope.ui;singleton:=true -Bundle-Version: 16.0.0.qualifier +Bundle-Version: 16.0.0.v20250902-1229-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-Activator: com.avaloq.tools.ddk.xtext.scope.ui.internal.ScopeActivator diff --git a/com.avaloq.tools.ddk.xtext.scope.ui/pom.xml b/com.avaloq.tools.ddk.xtext.scope.ui/pom.xml index 50786d72e..b8123f47c 100644 --- a/com.avaloq.tools.ddk.xtext.scope.ui/pom.xml +++ b/com.avaloq.tools.ddk.xtext.scope.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0-SNAPSHOT + 16.0.0.v20250902-1229-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.scope/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.scope/META-INF/MANIFEST.MF index ed742fd10..5f26992d5 100644 --- a/com.avaloq.tools.ddk.xtext.scope/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.scope/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.scope Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.scope;singleton:=true -Bundle-Version: 16.0.0.qualifier +Bundle-Version: 16.0.0.v20250902-1229-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Require-Bundle: org.eclipse.xtext, diff --git a/com.avaloq.tools.ddk.xtext.scope/pom.xml b/com.avaloq.tools.ddk.xtext.scope/pom.xml index 141716c4f..5e47150d8 100644 --- a/com.avaloq.tools.ddk.xtext.scope/pom.xml +++ b/com.avaloq.tools.ddk.xtext.scope/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0-SNAPSHOT + 16.0.0.v20250902-1229-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.test.core/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.test.core/META-INF/MANIFEST.MF index e79d4d66e..24a8f1dfc 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.test.core/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.test.core Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.test.core;singleton:=true -Bundle-Version: 16.0.0.qualifier +Bundle-Version: 16.0.0.v20250902-1229-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Require-Bundle: com.avaloq.tools.ddk.xtext, diff --git a/com.avaloq.tools.ddk.xtext.test.core/pom.xml b/com.avaloq.tools.ddk.xtext.test.core/pom.xml index 00b0d3f6c..695a8771a 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/pom.xml +++ b/com.avaloq.tools.ddk.xtext.test.core/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0-SNAPSHOT + 16.0.0.v20250902-1229-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.xtext.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.test/META-INF/MANIFEST.MF index 57e6a48b3..7d5e84707 100644 --- a/com.avaloq.tools.ddk.xtext.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.test Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.test;singleton:=true -Bundle-Version: 16.0.0.qualifier +Bundle-Version: 16.0.0.v20250902-1229-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.test/pom.xml b/com.avaloq.tools.ddk.xtext.test/pom.xml index 8d2d92254..d2f72d330 100644 --- a/com.avaloq.tools.ddk.xtext.test/pom.xml +++ b/com.avaloq.tools.ddk.xtext.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0-SNAPSHOT + 16.0.0.v20250902-1229-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.xtext.ui.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.ui.test/META-INF/MANIFEST.MF index e07f1b279..9bb4af0bf 100644 --- a/com.avaloq.tools.ddk.xtext.ui.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.ui.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.ui.test Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.ui.test;singleton:=true -Bundle-Version: 16.0.0.qualifier +Bundle-Version: 16.0.0.v20250902-1229-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Require-Bundle: org.eclipse.xtext.ui, diff --git a/com.avaloq.tools.ddk.xtext.ui.test/pom.xml b/com.avaloq.tools.ddk.xtext.ui.test/pom.xml index 971259365..de6c3cb26 100644 --- a/com.avaloq.tools.ddk.xtext.ui.test/pom.xml +++ b/com.avaloq.tools.ddk.xtext.ui.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0-SNAPSHOT + 16.0.0.v20250902-1229-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.xtext.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.ui/META-INF/MANIFEST.MF index 474632b4e..2c2a517f9 100644 --- a/com.avaloq.tools.ddk.xtext.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.ui Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.ui;singleton:=true -Bundle-Version: 16.0.0.qualifier +Bundle-Version: 16.0.0.v20250902-1229-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.ui/pom.xml b/com.avaloq.tools.ddk.xtext.ui/pom.xml index 5ac5a82e7..5ee4fcb5e 100644 --- a/com.avaloq.tools.ddk.xtext.ui/pom.xml +++ b/com.avaloq.tools.ddk.xtext.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0-SNAPSHOT + 16.0.0.v20250902-1229-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.valid.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.valid.ide/META-INF/MANIFEST.MF index 744ae7bf8..11202895c 100644 --- a/com.avaloq.tools.ddk.xtext.valid.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.valid.ide/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.valid.ide Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.valid.ide;singleton:=true -Bundle-Version: 16.0.0.qualifier +Bundle-Version: 16.0.0.v20250902-1229-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.valid.ide/pom.xml b/com.avaloq.tools.ddk.xtext.valid.ide/pom.xml index f22d98d99..f386abd86 100644 --- a/com.avaloq.tools.ddk.xtext.valid.ide/pom.xml +++ b/com.avaloq.tools.ddk.xtext.valid.ide/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0-SNAPSHOT + 16.0.0.v20250902-1229-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.valid.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.valid.ui/META-INF/MANIFEST.MF index f2413179b..57e2c9f65 100644 --- a/com.avaloq.tools.ddk.xtext.valid.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.valid.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.valid.ui Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.valid.ui;singleton:=true -Bundle-Version: 16.0.0.qualifier +Bundle-Version: 16.0.0.v20250902-1229-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.valid.ui/pom.xml b/com.avaloq.tools.ddk.xtext.valid.ui/pom.xml index 9f5422bc1..11fdd512f 100644 --- a/com.avaloq.tools.ddk.xtext.valid.ui/pom.xml +++ b/com.avaloq.tools.ddk.xtext.valid.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0-SNAPSHOT + 16.0.0.v20250902-1229-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.xtext.valid/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.valid/META-INF/MANIFEST.MF index 2e50d35ea..6b442eb66 100644 --- a/com.avaloq.tools.ddk.xtext.valid/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.valid/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.valid Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.valid;singleton:=true -Bundle-Version: 16.0.0.qualifier +Bundle-Version: 16.0.0.v20250902-1229-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.valid/pom.xml b/com.avaloq.tools.ddk.xtext.valid/pom.xml index c73522695..07e4965fe 100644 --- a/com.avaloq.tools.ddk.xtext.valid/pom.xml +++ b/com.avaloq.tools.ddk.xtext.valid/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0-SNAPSHOT + 16.0.0.v20250902-1229-REL ../ddk-parent diff --git a/com.avaloq.tools.ddk.xtext/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext/META-INF/MANIFEST.MF index e5d218dbe..91f457388 100644 --- a/com.avaloq.tools.ddk.xtext/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext Bundle-SymbolicName: com.avaloq.tools.ddk.xtext;singleton:=true -Bundle-Version: 16.0.0.qualifier +Bundle-Version: 16.0.0.v20250902-1229-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext/pom.xml b/com.avaloq.tools.ddk.xtext/pom.xml index 926727aa3..1fd772bed 100644 --- a/com.avaloq.tools.ddk.xtext/pom.xml +++ b/com.avaloq.tools.ddk.xtext/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0-SNAPSHOT + 16.0.0.v20250902-1229-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk/META-INF/MANIFEST.MF index 7dd0d2ff5..5a1f9c98f 100644 --- a/com.avaloq.tools.ddk/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk Bundle-SymbolicName: com.avaloq.tools.ddk;singleton:=true -Bundle-Version: 16.0.0.qualifier +Bundle-Version: 16.0.0.v20250902-1229-REL Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk/pom.xml b/com.avaloq.tools.ddk/pom.xml index 9f438bb98..5ab224148 100644 --- a/com.avaloq.tools.ddk/pom.xml +++ b/com.avaloq.tools.ddk/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0-SNAPSHOT + 16.0.0.v20250902-1229-REL ../ddk-parent com.avaloq.tools.ddk diff --git a/ddk-parent/pom.xml b/ddk-parent/pom.xml index 053b7329b..4684f4d73 100644 --- a/ddk-parent/pom.xml +++ b/ddk-parent/pom.xml @@ -4,7 +4,7 @@ com.avaloq.tools.ddk ddk-parent - 16.0.0-SNAPSHOT + 16.0.0.v20250902-1229-REL pom diff --git a/ddk-repository/category.xml b/ddk-repository/category.xml index 7be7b3683..7b4308459 100644 --- a/ddk-repository/category.xml +++ b/ddk-repository/category.xml @@ -1,15 +1,15 @@ - + - + - + - + diff --git a/ddk-repository/pom.xml b/ddk-repository/pom.xml index f0a895ae1..e6929d187 100644 --- a/ddk-repository/pom.xml +++ b/ddk-repository/pom.xml @@ -4,7 +4,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0-SNAPSHOT + 16.0.0.v20250902-1229-REL ../ddk-parent diff --git a/ddk-target/pom.xml b/ddk-target/pom.xml index 1a4422d1a..6e2a62fc0 100644 --- a/ddk-target/pom.xml +++ b/ddk-target/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0-SNAPSHOT + 16.0.0.v20250902-1229-REL ../ddk-parent com.avaloq.tools.ddk From dbb07a62e73a7f0ca99ec3ea87084c38385cf6fe Mon Sep 17 00:00:00 2001 From: Jenkins Date: Tue, 2 Sep 2025 12:29:31 +0200 Subject: [PATCH 42/57] Next development version: 16.1.0-SNAPSHOT --- com.avaloq.tools.ddk.check.core.test/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.core.test/pom.xml | 2 +- com.avaloq.tools.ddk.check.core/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.core/pom.xml | 2 +- com.avaloq.tools.ddk.check.ide/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.ide/pom.xml | 2 +- com.avaloq.tools.ddk.check.lib/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.lib/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.runtime.core.test/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.runtime.core/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.runtime.ui/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.test.runtime.tests/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.test.runtime.ui/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.test.runtime/pom.xml | 2 +- com.avaloq.tools.ddk.check.ui.test/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.ui.test/pom.xml | 2 +- com.avaloq.tools.ddk.check.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.ui/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.checkcfg.core.test/pom.xml | 2 +- com.avaloq.tools.ddk.checkcfg.core/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.checkcfg.core/pom.xml | 2 +- com.avaloq.tools.ddk.checkcfg.ide/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.checkcfg.ide/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.checkcfg.ui.test/pom.xml | 2 +- com.avaloq.tools.ddk.checkcfg.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.checkcfg.ui/pom.xml | 2 +- com.avaloq.tools.ddk.feature/feature.xml | 2 +- com.avaloq.tools.ddk.feature/pom.xml | 2 +- com.avaloq.tools.ddk.runtime.feature/feature.xml | 2 +- com.avaloq.tools.ddk.runtime.feature/pom.xml | 2 +- com.avaloq.tools.ddk.runtime.source.feature/feature.xml | 2 +- com.avaloq.tools.ddk.runtime.source.feature/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.sample.helloworld.ide/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.sample.helloworld.ui.test/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.sample.helloworld.ui/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.sample.helloworld/pom.xml | 2 +- com.avaloq.tools.ddk.source.feature/feature.xml | 2 +- com.avaloq.tools.ddk.source.feature/pom.xml | 2 +- com.avaloq.tools.ddk.test.core/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.test.core/pom.xml | 2 +- com.avaloq.tools.ddk.test.ui.test/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.test.ui.test/pom.xml | 2 +- com.avaloq.tools.ddk.test.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.test.ui/pom.xml | 2 +- com.avaloq.tools.ddk.typesystem.test/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.typesystem.test/pom.xml | 2 +- com.avaloq.tools.ddk.typesystem/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.typesystem/pom.xml | 2 +- com.avaloq.tools.ddk.workflow/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.workflow/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.builder.ui/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.builder/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.builder/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.check.generator/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.common.types.ui/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.common.types/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.common.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.common.ui/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.export.generator/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.export.ide/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.export.test/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.export.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.export.ui/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.export/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.export/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.expression.ide/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.expression.ui/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.expression/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.format.generator/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.format.ide/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.format.test/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.format.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.format.ui/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.format/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.format/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.generator.test/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.generator/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.generator/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.ide/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.ide/pom.xml | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.scope.generator/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.scope.ide/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.scope.ide/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.scope.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.scope.ui/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.scope/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.scope/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.test.core/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.test.core/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.test/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.test/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.ui.test/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.ui.test/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.ui/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.valid.ide/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.valid.ide/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.valid.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.valid.ui/pom.xml | 2 +- com.avaloq.tools.ddk.xtext.valid/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.valid/pom.xml | 2 +- com.avaloq.tools.ddk.xtext/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext/pom.xml | 2 +- com.avaloq.tools.ddk/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk/pom.xml | 2 +- ddk-parent/pom.xml | 2 +- ddk-repository/category.xml | 8 ++++---- ddk-repository/pom.xml | 2 +- ddk-target/pom.xml | 2 +- 136 files changed, 139 insertions(+), 139 deletions(-) diff --git a/com.avaloq.tools.ddk.check.core.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.core.test/META-INF/MANIFEST.MF index bf729d901..a21552de1 100644 --- a/com.avaloq.tools.ddk.check.core.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.core.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.core.test Bundle-SymbolicName: com.avaloq.tools.ddk.check.core.test;singleton:=true -Bundle-Version: 16.0.0.v20250902-1229-REL +Bundle-Version: 16.1.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.check.core.test/pom.xml b/com.avaloq.tools.ddk.check.core.test/pom.xml index 22cdef316..11300b5be 100644 --- a/com.avaloq.tools.ddk.check.core.test/pom.xml +++ b/com.avaloq.tools.ddk.check.core.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0.v20250902-1229-REL + 16.1.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.check.core/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.core/META-INF/MANIFEST.MF index 820b80c90..ebb17a12d 100644 --- a/com.avaloq.tools.ddk.check.core/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.core/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.core Bundle-SymbolicName: com.avaloq.tools.ddk.check.core;singleton:=true -Bundle-Version: 16.0.0.v20250902-1229-REL +Bundle-Version: 16.1.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.check.core/pom.xml b/com.avaloq.tools.ddk.check.core/pom.xml index 610f1113a..aafce7d12 100644 --- a/com.avaloq.tools.ddk.check.core/pom.xml +++ b/com.avaloq.tools.ddk.check.core/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0.v20250902-1229-REL + 16.1.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.check.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.ide/META-INF/MANIFEST.MF index a5d5d1be0..f32365b18 100644 --- a/com.avaloq.tools.ddk.check.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.ide/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.ide Bundle-SymbolicName: com.avaloq.tools.ddk.check.ide;singleton:=true -Bundle-Version: 16.0.0.v20250902-1229-REL +Bundle-Version: 16.1.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.check.ide/pom.xml b/com.avaloq.tools.ddk.check.ide/pom.xml index ef2f6ae1a..3723c1e51 100644 --- a/com.avaloq.tools.ddk.check.ide/pom.xml +++ b/com.avaloq.tools.ddk.check.ide/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0.v20250902-1229-REL + 16.1.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.check.lib/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.lib/META-INF/MANIFEST.MF index 3a9c2953e..260788036 100644 --- a/com.avaloq.tools.ddk.check.lib/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.lib/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.lib Bundle-SymbolicName: com.avaloq.tools.ddk.check.lib -Bundle-Version: 16.0.0.v20250902-1229-REL +Bundle-Version: 16.1.0.qualifier Bundle-Vendor: Avaloq Group AG Require-Bundle: org.eclipse.core.runtime, org.eclipse.xtext, diff --git a/com.avaloq.tools.ddk.check.lib/pom.xml b/com.avaloq.tools.ddk.check.lib/pom.xml index 46fce7c7a..734ed26f7 100644 --- a/com.avaloq.tools.ddk.check.lib/pom.xml +++ b/com.avaloq.tools.ddk.check.lib/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0.v20250902-1229-REL + 16.1.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.check.runtime.core.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.runtime.core.test/META-INF/MANIFEST.MF index 2f74fc7c6..dd2617586 100644 --- a/com.avaloq.tools.ddk.check.runtime.core.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.runtime.core.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.runtime.core.test Bundle-SymbolicName: com.avaloq.tools.ddk.check.runtime.core.test;singleton:=true -Bundle-Version: 16.0.0.v20250902-1229-REL +Bundle-Version: 16.1.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Require-Bundle: org.eclipse.ui, diff --git a/com.avaloq.tools.ddk.check.runtime.core.test/pom.xml b/com.avaloq.tools.ddk.check.runtime.core.test/pom.xml index 3ea08a63c..9a76a8b05 100644 --- a/com.avaloq.tools.ddk.check.runtime.core.test/pom.xml +++ b/com.avaloq.tools.ddk.check.runtime.core.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0.v20250902-1229-REL + 16.1.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.check.runtime.core/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.runtime.core/META-INF/MANIFEST.MF index 1ce0421cd..53b03aed5 100644 --- a/com.avaloq.tools.ddk.check.runtime.core/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.runtime.core/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.runtime.core Bundle-SymbolicName: com.avaloq.tools.ddk.check.runtime.core;singleton:=true -Bundle-Version: 16.0.0.v20250902-1229-REL +Bundle-Version: 16.1.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Require-Bundle: org.eclipse.core.resources, diff --git a/com.avaloq.tools.ddk.check.runtime.core/pom.xml b/com.avaloq.tools.ddk.check.runtime.core/pom.xml index 796736357..bc4c9d855 100644 --- a/com.avaloq.tools.ddk.check.runtime.core/pom.xml +++ b/com.avaloq.tools.ddk.check.runtime.core/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0.v20250902-1229-REL + 16.1.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.check.runtime.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.runtime.ui/META-INF/MANIFEST.MF index 8c45ff229..216ce6264 100644 --- a/com.avaloq.tools.ddk.check.runtime.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.runtime.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.runtime.ui Bundle-SymbolicName: com.avaloq.tools.ddk.check.runtime.ui;singleton:=true -Bundle-Version: 16.0.0.v20250902-1229-REL +Bundle-Version: 16.1.0.qualifier Bundle-Activator: com.avaloq.tools.ddk.check.runtime.ui.internal.Activator Bundle-Vendor: Avaloq Group AG Require-Bundle: org.eclipse.ui, diff --git a/com.avaloq.tools.ddk.check.runtime.ui/pom.xml b/com.avaloq.tools.ddk.check.runtime.ui/pom.xml index 5fd9c4516..7c005f570 100644 --- a/com.avaloq.tools.ddk.check.runtime.ui/pom.xml +++ b/com.avaloq.tools.ddk.check.runtime.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0.v20250902-1229-REL + 16.1.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.check.test.runtime.tests/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.test.runtime.tests/META-INF/MANIFEST.MF index fcd09c85f..9aa14173d 100644 --- a/com.avaloq.tools.ddk.check.test.runtime.tests/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.test.runtime.tests/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.test.runtime.tests Bundle-Vendor: Avaloq Group AG -Bundle-Version: 16.0.0.v20250902-1229-REL +Bundle-Version: 16.1.0.qualifier Bundle-SymbolicName: com.avaloq.tools.ddk.check.test.runtime.tests; singleton:=true Bundle-ActivationPolicy: lazy Require-Bundle: com.avaloq.tools.ddk.check.runtime.core, diff --git a/com.avaloq.tools.ddk.check.test.runtime.tests/pom.xml b/com.avaloq.tools.ddk.check.test.runtime.tests/pom.xml index 30cd76870..afcfffb92 100644 --- a/com.avaloq.tools.ddk.check.test.runtime.tests/pom.xml +++ b/com.avaloq.tools.ddk.check.test.runtime.tests/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0.v20250902-1229-REL + 16.1.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.check.test.runtime.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.test.runtime.ui/META-INF/MANIFEST.MF index db4874898..63e9fff06 100644 --- a/com.avaloq.tools.ddk.check.test.runtime.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.test.runtime.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.test.runtime.ui Bundle-Vendor: Avaloq Group AG -Bundle-Version: 16.0.0.v20250902-1229-REL +Bundle-Version: 16.1.0.qualifier Bundle-SymbolicName: com.avaloq.tools.ddk.check.test.runtime.ui; singleton:=true Bundle-ActivationPolicy: lazy Require-Bundle: com.avaloq.tools.ddk.check.test.runtime;visibility:=reexport, diff --git a/com.avaloq.tools.ddk.check.test.runtime.ui/pom.xml b/com.avaloq.tools.ddk.check.test.runtime.ui/pom.xml index 450a0898c..ef8613579 100644 --- a/com.avaloq.tools.ddk.check.test.runtime.ui/pom.xml +++ b/com.avaloq.tools.ddk.check.test.runtime.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0.v20250902-1229-REL + 16.1.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.check.test.runtime/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.test.runtime/META-INF/MANIFEST.MF index 645a485a8..d75901fb6 100644 --- a/com.avaloq.tools.ddk.check.test.runtime/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.test.runtime/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.test.runtime Bundle-Vendor: Avaloq Group AG -Bundle-Version: 16.0.0.v20250902-1229-REL +Bundle-Version: 16.1.0.qualifier Bundle-SymbolicName: com.avaloq.tools.ddk.check.test.runtime;singleton:=true Bundle-ActivationPolicy: lazy Require-Bundle: org.eclipse.xtext;visibility:=reexport, diff --git a/com.avaloq.tools.ddk.check.test.runtime/pom.xml b/com.avaloq.tools.ddk.check.test.runtime/pom.xml index aa00ec513..9d24accda 100644 --- a/com.avaloq.tools.ddk.check.test.runtime/pom.xml +++ b/com.avaloq.tools.ddk.check.test.runtime/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0.v20250902-1229-REL + 16.1.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.check.ui.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.ui.test/META-INF/MANIFEST.MF index 72f15d56c..bd2e7749c 100644 --- a/com.avaloq.tools.ddk.check.ui.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.ui.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.ui.test Bundle-SymbolicName: com.avaloq.tools.ddk.check.ui.test -Bundle-Version: 16.0.0.v20250902-1229-REL +Bundle-Version: 16.1.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Require-Bundle: org.junit, diff --git a/com.avaloq.tools.ddk.check.ui.test/pom.xml b/com.avaloq.tools.ddk.check.ui.test/pom.xml index 1d132bdde..58a932b6b 100644 --- a/com.avaloq.tools.ddk.check.ui.test/pom.xml +++ b/com.avaloq.tools.ddk.check.ui.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0.v20250902-1229-REL + 16.1.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.check.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.ui/META-INF/MANIFEST.MF index b780f0c9f..dbc9ddfe5 100644 --- a/com.avaloq.tools.ddk.check.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.check.ui Bundle-SymbolicName: com.avaloq.tools.ddk.check.ui;singleton:=true -Bundle-Version: 16.0.0.v20250902-1229-REL +Bundle-Version: 16.1.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-Activator: com.avaloq.tools.ddk.check.ui.internal.Activator diff --git a/com.avaloq.tools.ddk.check.ui/pom.xml b/com.avaloq.tools.ddk.check.ui/pom.xml index 6f6066797..1cbbed8b7 100644 --- a/com.avaloq.tools.ddk.check.ui/pom.xml +++ b/com.avaloq.tools.ddk.check.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0.v20250902-1229-REL + 16.1.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.checkcfg.core.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.checkcfg.core.test/META-INF/MANIFEST.MF index 9fc6e513a..e7144000c 100644 --- a/com.avaloq.tools.ddk.checkcfg.core.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.checkcfg.core.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.checkcfg.core.test Bundle-Vendor: Avaloq Group AG -Bundle-Version: 16.0.0.v20250902-1229-REL +Bundle-Version: 16.1.0.qualifier Bundle-SymbolicName: com.avaloq.tools.ddk.checkcfg.core.test; singleton:=true Bundle-ActivationPolicy: lazy Require-Bundle: com.avaloq.tools.ddk.test.core, diff --git a/com.avaloq.tools.ddk.checkcfg.core.test/pom.xml b/com.avaloq.tools.ddk.checkcfg.core.test/pom.xml index 5e6e1bead..e03e10252 100644 --- a/com.avaloq.tools.ddk.checkcfg.core.test/pom.xml +++ b/com.avaloq.tools.ddk.checkcfg.core.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0.v20250902-1229-REL + 16.1.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.checkcfg.core/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.checkcfg.core/META-INF/MANIFEST.MF index 59fdb1015..201b376cd 100644 --- a/com.avaloq.tools.ddk.checkcfg.core/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.checkcfg.core/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.checkcfg.core Bundle-Vendor: Avaloq Group AG -Bundle-Version: 16.0.0.v20250902-1229-REL +Bundle-Version: 16.1.0.qualifier Bundle-SymbolicName: com.avaloq.tools.ddk.checkcfg.core; singleton:=true Bundle-ActivationPolicy: lazy Bundle-RequiredExecutionEnvironment: JavaSE-21 diff --git a/com.avaloq.tools.ddk.checkcfg.core/pom.xml b/com.avaloq.tools.ddk.checkcfg.core/pom.xml index 495a46802..67c0544d9 100644 --- a/com.avaloq.tools.ddk.checkcfg.core/pom.xml +++ b/com.avaloq.tools.ddk.checkcfg.core/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0.v20250902-1229-REL + 16.1.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.checkcfg.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.checkcfg.ide/META-INF/MANIFEST.MF index 37284f761..b29d5277b 100644 --- a/com.avaloq.tools.ddk.checkcfg.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.checkcfg.ide/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.checkcfg.ide Bundle-SymbolicName: com.avaloq.tools.ddk.checkcfg.ide;singleton:=true -Bundle-Version: 16.0.0.v20250902-1229-REL +Bundle-Version: 16.1.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.checkcfg.ide/pom.xml b/com.avaloq.tools.ddk.checkcfg.ide/pom.xml index 4c02ce4fa..f0d05183a 100644 --- a/com.avaloq.tools.ddk.checkcfg.ide/pom.xml +++ b/com.avaloq.tools.ddk.checkcfg.ide/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0.v20250902-1229-REL + 16.1.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.checkcfg.ui.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.checkcfg.ui.test/META-INF/MANIFEST.MF index 7982c967d..c7ce684f9 100644 --- a/com.avaloq.tools.ddk.checkcfg.ui.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.checkcfg.ui.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.checkcfg.ui.test Bundle-SymbolicName: com.avaloq.tools.ddk.checkcfg.ui.test -Bundle-Version: 16.0.0.v20250902-1229-REL +Bundle-Version: 16.1.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Export-Package: com.avaloq.tools.ddk.checkcfg.ui.test diff --git a/com.avaloq.tools.ddk.checkcfg.ui.test/pom.xml b/com.avaloq.tools.ddk.checkcfg.ui.test/pom.xml index 3a8ff5be5..c7ebd6f61 100644 --- a/com.avaloq.tools.ddk.checkcfg.ui.test/pom.xml +++ b/com.avaloq.tools.ddk.checkcfg.ui.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0.v20250902-1229-REL + 16.1.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.checkcfg.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.checkcfg.ui/META-INF/MANIFEST.MF index 56858b97b..47a7824f1 100644 --- a/com.avaloq.tools.ddk.checkcfg.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.checkcfg.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.checkcfg.ui Bundle-SymbolicName: com.avaloq.tools.ddk.checkcfg.ui;singleton:=true -Bundle-Version: 16.0.0.v20250902-1229-REL +Bundle-Version: 16.1.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-Activator: com.avaloq.tools.ddk.checkcfg.ui.internal.Activator diff --git a/com.avaloq.tools.ddk.checkcfg.ui/pom.xml b/com.avaloq.tools.ddk.checkcfg.ui/pom.xml index ef584f31a..fae318d1b 100644 --- a/com.avaloq.tools.ddk.checkcfg.ui/pom.xml +++ b/com.avaloq.tools.ddk.checkcfg.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0.v20250902-1229-REL + 16.1.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.feature/feature.xml b/com.avaloq.tools.ddk.feature/feature.xml index baed05354..a43d971db 100644 --- a/com.avaloq.tools.ddk.feature/feature.xml +++ b/com.avaloq.tools.ddk.feature/feature.xml @@ -2,7 +2,7 @@ diff --git a/com.avaloq.tools.ddk.feature/pom.xml b/com.avaloq.tools.ddk.feature/pom.xml index cca68d8cb..2414fa911 100644 --- a/com.avaloq.tools.ddk.feature/pom.xml +++ b/com.avaloq.tools.ddk.feature/pom.xml @@ -4,7 +4,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0.v20250902-1229-REL + 16.1.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.runtime.feature/feature.xml b/com.avaloq.tools.ddk.runtime.feature/feature.xml index e7af787e9..3c7cd1ee9 100644 --- a/com.avaloq.tools.ddk.runtime.feature/feature.xml +++ b/com.avaloq.tools.ddk.runtime.feature/feature.xml @@ -2,7 +2,7 @@ diff --git a/com.avaloq.tools.ddk.runtime.feature/pom.xml b/com.avaloq.tools.ddk.runtime.feature/pom.xml index 05cd009d7..151341d71 100644 --- a/com.avaloq.tools.ddk.runtime.feature/pom.xml +++ b/com.avaloq.tools.ddk.runtime.feature/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0.v20250902-1229-REL + 16.1.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.runtime.source.feature/feature.xml b/com.avaloq.tools.ddk.runtime.source.feature/feature.xml index f78027825..ee053ad33 100644 --- a/com.avaloq.tools.ddk.runtime.source.feature/feature.xml +++ b/com.avaloq.tools.ddk.runtime.source.feature/feature.xml @@ -2,7 +2,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0.v20250902-1229-REL + 16.1.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.sample.helloworld.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.sample.helloworld.ide/META-INF/MANIFEST.MF index b6393126c..937971d4a 100644 --- a/com.avaloq.tools.ddk.sample.helloworld.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.sample.helloworld.ide/META-INF/MANIFEST.MF @@ -3,7 +3,7 @@ Automatic-Module-Name: com.avaloq.tools.ddk.sample.helloworld.ide Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.sample.helloworld.ide Bundle-Vendor: Avaloq Group AG -Bundle-Version: 16.0.0.v20250902-1229-REL +Bundle-Version: 16.1.0.qualifier Bundle-SymbolicName: com.avaloq.tools.ddk.sample.helloworld.ide;singleton:=true Bundle-ActivationPolicy: lazy Require-Bundle: com.avaloq.tools.ddk.sample.helloworld, diff --git a/com.avaloq.tools.ddk.sample.helloworld.ide/pom.xml b/com.avaloq.tools.ddk.sample.helloworld.ide/pom.xml index 7034706ea..f5effaeb5 100644 --- a/com.avaloq.tools.ddk.sample.helloworld.ide/pom.xml +++ b/com.avaloq.tools.ddk.sample.helloworld.ide/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0.v20250902-1229-REL + 16.1.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.sample.helloworld.ui.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.sample.helloworld.ui.test/META-INF/MANIFEST.MF index c507ab18e..1d6eb56d9 100644 --- a/com.avaloq.tools.ddk.sample.helloworld.ui.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.sample.helloworld.ui.test/META-INF/MANIFEST.MF @@ -3,7 +3,7 @@ Automatic-Module-Name: com.avaloq.tools.ddk.sample.helloworld.ui.test Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.sample.helloworld.ui.test Bundle-Vendor: Avaloq Group AG -Bundle-Version: 16.0.0.v20250902-1229-REL +Bundle-Version: 16.1.0.qualifier Bundle-SymbolicName: com.avaloq.tools.ddk.sample.helloworld.ui.test;singleton:=true Bundle-ActivationPolicy: lazy Require-Bundle: com.avaloq.tools.ddk.sample.helloworld, diff --git a/com.avaloq.tools.ddk.sample.helloworld.ui.test/pom.xml b/com.avaloq.tools.ddk.sample.helloworld.ui.test/pom.xml index 9fda99f93..af0cdee60 100644 --- a/com.avaloq.tools.ddk.sample.helloworld.ui.test/pom.xml +++ b/com.avaloq.tools.ddk.sample.helloworld.ui.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0.v20250902-1229-REL + 16.1.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.sample.helloworld.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.sample.helloworld.ui/META-INF/MANIFEST.MF index dbe0cbb30..58be42695 100644 --- a/com.avaloq.tools.ddk.sample.helloworld.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.sample.helloworld.ui/META-INF/MANIFEST.MF @@ -3,7 +3,7 @@ Automatic-Module-Name: com.avaloq.tools.ddk.sample.helloworld.ui Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.sample.helloworld.ui Bundle-Vendor: Avaloq Group AG -Bundle-Version: 16.0.0.v20250902-1229-REL +Bundle-Version: 16.1.0.qualifier Bundle-SymbolicName: com.avaloq.tools.ddk.sample.helloworld.ui;singleton:=true Bundle-ActivationPolicy: lazy Require-Bundle: com.avaloq.tools.ddk.sample.helloworld, diff --git a/com.avaloq.tools.ddk.sample.helloworld.ui/pom.xml b/com.avaloq.tools.ddk.sample.helloworld.ui/pom.xml index 10f94a9e9..d26771570 100644 --- a/com.avaloq.tools.ddk.sample.helloworld.ui/pom.xml +++ b/com.avaloq.tools.ddk.sample.helloworld.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0.v20250902-1229-REL + 16.1.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.sample.helloworld/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.sample.helloworld/META-INF/MANIFEST.MF index b4a5b164b..746fac35a 100644 --- a/com.avaloq.tools.ddk.sample.helloworld/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.sample.helloworld/META-INF/MANIFEST.MF @@ -3,7 +3,7 @@ Automatic-Module-Name: com.avaloq.tools.ddk.sample.helloworld Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.sample.helloworld Bundle-Vendor: Avaloq Group AG -Bundle-Version: 16.0.0.v20250902-1229-REL +Bundle-Version: 16.1.0.qualifier Bundle-SymbolicName: com.avaloq.tools.ddk.sample.helloworld;singleton:=true Bundle-ActivationPolicy: lazy Require-Bundle: org.eclipse.xtext, diff --git a/com.avaloq.tools.ddk.sample.helloworld/pom.xml b/com.avaloq.tools.ddk.sample.helloworld/pom.xml index 8f756be1f..35cd7515b 100644 --- a/com.avaloq.tools.ddk.sample.helloworld/pom.xml +++ b/com.avaloq.tools.ddk.sample.helloworld/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0.v20250902-1229-REL + 16.1.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.source.feature/feature.xml b/com.avaloq.tools.ddk.source.feature/feature.xml index 44ff70768..11916c830 100644 --- a/com.avaloq.tools.ddk.source.feature/feature.xml +++ b/com.avaloq.tools.ddk.source.feature/feature.xml @@ -2,7 +2,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0.v20250902-1229-REL + 16.1.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.test.core/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.test.core/META-INF/MANIFEST.MF index a7fca7927..06fedee63 100644 --- a/com.avaloq.tools.ddk.test.core/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.test.core/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.test.core Bundle-SymbolicName: com.avaloq.tools.ddk.test.core;singleton:=true -Bundle-Version: 16.0.0.v20250902-1229-REL +Bundle-Version: 16.1.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.test.core/pom.xml b/com.avaloq.tools.ddk.test.core/pom.xml index bd2152529..ecd0a6235 100644 --- a/com.avaloq.tools.ddk.test.core/pom.xml +++ b/com.avaloq.tools.ddk.test.core/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0.v20250902-1229-REL + 16.1.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.test.ui.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.test.ui.test/META-INF/MANIFEST.MF index 6500576ba..a25ccf4b8 100644 --- a/com.avaloq.tools.ddk.test.ui.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.test.ui.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.test.ui.test Bundle-SymbolicName: com.avaloq.tools.ddk.test.ui.test;singleton:=true -Bundle-Version: 16.0.0.v20250902-1229-REL +Bundle-Version: 16.1.0.qualifier Bundle-ActivationPolicy: lazy Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 diff --git a/com.avaloq.tools.ddk.test.ui.test/pom.xml b/com.avaloq.tools.ddk.test.ui.test/pom.xml index 37e5d027d..4cd579d36 100644 --- a/com.avaloq.tools.ddk.test.ui.test/pom.xml +++ b/com.avaloq.tools.ddk.test.ui.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0.v20250902-1229-REL + 16.1.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.test.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.test.ui/META-INF/MANIFEST.MF index 6c8636aba..b4a49b56b 100644 --- a/com.avaloq.tools.ddk.test.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.test.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.test.ui Bundle-SymbolicName: com.avaloq.tools.ddk.test.ui;singleton:=true -Bundle-Version: 16.0.0.v20250902-1229-REL +Bundle-Version: 16.1.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-Activator: com.avaloq.tools.ddk.test.ui.Activator diff --git a/com.avaloq.tools.ddk.test.ui/pom.xml b/com.avaloq.tools.ddk.test.ui/pom.xml index 3dd30e33f..04ab20ca8 100644 --- a/com.avaloq.tools.ddk.test.ui/pom.xml +++ b/com.avaloq.tools.ddk.test.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0.v20250902-1229-REL + 16.1.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.typesystem.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.typesystem.test/META-INF/MANIFEST.MF index 50d4cd718..b4eed97d4 100644 --- a/com.avaloq.tools.ddk.typesystem.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.typesystem.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.typesystem.test Bundle-SymbolicName: com.avaloq.tools.ddk.typesystem.test;singleton:=true -Bundle-Version: 16.0.0.v20250902-1229-REL +Bundle-Version: 16.1.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.typesystem.test/pom.xml b/com.avaloq.tools.ddk.typesystem.test/pom.xml index cd326b516..2126d41a0 100644 --- a/com.avaloq.tools.ddk.typesystem.test/pom.xml +++ b/com.avaloq.tools.ddk.typesystem.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0.v20250902-1229-REL + 16.1.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.typesystem/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.typesystem/META-INF/MANIFEST.MF index 54764a9bb..9d094860b 100644 --- a/com.avaloq.tools.ddk.typesystem/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.typesystem/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.typesystem Bundle-SymbolicName: com.avaloq.tools.ddk.typesystem;singleton:=true -Bundle-Version: 16.0.0.v20250902-1229-REL +Bundle-Version: 16.1.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Import-Package: org.apache.logging.log4j diff --git a/com.avaloq.tools.ddk.typesystem/pom.xml b/com.avaloq.tools.ddk.typesystem/pom.xml index f6c7bcbff..a896057bf 100644 --- a/com.avaloq.tools.ddk.typesystem/pom.xml +++ b/com.avaloq.tools.ddk.typesystem/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0.v20250902-1229-REL + 16.1.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.workflow/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.workflow/META-INF/MANIFEST.MF index 250a21ea6..de828c2f0 100644 --- a/com.avaloq.tools.ddk.workflow/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.workflow/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.workflow Bundle-SymbolicName: com.avaloq.tools.ddk.workflow -Bundle-Version: 16.0.0.v20250902-1229-REL +Bundle-Version: 16.1.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Require-Bundle: com.avaloq.tools.ddk.xtext, diff --git a/com.avaloq.tools.ddk.workflow/pom.xml b/com.avaloq.tools.ddk.workflow/pom.xml index 00e1bce04..5fd846496 100644 --- a/com.avaloq.tools.ddk.workflow/pom.xml +++ b/com.avaloq.tools.ddk.workflow/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0.v20250902-1229-REL + 16.1.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.builder.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.builder.ui/META-INF/MANIFEST.MF index ada8cf946..9ad866ab7 100644 --- a/com.avaloq.tools.ddk.xtext.builder.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.builder.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.builder.ui Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.builder.ui;singleton:=true -Bundle-Version: 16.0.0.v20250902-1229-REL +Bundle-Version: 16.1.0.qualifier Bundle-Vendor: Avaloq Group AG Require-Bundle: org.eclipse.core.runtime, org.eclipse.xtext, diff --git a/com.avaloq.tools.ddk.xtext.builder.ui/pom.xml b/com.avaloq.tools.ddk.xtext.builder.ui/pom.xml index 9aed080d2..71505dd8e 100644 --- a/com.avaloq.tools.ddk.xtext.builder.ui/pom.xml +++ b/com.avaloq.tools.ddk.xtext.builder.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0.v20250902-1229-REL + 16.1.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.builder/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.builder/META-INF/MANIFEST.MF index 99a4941f2..6ee350f1a 100644 --- a/com.avaloq.tools.ddk.xtext.builder/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.builder/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.builder Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.builder;singleton:=true -Bundle-Version: 16.0.0.v20250902-1229-REL +Bundle-Version: 16.1.0.qualifier Bundle-Vendor: Avaloq Group AG Require-Bundle: org.eclipse.xtext.builder, org.eclipse.xtext.ui, diff --git a/com.avaloq.tools.ddk.xtext.builder/pom.xml b/com.avaloq.tools.ddk.xtext.builder/pom.xml index e16e4cced..443135244 100644 --- a/com.avaloq.tools.ddk.xtext.builder/pom.xml +++ b/com.avaloq.tools.ddk.xtext.builder/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0.v20250902-1229-REL + 16.1.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.check.generator/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.check.generator/META-INF/MANIFEST.MF index 4bfc09444..f5a3f5629 100644 --- a/com.avaloq.tools.ddk.xtext.check.generator/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.check.generator/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.check.generator Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.check.generator;singleton:=true -Bundle-Version: 16.0.0.v20250902-1229-REL +Bundle-Version: 16.1.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.check.generator/pom.xml b/com.avaloq.tools.ddk.xtext.check.generator/pom.xml index 42f1adb7a..6d77f72a4 100644 --- a/com.avaloq.tools.ddk.xtext.check.generator/pom.xml +++ b/com.avaloq.tools.ddk.xtext.check.generator/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0.v20250902-1229-REL + 16.1.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.common.types.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.common.types.ui/META-INF/MANIFEST.MF index 810326ced..fd039f65f 100644 --- a/com.avaloq.tools.ddk.xtext.common.types.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.common.types.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.common.types.ui Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.common.types.ui;singleton:=true -Bundle-Version: 16.0.0.v20250902-1229-REL +Bundle-Version: 16.1.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.common.types.ui/pom.xml b/com.avaloq.tools.ddk.xtext.common.types.ui/pom.xml index 511306302..d918f1e74 100644 --- a/com.avaloq.tools.ddk.xtext.common.types.ui/pom.xml +++ b/com.avaloq.tools.ddk.xtext.common.types.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0.v20250902-1229-REL + 16.1.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.common.types/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.common.types/META-INF/MANIFEST.MF index 512b7a18c..5c949c8fc 100644 --- a/com.avaloq.tools.ddk.xtext.common.types/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.common.types/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.common.types Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.common.types;singleton:=true -Bundle-Version: 16.0.0.v20250902-1229-REL +Bundle-Version: 16.1.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.common.types/pom.xml b/com.avaloq.tools.ddk.xtext.common.types/pom.xml index 071673c50..bee14ffb1 100644 --- a/com.avaloq.tools.ddk.xtext.common.types/pom.xml +++ b/com.avaloq.tools.ddk.xtext.common.types/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0.v20250902-1229-REL + 16.1.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.common.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.common.ui/META-INF/MANIFEST.MF index fee014f70..cbcef8a9b 100644 --- a/com.avaloq.tools.ddk.xtext.common.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.common.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.common.ui Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.common.ui;singleton:=true -Bundle-Version: 16.0.0.v20250902-1229-REL +Bundle-Version: 16.1.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Export-Package: com.avaloq.tools.ddk.xtext.common.ui.contentassist diff --git a/com.avaloq.tools.ddk.xtext.common.ui/pom.xml b/com.avaloq.tools.ddk.xtext.common.ui/pom.xml index 0db267385..cab8c55a8 100644 --- a/com.avaloq.tools.ddk.xtext.common.ui/pom.xml +++ b/com.avaloq.tools.ddk.xtext.common.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0.v20250902-1229-REL + 16.1.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.xtext.export.generator/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.export.generator/META-INF/MANIFEST.MF index 6c3fde518..f53cf935a 100644 --- a/com.avaloq.tools.ddk.xtext.export.generator/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.export.generator/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.export.generator Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.export.generator;singleton:=true -Bundle-Version: 16.0.0.v20250902-1229-REL +Bundle-Version: 16.1.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Require-Bundle: org.eclipse.xtext, diff --git a/com.avaloq.tools.ddk.xtext.export.generator/pom.xml b/com.avaloq.tools.ddk.xtext.export.generator/pom.xml index 885917ecc..272a7d128 100644 --- a/com.avaloq.tools.ddk.xtext.export.generator/pom.xml +++ b/com.avaloq.tools.ddk.xtext.export.generator/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0.v20250902-1229-REL + 16.1.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.export.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.export.ide/META-INF/MANIFEST.MF index 2b7636389..8715de244 100644 --- a/com.avaloq.tools.ddk.xtext.export.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.export.ide/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.export.ide Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.export.ide;singleton:=true -Bundle-Version: 16.0.0.v20250902-1229-REL +Bundle-Version: 16.1.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.export.ide/pom.xml b/com.avaloq.tools.ddk.xtext.export.ide/pom.xml index 6c57a0644..e919b1f1e 100644 --- a/com.avaloq.tools.ddk.xtext.export.ide/pom.xml +++ b/com.avaloq.tools.ddk.xtext.export.ide/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0.v20250902-1229-REL + 16.1.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.export.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.export.test/META-INF/MANIFEST.MF index f4ab3aa33..e604acc70 100644 --- a/com.avaloq.tools.ddk.xtext.export.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.export.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.export.test Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.export.test;singleton:=true -Bundle-Version: 16.0.0.v20250902-1229-REL +Bundle-Version: 16.1.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.export.test/pom.xml b/com.avaloq.tools.ddk.xtext.export.test/pom.xml index 15b1391de..9c062b156 100644 --- a/com.avaloq.tools.ddk.xtext.export.test/pom.xml +++ b/com.avaloq.tools.ddk.xtext.export.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0.v20250902-1229-REL + 16.1.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.xtext.export.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.export.ui/META-INF/MANIFEST.MF index 7f24dcffd..109dce38d 100644 --- a/com.avaloq.tools.ddk.xtext.export.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.export.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.export.ui Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.export.ui;singleton:=true -Bundle-Version: 16.0.0.v20250902-1229-REL +Bundle-Version: 16.1.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-Activator: com.avaloq.tools.ddk.xtext.export.ui.internal.ExportActivator diff --git a/com.avaloq.tools.ddk.xtext.export.ui/pom.xml b/com.avaloq.tools.ddk.xtext.export.ui/pom.xml index 9731f8149..143082da7 100644 --- a/com.avaloq.tools.ddk.xtext.export.ui/pom.xml +++ b/com.avaloq.tools.ddk.xtext.export.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0.v20250902-1229-REL + 16.1.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.export/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.export/META-INF/MANIFEST.MF index 7fad2e85e..7caef88ee 100644 --- a/com.avaloq.tools.ddk.xtext.export/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.export/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.export Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.export;singleton:=true -Bundle-Version: 16.0.0.v20250902-1229-REL +Bundle-Version: 16.1.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.export/pom.xml b/com.avaloq.tools.ddk.xtext.export/pom.xml index 6ae3a0568..95256d92a 100644 --- a/com.avaloq.tools.ddk.xtext.export/pom.xml +++ b/com.avaloq.tools.ddk.xtext.export/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0.v20250902-1229-REL + 16.1.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.expression.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.expression.ide/META-INF/MANIFEST.MF index 07e756f0e..d8fbdc08c 100644 --- a/com.avaloq.tools.ddk.xtext.expression.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.expression.ide/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.expression.ide Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.expression.ide;singleton:=true -Bundle-Version: 16.0.0.v20250902-1229-REL +Bundle-Version: 16.1.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.expression.ide/pom.xml b/com.avaloq.tools.ddk.xtext.expression.ide/pom.xml index ec54b2a64..3e0f5b3bc 100644 --- a/com.avaloq.tools.ddk.xtext.expression.ide/pom.xml +++ b/com.avaloq.tools.ddk.xtext.expression.ide/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0.v20250902-1229-REL + 16.1.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.expression.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.expression.ui/META-INF/MANIFEST.MF index 089c563e9..8c5bf5fbe 100644 --- a/com.avaloq.tools.ddk.xtext.expression.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.expression.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.expression.ui Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.expression.ui;singleton:=true -Bundle-Version: 16.0.0.v20250902-1229-REL +Bundle-Version: 16.1.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-Activator: com.avaloq.tools.ddk.xtext.expression.ui.internal.Activator diff --git a/com.avaloq.tools.ddk.xtext.expression.ui/pom.xml b/com.avaloq.tools.ddk.xtext.expression.ui/pom.xml index a9d5c6a98..08711d772 100644 --- a/com.avaloq.tools.ddk.xtext.expression.ui/pom.xml +++ b/com.avaloq.tools.ddk.xtext.expression.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0.v20250902-1229-REL + 16.1.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.expression/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.expression/META-INF/MANIFEST.MF index 568609c0f..438348081 100644 --- a/com.avaloq.tools.ddk.xtext.expression/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.expression/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.expression Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.expression;singleton:=true -Bundle-Version: 16.0.0.v20250902-1229-REL +Bundle-Version: 16.1.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Require-Bundle: org.eclipse.xtext, diff --git a/com.avaloq.tools.ddk.xtext.expression/pom.xml b/com.avaloq.tools.ddk.xtext.expression/pom.xml index 65cde879f..0f36102bf 100644 --- a/com.avaloq.tools.ddk.xtext.expression/pom.xml +++ b/com.avaloq.tools.ddk.xtext.expression/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0.v20250902-1229-REL + 16.1.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.format.generator/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.format.generator/META-INF/MANIFEST.MF index 7ea9ce1bb..66a627746 100644 --- a/com.avaloq.tools.ddk.xtext.format.generator/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.format.generator/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.format.generator Bundle-Vendor: Avaloq Group AG -Bundle-Version: 16.0.0.v20250902-1229-REL +Bundle-Version: 16.1.0.qualifier Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.format.generator;singleton:=true Require-Bundle: com.avaloq.tools.ddk.xtext.format;visibility:=reexport, org.eclipse.xpand, diff --git a/com.avaloq.tools.ddk.xtext.format.generator/pom.xml b/com.avaloq.tools.ddk.xtext.format.generator/pom.xml index 9cdcf75ec..76ffeb76d 100644 --- a/com.avaloq.tools.ddk.xtext.format.generator/pom.xml +++ b/com.avaloq.tools.ddk.xtext.format.generator/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0.v20250902-1229-REL + 16.1.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.format.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.format.ide/META-INF/MANIFEST.MF index ffb4583fb..68552439e 100644 --- a/com.avaloq.tools.ddk.xtext.format.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.format.ide/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.format.ide Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.format.ide;singleton:=true -Bundle-Version: 16.0.0.v20250902-1229-REL +Bundle-Version: 16.1.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.format.ide/pom.xml b/com.avaloq.tools.ddk.xtext.format.ide/pom.xml index 671f3ed31..27d43fa98 100644 --- a/com.avaloq.tools.ddk.xtext.format.ide/pom.xml +++ b/com.avaloq.tools.ddk.xtext.format.ide/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0.v20250902-1229-REL + 16.1.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.format.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.format.test/META-INF/MANIFEST.MF index 5feb95897..49e9d9641 100644 --- a/com.avaloq.tools.ddk.xtext.format.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.format.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.format.test Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.format.test;singleton:=true -Bundle-Version: 16.0.0.v20250902-1229-REL +Bundle-Version: 16.1.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.format.test/pom.xml b/com.avaloq.tools.ddk.xtext.format.test/pom.xml index 12bd4ffab..7021b3a79 100644 --- a/com.avaloq.tools.ddk.xtext.format.test/pom.xml +++ b/com.avaloq.tools.ddk.xtext.format.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0.v20250902-1229-REL + 16.1.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.xtext.format.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.format.ui/META-INF/MANIFEST.MF index d724696e0..312673807 100644 --- a/com.avaloq.tools.ddk.xtext.format.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.format.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.format.ui Bundle-Vendor: Avaloq Group AG -Bundle-Version: 16.0.0.v20250902-1229-REL +Bundle-Version: 16.1.0.qualifier Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.format.ui;singleton:=true Bundle-ActivationPolicy: lazy Require-Bundle: com.avaloq.tools.ddk.xtext.format;visibility:=reexport, diff --git a/com.avaloq.tools.ddk.xtext.format.ui/pom.xml b/com.avaloq.tools.ddk.xtext.format.ui/pom.xml index d60b0db61..98842c406 100644 --- a/com.avaloq.tools.ddk.xtext.format.ui/pom.xml +++ b/com.avaloq.tools.ddk.xtext.format.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0.v20250902-1229-REL + 16.1.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.format/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.format/META-INF/MANIFEST.MF index 34c1a9dee..9115b9c9b 100644 --- a/com.avaloq.tools.ddk.xtext.format/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.format/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.format Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.format;singleton:=true -Bundle-Version: 16.0.0.v20250902-1229-REL +Bundle-Version: 16.1.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.format/pom.xml b/com.avaloq.tools.ddk.xtext.format/pom.xml index bbf7cefdd..a65e301a1 100644 --- a/com.avaloq.tools.ddk.xtext.format/pom.xml +++ b/com.avaloq.tools.ddk.xtext.format/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0.v20250902-1229-REL + 16.1.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.generator.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.generator.test/META-INF/MANIFEST.MF index a53dc01ea..4cb14e340 100644 --- a/com.avaloq.tools.ddk.xtext.generator.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.generator.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.generator.test Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.generator.test;singleton:=true -Bundle-Version: 16.0.0.v20250902-1229-REL +Bundle-Version: 16.1.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.generator.test/pom.xml b/com.avaloq.tools.ddk.xtext.generator.test/pom.xml index 2e262d8ef..b073e68a5 100644 --- a/com.avaloq.tools.ddk.xtext.generator.test/pom.xml +++ b/com.avaloq.tools.ddk.xtext.generator.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0.v20250902-1229-REL + 16.1.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.xtext.generator/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.generator/META-INF/MANIFEST.MF index ab30eff95..4be660520 100644 --- a/com.avaloq.tools.ddk.xtext.generator/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.generator/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.generator Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.generator;singleton:=true -Bundle-Version: 16.0.0.v20250902-1229-REL +Bundle-Version: 16.1.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Require-Bundle: org.eclipse.jface, diff --git a/com.avaloq.tools.ddk.xtext.generator/pom.xml b/com.avaloq.tools.ddk.xtext.generator/pom.xml index d9ee8137c..6b47c32c0 100644 --- a/com.avaloq.tools.ddk.xtext.generator/pom.xml +++ b/com.avaloq.tools.ddk.xtext.generator/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0.v20250902-1229-REL + 16.1.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.ide/META-INF/MANIFEST.MF index eefa48e8f..90673c3ef 100644 --- a/com.avaloq.tools.ddk.xtext.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.ide/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.ide Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.ide;singleton:=true -Bundle-Version: 16.0.0.v20250902-1229-REL +Bundle-Version: 16.1.0.qualifier Bundle-Vendor: Avaloq Group AG Require-Bundle: org.eclipse.lsp4j, org.eclipse.xtext.ide, diff --git a/com.avaloq.tools.ddk.xtext.ide/pom.xml b/com.avaloq.tools.ddk.xtext.ide/pom.xml index 8879e115b..0c3dd54ed 100644 --- a/com.avaloq.tools.ddk.xtext.ide/pom.xml +++ b/com.avaloq.tools.ddk.xtext.ide/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0.v20250902-1229-REL + 16.1.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.scope.generator/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.scope.generator/META-INF/MANIFEST.MF index ca3d3a763..96d01aa9e 100644 --- a/com.avaloq.tools.ddk.xtext.scope.generator/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.scope.generator/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.scope.generator Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.scope.generator;singleton:=true -Bundle-Version: 16.0.0.v20250902-1229-REL +Bundle-Version: 16.1.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Require-Bundle: com.avaloq.tools.ddk.xtext.scope;visibility:=reexport, diff --git a/com.avaloq.tools.ddk.xtext.scope.generator/pom.xml b/com.avaloq.tools.ddk.xtext.scope.generator/pom.xml index 92134aac4..af775654a 100644 --- a/com.avaloq.tools.ddk.xtext.scope.generator/pom.xml +++ b/com.avaloq.tools.ddk.xtext.scope.generator/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0.v20250902-1229-REL + 16.1.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.scope.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.scope.ide/META-INF/MANIFEST.MF index a4966d7bb..f9e7a52e6 100644 --- a/com.avaloq.tools.ddk.xtext.scope.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.scope.ide/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.scope.ide Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.scope.ide;singleton:=true -Bundle-Version: 16.0.0.v20250902-1229-REL +Bundle-Version: 16.1.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.scope.ide/pom.xml b/com.avaloq.tools.ddk.xtext.scope.ide/pom.xml index 96196cfd3..265056d44 100644 --- a/com.avaloq.tools.ddk.xtext.scope.ide/pom.xml +++ b/com.avaloq.tools.ddk.xtext.scope.ide/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0.v20250902-1229-REL + 16.1.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.scope.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.scope.ui/META-INF/MANIFEST.MF index 2b8448d45..167480a1e 100644 --- a/com.avaloq.tools.ddk.xtext.scope.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.scope.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.scope.ui Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.scope.ui;singleton:=true -Bundle-Version: 16.0.0.v20250902-1229-REL +Bundle-Version: 16.1.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-Activator: com.avaloq.tools.ddk.xtext.scope.ui.internal.ScopeActivator diff --git a/com.avaloq.tools.ddk.xtext.scope.ui/pom.xml b/com.avaloq.tools.ddk.xtext.scope.ui/pom.xml index b8123f47c..61808bae7 100644 --- a/com.avaloq.tools.ddk.xtext.scope.ui/pom.xml +++ b/com.avaloq.tools.ddk.xtext.scope.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0.v20250902-1229-REL + 16.1.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.scope/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.scope/META-INF/MANIFEST.MF index 5f26992d5..39e10efd0 100644 --- a/com.avaloq.tools.ddk.xtext.scope/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.scope/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.scope Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.scope;singleton:=true -Bundle-Version: 16.0.0.v20250902-1229-REL +Bundle-Version: 16.1.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Require-Bundle: org.eclipse.xtext, diff --git a/com.avaloq.tools.ddk.xtext.scope/pom.xml b/com.avaloq.tools.ddk.xtext.scope/pom.xml index 5e47150d8..c8c7f53c5 100644 --- a/com.avaloq.tools.ddk.xtext.scope/pom.xml +++ b/com.avaloq.tools.ddk.xtext.scope/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0.v20250902-1229-REL + 16.1.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.test.core/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.test.core/META-INF/MANIFEST.MF index 24a8f1dfc..454d1e20c 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.test.core/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.test.core Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.test.core;singleton:=true -Bundle-Version: 16.0.0.v20250902-1229-REL +Bundle-Version: 16.1.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Require-Bundle: com.avaloq.tools.ddk.xtext, diff --git a/com.avaloq.tools.ddk.xtext.test.core/pom.xml b/com.avaloq.tools.ddk.xtext.test.core/pom.xml index 695a8771a..c86a1a7d4 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/pom.xml +++ b/com.avaloq.tools.ddk.xtext.test.core/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0.v20250902-1229-REL + 16.1.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.xtext.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.test/META-INF/MANIFEST.MF index 7d5e84707..ed3ed4bb4 100644 --- a/com.avaloq.tools.ddk.xtext.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.test Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.test;singleton:=true -Bundle-Version: 16.0.0.v20250902-1229-REL +Bundle-Version: 16.1.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.test/pom.xml b/com.avaloq.tools.ddk.xtext.test/pom.xml index d2f72d330..0b6ae57c1 100644 --- a/com.avaloq.tools.ddk.xtext.test/pom.xml +++ b/com.avaloq.tools.ddk.xtext.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0.v20250902-1229-REL + 16.1.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.xtext.ui.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.ui.test/META-INF/MANIFEST.MF index 9bb4af0bf..d8697435e 100644 --- a/com.avaloq.tools.ddk.xtext.ui.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.ui.test/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.ui.test Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.ui.test;singleton:=true -Bundle-Version: 16.0.0.v20250902-1229-REL +Bundle-Version: 16.1.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Require-Bundle: org.eclipse.xtext.ui, diff --git a/com.avaloq.tools.ddk.xtext.ui.test/pom.xml b/com.avaloq.tools.ddk.xtext.ui.test/pom.xml index de6c3cb26..7fd4e5f5c 100644 --- a/com.avaloq.tools.ddk.xtext.ui.test/pom.xml +++ b/com.avaloq.tools.ddk.xtext.ui.test/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0.v20250902-1229-REL + 16.1.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.xtext.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.ui/META-INF/MANIFEST.MF index 2c2a517f9..afa432815 100644 --- a/com.avaloq.tools.ddk.xtext.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.ui Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.ui;singleton:=true -Bundle-Version: 16.0.0.v20250902-1229-REL +Bundle-Version: 16.1.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.ui/pom.xml b/com.avaloq.tools.ddk.xtext.ui/pom.xml index 5ee4fcb5e..2215f8bf7 100644 --- a/com.avaloq.tools.ddk.xtext.ui/pom.xml +++ b/com.avaloq.tools.ddk.xtext.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0.v20250902-1229-REL + 16.1.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.valid.ide/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.valid.ide/META-INF/MANIFEST.MF index 11202895c..ab4443e0f 100644 --- a/com.avaloq.tools.ddk.xtext.valid.ide/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.valid.ide/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.valid.ide Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.valid.ide;singleton:=true -Bundle-Version: 16.0.0.v20250902-1229-REL +Bundle-Version: 16.1.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.valid.ide/pom.xml b/com.avaloq.tools.ddk.xtext.valid.ide/pom.xml index f386abd86..9b79f722c 100644 --- a/com.avaloq.tools.ddk.xtext.valid.ide/pom.xml +++ b/com.avaloq.tools.ddk.xtext.valid.ide/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0.v20250902-1229-REL + 16.1.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk.xtext.valid.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.valid.ui/META-INF/MANIFEST.MF index 57e2c9f65..339bb2ffa 100644 --- a/com.avaloq.tools.ddk.xtext.valid.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.valid.ui/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.valid.ui Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.valid.ui;singleton:=true -Bundle-Version: 16.0.0.v20250902-1229-REL +Bundle-Version: 16.1.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.valid.ui/pom.xml b/com.avaloq.tools.ddk.xtext.valid.ui/pom.xml index 11fdd512f..2d7d22b71 100644 --- a/com.avaloq.tools.ddk.xtext.valid.ui/pom.xml +++ b/com.avaloq.tools.ddk.xtext.valid.ui/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0.v20250902-1229-REL + 16.1.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.xtext.valid/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.valid/META-INF/MANIFEST.MF index 6b442eb66..8de355ef1 100644 --- a/com.avaloq.tools.ddk.xtext.valid/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.valid/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext.valid Bundle-SymbolicName: com.avaloq.tools.ddk.xtext.valid;singleton:=true -Bundle-Version: 16.0.0.v20250902-1229-REL +Bundle-Version: 16.1.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext.valid/pom.xml b/com.avaloq.tools.ddk.xtext.valid/pom.xml index 07e4965fe..2c2284880 100644 --- a/com.avaloq.tools.ddk.xtext.valid/pom.xml +++ b/com.avaloq.tools.ddk.xtext.valid/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0.v20250902-1229-REL + 16.1.0-SNAPSHOT ../ddk-parent diff --git a/com.avaloq.tools.ddk.xtext/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext/META-INF/MANIFEST.MF index 91f457388..3826dabd9 100644 --- a/com.avaloq.tools.ddk.xtext/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk.xtext Bundle-SymbolicName: com.avaloq.tools.ddk.xtext;singleton:=true -Bundle-Version: 16.0.0.v20250902-1229-REL +Bundle-Version: 16.1.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk.xtext/pom.xml b/com.avaloq.tools.ddk.xtext/pom.xml index 1fd772bed..f8ff2f969 100644 --- a/com.avaloq.tools.ddk.xtext/pom.xml +++ b/com.avaloq.tools.ddk.xtext/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0.v20250902-1229-REL + 16.1.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/com.avaloq.tools.ddk/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk/META-INF/MANIFEST.MF index 5a1f9c98f..d93f19a05 100644 --- a/com.avaloq.tools.ddk/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: com.avaloq.tools.ddk Bundle-SymbolicName: com.avaloq.tools.ddk;singleton:=true -Bundle-Version: 16.0.0.v20250902-1229-REL +Bundle-Version: 16.1.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 Bundle-ActivationPolicy: lazy diff --git a/com.avaloq.tools.ddk/pom.xml b/com.avaloq.tools.ddk/pom.xml index 5ab224148..8bca93133 100644 --- a/com.avaloq.tools.ddk/pom.xml +++ b/com.avaloq.tools.ddk/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0.v20250902-1229-REL + 16.1.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk diff --git a/ddk-parent/pom.xml b/ddk-parent/pom.xml index 4684f4d73..f7321ec45 100644 --- a/ddk-parent/pom.xml +++ b/ddk-parent/pom.xml @@ -4,7 +4,7 @@ com.avaloq.tools.ddk ddk-parent - 16.0.0.v20250902-1229-REL + 16.1.0-SNAPSHOT pom diff --git a/ddk-repository/category.xml b/ddk-repository/category.xml index 7b4308459..ff915e552 100644 --- a/ddk-repository/category.xml +++ b/ddk-repository/category.xml @@ -1,15 +1,15 @@ - + - + - + - + diff --git a/ddk-repository/pom.xml b/ddk-repository/pom.xml index e6929d187..1e29339db 100644 --- a/ddk-repository/pom.xml +++ b/ddk-repository/pom.xml @@ -4,7 +4,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0.v20250902-1229-REL + 16.1.0-SNAPSHOT ../ddk-parent diff --git a/ddk-target/pom.xml b/ddk-target/pom.xml index 6e2a62fc0..94211cad7 100644 --- a/ddk-target/pom.xml +++ b/ddk-target/pom.xml @@ -3,7 +3,7 @@ ddk-parent com.avaloq.tools.ddk - 16.0.0.v20250902-1229-REL + 16.1.0-SNAPSHOT ../ddk-parent com.avaloq.tools.ddk From 6a39b884840ef6e2025bb287e462de5d50cef874 Mon Sep 17 00:00:00 2001 From: Joao Ferreira Date: Wed, 3 Sep 2025 11:51:53 +0200 Subject: [PATCH 43/57] test: migrate JUnit 4 to JUnit 5 --- .../core/test/AbstractCheckTestCase.java | 12 +++--- .../tools/ddk/check/core/test/BugAig1314.java | 2 +- .../tools/ddk/check/core/test/BugDsl27.java | 4 +- .../CheckJavaValidatorUtilTest.java | 2 +- .../runtime/context/CheckContextTest.java | 2 +- .../registry/CheckExtensionPointTests.java | 8 ++-- .../core/validation/CheckValidatorTest.java | 4 +- .../label/CheckRuleLabelProviderTest.java | 24 ++++++------ .../check/ui/test/CheckCatalogWizardTest.java | 10 ++--- .../check/ui/test/CheckProjectWizardTest.java | 13 ++++--- .../builder/CheckContextsExtensionTest.java | 6 +-- .../builder/CheckMarkerHelpExtensionTest.java | 12 +++--- .../test/builder/CheckTocExtensionTest.java | 10 ++--- .../ui/test/contentassist/BugAig931Test.java | 2 +- .../validation/CheckCfgValidationTest.java | 4 +- .../ddk/test/core/AbstractSystemTest.java | 8 ++-- .../test/core/junit/runners/ClassRunner.java | 8 ++-- .../ui/test/logging/ErrorLogListenerTest.java | 12 +++--- .../test/swtbot/DeChKeyboardLayoutTest.java | 2 +- .../test/ui/test/swtbot/SwtBotRadioTest.java | 4 +- .../typesystem/AbstractTypeProviderTest.java | 10 ++--- .../BuiltInTypeModelAccessTest.java | 8 ++-- .../typesystem/ParameterListMatcherTest.java | 30 +++++++-------- .../export/exporting/ExportExportingTest.java | 2 +- .../export/scoping/ExportScopingTest.java | 2 +- .../validation/ExportValidationOkTest.java | 5 +-- .../validation/ExportValidationTest.java | 9 ++--- .../builder/FormatBuilderParticipantTest.java | 4 +- .../format/scoping/FormatScopingTest.java | 8 ++-- .../validation/FormatValidationTest.java | 18 ++++----- .../expression/CodeGenerationXTest.java | 20 +++++----- .../expression/CompilationContextTest.java | 2 +- .../expression/ExpressionsExtentionsTest.java | 2 +- .../test/util/EClassComparatorTest.java | 4 +- .../xtext/generator/test/util/GraphTest.java | 2 +- .../tools/ddk/xtext/test/AbstractTest.java | 14 +++---- .../formatting/AbstractFormattingTest.java | 4 +- .../test/generator/AbstractGeneratorTest.java | 4 +- .../test/junit/runners/XtextClassRunner.java | 12 +++--- .../ui/labeling/AbstractLabelingTest.java | 4 +- .../occurrences/AbstractOccurrencesTest.java | 8 ++-- .../test/ui/outline/AbstractOutlineTest.java | 2 +- .../xtext/builder/XtextBuildTriggerTest.java | 6 +-- .../ddk/xtext/formatter/FormatterTest.java | 38 +++++++++---------- .../linking/AbstractFragmentProviderTest.java | 4 +- .../linking/ShortFragmentProviderTest.java | 13 ++++--- .../naming/QualifiedNamePatternTest.java | 16 ++++---- .../QualifiedNameSegmentTreeLookupTest.java | 16 ++++---- .../AbstractSelectorFragmentProviderTest.java | 12 +++--- .../tools/ddk/xtext/resource/BugAig1084.java | 2 +- .../ResourceDescriptionDeltaTest.java | 6 +-- .../xtext/util/RuntimeProjectUtilTest.java | 2 +- .../WorkbenchResolutionAdaptorRunTest.java | 6 +-- .../WorkbenchResolutionAdaptorTest.java | 14 +++---- ...ourceNameTemplateVariableResolverTest.java | 6 +-- ...impleEnumTemplateVariableResolverTest.java | 8 ++-- ddk-parent/pom.xml | 17 +++++++++ 57 files changed, 253 insertions(+), 236 deletions(-) diff --git a/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/core/test/AbstractCheckTestCase.java b/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/core/test/AbstractCheckTestCase.java index 506b69337..4d49d8316 100644 --- a/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/core/test/AbstractCheckTestCase.java +++ b/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/core/test/AbstractCheckTestCase.java @@ -37,9 +37,9 @@ import org.eclipse.xtext.resource.XtextResourceSet; import org.eclipse.xtext.ui.testing.util.IResourcesSetupUtil; import org.eclipse.xtext.util.StringInputStream; -import org.junit.AfterClass; -import org.junit.Before; -import org.junit.BeforeClass; +import org.junit.jupiter.api.AfterAll; +import org.junit.jupiter.api.BeforeAll; +import org.junit.jupiter.api.BeforeEach; import com.avaloq.tools.ddk.check.CheckConstants; import com.avaloq.tools.ddk.check.ui.internal.CheckActivator; @@ -72,7 +72,7 @@ public abstract class AbstractCheckTestCase extends TestCase { private Provider resourceSetProvider; @Override - @Before + @BeforeEach public void setUp() throws Exception { getInjector().injectMembers(this); } @@ -83,7 +83,7 @@ public void setUp() throws Exception { * @throws Exception * the exception */ - @BeforeClass + @BeforeAll public static void prepareWorkspace() throws Exception { PROJECT_MANAGER.setup(ImmutableList. of()); } @@ -117,7 +117,7 @@ public T get(final Class clazz) { /** * Clean up after all tests have terminated. */ - @AfterClass + @AfterAll public static void cleanUp() { PROJECT_MANAGER.teardown(); } diff --git a/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/core/test/BugAig1314.java b/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/core/test/BugAig1314.java index 6aa9bd1f8..dbe928877 100644 --- a/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/core/test/BugAig1314.java +++ b/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/core/test/BugAig1314.java @@ -26,7 +26,7 @@ import org.eclipse.xtext.scoping.IScope; import org.eclipse.xtext.testing.InjectWith; import org.eclipse.xtext.testing.XtextRunner; -import org.junit.Test; +import org.junit.jupiter.api.Test; import org.junit.runner.RunWith; import com.avaloq.tools.ddk.check.CheckInjectorProvider; diff --git a/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/core/test/BugDsl27.java b/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/core/test/BugDsl27.java index fc357d6b2..e052cd1c5 100644 --- a/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/core/test/BugDsl27.java +++ b/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/core/test/BugDsl27.java @@ -15,7 +15,7 @@ import org.eclipse.xtext.testing.InjectWith; import org.eclipse.xtext.testing.XtextRunner; -import org.junit.Test; +import org.junit.jupiter.api.Test; import org.junit.runner.RunWith; import com.avaloq.tools.ddk.check.CheckInjectorProvider; @@ -31,7 +31,7 @@ public class BugDsl27 extends AbstractCheckGenerationTestCase { /** * Tests that our test source compiles fine. */ - @Test + @org.junit.jupiter.api.Test public void testGeneratedCodeHasNoErrors() { try (InputStream sourceStream = BugDsl27.class.getResourceAsStream("bugdsl27/BugDsl27")) { generateAndCompile(sourceStream); diff --git a/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/validation/CheckJavaValidatorUtilTest.java b/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/validation/CheckJavaValidatorUtilTest.java index af865e5af..008183680 100644 --- a/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/validation/CheckJavaValidatorUtilTest.java +++ b/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/validation/CheckJavaValidatorUtilTest.java @@ -13,7 +13,7 @@ import org.eclipse.core.runtime.IStatus; import org.eclipse.xtext.testing.InjectWith; import org.eclipse.xtext.testing.XtextRunner; -import org.junit.Test; +import org.junit.jupiter.api.Test; import org.junit.runner.RunWith; import com.avaloq.tools.ddk.check.CheckUiInjectorProvider; diff --git a/com.avaloq.tools.ddk.check.runtime.core.test/src/com/avaloq/tools/ddk/check/runtime/context/CheckContextTest.java b/com.avaloq.tools.ddk.check.runtime.core.test/src/com/avaloq/tools/ddk/check/runtime/context/CheckContextTest.java index a63a7ea41..8788739a7 100644 --- a/com.avaloq.tools.ddk.check.runtime.core.test/src/com/avaloq/tools/ddk/check/runtime/context/CheckContextTest.java +++ b/com.avaloq.tools.ddk.check.runtime.core.test/src/com/avaloq/tools/ddk/check/runtime/context/CheckContextTest.java @@ -12,7 +12,7 @@ import org.eclipse.emf.ecore.EObject; import org.junit.Assert; -import org.junit.Test; +import org.junit.jupiter.api.Test; import junit.framework.TestCase; diff --git a/com.avaloq.tools.ddk.check.runtime.core.test/src/com/avaloq/tools/ddk/check/runtime/core/registry/CheckExtensionPointTests.java b/com.avaloq.tools.ddk.check.runtime.core.test/src/com/avaloq/tools/ddk/check/runtime/core/registry/CheckExtensionPointTests.java index 8d01a80d3..54d15534a 100644 --- a/com.avaloq.tools.ddk.check.runtime.core.test/src/com/avaloq/tools/ddk/check/runtime/core/registry/CheckExtensionPointTests.java +++ b/com.avaloq.tools.ddk.check.runtime.core.test/src/com/avaloq/tools/ddk/check/runtime/core/registry/CheckExtensionPointTests.java @@ -16,7 +16,7 @@ import org.eclipse.core.runtime.IConfigurationElement; import org.eclipse.core.runtime.IExtensionPoint; import org.eclipse.core.runtime.Platform; -import org.junit.Test; +import org.junit.jupiter.api.Test; import com.google.common.collect.Iterables; import com.google.common.collect.Lists; @@ -106,7 +106,7 @@ public void testDummyClientRegistered() { * Tests that a non-existing client is not registered with the extension * point registry. */ - @Test + @org.junit.jupiter.api.Test public void testInvalidClientNotRegistered() { assertNull("Non-existing client not registered to the check extension point", findCheckExtensionPoint(findExtensionPoints()).getExtension("a.b.c")); } @@ -114,7 +114,7 @@ public void testInvalidClientNotRegistered() { /** * Tests that the check extension point has an attribute {@value #TARGET_CLASS_ATTRIBUTE}. */ - @Test + @org.junit.jupiter.api.Test public void testTargetClassAttributeFound() { IExtensionPoint point = findCheckExtensionPoint(findExtensionPoints()); assertNotNull("Found a configuration element with attribute \"targetClass\"", findConfigurationElement(point.getConfigurationElements(), TARGET_CLASS_ATTRIBUTE)); @@ -123,7 +123,7 @@ public void testTargetClassAttributeFound() { /** * Tests that the check extension point has an attribute {@value #LANGUAGE_ATTRIBUTE}. */ - @Test + @org.junit.jupiter.api.Test public void testLanguageAttributeFound() { IExtensionPoint point = findCheckExtensionPoint(findExtensionPoints()); assertNotNull("Found a configuration element with attribute \"language\"", findConfigurationElement(point.getConfigurationElements(), LANGUAGE_ATTRIBUTE)); diff --git a/com.avaloq.tools.ddk.check.runtime.core.test/src/com/avaloq/tools/ddk/check/runtime/core/validation/CheckValidatorTest.java b/com.avaloq.tools.ddk.check.runtime.core.test/src/com/avaloq/tools/ddk/check/runtime/core/validation/CheckValidatorTest.java index a91a3de53..3ddb4725b 100644 --- a/com.avaloq.tools.ddk.check.runtime.core.test/src/com/avaloq/tools/ddk/check/runtime/core/validation/CheckValidatorTest.java +++ b/com.avaloq.tools.ddk.check.runtime.core.test/src/com/avaloq/tools/ddk/check/runtime/core/validation/CheckValidatorTest.java @@ -12,7 +12,7 @@ import static org.junit.Assert.assertEquals; -import org.junit.Test; +import org.junit.jupiter.api.Test; import com.avaloq.tools.ddk.check.runtime.issue.ICheckValidatorImpl; import com.avaloq.tools.ddk.check.runtime.validation.AbstractCheckValidator; @@ -44,7 +44,7 @@ protected String getHostLanguage() { * * @see {@link com.avaloq.tools.ddk.check.extensionpoint.test.validation.DummyValidator} */ - @Test + @org.junit.jupiter.api.Test public void testAtLeastOneValidatorFound() { ICheckValidatorImpl dummyValidator = Iterables.getOnlyElement(getValidators(Maps.newHashMap(), null)); assertEquals("Dummy validator found", "DummyValidator", dummyValidator.getClass().getSimpleName()); diff --git a/com.avaloq.tools.ddk.check.runtime.core.test/src/com/avaloq/tools/ddk/check/runtime/label/CheckRuleLabelProviderTest.java b/com.avaloq.tools.ddk.check.runtime.core.test/src/com/avaloq/tools/ddk/check/runtime/label/CheckRuleLabelProviderTest.java index 290ad8d6d..139a19438 100644 --- a/com.avaloq.tools.ddk.check.runtime.core.test/src/com/avaloq/tools/ddk/check/runtime/label/CheckRuleLabelProviderTest.java +++ b/com.avaloq.tools.ddk.check.runtime.core.test/src/com/avaloq/tools/ddk/check/runtime/label/CheckRuleLabelProviderTest.java @@ -23,9 +23,9 @@ import java.util.Collections; import java.util.List; -import org.junit.After; -import org.junit.Before; -import org.junit.Test; +import org.junit.jupiter.api.AfterEach; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; import com.avaloq.tools.ddk.check.runtime.issue.ICheckValidatorImpl; import com.avaloq.tools.ddk.check.runtime.registry.ICheckValidatorRegistry; @@ -72,7 +72,7 @@ public class CheckRuleLabelProviderTest { /** * Setup done before each test. */ - @Before + @BeforeEach public void setUp() { // Create mocks @@ -97,7 +97,7 @@ protected void configure() { /** * Teardown done after each test. */ - @After + @AfterEach public void tearDown() { mockCheckValidatorRegistry = null; @@ -135,7 +135,7 @@ public void testBinding() { /** * Test successfully getting a check label. */ - @Test + @org.junit.jupiter.api.Test public void testSuccess() { // ARRANGE mockValidatorsWithChecks(); @@ -164,7 +164,7 @@ public void testWhenIssueCodeNotPresent() { /** * Test trying to get the check label for a null issue code. */ - @Test + @org.junit.jupiter.api.Test public void testWithNullID() { // ARRANGE mockValidatorsWithChecks(); @@ -194,7 +194,7 @@ public void testWithNoValidators() { /** * Test trying to get a check label when there are no checks registered. */ - @Test + @org.junit.jupiter.api.Test public void testWithNoChecks() { // ARRANGE when(mockCheckValidatorRegistry.getValidators()).thenReturn(mockValidators); @@ -212,7 +212,7 @@ public void testWithNoChecks() { /** * Test trying to get the check label for an issue code which is not a check issue code. */ - @Test + @org.junit.jupiter.api.Test public void testWhenIssueCodeIsNotACheckIssueCode() { // ARRANGE final String notACheckIssueCode = "package.name.SomeOtherClass.issue.code"; @@ -232,7 +232,7 @@ public void testWhenIssueCodeIsNotACheckIssueCode() { /** * Test that check labels are cached. */ - @Test + @org.junit.jupiter.api.Test public void testCaching() { // ARRANGE mockValidatorsWithChecks(); @@ -266,7 +266,7 @@ public void publicInvalidateCache() { /** * Test that the cache can be invalidated by subclasses. */ - @Test + @org.junit.jupiter.api.Test public void testInvalidatingCache() { // ARRANGE final CheckRuleLabelProviderWithInvalidateCacheExposed checkRuleLabelProviderWithInvalidateCacheExposed = injector.getInstance(CheckRuleLabelProviderWithInvalidateCacheExposed.class); @@ -290,7 +290,7 @@ public void testInvalidatingCache() { /** * Test that the class is bound as a singleton. */ - @Test + @org.junit.jupiter.api.Test public void testClassIsSingleton() { // ACT final ICheckRuleLabelProvider otherCheckRuleLabelProvider = injector.getInstance(CheckRuleLabelProvider.class); diff --git a/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/CheckCatalogWizardTest.java b/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/CheckCatalogWizardTest.java index 06fef0015..7287cbd5b 100644 --- a/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/CheckCatalogWizardTest.java +++ b/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/CheckCatalogWizardTest.java @@ -33,9 +33,9 @@ import org.eclipse.xtext.Grammar; import org.eclipse.xtext.testing.InjectWith; import org.eclipse.xtext.ui.util.PluginProjectFactory; -import org.junit.After; -import org.junit.Before; -import org.junit.Test; +import org.junit.jupiter.api.AfterEach; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; import org.junit.runner.RunWith; import com.avaloq.tools.ddk.check.ui.test.internal.CheckWizardUiTestInjectorProvider; @@ -116,7 +116,7 @@ protected void execute(final IProgressMonitor monitor) throws CoreException, Inv * Initializes this test class pre-loading grammar access instances, which might involve bundle activation and class loading. *

*/ - @Before + @BeforeEach public void setUp() { wizard = new SwtWizardBot(); project = createProject(); @@ -258,7 +258,7 @@ public void testInitiallyNoGrammarSelected() { * @throws CoreException * if project doesn't exist. */ - @After + @AfterEach public void tearDown() throws CoreException { wizard.closeWizard(); project.delete(true, new NullProgressMonitor()); diff --git a/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/CheckProjectWizardTest.java b/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/CheckProjectWizardTest.java index 5261a85cc..0732127aa 100644 --- a/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/CheckProjectWizardTest.java +++ b/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/CheckProjectWizardTest.java @@ -16,9 +16,10 @@ import org.eclipse.swtbot.swt.finder.widgets.SWTBotShell; import org.eclipse.xtext.testing.InjectWith; -import org.junit.After; -import org.junit.Before; -import org.junit.Test; +import org.junit.jupiter.api.*; +import org.junit.jupiter.api.AfterEach; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.BeforeEach; import org.junit.runner.RunWith; import com.avaloq.tools.ddk.check.ui.test.internal.CheckWizardUiTestInjectorProvider; @@ -47,7 +48,7 @@ public class CheckProjectWizardTest { /** * Start again the Check project wizard before every test. */ - @Before + @BeforeEach public void setUp() { wizard = new SwtWizardBot(); wizard.openNewWizard(CHECK_PROJECT_WIZARD_NAME); @@ -65,7 +66,7 @@ public void testCheckProjectWizardIsAvailable() { /** * Test if the buttons 'next', 'back' and 'finish' are correctly enabled/disabled. */ - @Test + @org.junit.jupiter.api.Test public void testProjectNameInvalid() { CheckWizardTestUtil.projectName(wizard, "", CheckWizardTestUtil.NEXT_DISABLED); CheckWizardTestUtil.projectName(wizard, ".project.name", CheckWizardTestUtil.NEXT_DISABLED); @@ -120,7 +121,7 @@ public void testNextButtonChangesPage() { /** * Close the wizard after every test. */ - @After + @AfterEach public void tearDown() { wizard.closeWizard(); } diff --git a/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/builder/CheckContextsExtensionTest.java b/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/builder/CheckContextsExtensionTest.java index e46b2b9f1..93ed4baaa 100644 --- a/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/builder/CheckContextsExtensionTest.java +++ b/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/builder/CheckContextsExtensionTest.java @@ -21,8 +21,8 @@ import org.eclipse.xtext.testing.XtextRunner; import org.eclipse.xtext.testing.util.ParseHelper; import org.eclipse.xtext.testing.InjectWith; -import org.junit.Before; -import org.junit.Test; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.BeforeEach; import org.junit.runner.RunWith; import com.avaloq.tools.ddk.check.check.CheckCatalog; @@ -57,7 +57,7 @@ public class CheckContextsExtensionTest extends TestCase { private IWorkspace workspace; @Override - @Before + @BeforeEach public void setUp() throws Exception { catalog = parser.parse(CATALOG_WITH_FIRST_CHECK_LIVE); IFile pluginxml = workspace.getRoot().getFile(new Path("/test/plugin.xml")); diff --git a/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/builder/CheckMarkerHelpExtensionTest.java b/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/builder/CheckMarkerHelpExtensionTest.java index cdf20f180..31a315fdd 100644 --- a/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/builder/CheckMarkerHelpExtensionTest.java +++ b/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/builder/CheckMarkerHelpExtensionTest.java @@ -28,7 +28,7 @@ import org.eclipse.xtext.testing.InjectWith; import org.eclipse.xtext.testing.XtextRunner; import org.eclipse.xtext.testing.util.ParseHelper; -import org.junit.Test; +import org.junit.jupiter.api.Test; import org.junit.runner.RunWith; import com.avaloq.tools.ddk.check.check.CheckCatalog; @@ -78,7 +78,7 @@ public class CheckMarkerHelpExtensionTest { * @throws Exception * the exception */ - @Test + @org.junit.jupiter.api.Test public void testCreateExtension() throws Exception { IPluginExtension extension = createMarkerHelpExtension(parser.parse(CATALOG_WITH_FIRST_CHECK_LIVE)); @@ -98,7 +98,7 @@ public void testCreateExtension() throws Exception { * @throws Exception * the exception */ - @Test + @org.junit.jupiter.api.Test public void testAddElement() throws Exception { final CheckCatalog catalogWithOneCheck = parser.parse(CATALOG_WITH_FIRST_CHECK_LIVE); IPluginExtension extension = createMarkerHelpExtension(catalogWithOneCheck); @@ -123,7 +123,7 @@ public void testAddElement() throws Exception { * @throws Exception * the exception */ - @Test + @org.junit.jupiter.api.Test public void testRemoveElement() throws Exception { final CheckCatalog catalogWithTwoChecks = parser.parse(CATALOG_WITH_TWO_CHECKS); IPluginExtension extension = createMarkerHelpExtension(catalogWithTwoChecks); @@ -143,7 +143,7 @@ public void testRemoveElement() throws Exception { * @throws Exception * the exception */ - @Test + @org.junit.jupiter.api.Test public void testMarkerTypeUpdate() throws Exception { IPluginExtension extension = createMarkerHelpExtension(parser.parse(CATALOG_WITH_FIRST_CHECK_LIVE)); @@ -164,7 +164,7 @@ public void testMarkerTypeUpdate() throws Exception { * @throws Exception * the exception */ - @Test + @org.junit.jupiter.api.Test public void testCheckHasTwoIssueCodes() throws Exception { IPluginExtension extension = createMarkerHelpExtension(parser.parse(CATALOG_WITH_FIRST_CHECK_LIVE)); diff --git a/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/builder/CheckTocExtensionTest.java b/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/builder/CheckTocExtensionTest.java index 13fb54b31..a0b250476 100644 --- a/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/builder/CheckTocExtensionTest.java +++ b/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/builder/CheckTocExtensionTest.java @@ -23,8 +23,8 @@ import org.eclipse.xtext.testing.InjectWith; import org.eclipse.xtext.testing.XtextRunner; import org.eclipse.xtext.testing.util.ParseHelper; -import org.junit.Before; -import org.junit.Test; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.BeforeEach; import org.junit.runner.RunWith; import com.avaloq.tools.ddk.check.check.CheckCatalog; @@ -58,7 +58,7 @@ public class CheckTocExtensionTest extends TestCase { private CheckCatalog catalog; private IPluginModelBase pluginModel; - @Before + @BeforeEach @Override public void setUp() throws Exception { catalog = parser.parse(CATALOG_WITH_FIRST_CHECK_LIVE); @@ -73,7 +73,7 @@ public void setUp() throws Exception { * @throws CoreException * the core exception */ - @Test + @org.junit.jupiter.api.Test public void testCreateExtension() throws CoreException { IPluginExtension extension = tocUtil.addExtensionToPluginBase(pluginModel, catalog, ExtensionType.CONTEXTS, null); assertEquals("Toc extension has been created", CheckTocExtensionHelper.TOC_EXTENSION_POINT_ID, extension.getPoint()); @@ -88,7 +88,7 @@ public void testCreateExtension() throws CoreException { * @throws CoreException * the core exception */ - @Test + @org.junit.jupiter.api.Test public void testIsExtensionUpdateRequiredTrue() throws CoreException { IPluginExtension extension = createErroneousTocExtension(); diff --git a/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/contentassist/BugAig931Test.java b/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/contentassist/BugAig931Test.java index 85dce9ec8..00f2b435e 100644 --- a/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/contentassist/BugAig931Test.java +++ b/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/contentassist/BugAig931Test.java @@ -21,7 +21,7 @@ import org.eclipse.ui.progress.UIJob; import org.eclipse.xtext.common.types.access.jdt.IJavaProjectProvider; import org.junit.Assert; -import org.junit.Test; +import org.junit.jupiter.api.Test; import com.google.common.base.Function; import com.google.common.collect.Iterables; diff --git a/com.avaloq.tools.ddk.checkcfg.core.test/src/com/avaloq/tools/ddk/checkcfg/validation/CheckCfgValidationTest.java b/com.avaloq.tools.ddk.checkcfg.core.test/src/com/avaloq/tools/ddk/checkcfg/validation/CheckCfgValidationTest.java index 9098f1a1b..24db7a7e3 100644 --- a/com.avaloq.tools.ddk.checkcfg.core.test/src/com/avaloq/tools/ddk/checkcfg/validation/CheckCfgValidationTest.java +++ b/com.avaloq.tools.ddk.checkcfg.core.test/src/com/avaloq/tools/ddk/checkcfg/validation/CheckCfgValidationTest.java @@ -14,7 +14,7 @@ import org.eclipse.xtext.testing.XtextRunner; import org.eclipse.xtext.testing.util.ParseHelper; import org.eclipse.xtext.testing.validation.ValidationTestHelper; -import org.junit.Test; +import org.junit.jupiter.api.Test; import org.junit.runner.RunWith; import com.avaloq.tools.ddk.checkcfg.CheckCfgUiInjectorProvider; @@ -51,7 +51,7 @@ public class CheckCfgValidationTest extends TestCase { * @throws Exception * if a problem occurred parsing the test model */ - @Test + @org.junit.jupiter.api.Test public void testDisabledCheckIsNotConfigured() throws Exception { // NOPMD CheckConfiguration model = parser.parse(modelUtil.basicModelWithDisabledTest() + " (val = 0)"); helper.assertWarning(model, CheckcfgPackage.Literals.CONFIGURED_CHECK, IssueCodes.DISABLED_CHECK_NOT_CONFIGURED); diff --git a/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/AbstractSystemTest.java b/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/AbstractSystemTest.java index cf2ab9a09..78ee5283e 100644 --- a/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/AbstractSystemTest.java +++ b/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/AbstractSystemTest.java @@ -15,8 +15,8 @@ import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; -import org.junit.After; -import org.junit.Before; +import org.junit.jupiter.api.AfterEach; +import org.junit.jupiter.api.BeforeEach; import org.junit.Rule; import org.junit.internal.AssumptionViolatedException; import org.junit.rules.TestWatcher; @@ -127,7 +127,7 @@ public void finished(final Description description) { * Setup of the system test. * Implementations need to specify the setup steps in this method and also provide the @Before annotation. */ - @Before + @BeforeEach public void setUp() { AbstractTestStep.registerTestStepListener(this); } @@ -209,7 +209,7 @@ protected final void executeSystemTestPlan() { * Note: Undoes all test and setup steps in the correct order, if the test is not marked as a System Test. *

*/ - @After + @AfterEach public void tearDown() { try { AbstractTestStep.setCheckPreconditions(true); diff --git a/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/junit/runners/ClassRunner.java b/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/junit/runners/ClassRunner.java index 60074e5ac..327439c53 100644 --- a/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/junit/runners/ClassRunner.java +++ b/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/junit/runners/ClassRunner.java @@ -20,8 +20,8 @@ import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; import org.junit.Assert; -import org.junit.Ignore; -import org.junit.Test; +import org.junit.jupiter.api.Disabled; +import org.junit.jupiter.api.Test; import org.junit.internal.AssumptionViolatedException; import org.junit.internal.runners.model.EachTestNotifier; import org.junit.internal.runners.statements.RunAfters; @@ -140,7 +140,7 @@ private void ensureInitialized() { expectedMethods = ImmutableList.copyOf(Iterables.filter(testMethods, new Predicate() { @Override public boolean apply(final FrameworkMethod input) { - return input.getAnnotation(Ignore.class) == null; + return input.getAnnotation(Disabled.class) == null; } })); currentMethodIndex = 0; @@ -184,7 +184,7 @@ public void filter(final Filter filter) throws NoTestsRemainException { @Override protected void runChild(final FrameworkMethod method, final RunNotifier notifier) { ensureInitialized(); - final boolean ignored = method.getAnnotation(Ignore.class) != null; + final boolean ignored = method.getAnnotation(Disabled.class) != null; if (!ignored) { Assert.assertEquals("Method " + method.getName() + " not equal", expectedMethods.get(currentMethodIndex++), method); //$NON-NLS-1$//$NON-NLS-2$ } diff --git a/com.avaloq.tools.ddk.test.ui.test/src/com/avaloq/tools/ddk/test/ui/test/logging/ErrorLogListenerTest.java b/com.avaloq.tools.ddk.test.ui.test/src/com/avaloq/tools/ddk/test/ui/test/logging/ErrorLogListenerTest.java index a928c2178..5f6aa007d 100644 --- a/com.avaloq.tools.ddk.test.ui.test/src/com/avaloq/tools/ddk/test/ui/test/logging/ErrorLogListenerTest.java +++ b/com.avaloq.tools.ddk.test.ui.test/src/com/avaloq/tools/ddk/test/ui/test/logging/ErrorLogListenerTest.java @@ -16,9 +16,9 @@ import org.eclipse.core.runtime.IProgressMonitor; import org.eclipse.core.runtime.IStatus; import org.eclipse.core.runtime.jobs.Job; -import org.junit.After; -import org.junit.Before; -import org.junit.Test; +import org.junit.jupiter.api.AfterEach; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; import com.avaloq.tools.ddk.test.core.util.ErrorLogListener; @@ -32,7 +32,7 @@ public class ErrorLogListenerTest { /** * Sets up the {@link ErrorLogListener} under test. */ - @Before + @BeforeEach public void setUp() { errorLogListener = new ErrorLogListener(); errorLogListener.register(); @@ -41,7 +41,7 @@ public void setUp() { /** * Tears down the {@link ErrorLogListener} under test. */ - @After + @AfterEach public void tearDown() { errorLogListener.unregister(); } @@ -53,7 +53,7 @@ public void tearDown() { * the exception that is thrown if the test job was interrupted */ @SuppressWarnings("unlikely-arg-type") - @Test + @org.junit.jupiter.api.Test public void testIgnoringExceptionLocations() throws InterruptedException { assertFalse("NullPointerException must not have been logged.", errorLogListener.isExceptionLogged(NullPointerException.class)); errorLogListener.ignoreException(NullPointerException.class, "com.avaloq.tools.ddk.test.core.util.ErrorLogListenerTest"); diff --git a/com.avaloq.tools.ddk.test.ui.test/src/com/avaloq/tools/ddk/test/ui/test/swtbot/DeChKeyboardLayoutTest.java b/com.avaloq.tools.ddk.test.ui.test/src/com/avaloq/tools/ddk/test/ui/test/swtbot/DeChKeyboardLayoutTest.java index fd895d38e..76caf02b0 100644 --- a/com.avaloq.tools.ddk.test.ui.test/src/com/avaloq/tools/ddk/test/ui/test/swtbot/DeChKeyboardLayoutTest.java +++ b/com.avaloq.tools.ddk.test.ui.test/src/com/avaloq/tools/ddk/test/ui/test/swtbot/DeChKeyboardLayoutTest.java @@ -14,7 +14,7 @@ import org.eclipse.swtbot.eclipse.finder.widgets.SWTBotEclipseEditor; import org.eclipse.swtbot.swt.finder.utils.SWTBotPreferences; -import org.junit.Test; +import org.junit.jupiter.api.Test; import com.avaloq.tools.ddk.test.ui.swtbot.SwtWorkbenchBot; diff --git a/com.avaloq.tools.ddk.test.ui.test/src/com/avaloq/tools/ddk/test/ui/test/swtbot/SwtBotRadioTest.java b/com.avaloq.tools.ddk.test.ui.test/src/com/avaloq/tools/ddk/test/ui/test/swtbot/SwtBotRadioTest.java index 0d51f80db..83b045c7a 100644 --- a/com.avaloq.tools.ddk.test.ui.test/src/com/avaloq/tools/ddk/test/ui/test/swtbot/SwtBotRadioTest.java +++ b/com.avaloq.tools.ddk.test.ui.test/src/com/avaloq/tools/ddk/test/ui/test/swtbot/SwtBotRadioTest.java @@ -15,7 +15,7 @@ import org.eclipse.swtbot.eclipse.finder.SWTWorkbenchBot; import org.junit.Rule; -import org.junit.Test; +import org.junit.jupiter.api.Test; import com.avaloq.tools.ddk.test.core.Issue; import com.avaloq.tools.ddk.test.core.IssueAwareRule; @@ -57,7 +57,7 @@ public String getText() { /** * Test if the method {@link com.avaloq.tools.ddk.test.ui.swtbot.SwtBotRadio#click()} works correctly. */ - @Test + @org.junit.jupiter.api.Test public void testSwtRadioButtonClick() { SwtWorkbenchBot bot = new SwtWorkbenchBot(); bot.resetWorkbench(); diff --git a/com.avaloq.tools.ddk.typesystem.test/src/com/avaloq/tools/ddk/typesystem/AbstractTypeProviderTest.java b/com.avaloq.tools.ddk.typesystem.test/src/com/avaloq/tools/ddk/typesystem/AbstractTypeProviderTest.java index 83bc6e7f4..113dd7e93 100644 --- a/com.avaloq.tools.ddk.typesystem.test/src/com/avaloq/tools/ddk/typesystem/AbstractTypeProviderTest.java +++ b/com.avaloq.tools.ddk.typesystem.test/src/com/avaloq/tools/ddk/typesystem/AbstractTypeProviderTest.java @@ -23,8 +23,8 @@ import org.eclipse.emf.ecore.EReference; import org.eclipse.emf.ecore.EcoreFactory; import org.eclipse.emf.ecore.impl.EObjectImpl; -import org.junit.Before; -import org.junit.Test; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; import com.avaloq.tools.ddk.typesystem.typemodel.IExpression; import com.avaloq.tools.ddk.typesystem.typemodel.INamedElement; @@ -70,7 +70,7 @@ private EClass createEClass(final String name, final EClass... superTypes) { return clazz; } - @Before + @BeforeEach public void init() { EcoreFactory modelFactory = EcoreFactory.eINSTANCE; testModelPackage = modelFactory.createEPackage(); @@ -125,7 +125,7 @@ public void testTypeProviderCyclicDefault() { assertNull("cyclic type for namedElement2 not null", provider.getTypeForNamedElement(namedElement2)); } - @Test + @org.junit.jupiter.api.Test public void testTypeProviderCyclicOverride() { ITypeProvider provider = new CyclicOverrideTypeProvider(); assertEquals("cyclic override type for expression1 not type1", type1, provider.getType(expression1)); @@ -136,7 +136,7 @@ public void testTypeProviderCyclicOverride() { assertEquals("cyclic override type for namedElement2 not type3", type3, provider.getTypeForNamedElement(namedElement2)); } - @Test + @org.junit.jupiter.api.Test public void testTypeProviderCyclicOverrideMixed() { ITypeProvider provider = new CyclicOverrideMixedTypeProvider(); assertEquals("cyclic mixed type for expression1 not type1", type1, provider.getType(expression1)); diff --git a/com.avaloq.tools.ddk.typesystem.test/src/com/avaloq/tools/ddk/typesystem/BuiltInTypeModelAccessTest.java b/com.avaloq.tools.ddk.typesystem.test/src/com/avaloq/tools/ddk/typesystem/BuiltInTypeModelAccessTest.java index 401681d46..6d89bec77 100644 --- a/com.avaloq.tools.ddk.typesystem.test/src/com/avaloq/tools/ddk/typesystem/BuiltInTypeModelAccessTest.java +++ b/com.avaloq.tools.ddk.typesystem.test/src/com/avaloq/tools/ddk/typesystem/BuiltInTypeModelAccessTest.java @@ -17,11 +17,11 @@ import static org.junit.Assert.assertSame; import org.eclipse.emf.common.util.EList; -import org.junit.Test; import com.avaloq.tools.ddk.typesystem.builtintypemodel.BuiltInTypeModel; import com.avaloq.tools.ddk.typesystem.builtintypemodel.InternalType; import com.avaloq.tools.ddk.typesystem.typemodel.INamedType; +import org.junit.jupiter.api.Test; /** @@ -30,7 +30,7 @@ @SuppressWarnings("nls") public class BuiltInTypeModelAccessTest { - @Test + @org.junit.jupiter.api.Test public void testLoadModel() { BuiltInTypeModelAccess typeModelInstance = BuiltInTypeModelAccess.getInstance(); BuiltInTypeModel model = typeModelInstance.getModel(); @@ -49,7 +49,7 @@ private void assertPresence(final String name) { assertEquals("Actual type name matches", name, t.getName()); } - @Test + @org.junit.jupiter.api.Test public void testHasInternalTypes() { assertPresence(BuiltInTypeModelAccess.ANY_TYPE_NAME); assertPresence(BuiltInTypeModelAccess.ERROR_TYPE_NAME); @@ -64,7 +64,7 @@ public void testInvalidInternalTypeNames() { assertNull("Non-existant name returns null", BuiltInTypeModelAccess.getInstance().getInternalType("xyz!!")); } - @Test + @org.junit.jupiter.api.Test public void testUniqueInternalTypes() { assertUnique(BuiltInTypeModelAccess.ANY_TYPE_NAME); assertUnique(BuiltInTypeModelAccess.ERROR_TYPE_NAME); diff --git a/com.avaloq.tools.ddk.typesystem.test/src/com/avaloq/tools/ddk/typesystem/ParameterListMatcherTest.java b/com.avaloq.tools.ddk.typesystem.test/src/com/avaloq/tools/ddk/typesystem/ParameterListMatcherTest.java index efb8ed087..4757e2c8e 100644 --- a/com.avaloq.tools.ddk.typesystem.test/src/com/avaloq/tools/ddk/typesystem/ParameterListMatcherTest.java +++ b/com.avaloq.tools.ddk.typesystem.test/src/com/avaloq/tools/ddk/typesystem/ParameterListMatcherTest.java @@ -20,7 +20,6 @@ import org.eclipse.emf.ecore.InternalEObject; import org.eclipse.emf.ecore.impl.EObjectImpl; -import org.junit.Test; import com.avaloq.tools.ddk.typesystem.IParameterMatchChecker.IMatchResult; import com.avaloq.tools.ddk.typesystem.ParameterListMatcher.ParameterListMatchResult; @@ -33,6 +32,7 @@ import com.avaloq.tools.ddk.typesystem.typemodel.INamedFormalParameter; import com.avaloq.tools.ddk.typesystem.typemodel.IType; import com.avaloq.tools.ddk.typesystem.typemodel.impl.NamedTypeImpl; +import org.junit.jupiter.api.Test; // You can't have too many tests @@ -227,7 +227,7 @@ public void testOneUnnamedAgainstOne() { checkParameterMatch(IParameterMatchChecker.MatchStatus.MATCH, actuals.get(0), formals.get(0), matches.get(0)); } - @Test + @org.junit.jupiter.api.Test public void testOneNamedAgainstOne() { List formals = new ArrayList(); formals.add(new NamedFormalParameter(NAME_1, intType)); @@ -239,7 +239,7 @@ public void testOneNamedAgainstOne() { checkParameterMatch(IParameterMatchChecker.MatchStatus.MATCH, actuals.get(0), formals.get(0), matches.get(0)); } - @Test + @org.junit.jupiter.api.Test public void testOneNamedAgainstOneCaseSensitive() { List formals = new ArrayList(); formals.add(new NamedFormalParameter(NAME_1.toUpperCase(Locale.getDefault()), intType)); @@ -260,7 +260,7 @@ public void testOneNamedAgainstOneCaseSensitive() { checkParameterMatch(IParameterMatchChecker.MatchStatus.NO_MATCH_FOR_NAMED_ACTUAL, actuals.get(0), null, matches.get(0)); } - @Test + @org.junit.jupiter.api.Test public void testOneUnnamedAgainstNone() { List formals = new ArrayList(); List actuals = new ArrayList(); @@ -310,7 +310,7 @@ public void testNoneAgainstTwoMandatory() { assertSame(INCORRECT_UNMATCHED_MANDATORY_FORMAL, mandatoryParam2, matchResult.getUnmatchedMandatoryFormalParameters().get(1)); } - @Test + @org.junit.jupiter.api.Test public void testNoneAgainstTwoMixed() { // one mandatory and one not mandatory List formals = new ArrayList(); @@ -562,7 +562,7 @@ public void testMissingMandatoryAgainstPositional() { checkParameterMatch(IParameterMatchChecker.MatchStatus.MATCH, actuals.get(0), formals.get(0), matches.get(0)); } - @Test + @org.junit.jupiter.api.Test public void testInvalidActualNull() { List formals = new ArrayList(); formals.add(new NamedFormalParameter(NAME_1, intType)); @@ -627,7 +627,7 @@ private void check2WithNullFormal1(final List formals, fin checkParameterMatch(IParameterMatchChecker.MatchStatus.INVALID_ACTUAL, actuals.get(1), null, matches.get(1)); } - @Test + @org.junit.jupiter.api.Test public void testInvalidFormalNull() { List formals = new ArrayList(); formals.add(new NamedFormalParameter(NAME_1, intType)); @@ -681,7 +681,7 @@ public void testInvalidActualNullNameInvalidFormalNullName() { checkParameterMatch(IParameterMatchChecker.MatchStatus.INVALID_ACTUAL, actuals.get(2), null, matches.get(2)); } - @Test + @org.junit.jupiter.api.Test public void testDuplicateFormalName() { List formals = new ArrayList(); formals.add(new NamedFormalParameter(NAME_1, intType)); @@ -716,7 +716,7 @@ public void testDuplicateNamedActual() { checkParameterMatch(IParameterMatchChecker.MatchStatus.DUPLICATE_NAMED_ACTUAL, actuals.get(2), formals.get(1), matches.get(2)); } - @Test + @org.junit.jupiter.api.Test public void testPositionalAfterNamed1() { List formals = new ArrayList(); formals.add(new NamedFormalParameter(NAME_1, intType)); @@ -734,7 +734,7 @@ public void testPositionalAfterNamed1() { checkParameterMatch(IParameterMatchChecker.MatchStatus.POSITIONAL_AFTER_NAMED, actuals.get(2), null, matches.get(2)); } - @Test + @org.junit.jupiter.api.Test public void testPositionalAfterNamed2() { List formals = new ArrayList(); formals.add(new NamedFormalParameter(NAME_1, intType)); @@ -758,7 +758,7 @@ public void testPositionalAfterNamed2() { } - @Test + @org.junit.jupiter.api.Test public void testNamedMatchesPositional() { List formals = new ArrayList(); formals.add(new NamedFormalParameter(NAME_1, intType)); @@ -788,7 +788,7 @@ public void testNamedFormalAfterUnnamed1() { check2Successful(formals, actuals); } - @Test + @org.junit.jupiter.api.Test public void testNamedFormalAfterUnnamed2() { // these are allowed, match named by name. List formals = new ArrayList(); @@ -800,7 +800,7 @@ public void testNamedFormalAfterUnnamed2() { check2Successful(formals, actuals); } - @Test + @org.junit.jupiter.api.Test public void testNamedFormalAfterUnnamed3() { // these are allowed, match named by name, unnamed and named optional List formals = new ArrayList(); @@ -907,7 +907,7 @@ public void testForceMatchByPosition1() { checkParameterMatch(IParameterMatchChecker.MatchStatus.MATCH, actuals.get(2), formals.get(2), matches.get(2)); } - @Test + @org.junit.jupiter.api.Test public void testForceMatchByPosition2() { List formals = new ArrayList(); formals.add(new NamedFormalParameter(NAME_1, intType)); @@ -925,7 +925,7 @@ public void testForceMatchByPosition2() { checkParameterMatch(IParameterMatchChecker.MatchStatus.MATCH, actuals.get(2), formals.get(2), matches.get(2)); } - @Test + @org.junit.jupiter.api.Test public void testForceMatchByPosition3() { List formals = new ArrayList(); formals.add(new FormalParameter(intType)); diff --git a/com.avaloq.tools.ddk.xtext.export.test/src/com/avaloq/tools/ddk/xtext/export/exporting/ExportExportingTest.java b/com.avaloq.tools.ddk.xtext.export.test/src/com/avaloq/tools/ddk/xtext/export/exporting/ExportExportingTest.java index b76a3504e..8ef89ab12 100644 --- a/com.avaloq.tools.ddk.xtext.export.test/src/com/avaloq/tools/ddk/xtext/export/exporting/ExportExportingTest.java +++ b/com.avaloq.tools.ddk.xtext.export.test/src/com/avaloq/tools/ddk/xtext/export/exporting/ExportExportingTest.java @@ -10,7 +10,7 @@ *******************************************************************************/ package com.avaloq.tools.ddk.xtext.export.exporting; -import org.junit.Test; +import org.junit.jupiter.api.Test; import com.avaloq.tools.ddk.xtext.test.AbstractXtextTest; import com.avaloq.tools.ddk.xtext.test.export.util.ExportTestUtil; diff --git a/com.avaloq.tools.ddk.xtext.export.test/src/com/avaloq/tools/ddk/xtext/export/scoping/ExportScopingTest.java b/com.avaloq.tools.ddk.xtext.export.test/src/com/avaloq/tools/ddk/xtext/export/scoping/ExportScopingTest.java index f8034d1f7..b0a6d5687 100644 --- a/com.avaloq.tools.ddk.xtext.export.test/src/com/avaloq/tools/ddk/xtext/export/scoping/ExportScopingTest.java +++ b/com.avaloq.tools.ddk.xtext.export.test/src/com/avaloq/tools/ddk/xtext/export/scoping/ExportScopingTest.java @@ -17,7 +17,7 @@ import org.eclipse.xtext.naming.QualifiedName; import org.eclipse.xtext.scoping.IScope; -import org.junit.Test; +import org.junit.jupiter.api.Test; import com.avaloq.tools.ddk.xtext.export.export.ExportModel; import com.avaloq.tools.ddk.xtext.export.export.ExportPackage; diff --git a/com.avaloq.tools.ddk.xtext.export.test/src/com/avaloq/tools/ddk/xtext/export/validation/ExportValidationOkTest.java b/com.avaloq.tools.ddk.xtext.export.test/src/com/avaloq/tools/ddk/xtext/export/validation/ExportValidationOkTest.java index 68a802d17..0fbb17475 100644 --- a/com.avaloq.tools.ddk.xtext.export.test/src/com/avaloq/tools/ddk/xtext/export/validation/ExportValidationOkTest.java +++ b/com.avaloq.tools.ddk.xtext.export.test/src/com/avaloq/tools/ddk/xtext/export/validation/ExportValidationOkTest.java @@ -10,10 +10,9 @@ *******************************************************************************/ package com.avaloq.tools.ddk.xtext.export.validation; -import org.junit.Test; - import com.avaloq.tools.ddk.xtext.test.export.util.ExportTestUtil; import com.avaloq.tools.ddk.xtext.test.validation.AbstractValidationTest; +import org.junit.jupiter.api.Test; /** @@ -26,7 +25,7 @@ protected ExportTestUtil getXtextTestUtil() { return ExportTestUtil.getInstance(); } - @Test + @org.junit.jupiter.api.Test public final void testCheckAll() { assertNoDiagnostics(); } diff --git a/com.avaloq.tools.ddk.xtext.export.test/src/com/avaloq/tools/ddk/xtext/export/validation/ExportValidationTest.java b/com.avaloq.tools.ddk.xtext.export.test/src/com/avaloq/tools/ddk/xtext/export/validation/ExportValidationTest.java index c96191977..77389066f 100644 --- a/com.avaloq.tools.ddk.xtext.export.test/src/com/avaloq/tools/ddk/xtext/export/validation/ExportValidationTest.java +++ b/com.avaloq.tools.ddk.xtext.export.test/src/com/avaloq/tools/ddk/xtext/export/validation/ExportValidationTest.java @@ -10,10 +10,9 @@ *******************************************************************************/ package com.avaloq.tools.ddk.xtext.export.validation; -import org.junit.Test; - import com.avaloq.tools.ddk.xtext.test.export.util.ExportTestUtil; import com.avaloq.tools.ddk.xtext.test.validation.AbstractValidationTest; +import org.junit.jupiter.api.Test; /** @@ -26,12 +25,12 @@ protected ExportTestUtil getXtextTestUtil() { return ExportTestUtil.getInstance(); } - @Test + @org.junit.jupiter.api.Test public final void testCheckExtensions() { // TODO cannot test as unable to load resource in test environment assertDiagnosticMessage("Extension 'XYZ' not found"); } - @Test + @org.junit.jupiter.api.Test public final void testCheckInterfaceAndExportUniqueness() { assertDiagnosticMessage("declaration duplicate found: ecore::EClass"); } @@ -41,7 +40,7 @@ public final void testCheckExportFieldUniqueness() { assertDiagnosticMessage("duplicate found: instanceClassName"); } - @Test + @org.junit.jupiter.api.Test public final void testCheckUserDataNameAsFeature() { assertDiagnosticMessage("instanceClassName is already defined as field"); // TODO assertDiagnosticMessage("xxx has the same name as an existing feature"); diff --git a/com.avaloq.tools.ddk.xtext.format.test/src/com/avaloq/tools/ddk/xtext/format/builder/FormatBuilderParticipantTest.java b/com.avaloq.tools.ddk.xtext.format.test/src/com/avaloq/tools/ddk/xtext/format/builder/FormatBuilderParticipantTest.java index ed47fca61..2d20798d9 100644 --- a/com.avaloq.tools.ddk.xtext.format.test/src/com/avaloq/tools/ddk/xtext/format/builder/FormatBuilderParticipantTest.java +++ b/com.avaloq.tools.ddk.xtext.format.test/src/com/avaloq/tools/ddk/xtext/format/builder/FormatBuilderParticipantTest.java @@ -21,7 +21,7 @@ import org.eclipse.emf.common.util.URI; import org.eclipse.xtext.resource.IResourceDescription.Delta; import org.eclipse.xtext.resource.IResourceServiceProvider; -import org.junit.Test; +import org.junit.jupiter.api.Test; import org.mockito.ArgumentMatcher; import com.avaloq.tools.ddk.xtext.test.AbstractXtextTest; @@ -66,7 +66,7 @@ protected void beforeAllTests() { /** * Tests whether a {@link Delta} resource has a correct extension to be used by org.eclipse.xtext.builder.BuilderParticipant. */ - @Test + @org.junit.jupiter.api.Test public void hasCorrectExtensionTest() { IResourceServiceProvider resourceServiceProvider = mock(IResourceServiceProvider.class); when(resourceServiceProvider.canHandle(argThat(new IsUri()))).thenReturn(true, false); diff --git a/com.avaloq.tools.ddk.xtext.format.test/src/com/avaloq/tools/ddk/xtext/format/scoping/FormatScopingTest.java b/com.avaloq.tools.ddk.xtext.format.test/src/com/avaloq/tools/ddk/xtext/format/scoping/FormatScopingTest.java index 8762e6350..c496aa3e6 100644 --- a/com.avaloq.tools.ddk.xtext.format.test/src/com/avaloq/tools/ddk/xtext/format/scoping/FormatScopingTest.java +++ b/com.avaloq.tools.ddk.xtext.format.test/src/com/avaloq/tools/ddk/xtext/format/scoping/FormatScopingTest.java @@ -27,7 +27,7 @@ import org.eclipse.xtext.nodemodel.ICompositeNode; import org.eclipse.xtext.nodemodel.ILeafNode; import org.eclipse.xtext.nodemodel.util.NodeModelUtils; -import org.junit.Test; +import org.junit.jupiter.api.Test; import com.avaloq.tools.ddk.xtext.format.format.FormatConfiguration; import com.avaloq.tools.ddk.xtext.format.format.FormatPackage; @@ -101,13 +101,13 @@ protected void beforeEachTest() { * Bug AIG-718. * Tests that all grammars' rules are scoped. */ - @Test + @org.junit.jupiter.api.Test public void allGrammarsScoped() { Set expectedURIs = Sets.newHashSet(EcoreUtil.getURI(grammarC.getRules().get(0)), EcoreUtil.getURI(grammarB.getRules().get(0)), EcoreUtil.getURI(grammarA.getRules().get(0)), EcoreUtil.getURI(grammarA.getRules().get(1))); assertScope(formatC, FormatPackage.Literals.GRAMMAR_RULE__TARGET_RULE, expectedURIs); } - @Test + @org.junit.jupiter.api.Test public void keywordScoped() { AbstractRule parserRuleA = grammarA.getRules().get(0); Set keywordURIs = Sets.newHashSet(Iterables.transform(GrammarUtil.containedKeywords(parserRuleA), TO_URI)); @@ -152,7 +152,7 @@ public void ruleSelfScoped() { assertScope(formatC.getRules().get(0), FormatPackage.Literals.GRAMMAR_ELEMENT_REFERENCE__SELF, TO_URI.apply(parserRuleA)); } - @Test + @org.junit.jupiter.api.Test public void groupScoped() { ParserRule parserRuleA = (ParserRule) grammarA.getRules().get(0); diff --git a/com.avaloq.tools.ddk.xtext.format.test/src/com/avaloq/tools/ddk/xtext/format/validation/FormatValidationTest.java b/com.avaloq.tools.ddk.xtext.format.test/src/com/avaloq/tools/ddk/xtext/format/validation/FormatValidationTest.java index 1e3919b30..9b686920f 100644 --- a/com.avaloq.tools.ddk.xtext.format.test/src/com/avaloq/tools/ddk/xtext/format/validation/FormatValidationTest.java +++ b/com.avaloq.tools.ddk.xtext.format.test/src/com/avaloq/tools/ddk/xtext/format/validation/FormatValidationTest.java @@ -15,7 +15,7 @@ import java.io.IOException; import java.util.List; -import org.junit.Test; +import org.junit.jupiter.api.Test; import com.avaloq.tools.ddk.xtext.format.format.FormatConfiguration; import com.avaloq.tools.ddk.xtext.test.format.util.FormatTestUtil; @@ -102,7 +102,7 @@ private FormatConfiguration createModel(final String formatName, final String ex /** * Tests that non-'rule' directives are invalid in a terminal rule context. */ - @Test + @org.junit.jupiter.api.Test public void testNegativeACF1000() { setFormattingRules(new String[0], "INT_EXP { \"e\" : no_space around;}"); assertDiagnostic(parentFormat, FormatValidator.ILLEGAL_DIRECTIVE_CODE); @@ -111,7 +111,7 @@ public void testNegativeACF1000() { /** * Tests that 'rule' directives are valid in a terminal rule context. */ - @Test + @org.junit.jupiter.api.Test public void testPositiveACF1000() { setFormattingRules(new String[0], "INT_EXP { rule : no_space around;}"); assertNoDiagnostic(parentFormat, FormatValidator.ILLEGAL_DIRECTIVE_CODE); @@ -120,7 +120,7 @@ public void testPositiveACF1000() { /** * Verify that IllegalOverride validation issues error for WildcardRules. */ - @Test + @org.junit.jupiter.api.Test public void illegalWildcardRuleOverride() { setFormattingRules(new String[] {OVERRIDE_WILDCARD_RULE}); assertDiagnostic(extendingFormat, FormatValidator.OVERRIDE_ILLEGAL_CODE); @@ -138,7 +138,7 @@ public void illegalGrammarRuleOverride() { /** * Verify that OverrideMissing validation issues error for WildcardRules. */ - @Test + @org.junit.jupiter.api.Test public void missingWildcardRuleOverride() { setFormattingRules(new String[] {WILDCARD_RULE}, WILDCARD_RULE); @@ -157,7 +157,7 @@ public void missingGrammarRuleOverride() { /** * Verify that OverrideMissing nor IllegalOverride validations issue no error. */ - @Test + @org.junit.jupiter.api.Test public void wildcardRuleOverrideOK() { setFormattingRules(new String[] {OVERRIDE_WILDCARD_RULE}, WILDCARD_RULE); assertNoDiagnostic(extendingFormat, FormatValidator.OVERRIDE_MISSING_CODE); @@ -167,7 +167,7 @@ public void wildcardRuleOverrideOK() { /** * Verify that OverrideMissing nor IllegalOverride validations issue no error. */ - @Test + @org.junit.jupiter.api.Test public void grammarRuleOverrideOK() { setFormattingRules(new String[] {OVERRIDE_INT_EXP_RULE}, INT_EXP_RULE); assertNoDiagnostic(extendingFormat, FormatValidator.OVERRIDE_MISSING_CODE); @@ -177,7 +177,7 @@ public void grammarRuleOverrideOK() { /** * Verify that ExtendedGrammarCompatible validation issues error when grammars of the Format models are incompatible. */ - @Test + @org.junit.jupiter.api.Test public void extendedGrammarCompatible() { try { getXtextTestUtil().getModel("MyDsl.xtext", "grammar com.avaloq.tools.ddk.xtext.format.validation.MyDsl\nimport \"http://www.eclipse.org/emf/2002/Ecore\" as ecore\nRule: 'rule';"); @@ -191,7 +191,7 @@ public void extendedGrammarCompatible() { /** * Verify that ExtendedGrammarCompatible validation issues no error. */ - @Test + @org.junit.jupiter.api.Test public void extendedGrammarCompatibleOK() { createModel(PARENT_MODEL_NAME, null); FormatConfiguration extendModel = createModel(EXTENDING_MODEL_NAME, PARENT_MODEL_NAME); diff --git a/com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/expression/CodeGenerationXTest.java b/com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/expression/CodeGenerationXTest.java index 2d0e11135..4bd3cef04 100644 --- a/com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/expression/CodeGenerationXTest.java +++ b/com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/expression/CodeGenerationXTest.java @@ -17,7 +17,7 @@ import org.eclipse.xtend.expression.ExecutionContextImpl; import org.eclipse.xtend.type.impl.java.JavaBeansMetaModel; import org.eclipse.xtend.typesystem.emf.EmfRegistryMetaModel; -import org.junit.Test; +import org.junit.jupiter.api.Test; import com.avaloq.tools.ddk.xtext.expression.expression.Expression; import com.avaloq.tools.ddk.xtext.expression.generator.CompilationContext; @@ -71,19 +71,19 @@ public void testliterals() throws Exception { // CHECKSTYLE:CONSTANTS-ON } - @Test + @org.junit.jupiter.api.Test public void testListLiterals() throws Exception { assertEquals("java.util.Collections. emptyList()", compile("{}")); // NOPMD assertEquals("java.util.Collections.singletonList(1)", compile("{1}")); // NOPMD assertEquals("com.google.common.collect.Lists.newArrayList(1, 2, 3)", compile("{1,2,3}")); // NOPMD } - @Test + @org.junit.jupiter.api.Test public void testIdentifiers() throws Exception { assertEquals("obj.getTrue()", compile("^true")); // NOPMD } - @Test + @org.junit.jupiter.api.Test public void testBracketing() throws Exception { // CHECKSTYLE:CONSTANTS-OFF assertEquals("(4 + 2) * 3", compile("(4 + 2) * 3")); // NOPMD @@ -114,7 +114,7 @@ public void testBooleanLogic() throws Exception { // CHECKSTYLE:CONSTANTS-ON } - @Test + @org.junit.jupiter.api.Test public void testArithmetics() throws Exception { // CHECKSTYLE:CONSTANTS-OFF assertEquals("4 + 2", compile("4 + 2")); // NOPMD @@ -125,7 +125,7 @@ public void testArithmetics() throws Exception { // CHECKSTYLE:CONSTANTS-ON } - @Test + @org.junit.jupiter.api.Test public void testPrefixExpressions() throws Exception { // CHECKSTYLE:CONSTANTS-OFF assertEquals("-(4 * 2)", compile("-(4 * 2)")); // NOPMD @@ -148,7 +148,7 @@ public void testInfixExpressions() throws Exception { // CHECKSTYLE:CONSTANTS-ON } - @Test + @org.junit.jupiter.api.Test public void testImplicitVariable() throws Exception { assertEquals("obj", compile("this")); // NOPMD } @@ -158,13 +158,13 @@ public void testCasting() throws Exception { assertEquals("((org.eclipse.emf.ecore.EObject) obj)", compile("(ecore::EObject) this")); // NOPMD } - @Test + @org.junit.jupiter.api.Test public void testTypes() throws Exception { assertEquals("org.eclipse.emf.ecore.EObject", compile("ecore::EObject")); // NOPMD assertEquals("String", compile("java::lang::String")); // NOPMD } - @Test + @org.junit.jupiter.api.Test public void testIsInstance() throws Exception { assertEquals("obj instanceof org.eclipse.emf.ecore.EObject", compile("ecore::EObject.isInstance(this)")); // NOPMD } @@ -177,7 +177,7 @@ public void testEContainerNavigation() throws Exception { // CHECKSTYLE:CONSTANTS-ON } - @Test + @org.junit.jupiter.api.Test public void testTypeSelect() throws Exception { assertEquals(// NOPMD "com.google.common.collect.Iterables.filter(obj.getFoos(), org.eclipse.emf.ecore.EObject.class)", compile("this.foos.typeSelect(ecore::EObject)")); diff --git a/com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/expression/CompilationContextTest.java b/com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/expression/CompilationContextTest.java index 4076a4340..6a29967a1 100644 --- a/com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/expression/CompilationContextTest.java +++ b/com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/expression/CompilationContextTest.java @@ -20,7 +20,7 @@ import org.eclipse.xtend.expression.ExecutionContextImpl; import org.eclipse.xtend.type.impl.java.JavaBeansMetaModel; import org.eclipse.xtend.typesystem.Type; -import org.junit.Test; +import org.junit.jupiter.api.Test; import com.avaloq.tools.ddk.xtext.expression.generator.CompilationContext; diff --git a/com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/expression/ExpressionsExtentionsTest.java b/com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/expression/ExpressionsExtentionsTest.java index c55344faf..f2e4b149a 100644 --- a/com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/expression/ExpressionsExtentionsTest.java +++ b/com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/expression/ExpressionsExtentionsTest.java @@ -14,7 +14,7 @@ import java.io.IOException; -import org.junit.Test; +import org.junit.jupiter.api.Test; import com.avaloq.tools.ddk.xtext.expression.expression.Expression; import com.avaloq.tools.ddk.xtext.expression.generator.ExpressionExtensions; diff --git a/com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/test/util/EClassComparatorTest.java b/com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/test/util/EClassComparatorTest.java index 36e0c08de..c3737545a 100644 --- a/com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/test/util/EClassComparatorTest.java +++ b/com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/test/util/EClassComparatorTest.java @@ -23,13 +23,13 @@ import org.eclipse.emf.ecore.EPackage; import org.eclipse.emf.ecore.EcorePackage; import org.eclipse.xtext.XtextPackage; -import org.junit.Test; import com.avaloq.tools.ddk.xtext.expression.generator.EClassComparator; import com.google.common.base.Function; import com.google.common.base.Functions; import com.google.common.collect.ListMultimap; import com.google.common.collect.Lists; +import org.junit.jupiter.api.Test; @SuppressWarnings("PMD.JUnitAssertionsShouldIncludeMessage") @@ -37,7 +37,7 @@ public class EClassComparatorTest { private final Function mapping = Functions. identity(); - @Test + @org.junit.jupiter.api.Test public void testSorting() { List sorted = EClassComparator.sortedGroups(Lists.newArrayList(ECLASS, EDATA_TYPE, EPACKAGE, ECLASSIFIER), mapping); assertEquals(Lists.newArrayList(ECLASS, EDATA_TYPE, EPACKAGE, ECLASSIFIER), sorted); diff --git a/com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/test/util/GraphTest.java b/com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/test/util/GraphTest.java index a822ee512..7d352e3cb 100644 --- a/com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/test/util/GraphTest.java +++ b/com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/test/util/GraphTest.java @@ -16,7 +16,7 @@ import java.util.List; import java.util.Map; -import org.junit.Test; +import org.junit.jupiter.api.Test; import com.avaloq.tools.ddk.xtext.expression.generator.Graph; import com.google.common.collect.HashMultimap; diff --git a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/AbstractTest.java b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/AbstractTest.java index 1e53e0e83..a1e33719a 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/AbstractTest.java +++ b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/AbstractTest.java @@ -26,10 +26,10 @@ import org.eclipse.emf.common.util.WrappedException; import org.eclipse.ui.IEditorPart; import org.eclipse.ui.actions.WorkspaceModifyOperation; -import org.junit.After; -import org.junit.AfterClass; -import org.junit.Before; -import org.junit.BeforeClass; +import org.junit.jupiter.api.AfterAll; +import org.junit.jupiter.api.AfterEach; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.BeforeAll; import org.junit.Rule; import org.junit.runner.RunWith; @@ -154,7 +154,7 @@ public final void tearDown() { * If it is run the first time, it calls the beforeClass method first. Do not call this method manually! * All exceptions are wrapped and handed over to the JUnit framework. */ - @Before + @BeforeEach public final void before() { beforeEachTest(); } @@ -164,7 +164,7 @@ public final void before() { * If no more tests are to be run, it calls the afterClass method. Do not call this method manually! * All exceptions are wrapped and handed over to the JUnit framework. */ - @After + @AfterEach public final void after() { afterEachTest(); } @@ -363,7 +363,7 @@ protected String getTestSourceModelName() { private void enforceAnnotationPolicies() { for (Method method : this.getClass().getMethods()) { // use this policy to not allow BeforeClass or AfterClass annotations. - if (method.isAnnotationPresent(BeforeClass.class) || method.isAnnotationPresent(AfterClass.class)) { + if (method.isAnnotationPresent(BeforeAll.class) || method.isAnnotationPresent(AfterAll.class)) { throw new IllegalJUnitAnnotation(); } // use this policy to not allow Before or After annotations in subclasses. diff --git a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/formatting/AbstractFormattingTest.java b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/formatting/AbstractFormattingTest.java index 561c3aff5..d2f11e280 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/formatting/AbstractFormattingTest.java +++ b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/formatting/AbstractFormattingTest.java @@ -19,7 +19,7 @@ import org.eclipse.xtext.nodemodel.util.NodeModelUtils; import org.eclipse.xtext.resource.SaveOptions; import org.junit.Assert; -import org.junit.Test; +import org.junit.jupiter.api.Test; import com.avaloq.tools.ddk.xtext.test.AbstractXtextTest; @@ -89,7 +89,7 @@ public void preservedParseTreeConstructor() { /** * Test preservation of formatting using NodeModelFormatter. */ - @Test + @org.junit.jupiter.api.Test public void preservedNodeModel() { assertPreservedNodeModel(); } diff --git a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/generator/AbstractGeneratorTest.java b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/generator/AbstractGeneratorTest.java index a9ae4fc86..bb27db83d 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/generator/AbstractGeneratorTest.java +++ b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/generator/AbstractGeneratorTest.java @@ -43,7 +43,7 @@ import org.eclipse.xtext.ui.testing.util.IResourcesSetupUtil; import org.eclipse.xtext.ui.testing.util.JavaProjectSetupUtil; import org.eclipse.xtext.ui.util.PluginProjectFactory; -import org.junit.AfterClass; +import org.junit.jupiter.api.AfterAll; import org.junit.Assert; import com.google.common.base.Functions; @@ -91,7 +91,7 @@ public abstract class AbstractGeneratorTest { /** * Clean up after all tests have terminated. */ - @AfterClass + @AfterAll public static void cleanUp() { try { IResourcesSetupUtil.cleanWorkspace(); diff --git a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/junit/runners/XtextClassRunner.java b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/junit/runners/XtextClassRunner.java index b616167c5..ea236ecac 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/junit/runners/XtextClassRunner.java +++ b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/junit/runners/XtextClassRunner.java @@ -21,12 +21,12 @@ import org.apache.logging.log4j.Logger; import org.eclipse.xtext.testing.XtextRunner; import org.junit.Assert; -import org.junit.Ignore; -import org.junit.Test; +import org.junit.jupiter.api.Disabled; import org.junit.internal.AssumptionViolatedException; import org.junit.internal.runners.model.EachTestNotifier; import org.junit.internal.runners.statements.RunAfters; import org.junit.internal.runners.statements.RunBefores; +import org.junit.jupiter.api.Test; import org.junit.runner.Description; import org.junit.runner.manipulation.Filter; import org.junit.runner.manipulation.NoTestsRemainException; @@ -61,7 +61,7 @@ *

*

Test Methods

Considered are all those methods of the test class that are annotated with one (or more) of the following test annotations: *
    - *
  • {@link Test} + *
  • {@link org.junit.jupiter.api.Test} *
  • {@link UnitTest} *
  • {@link ModuleTest} *
  • {@link IntegrationTest} @@ -102,7 +102,7 @@ public class XtextClassRunner extends XtextRunner { /** Class-wide logger. */ private static final Logger LOGGER = LogManager.getLogger(XtextClassRunner.class); @SuppressWarnings("unchecked") - private static final List> TEST_ANNOTATIONS = Lists.newArrayList(Test.class, UnitTest.class, ModuleTest.class, IntegrationTest.class, SystemTest.class, PerformanceTest.class, BugTest.class); + private static final List> TEST_ANNOTATIONS = Lists.newArrayList(org.junit.jupiter.api.Test.class, UnitTest.class, ModuleTest.class, IntegrationTest.class, SystemTest.class, PerformanceTest.class, BugTest.class); private List expectedMethods; private int currentMethodIndex; private final int testRuns; @@ -141,7 +141,7 @@ private void ensureInitialized() { expectedMethods = ImmutableList.copyOf(Iterables.filter(testMethods, new Predicate() { @Override public boolean apply(final FrameworkMethod input) { - return input.getAnnotation(Ignore.class) == null; + return input.getAnnotation(Disabled.class) == null; } })); currentMethodIndex = 0; @@ -185,7 +185,7 @@ public void filter(final Filter filter) throws NoTestsRemainException { @Override protected void runChild(final FrameworkMethod method, final RunNotifier notifier) { ensureInitialized(); - final boolean ignored = method.getAnnotation(Ignore.class) != null; + final boolean ignored = method.getAnnotation(Disabled.class) != null; if (!ignored) { Assert.assertEquals("Method " + method.getName() + " not equal", expectedMethods.get(currentMethodIndex++), method); //$NON-NLS-1$//$NON-NLS-2$ } diff --git a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/labeling/AbstractLabelingTest.java b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/labeling/AbstractLabelingTest.java index c1ced9244..bb563859b 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/labeling/AbstractLabelingTest.java +++ b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/labeling/AbstractLabelingTest.java @@ -26,9 +26,9 @@ import org.eclipse.xtext.util.Pair; import org.eclipse.xtext.util.Tuples; import org.junit.Assert; -import org.junit.Test; import com.avaloq.tools.ddk.xtext.test.AbstractXtextTest; +import org.junit.jupiter.api.Test; /** @@ -49,7 +49,7 @@ protected List> getExpectedElementLabels() { /** * Tests that the expected elements and their labels are exactly identical to all elements of the default test resource. */ - @Test + @org.junit.jupiter.api.Test public void testLabels() { if (getExpectedElementLabels() == null) { return; // TODO: remove this check once all tests have been refactored diff --git a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/occurrences/AbstractOccurrencesTest.java b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/occurrences/AbstractOccurrencesTest.java index 097bf9029..38b14c66c 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/occurrences/AbstractOccurrencesTest.java +++ b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/occurrences/AbstractOccurrencesTest.java @@ -28,12 +28,12 @@ import org.eclipse.ui.texteditor.IDocumentProvider; import org.eclipse.ui.texteditor.ITextEditor; import org.eclipse.xtext.ui.editor.occurrences.Messages; -import org.junit.After; -import org.junit.Before; +import org.junit.jupiter.api.AfterEach; import com.avaloq.tools.ddk.test.core.util.JobChangeListener; import com.avaloq.tools.ddk.xtext.test.ui.AbstractXtextUiTest; import com.google.common.collect.Sets; +import org.junit.jupiter.api.BeforeEach; /** @@ -157,7 +157,7 @@ protected void addKernelSourceToWorkspace(final String sourceFileName, final Cha /** * Sets up the {@link JobChangeListener}. */ - @Before + @BeforeEach public void setUpJobListener() { Job.getJobManager().addJobChangeListener(jobChangeListener); } @@ -165,7 +165,7 @@ public void setUpJobListener() { /** * Tears down the {@link JobChangeListener}. */ - @After + @AfterEach public void tearDownJobListener() { Job.getJobManager().removeJobChangeListener(jobChangeListener); jobChangeListener.reset(); diff --git a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/outline/AbstractOutlineTest.java b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/outline/AbstractOutlineTest.java index b95f2a98a..5780e7b7c 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/outline/AbstractOutlineTest.java +++ b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/outline/AbstractOutlineTest.java @@ -28,7 +28,7 @@ import org.eclipse.xtext.ui.editor.outline.impl.EStructuralFeatureNode; import org.eclipse.xtext.util.concurrent.IUnitOfWork; import org.junit.Assert; -import org.junit.Test; +import org.junit.jupiter.api.Test; import com.avaloq.tools.ddk.xtext.test.ui.AbstractXtextEditorTest; import com.google.common.base.Predicate; diff --git a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/builder/XtextBuildTriggerTest.java b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/builder/XtextBuildTriggerTest.java index 21f8b1f11..e04387c70 100644 --- a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/builder/XtextBuildTriggerTest.java +++ b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/builder/XtextBuildTriggerTest.java @@ -25,8 +25,8 @@ import org.eclipse.xtext.builder.impl.BuildScheduler; import org.eclipse.xtext.builder.impl.IBuildFlag; import org.eclipse.xtext.testing.AbstractXtextTests; -import org.junit.Before; -import org.junit.Test; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; import org.mockito.ArgumentMatchers; import com.avaloq.tools.ddk.xtext.builder.layered.XtextBuildTrigger; @@ -40,7 +40,7 @@ public class XtextBuildTriggerTest extends AbstractXtextTests { private BuildScheduler scheduler; @Override - @Before + @BeforeEach public void setUp() throws Exception { super.setUp(); workspace = mock(IWorkspace.class); diff --git a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/formatter/FormatterTest.java b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/formatter/FormatterTest.java index 473afeeb7..bd12e2340 100644 --- a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/formatter/FormatterTest.java +++ b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/formatter/FormatterTest.java @@ -14,8 +14,8 @@ import org.eclipse.xtext.resource.SaveOptions; import org.junit.Assert; -import org.junit.Ignore; -import org.junit.Test; +import org.junit.jupiter.api.Disabled; +import org.junit.jupiter.api.Test; import com.avaloq.tools.ddk.xtext.formatter.formatterTestLanguage.Decl; import com.avaloq.tools.ddk.xtext.formatter.formatterTestLanguage.FormatterTestLanguageFactory; @@ -47,7 +47,7 @@ protected String getTestSourceFileName() { * * @throws IOException */ - @Test + @org.junit.jupiter.api.Test public void linewrap() throws IOException { String model = "test linewrap float val; int x; double y;"; String expected = "test linewrap\nfloat val;\nint x;\ndouble y;"; @@ -62,7 +62,7 @@ public void linewrap() throws IOException { * * @throws IOException */ - @Test + @org.junit.jupiter.api.Test public void keepComments() throws IOException { // String model = "test linewrap float val; int x; double y;"; String model = "// begincomment \ntest linewrap// comment1\n" + "float val;//comment2\n" + "int x;" + "double y; //yoyoyo!\n// endcomment."; @@ -77,7 +77,7 @@ public void keepComments() throws IOException { * * @throws IOException */ - @Test + @org.junit.jupiter.api.Test public void column() throws IOException { String model = "test column item int x;"; String expected = "test\n column\n\titem int x;"; @@ -135,7 +135,7 @@ public void rightPadding() throws IOException { * * @throws IOException */ - @Test + @org.junit.jupiter.api.Test public void indentation() throws IOException { String model = "test indentation { float val; double y; indentation { int x; } }"; String expected = "test indentation {\n float val;\n double y;\n indentation {\n int x;\n }\n}"; @@ -150,7 +150,7 @@ public void indentation() throws IOException { * * @throws IOException */ - @Test + @org.junit.jupiter.api.Test public void association() throws IOException { String model = "test indentation { var = [0,1,2,3,4]; }"; String expected = "test indentation {\n var=[ 0, 1, 2, 3, 4 ];\n}"; @@ -196,7 +196,7 @@ public void indentationAndLineWrap() throws IOException { * * @throws IOException */ - @Test + @org.junit.jupiter.api.Test public void between1() throws IOException { String model = "test indentation { indentation { x x; }; }"; String expected = "test indentation {\n indentation {\n x x;\n };\n}"; @@ -226,7 +226,7 @@ public void between2() throws IOException { * * @throws IOException */ - @Test + @org.junit.jupiter.api.Test public void linewrapDatatypeRule() throws IOException { String model = "test linewrap fqn ab; fqn xx.yy.zz;"; String expected = "test linewrap\nfqn\nab;\nfqn\nxx.yy.zz;"; @@ -241,7 +241,7 @@ public void linewrapDatatypeRule() throws IOException { * * @throws IOException */ - @Test + @org.junit.jupiter.api.Test public void linewrapDatatypeRulePartial1() throws IOException { String model = "test linewrap fqn ab . xx .yy .zz;"; String expected = "test linewrap fqn ab.xx.yy.zz;"; @@ -254,7 +254,7 @@ public void linewrapDatatypeRulePartial1() throws IOException { * * @throws IOException */ - @Test + @org.junit.jupiter.api.Test public void linewrapDatatypeRulePartial2() throws IOException { String model = "test linewrap fqn ab . xx .yy .zz;fqn xxx;"; String expected = "test linewrap fqn\nab.xx.yy.zz;fqn xxx;"; @@ -267,7 +267,7 @@ public void linewrapDatatypeRulePartial2() throws IOException { * * @throws IOException */ - @Test + @org.junit.jupiter.api.Test public void linewrapDatatypeRulePartial3() throws IOException { String model = "test linewrap fqn ab . xx .yy .zz;fqn xxx;"; String expected = "test linewrap fqn ab.xx.yy.zz;\nfqn xxx;"; @@ -320,7 +320,7 @@ public void formatSegment3() throws IOException { * * @throws IOException */ - @Test + @org.junit.jupiter.api.Test public void linewrapDatatypeRuleRef1() throws IOException { String model = "test linewrap fqn ab .cd .ef; fqnref ab. cd. ef;"; String expected = "test linewrap\nfqn\nab.cd.ef;\nfqnref\nab.cd.ef;"; @@ -350,7 +350,7 @@ public void linewrapDatatypeRuleRef2() throws IOException { * * @throws IOException */ - @Test + @org.junit.jupiter.api.Test public void linewrapDatatypeRuleComments() throws IOException { String model = "test linewrap/* 1 */fqn/* 2 */ab.cd.ef/* 3 */;/* 4 */fqnref/* 5 */ab.cd.ef/* 6 */;/* 7 */"; // The expected model string differs from Xtext's - @@ -402,7 +402,7 @@ public void suppressedWhitespace() throws IOException { */ // TODO: investigate whether to include test or not - currently this test // would fail - @Ignore + @Disabled public void suppressedLinewrap() throws IOException { String model = "test linewrap\n`foo%abcd%foo%< b\n>%abcd%foo%abcd%foo%abcd%" + "foo%abcd%foo%abcd%foo%abcd%foo%abcd%foo%abcd%foo%xx%foo%abcd%foo%abcd%" + "foo%abcd%foo%<\nb >%foo%abcd` post;"; @@ -417,7 +417,7 @@ public void suppressedLinewrap() throws IOException { * * @throws IOException */ - @Test + @org.junit.jupiter.api.Test public void linewrapMin() throws IOException { String model = "test wrapminmax foo bar;"; String expected = "test wrapminmax\n\nfoo bar;"; @@ -447,7 +447,7 @@ public void linewrapMax() throws IOException { * * @throws IOException */ - @Test + @org.junit.jupiter.api.Test public void linewrapKeep() throws IOException { String model = "test wrapminmax\n\n\n\nfoo bar;"; assertFormattedPTC(model, model); @@ -461,7 +461,7 @@ public void linewrapKeep() throws IOException { * * @throws IOException */ - @Test + @org.junit.jupiter.api.Test public void linewrapDefault() { FormatterTestLanguageFactory f = FormatterTestLanguageFactory.eINSTANCE; TestLinewrapMinMax m = f.createTestLinewrapMinMax(); @@ -480,7 +480,7 @@ public void linewrapDefault() { * * @throws IOException */ - @Test + @org.junit.jupiter.api.Test public void space() throws IOException { String model = "test linewrap space foo;"; String expected = "test linewrap\nspace foo;"; diff --git a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/linking/AbstractFragmentProviderTest.java b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/linking/AbstractFragmentProviderTest.java index 80d605e0f..669677c08 100644 --- a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/linking/AbstractFragmentProviderTest.java +++ b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/linking/AbstractFragmentProviderTest.java @@ -12,7 +12,7 @@ import org.eclipse.emf.ecore.EObject; import org.junit.Assert; -import org.junit.Test; +import org.junit.jupiter.api.Test; /** @@ -63,7 +63,7 @@ public void testUnescape() { Assert.assertEquals("Fragment not properly unscaped", "foo//bar##\\", fragmentProvider.unescape("foo\\/\\/bar##\\\\")); } - @Test + @org.junit.jupiter.api.Test public void testUnescapeEscape() { for (String text : SPECIAL_ESCAPE_CASES) { StringBuilder builder = new StringBuilder(); diff --git a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/linking/ShortFragmentProviderTest.java b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/linking/ShortFragmentProviderTest.java index b6fa89923..873c5d6c6 100644 --- a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/linking/ShortFragmentProviderTest.java +++ b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/linking/ShortFragmentProviderTest.java @@ -18,14 +18,15 @@ import org.eclipse.emf.ecore.resource.impl.ResourceImpl; import org.eclipse.emf.ecore.util.EcoreUtil; import org.eclipse.xtext.resource.IFragmentProvider; -import org.junit.After; +import org.junit.jupiter.api.*; import org.junit.Assert; -import org.junit.Before; -import org.junit.Test; +import org.junit.jupiter.api.AfterEach; +import org.junit.jupiter.api.Test; import com.avaloq.tools.ddk.test.core.BugTest; import com.avaloq.tools.ddk.xtext.test.AbstractTest; import com.avaloq.tools.ddk.xtext.test.AbstractTestUtil; +import org.junit.jupiter.api.BeforeEach; /** @@ -58,7 +59,7 @@ public EObject getEObject(final String fragment) { private EReference testReference; private EReference testReference2; - @Before + @BeforeEach public void initialize() { EcoreFactory ecoreFactory = EcoreFactory.eINSTANCE; @@ -80,7 +81,7 @@ public void initialize() { EPackage.Registry.INSTANCE.put(testPackage.getNsURI(), testPackage); } - @After + @AfterEach public void cleanup() { EPackage.Registry.INSTANCE.remove(testPackage.getNsURI()); } @@ -105,7 +106,7 @@ public void testLongFragment() { Assert.assertEquals(FRAGMENT_MUST_BE_EQUAL, parent, fragmentProvider.getEObject(resource, fragment, fragmentFallback)); } - @Test + @org.junit.jupiter.api.Test public void testLongFragment2() { int reps = 10; EObject root = EcoreUtil.create(testClass); diff --git a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/naming/QualifiedNamePatternTest.java b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/naming/QualifiedNamePatternTest.java index 365a3b6d0..a37d48b8e 100644 --- a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/naming/QualifiedNamePatternTest.java +++ b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/naming/QualifiedNamePatternTest.java @@ -17,7 +17,7 @@ import java.util.Comparator; import org.eclipse.xtext.naming.QualifiedName; -import org.junit.Test; +import org.junit.jupiter.api.Test; import org.junit.runner.RunWith; import com.avaloq.tools.ddk.test.core.BugTest; @@ -39,7 +39,7 @@ public void testSimpleQualifiedNamePattern() { assertNoMatch(pattern, "foo", "bar"); } - @Test + @org.junit.jupiter.api.Test public void testQualifiedPrefixNamePattern() { QualifiedNamePattern pattern = QualifiedNamePattern.create("foo", "*"); assertEquals(QualifiedName.create("foo", ""), pattern.lowerInclusive()); @@ -53,7 +53,7 @@ public void testQualifiedPrefixNamePattern() { assertEquals(QualifiedName.create("foo", "bas"), pattern.upperExclusive()); } - @Test + @org.junit.jupiter.api.Test public void testRecursiveWildcardPattern() { QualifiedNamePattern pattern = QualifiedNamePattern.create("foo", "**"); assertEquals(QualifiedName.create("foo", ""), pattern.lowerInclusive()); @@ -63,7 +63,7 @@ public void testRecursiveWildcardPattern() { assertNoMatch(pattern, "foo2", "bar"); } - @Test + @org.junit.jupiter.api.Test public void testRecursiveWildcardPatternWithPrefix() { QualifiedNamePattern pattern = QualifiedNamePattern.create("foo", "b**"); assertEquals(QualifiedName.create("foo", "b"), pattern.lowerInclusive()); @@ -78,24 +78,24 @@ public void testRecursiveWildcardPatternError() { QualifiedNamePattern.create("foo", "bar**baz"); } - @Test(expected = IllegalArgumentException.class) + @org.junit.jupiter.api.Test(expected = IllegalArgumentException.class) public void testRecursiveWildcardPatternError2() { QualifiedNamePattern.create("foo", "**", "bar"); } - @Test(expected = IllegalArgumentException.class) + @org.junit.jupiter.api.Test(expected = IllegalArgumentException.class) public void testRecursiveWildcardPatternError3() { QualifiedNamePattern.create("foo*bar"); } - @Test + @org.junit.jupiter.api.Test public void testAllPattern() { QualifiedNamePattern pattern = QualifiedNamePattern.create("*"); assertEquals(QualifiedName.create(""), pattern.lowerInclusive()); assertEquals(QualifiedName.create("!"), pattern.upperExclusive()); } - @Test + @org.junit.jupiter.api.Test public void testPatternWithoutWildcard() { QualifiedNamePattern pattern = QualifiedNamePattern.create("foo"); assertEquals(QualifiedName.create("foo"), pattern.lowerInclusive()); diff --git a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/naming/QualifiedNameSegmentTreeLookupTest.java b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/naming/QualifiedNameSegmentTreeLookupTest.java index 05968c87f..7cb687f84 100644 --- a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/naming/QualifiedNameSegmentTreeLookupTest.java +++ b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/naming/QualifiedNameSegmentTreeLookupTest.java @@ -18,9 +18,9 @@ import org.eclipse.emf.common.util.URI; import org.eclipse.xtext.naming.QualifiedName; -import org.junit.Test; import com.google.common.collect.ImmutableSet; +import org.junit.jupiter.api.Test; @SuppressWarnings({"nls", "unused", "PMD.JUnitAssertionsShouldIncludeMessage"}) @@ -34,7 +34,7 @@ public void testEmpty() { assertNull(lookup.get(QualifiedName.EMPTY)); } - @Test + @org.junit.jupiter.api.Test public void testExact() { QualifiedName name = name("foo"); Collection values = Collections.singletonList(uri(name)); @@ -63,7 +63,7 @@ public void testTopLevelPatternWithoutWildcard() { assertContentEquals(ImmutableSet.of(value3), lookup.get(pattern("foo2"), false)); } - @Test + @org.junit.jupiter.api.Test public void testTopLevelPatternWithWildcard() { URI value1 = put("foo"); URI value2 = put("foo2"); @@ -74,7 +74,7 @@ public void testTopLevelPatternWithWildcard() { assertContentEquals(ImmutableSet.of(value3), lookup.get(pattern("b*"), true)); } - @Test + @org.junit.jupiter.api.Test public void testNestedPatternMatchesWithoutWildcard() { URI value1 = put("foo"); URI value2 = put("foo.bar"); @@ -85,7 +85,7 @@ public void testNestedPatternMatchesWithoutWildcard() { assertContentEquals(ImmutableSet.of(value3), lookup.get(pattern("foo2"), true)); } - @Test + @org.junit.jupiter.api.Test public void testNestedPatternMatchesWithWildcard() { URI value1 = put("foo"); URI value2 = put("foo.bar"); @@ -99,7 +99,7 @@ public void testNestedPatternMatchesWithWildcard() { assertContentEquals(ImmutableSet.of(value2), lookup.get(pattern("foo.bar*"), true)); } - @Test + @org.junit.jupiter.api.Test public void testNestedPatternMatchesWithRecursiveWildcard() { URI value1 = put("foo"); URI value2 = put("foo.bar"); @@ -112,7 +112,7 @@ public void testNestedPatternMatchesWithRecursiveWildcard() { assertContentEquals(ImmutableSet.of(value2, value3, value4), lookup.get(pattern("foo.b**"), true)); } - @Test + @org.junit.jupiter.api.Test public void testUnmatchedNestedPattern() { URI value1 = put("foo"); URI value2 = put("foo.bar"); @@ -131,7 +131,7 @@ public void testUnmatchedNestedPattern() { assertContentEquals(ImmutableSet.of(), lookup.get(pattern("foo.bar.bazz*"), true)); } - @Test + @org.junit.jupiter.api.Test public void testOutOfOrderInsertion() { QualifiedName name1 = name("foo.bar"); Collection value1 = Collections.singletonList(uri(name1)); diff --git a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/resource/AbstractSelectorFragmentProviderTest.java b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/resource/AbstractSelectorFragmentProviderTest.java index 1ac4353de..8ff421884 100644 --- a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/resource/AbstractSelectorFragmentProviderTest.java +++ b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/resource/AbstractSelectorFragmentProviderTest.java @@ -24,8 +24,8 @@ import org.eclipse.xtext.testing.AbstractXtextTests; import org.eclipse.xtext.resource.IFragmentProvider; import org.eclipse.xtext.util.Modules2; -import org.junit.Before; -import org.junit.Test; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; import com.google.inject.AbstractModule; @@ -38,7 +38,7 @@ public class AbstractSelectorFragmentProviderTest extends AbstractXtextTests { // CHECKSTYLE:ON - @Before + @BeforeEach @Override public void setUp() throws Exception { super.setUp(); @@ -50,7 +50,7 @@ protected void configure() { })); } - @Test + @org.junit.jupiter.api.Test public void testTopLevelObject() throws Exception { Grammar grammar = (Grammar) getModel("grammar foo.Foo\n" + "generate foo 'http://www.foo.com/foo'\n" + "Foo: 'foo';"); assertFragmentMatchesAndResolves(grammar.eResource(), "/0", grammar); @@ -62,13 +62,13 @@ public void testMultiValuedContainment() throws Exception { assertFragmentMatchesAndResolves(grammar.eResource(), "/0/5(0='Foo')#0", grammar.getRules().get(0)); } - @Test + @org.junit.jupiter.api.Test public void testSingleValuedContainment() throws Exception { Grammar grammar = (Grammar) getModel("grammar foo.Foo\n" + "generate foo 'http://www.foo.com/foo'\n" + "Foo: 'foo'+;"); assertFragmentMatchesAndResolves(grammar.eResource(), "/0/5(0='Foo')#0/2(3='foo')", grammar.getRules().get(0).getAlternatives()); } - @Test + @org.junit.jupiter.api.Test public void testNullSelectorValue() throws Exception { Grammar grammar = (Grammar) getModel("grammar foo.Foo\n" + "generate foo 'http://www.foo.com/foo'\n" + "Foo: 'selectCardinality';"); assertFragmentMatchesAndResolves(grammar.eResource(), "/0/5(0='Foo')#0/2(0=null)", grammar.getRules().get(0).getAlternatives()); diff --git a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/resource/BugAig1084.java b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/resource/BugAig1084.java index ec472473e..a2d550034 100644 --- a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/resource/BugAig1084.java +++ b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/resource/BugAig1084.java @@ -19,7 +19,7 @@ import org.eclipse.xtext.resource.IEObjectDescription; import org.eclipse.xtext.util.IResourceScopeCache; import org.eclipse.xtext.util.OnChangeEvictingCache; -import org.junit.Test; +import org.junit.jupiter.api.Test; import com.google.common.collect.Lists; diff --git a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/resource/ResourceDescriptionDeltaTest.java b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/resource/ResourceDescriptionDeltaTest.java index d0a53e225..25324f494 100644 --- a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/resource/ResourceDescriptionDeltaTest.java +++ b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/resource/ResourceDescriptionDeltaTest.java @@ -26,17 +26,17 @@ import org.eclipse.xtext.resource.IReferenceDescription; import org.eclipse.xtext.resource.IResourceDescription; import org.eclipse.xtext.resource.impl.AbstractResourceDescription; -import org.junit.Test; import com.google.common.base.Function; import com.google.common.collect.ImmutableSet; import com.google.common.collect.Lists; +import org.junit.jupiter.api.Test; @SuppressWarnings("PMD.JUnitAssertionsShouldIncludeMessage") public class ResourceDescriptionDeltaTest { - @Test + @org.junit.jupiter.api.Test public void testGetAddedAndDeletedObjects() { ResourceDescriptionDelta delta = new ResourceDescriptionDelta(createDescription("a"), createDescription("a"), null); assertDeltaEquals(0, 0, 0, delta); @@ -75,7 +75,7 @@ public void testDeltaForNewResource() { assertDeltaEquals(1, 0, 0, delta); } - @Test + @org.junit.jupiter.api.Test public void testDeltaForDeletedResource() { ResourceDescriptionDelta delta = new ResourceDescriptionDelta(createDescription("a"), null, null); assertDeltaEquals(0, 0, 1, delta); diff --git a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/util/RuntimeProjectUtilTest.java b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/util/RuntimeProjectUtilTest.java index 48a565d55..1e8b835eb 100644 --- a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/util/RuntimeProjectUtilTest.java +++ b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/util/RuntimeProjectUtilTest.java @@ -26,7 +26,7 @@ import org.eclipse.xtext.ui.resource.IStorage2UriMapper; import org.eclipse.xtext.ui.resource.Storage2UriMapperImpl; import org.eclipse.xtext.util.Pair; -import org.junit.Test; +import org.junit.jupiter.api.Test; import com.avaloq.tools.ddk.xtext.test.AbstractUtilTest; import com.avaloq.tools.ddk.xtext.test.AbstractXtextTestUtil; diff --git a/com.avaloq.tools.ddk.xtext.ui.test/src/com/avaloq/tools/ddk/xtext/ui/quickfix/WorkbenchResolutionAdaptorRunTest.java b/com.avaloq.tools.ddk.xtext.ui.test/src/com/avaloq/tools/ddk/xtext/ui/quickfix/WorkbenchResolutionAdaptorRunTest.java index 96536c2d7..d7dc56025 100644 --- a/com.avaloq.tools.ddk.xtext.ui.test/src/com/avaloq/tools/ddk/xtext/ui/quickfix/WorkbenchResolutionAdaptorRunTest.java +++ b/com.avaloq.tools.ddk.xtext.ui.test/src/com/avaloq/tools/ddk/xtext/ui/quickfix/WorkbenchResolutionAdaptorRunTest.java @@ -43,8 +43,8 @@ import org.eclipse.xtext.util.Pair; import org.eclipse.xtext.util.Tuples; import org.eclipse.xtext.validation.Issue; -import org.junit.Before; -import org.junit.Test; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; import org.mockito.ArgumentMatchers; import com.avaloq.tools.ddk.check.runtime.ui.quickfix.IModificationContextRegistry; @@ -95,7 +95,7 @@ protected void configure() { private final WorkbenchMarkerResolutionGenerator wmrg = injector.getInstance(WorkbenchMarkerResolutionGenerator.class); - @Before + @BeforeEach public void setUp() throws Exception { wmrg.setIssueUtil(new IssueUtil()); diff --git a/com.avaloq.tools.ddk.xtext.ui.test/src/com/avaloq/tools/ddk/xtext/ui/quickfix/WorkbenchResolutionAdaptorTest.java b/com.avaloq.tools.ddk.xtext.ui.test/src/com/avaloq/tools/ddk/xtext/ui/quickfix/WorkbenchResolutionAdaptorTest.java index 4f30b927c..42232e4fb 100644 --- a/com.avaloq.tools.ddk.xtext.ui.test/src/com/avaloq/tools/ddk/xtext/ui/quickfix/WorkbenchResolutionAdaptorTest.java +++ b/com.avaloq.tools.ddk.xtext.ui.test/src/com/avaloq/tools/ddk/xtext/ui/quickfix/WorkbenchResolutionAdaptorTest.java @@ -21,10 +21,10 @@ import org.eclipse.xtext.ui.editor.quickfix.IssueResolution; import org.eclipse.xtext.ui.util.IssueUtil; import org.eclipse.xtext.validation.Issue; -import org.junit.Before; -import org.junit.Test; +import org.junit.jupiter.api.BeforeEach; import com.avaloq.tools.ddk.xtext.ui.quickfix.WorkbenchMarkerResolutionGenerator.WorkbenchResolutionAdapter; +import org.junit.jupiter.api.Test; public class WorkbenchResolutionAdaptorTest { @@ -37,12 +37,12 @@ public class WorkbenchResolutionAdaptorTest { private final WorkbenchMarkerResolutionGenerator mockWmrg = mock(WorkbenchMarkerResolutionGenerator.class); - @Before + @BeforeEach public void setUp() throws Exception { when(mockWmrg.getIssueUtil()).thenReturn(new IssueUtil()); } - @Test + @org.junit.jupiter.api.Test public void testGetLabel() { IssueResolution mockIssueResolution = mock(IssueResolution.class); IMarker mockMarker = mock(IMarker.class); @@ -54,7 +54,7 @@ public void testGetLabel() { assertEquals("Adapter delegates get label to resolution.", TEST_LABEL, adapter.getLabel()); //$NON-NLS-1$ } - @Test + @org.junit.jupiter.api.Test public void testGetDescription() { IssueResolution mockIssueResolution = mock(IssueResolution.class); IMarker mockMarker = mock(IMarker.class); @@ -66,7 +66,7 @@ public void testGetDescription() { assertEquals("Adapter delegates get description to resolution.", TEST_DESCRIPTION, adapter.getDescription()); //$NON-NLS-1$ } - @Test + @org.junit.jupiter.api.Test public void testGetImage() { IssueResolution mockIssueResolution = mock(IssueResolution.class); IMarker mockMarker = mock(IMarker.class); @@ -78,7 +78,7 @@ public void testGetImage() { assertEquals("Adapter delegates get Image to resolution.", TEST_IMAGE, adapter.getImage()); //$NON-NLS-1$ } - @Test + @org.junit.jupiter.api.Test public void findOtherMarkers() { IssueResolution mockIssueResolution = mock(IssueResolution.class); IMarker mockResolutionMarker = mock(IMarker.class); diff --git a/com.avaloq.tools.ddk.xtext.ui.test/src/com/avaloq/tools/ddk/xtext/ui/templates/ResourceNameTemplateVariableResolverTest.java b/com.avaloq.tools.ddk.xtext.ui.test/src/com/avaloq/tools/ddk/xtext/ui/templates/ResourceNameTemplateVariableResolverTest.java index ef08e0d16..93b518bf0 100644 --- a/com.avaloq.tools.ddk.xtext.ui.test/src/com/avaloq/tools/ddk/xtext/ui/templates/ResourceNameTemplateVariableResolverTest.java +++ b/com.avaloq.tools.ddk.xtext.ui.test/src/com/avaloq/tools/ddk/xtext/ui/templates/ResourceNameTemplateVariableResolverTest.java @@ -18,7 +18,7 @@ import org.eclipse.xtext.ui.editor.model.IXtextDocument; import org.eclipse.xtext.ui.editor.templates.XtextTemplateContext; import org.junit.Assert; -import org.junit.Test; +import org.junit.jupiter.api.Test; import org.junit.runner.RunWith; import org.mockito.Mockito; @@ -87,12 +87,12 @@ public void testResolveValuesWithFileWithExtension() throws TemplateException { testResolveValues(FILE, "filename.with.extension", "filename.with"); //$NON-NLS-1$//$NON-NLS-2$ } - @Test + @org.junit.jupiter.api.Test public void testResolveValuesWithExtraParams() throws TemplateException { testResolveValues(new Object[] {FILE[0], "other", "random", "values"}, FILENAME, FILENAME); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ } - @Test + @org.junit.jupiter.api.Test public void testResolveValuesWithUnknownParam() throws TemplateException { testResolveValues(new Object[] {"This is not the parameter you are looking for"}, FILENAME); //$NON-NLS-1$ } diff --git a/com.avaloq.tools.ddk.xtext.ui.test/src/com/avaloq/tools/ddk/xtext/ui/templates/SimpleEnumTemplateVariableResolverTest.java b/com.avaloq.tools.ddk.xtext.ui.test/src/com/avaloq/tools/ddk/xtext/ui/templates/SimpleEnumTemplateVariableResolverTest.java index 0cf3acb88..ce06f0d47 100644 --- a/com.avaloq.tools.ddk.xtext.ui.test/src/com/avaloq/tools/ddk/xtext/ui/templates/SimpleEnumTemplateVariableResolverTest.java +++ b/com.avaloq.tools.ddk.xtext.ui.test/src/com/avaloq/tools/ddk/xtext/ui/templates/SimpleEnumTemplateVariableResolverTest.java @@ -20,7 +20,7 @@ import org.eclipse.jface.text.templates.TemplateVariable; import org.eclipse.xtext.XtextRuntimeModule; import org.eclipse.xtext.ui.editor.templates.XtextTemplateContext; -import org.junit.Test; +import org.junit.jupiter.api.Test; import org.junit.runner.RunWith; import com.avaloq.tools.ddk.test.core.AfterAll; @@ -50,17 +50,17 @@ public void afterAll() { resolver = null; } - @Test(expected = NullPointerException.class) + @org.junit.jupiter.api.Test(expected = NullPointerException.class) public void testResolveValuesWithNullVariable() { resolver.resolveValues(null, mockContext); } - @Test + @org.junit.jupiter.api.Test public void testResolveValuesWithOneParam() throws TemplateException { testResolveValues("Value"); //$NON-NLS-1$ } - @Test + @org.junit.jupiter.api.Test public void testResolveValuesWithMultipleParams() throws TemplateException { testResolveValues("Value 1", "Value 2", "Value 3"); //$NON-NLS-1$//$NON-NLS-2$//$NON-NLS-3$ } diff --git a/ddk-parent/pom.xml b/ddk-parent/pom.xml index f7321ec45..7bfe5dc8b 100644 --- a/ddk-parent/pom.xml +++ b/ddk-parent/pom.xml @@ -298,6 +298,23 @@ asm 9.8 + + org.junit.jupiter + junit-jupiter-api + 5.6.2 + test + + + org.junit.vintage + junit-vintage-engine + 5.6.2 + test + + + org.hamcrest + hamcrest-library + 2.2 + ${java-version} From e51ea5420baa8754064ccbb57e046713a46674e7 Mon Sep 17 00:00:00 2001 From: Joao Ferreira Date: Wed, 3 Sep 2025 12:12:26 +0200 Subject: [PATCH 44/57] test: use Junit5 in target file --- ddk-parent/pom.xml | 17 ----------------- ddk-target/ddk.target | 2 +- 2 files changed, 1 insertion(+), 18 deletions(-) diff --git a/ddk-parent/pom.xml b/ddk-parent/pom.xml index 7bfe5dc8b..f7321ec45 100644 --- a/ddk-parent/pom.xml +++ b/ddk-parent/pom.xml @@ -298,23 +298,6 @@ asm 9.8 - - org.junit.jupiter - junit-jupiter-api - 5.6.2 - test - - - org.junit.vintage - junit-vintage-engine - 5.6.2 - test - - - org.hamcrest - hamcrest-library - 2.2 - ${java-version} diff --git a/ddk-target/ddk.target b/ddk-target/ddk.target index 8b800c0ec..50a65b5c9 100644 --- a/ddk-target/ddk.target +++ b/ddk-target/ddk.target @@ -51,7 +51,7 @@ - + From 37e3a76239ef9e9f6b16668343339ad18f1d0581 Mon Sep 17 00:00:00 2001 From: Joao Ferreira Date: Wed, 3 Sep 2025 12:13:03 +0200 Subject: [PATCH 45/57] test: adapt MANIFEST.MF to use JUnit5 --- com.avaloq.tools.ddk.check.core.test/META-INF/MANIFEST.MF | 2 +- .../META-INF/MANIFEST.MF | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.check.ui.test/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.checkcfg.core.test/META-INF/MANIFEST.MF | 2 +- .../META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.test.core/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.test.ui.test/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.test.ui/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.export.test/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.format.test/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.generator.test/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.test.core/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.test/META-INF/MANIFEST.MF | 2 +- com.avaloq.tools.ddk.xtext.ui.test/META-INF/MANIFEST.MF | 2 +- 15 files changed, 15 insertions(+), 15 deletions(-) diff --git a/com.avaloq.tools.ddk.check.core.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.core.test/META-INF/MANIFEST.MF index a21552de1..71a85ffd8 100644 --- a/com.avaloq.tools.ddk.check.core.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.core.test/META-INF/MANIFEST.MF @@ -20,7 +20,7 @@ Require-Bundle: com.avaloq.tools.ddk.check.core, org.eclipse.xtend.lib, org.eclipse.xtext.ui.testing, org.eclipse.xtext.testing, - org.junit, + org.junit.jupiter.api, org.mockito, com.avaloq.tools.ddk.check.runtime.core, org.eclipse.ui.workbench;resolution:=optional, diff --git a/com.avaloq.tools.ddk.check.runtime.core.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.runtime.core.test/META-INF/MANIFEST.MF index dd2617586..b8e0ba2f7 100644 --- a/com.avaloq.tools.ddk.check.runtime.core.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.runtime.core.test/META-INF/MANIFEST.MF @@ -10,7 +10,7 @@ Require-Bundle: org.eclipse.ui, org.eclipse.xtext, com.avaloq.tools.ddk.test.ui, com.avaloq.tools.ddk.check.runtime.core, - org.junit, + org.junit.jupiter.api, com.google.guava Export-Package: com.avaloq.tools.ddk.check.runtime.test.core Import-Package: org.mockito, diff --git a/com.avaloq.tools.ddk.check.test.runtime.tests/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.test.runtime.tests/META-INF/MANIFEST.MF index 9aa14173d..432f9214a 100644 --- a/com.avaloq.tools.ddk.check.test.runtime.tests/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.test.runtime.tests/META-INF/MANIFEST.MF @@ -14,7 +14,7 @@ Require-Bundle: com.avaloq.tools.ddk.check.runtime.core, org.eclipse.xtext, org.eclipse.xtext.testing, org.eclipse.xtext.ui.testing, - org.junit, + org.junit.jupiter.api, org.eclipse.ui.workbench;resolution:=optional, org.eclipse.xtend.lib, org.eclipse.xtext.xbase.lib diff --git a/com.avaloq.tools.ddk.check.ui.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.ui.test/META-INF/MANIFEST.MF index bd2e7749c..2a927bfc5 100644 --- a/com.avaloq.tools.ddk.check.ui.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.ui.test/META-INF/MANIFEST.MF @@ -5,7 +5,7 @@ Bundle-SymbolicName: com.avaloq.tools.ddk.check.ui.test Bundle-Version: 16.1.0.qualifier Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 -Require-Bundle: org.junit, +Require-Bundle: org.junit.jupiter.api, com.avaloq.tools.ddk.check.ui, com.avaloq.tools.ddk.xtext.test.core, com.avaloq.tools.ddk.test.core, diff --git a/com.avaloq.tools.ddk.checkcfg.core.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.checkcfg.core.test/META-INF/MANIFEST.MF index e7144000c..1c56f6fd2 100644 --- a/com.avaloq.tools.ddk.checkcfg.core.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.checkcfg.core.test/META-INF/MANIFEST.MF @@ -18,7 +18,7 @@ Require-Bundle: com.avaloq.tools.ddk.test.core, org.eclipse.core.runtime, org.eclipse.xtend.lib, org.eclipse.xtext.ui.testing, - org.junit, + org.junit.jupiter.api, org.eclipse.xtext.xbase.lib, org.eclipse.ui.workbench;resolution:=optional, org.objectweb.asm;resolution:=optional diff --git a/com.avaloq.tools.ddk.sample.helloworld.ui.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.sample.helloworld.ui.test/META-INF/MANIFEST.MF index 1d6eb56d9..7089080b9 100644 --- a/com.avaloq.tools.ddk.sample.helloworld.ui.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.sample.helloworld.ui.test/META-INF/MANIFEST.MF @@ -8,7 +8,7 @@ Bundle-SymbolicName: com.avaloq.tools.ddk.sample.helloworld.ui.test;singleton:=t Bundle-ActivationPolicy: lazy Require-Bundle: com.avaloq.tools.ddk.sample.helloworld, com.avaloq.tools.ddk.sample.helloworld.ui, - org.junit, + org.junit.jupiter.api, org.eclipse.xtext.ui.testing, org.eclipse.xtext.testing, org.eclipse.xtext.xbase.testing, diff --git a/com.avaloq.tools.ddk.test.core/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.test.core/META-INF/MANIFEST.MF index 06fedee63..e5d2f87b9 100644 --- a/com.avaloq.tools.ddk.test.core/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.test.core/META-INF/MANIFEST.MF @@ -9,7 +9,7 @@ Bundle-ActivationPolicy: lazy Require-Bundle: org.eclipse.core.runtime, org.eclipse.core.resources, org.hamcrest.library, - org.junit, + org.junit.jupiter.api, org.mockito, com.google.guava, org.apache.commons.lang, diff --git a/com.avaloq.tools.ddk.test.ui.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.test.ui.test/META-INF/MANIFEST.MF index a25ccf4b8..a704d6d18 100644 --- a/com.avaloq.tools.ddk.test.ui.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.test.ui.test/META-INF/MANIFEST.MF @@ -6,7 +6,7 @@ Bundle-Version: 16.1.0.qualifier Bundle-ActivationPolicy: lazy Bundle-Vendor: Avaloq Group AG Bundle-RequiredExecutionEnvironment: JavaSE-21 -Require-Bundle: org.junit, +Require-Bundle: org.junit.jupiter.api, org.eclipse.swtbot.eclipse.finder, org.eclipse.swt, com.avaloq.tools.ddk.test.core, diff --git a/com.avaloq.tools.ddk.test.ui/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.test.ui/META-INF/MANIFEST.MF index b4a49b56b..310f61346 100644 --- a/com.avaloq.tools.ddk.test.ui/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.test.ui/META-INF/MANIFEST.MF @@ -17,7 +17,7 @@ Require-Bundle: com.avaloq.tools.ddk.test.core, org.eclipse.swtbot.swt.finder, org.eclipse.ui;visibility:=reexport, org.hamcrest.library, - org.junit, + org.junit.jupiter.api, org.mockito, com.google.guava, org.apache.commons.lang, diff --git a/com.avaloq.tools.ddk.xtext.export.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.export.test/META-INF/MANIFEST.MF index e604acc70..4b9aa1147 100644 --- a/com.avaloq.tools.ddk.xtext.export.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.export.test/META-INF/MANIFEST.MF @@ -10,7 +10,7 @@ Fragment-Host: com.avaloq.tools.ddk.xtext.export.ui Require-Bundle: com.avaloq.tools.ddk.xtext.export, com.google.inject, com.avaloq.tools.ddk.xtext.test.core, - org.junit, + org.junit.jupiter.api, com.avaloq.tools.ddk.xtext Export-Package: com.avaloq.tools.ddk.xtext.test.export Automatic-Module-Name: com.avaloq.tools.ddk.xtext.export.test diff --git a/com.avaloq.tools.ddk.xtext.format.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.format.test/META-INF/MANIFEST.MF index 49e9d9641..4f6792682 100644 --- a/com.avaloq.tools.ddk.xtext.format.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.format.test/META-INF/MANIFEST.MF @@ -10,7 +10,7 @@ Fragment-Host: com.avaloq.tools.ddk.xtext.format.ui Require-Bundle: com.avaloq.tools.ddk.xtext.format, com.google.inject, com.avaloq.tools.ddk.xtext.test.core, - org.junit, + org.junit.jupiter.api, org.mockito, org.eclipse.xtext.xbase.lib, org.eclipse.xtext.xbase.testing, diff --git a/com.avaloq.tools.ddk.xtext.generator.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.generator.test/META-INF/MANIFEST.MF index 4cb14e340..797de957c 100644 --- a/com.avaloq.tools.ddk.xtext.generator.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.generator.test/META-INF/MANIFEST.MF @@ -13,7 +13,7 @@ Require-Bundle: com.avaloq.tools.ddk.test.core, org.eclipse.xtend, org.eclipse.xtend.typesystem.emf, org.eclipse.xtext, - org.junit, + org.junit.jupiter.api, org.mockito, com.avaloq.tools.ddk.xtext.ui, org.eclipse.xtext.xtext.generator diff --git a/com.avaloq.tools.ddk.xtext.test.core/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.test.core/META-INF/MANIFEST.MF index 454d1e20c..a0dcfb1a0 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.test.core/META-INF/MANIFEST.MF @@ -21,7 +21,7 @@ Require-Bundle: com.avaloq.tools.ddk.xtext, org.eclipse.xtext.ui, org.eclipse.xtext.xbase, org.eclipse.xtext.xbase.lib;visibility:=reexport, - org.junit, + org.junit.jupiter.api, org.mockito, org.hamcrest.library, com.avaloq.tools.ddk.check.runtime.core, diff --git a/com.avaloq.tools.ddk.xtext.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.test/META-INF/MANIFEST.MF index ed3ed4bb4..f29bbb72e 100644 --- a/com.avaloq.tools.ddk.xtext.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.test/META-INF/MANIFEST.MF @@ -19,7 +19,7 @@ Require-Bundle: com.avaloq.tools.ddk.xtext, org.eclipse.emf.ecore, org.eclipse.emf.common, org.antlr.runtime, - org.junit, + org.junit.jupiter.api, com.avaloq.tools.ddk.xtext.builder, org.eclipse.xtext.builder, org.mockito, diff --git a/com.avaloq.tools.ddk.xtext.ui.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.xtext.ui.test/META-INF/MANIFEST.MF index d8697435e..212a33065 100644 --- a/com.avaloq.tools.ddk.xtext.ui.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.xtext.ui.test/META-INF/MANIFEST.MF @@ -8,7 +8,7 @@ Bundle-RequiredExecutionEnvironment: JavaSE-21 Require-Bundle: org.eclipse.xtext.ui, org.eclipse.xtext.xbase.lib, org.eclipse.xtext.testing, - org.junit, + org.junit.jupiter.api, org.mockito, com.avaloq.tools.ddk.xtext.ui, com.avaloq.tools.ddk.test.core, From 35af83fabab9e64ebf82907ca2c17daaf4aff34a Mon Sep 17 00:00:00 2001 From: Joao Ferreira Date: Wed, 3 Sep 2025 12:15:24 +0200 Subject: [PATCH 46/57] test: Include junit Vintage to support use of @RunWith --- ddk-target/ddk.target | 1 + 1 file changed, 1 insertion(+) diff --git a/ddk-target/ddk.target b/ddk-target/ddk.target index 50a65b5c9..dd5bd8cef 100644 --- a/ddk-target/ddk.target +++ b/ddk-target/ddk.target @@ -52,6 +52,7 @@ + From d50af7b904bb82564944fa7825d83430820ea493 Mon Sep 17 00:00:00 2001 From: Joao Ferreira Date: Wed, 3 Sep 2025 17:29:52 +0200 Subject: [PATCH 47/57] test: make all JUnit 5 tests package-private --- .../tools/ddk/check/core/test/BugAig1314.java | 4 +- .../CheckJavaValidatorUtilTest.java | 26 ++++---- .../runtime/context/CheckContextTest.java | 2 +- .../registry/CheckExtensionPointTests.java | 4 +- .../label/CheckRuleLabelProviderTest.java | 4 +- .../check/ui/test/CheckCatalogWizardTest.java | 16 ++--- .../check/ui/test/CheckProjectWizardTest.java | 6 +- .../builder/CheckContextsExtensionTest.java | 6 +- .../test/builder/CheckTocExtensionTest.java | 4 +- .../ui/test/contentassist/BugAig931Test.java | 2 +- .../test/swtbot/DeChKeyboardLayoutTest.java | 2 +- .../typesystem/AbstractTypeProviderTest.java | 8 +-- .../BuiltInTypeModelAccessTest.java | 2 +- .../typesystem/ParameterListMatcherTest.java | 62 +++++++++---------- .../export/exporting/ExportExportingTest.java | 2 +- .../export/scoping/ExportScopingTest.java | 10 +-- .../validation/ExportValidationTest.java | 4 +- .../builder/FormatBuilderParticipantTest.java | 2 +- .../format/scoping/FormatScopingTest.java | 6 +- .../validation/FormatValidationTest.java | 6 +- .../expression/CodeGenerationXTest.java | 14 ++--- .../expression/CompilationContextTest.java | 4 +- .../expression/ExpressionsExtentionsTest.java | 2 +- .../test/util/EClassComparatorTest.java | 4 +- .../xtext/generator/test/util/GraphTest.java | 4 +- .../formatting/AbstractFormattingTest.java | 2 +- .../test/ui/outline/AbstractOutlineTest.java | 2 +- .../xtext/builder/XtextBuildTriggerTest.java | 2 +- .../ddk/xtext/formatter/FormatterTest.java | 28 ++++----- .../linking/AbstractFragmentProviderTest.java | 4 +- .../naming/QualifiedNamePatternTest.java | 4 +- .../QualifiedNameSegmentTreeLookupTest.java | 4 +- .../AbstractSelectorFragmentProviderTest.java | 4 +- .../tools/ddk/xtext/resource/BugAig1084.java | 2 +- .../ResourceDescriptionDeltaTest.java | 6 +- .../xtext/util/RuntimeProjectUtilTest.java | 10 +-- .../WorkbenchResolutionAdaptorRunTest.java | 4 +- ...ourceNameTemplateVariableResolverTest.java | 6 +- 38 files changed, 142 insertions(+), 142 deletions(-) diff --git a/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/core/test/BugAig1314.java b/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/core/test/BugAig1314.java index dbe928877..31a2bd5b3 100644 --- a/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/core/test/BugAig1314.java +++ b/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/core/test/BugAig1314.java @@ -122,7 +122,7 @@ private void assertIterableNotEmpty(final Iterable iterable) { * Tests that querying the same scope twice doesn't make the resource set grow. */ @Test - public void testSameScopeUseTwice() throws MalformedURLException, URISyntaxException { + void testSameScopeUseTwice() throws MalformedURLException, URISyntaxException { XtextResourceSet rs = new XtextResourceSet(); URL url = createURL(); ModelLocation modelLocation = createModelLocation(url); @@ -141,7 +141,7 @@ public void testSameScopeUseTwice() throws MalformedURLException, URISyntaxExcep * Tests that querying two different scopes doesn't make the resource set grow. That one was the real cause of bug AIG-1314. */ @Test - public void testDifferentScopeUseTwice() throws MalformedURLException, URISyntaxException { + void testDifferentScopeUseTwice() throws MalformedURLException, URISyntaxException { XtextResourceSet rs = new XtextResourceSet(); URL url = createURL(); ModelLocation modelLocation = createModelLocation(url); diff --git a/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/validation/CheckJavaValidatorUtilTest.java b/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/validation/CheckJavaValidatorUtilTest.java index 008183680..4d3df047d 100644 --- a/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/validation/CheckJavaValidatorUtilTest.java +++ b/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/validation/CheckJavaValidatorUtilTest.java @@ -64,7 +64,7 @@ public class CheckJavaValidatorUtilTest extends TestCase { * Tests checkProjectName. The given values are valid. */ @Test - public void projectNameIsValid() { + void projectNameIsValid() { assertTrue(QUALIFIED_NAME, util.checkProjectName("project.name").isOK()); assertTrue(NON_QUALIFIED_NAME, util.checkProjectName("projectname").isOK()); } @@ -73,7 +73,7 @@ public void projectNameIsValid() { * Tests checkProjectName. The given values are invalid. */ @Test - public void projectNameIsInvalid() { + void projectNameIsInvalid() { assertTrue(NAME_IS_EMPTY, util.checkProjectName(EMPTY_STRING).matches(IStatus.ERROR)); assertTrue(STARTS_WITH_UPPERCASE_LETTER, util.checkProjectName("Project.name").matches(IStatus.ERROR)); assertTrue(STARTS_WITH_ILLEGAL_CHARACTER_DOT, util.checkProjectName(".projectname").matches(IStatus.ERROR)); @@ -88,7 +88,7 @@ public void projectNameIsInvalid() { */ @Test - public void packageNameIsValid() { + void packageNameIsValid() { assertTrue(QUALIFIED_NAME, util.checkPackageName("package.name").isOK()); assertTrue(NON_QUALIFIED_NAME, util.checkPackageName("packagename").isOK()); } @@ -98,7 +98,7 @@ public void packageNameIsValid() { */ @Test - public void packageNameIsInvalid() { + void packageNameIsInvalid() { assertTrue(NAME_IS_EMPTY, util.checkPackageName(EMPTY_STRING).matches(IStatus.ERROR)); assertTrue(STARTS_WITH_UPPERCASE_LETTER, util.checkPackageName("Package.name").matches(IStatus.ERROR)); assertTrue(STARTS_WITH_ILLEGAL_CHARACTER_DOT, util.checkPackageName(".packagename").matches(IStatus.ERROR)); @@ -112,7 +112,7 @@ public void packageNameIsInvalid() { * Tests checkCatalogName. The given values are valid. */ @Test - public void catalogNameIsValid() { + void catalogNameIsValid() { assertTrue(STARTS_WITH_UPPERCASE_LETTER, util.checkCatalogName("Catalogname").isOK()); assertTrue(STARTS_WITH_AND_CONTAINS_UPPERCASE_LETTERS, util.checkCatalogName("CatalogName").isOK()); } @@ -121,7 +121,7 @@ public void catalogNameIsValid() { * Tests checkCatalogName. The given values are invalid. */ @Test - public void catalogNameIsInvalid() { + void catalogNameIsInvalid() { assertTrue(NAME_IS_EMPTY, util.checkCatalogName(EMPTY_STRING).matches(IStatus.ERROR)); assertTrue(QUALIFIED_NAME, util.checkCatalogName("Catalog.Name").matches(IStatus.ERROR)); assertTrue(CONTAINS_ILLEGAL_CHARACTER, util.checkCatalogName(",Catalogname").matches(IStatus.ERROR)); @@ -132,7 +132,7 @@ public void catalogNameIsInvalid() { * Tests checkCatalogName. The given values are discouraged. */ @Test - public void catalogNameIsDiscouraged() { + void catalogNameIsDiscouraged() { assertTrue(STARTS_WITH_LOWER_CASE, util.checkCatalogName("catalogname").matches(IStatus.WARNING)); assertTrue(STARTS_WITH_AND_CONTAINS_UPPERCASE_LETTERS, util.checkCatalogName("catalogName").matches(IStatus.WARNING)); } @@ -141,7 +141,7 @@ public void catalogNameIsDiscouraged() { * Tests checkCheckName. The given values are valid. */ @Test - public void checkNameIsValid() { + void checkNameIsValid() { assertTrue(STARTS_WITH_UPPERCASE_LETTER, util.checkCheckName("Checkname").isOK()); assertTrue(STARTS_WITH_AND_CONTAINS_UPPERCASE_LETTERS, util.checkCheckName("CheckName").isOK()); } @@ -150,7 +150,7 @@ public void checkNameIsValid() { * Tests checkCheckName. The given values are invalid. */ @Test - public void checkNameIsInvalid() { + void checkNameIsInvalid() { assertTrue(NAME_IS_EMPTY, util.checkCheckName(EMPTY_STRING).matches(IStatus.ERROR)); assertTrue(QUALIFIED_NAME, util.checkCheckName("Check.name").matches(IStatus.ERROR)); assertTrue(CONTAINS_ILLEGAL_CHARACTER, util.checkCheckName(",checkname").matches(IStatus.ERROR)); @@ -161,7 +161,7 @@ public void checkNameIsInvalid() { * Tests checkCheckName. The given values are discouraged. */ @Test - public void checkNameIsDiscouraged() { + void checkNameIsDiscouraged() { assertTrue(STARTS_WITH_LOWER_CASE, util.checkCheckName("checkname").matches(IStatus.WARNING)); assertTrue(STARTS_WITH_AND_CONTAINS_UPPERCASE_LETTERS, util.checkCheckName("checkName").matches(IStatus.WARNING)); @@ -171,7 +171,7 @@ public void checkNameIsDiscouraged() { * Tests checkCategoryName. The given values are valid. */ @Test - public void categoryNameIsValid() { + void categoryNameIsValid() { assertTrue(STARTS_WITH_UPPERCASE_LETTER, util.checkCategoryName("Categoryname").isOK()); assertTrue(STARTS_WITH_AND_CONTAINS_UPPERCASE_LETTERS, util.checkCategoryName("CategoryName").isOK()); } @@ -180,7 +180,7 @@ public void categoryNameIsValid() { * Tests checkCategoryName. The given values are invalid. */ @Test - public void categoryNameIsInvalid() { + void categoryNameIsInvalid() { assertTrue(NAME_IS_EMPTY, util.checkCategoryName(EMPTY_STRING).matches(IStatus.ERROR)); assertTrue(QUALIFIED_NAME, util.checkCategoryName("Category.name").matches(IStatus.ERROR)); assertTrue(CONTAINS_ILLEGAL_CHARACTER, util.checkCategoryName("%categoryname").matches(IStatus.ERROR)); @@ -191,7 +191,7 @@ public void categoryNameIsInvalid() { * Tests checkCategoryName. The given values are discouraged. */ @Test - public void categoryNameIsDiscouraged() { + void categoryNameIsDiscouraged() { assertTrue(STARTS_WITH_LOWER_CASE, util.checkCategoryName("categoryname").matches(IStatus.WARNING)); assertTrue(STARTS_WITH_AND_CONTAINS_UPPERCASE_LETTERS, util.checkCategoryName("categoryName").matches(IStatus.WARNING)); } diff --git a/com.avaloq.tools.ddk.check.runtime.core.test/src/com/avaloq/tools/ddk/check/runtime/context/CheckContextTest.java b/com.avaloq.tools.ddk.check.runtime.core.test/src/com/avaloq/tools/ddk/check/runtime/context/CheckContextTest.java index 8788739a7..f187160c8 100644 --- a/com.avaloq.tools.ddk.check.runtime.core.test/src/com/avaloq/tools/ddk/check/runtime/context/CheckContextTest.java +++ b/com.avaloq.tools.ddk.check.runtime.core.test/src/com/avaloq/tools/ddk/check/runtime/context/CheckContextTest.java @@ -33,7 +33,7 @@ public class CheckContextTest extends TestCase { * Tests that the {@link DummyCheckContext} properly marks issue codes as enabled and disabled. */ @Test - public void testIssuesEnabledDisabled() { + void testIssuesEnabledDisabled() { ICheckContext checkContext = new DummyCheckContext(); Assert.assertTrue("Check an issue code in annotations but enabled is still enabled", checkContext.isCheckValid(DUMMY_CONTEXT, ENABLED_ISSUE_CODE)); Assert.assertTrue("Check an issue code not in any annotations is still enabled", checkContext.isCheckValid(DUMMY_CONTEXT, NOT_MENTIONED_ISSUE_CODE)); diff --git a/com.avaloq.tools.ddk.check.runtime.core.test/src/com/avaloq/tools/ddk/check/runtime/core/registry/CheckExtensionPointTests.java b/com.avaloq.tools.ddk.check.runtime.core.test/src/com/avaloq/tools/ddk/check/runtime/core/registry/CheckExtensionPointTests.java index 54d15534a..7f168cca8 100644 --- a/com.avaloq.tools.ddk.check.runtime.core.test/src/com/avaloq/tools/ddk/check/runtime/core/registry/CheckExtensionPointTests.java +++ b/com.avaloq.tools.ddk.check.runtime.core.test/src/com/avaloq/tools/ddk/check/runtime/core/registry/CheckExtensionPointTests.java @@ -85,7 +85,7 @@ private IConfigurationElement findConfigurationElement(final IConfigurationEleme * @see Platform#getExtensionRegistry() */ @Test - public void testExtensionPointIsRegistered() { + void testExtensionPointIsRegistered() { try { findCheckExtensionPoint(findExtensionPoints()); } catch (NoSuchElementException e) { @@ -98,7 +98,7 @@ public void testExtensionPointIsRegistered() { * point. */ @Test - public void testDummyClientRegistered() { + void testDummyClientRegistered() { assertNotNull("Test plugin successfully registered to the check extension point", findCheckExtensionPoint(findExtensionPoints()).getExtension(DUMMY_EXTENSION_ID)); } diff --git a/com.avaloq.tools.ddk.check.runtime.core.test/src/com/avaloq/tools/ddk/check/runtime/label/CheckRuleLabelProviderTest.java b/com.avaloq.tools.ddk.check.runtime.core.test/src/com/avaloq/tools/ddk/check/runtime/label/CheckRuleLabelProviderTest.java index 139a19438..42e735bf1 100644 --- a/com.avaloq.tools.ddk.check.runtime.core.test/src/com/avaloq/tools/ddk/check/runtime/label/CheckRuleLabelProviderTest.java +++ b/com.avaloq.tools.ddk.check.runtime.core.test/src/com/avaloq/tools/ddk/check/runtime/label/CheckRuleLabelProviderTest.java @@ -127,7 +127,7 @@ private void mockValidatorsWithChecks() { * Test the default binding. */ @Test - public void testBinding() { + void testBinding() { // ASSERT assertSame("Binding of label provider incorrect.", CheckRuleLabelProvider.class, checkRuleLabelProvider.getClass()); } @@ -180,7 +180,7 @@ public void testWithNullID() { * Test trying to get a check label when there are no validators. */ @Test - public void testWithNoValidators() { + void testWithNoValidators() { // ARRANGE when(mockCheckValidatorRegistry.getValidators()).thenReturn(Collections.emptyList()); diff --git a/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/CheckCatalogWizardTest.java b/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/CheckCatalogWizardTest.java index 7287cbd5b..e198ab1b0 100644 --- a/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/CheckCatalogWizardTest.java +++ b/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/CheckCatalogWizardTest.java @@ -137,7 +137,7 @@ private void initializeWizardBot() { * Test if the package field contains the selected package. */ @Test - public void testPackageSelected() { + void testPackageSelected() { selectProjectFolder(wizard, VALID_PACKAGE_NAME); initializeWizardBot(); // because the selected item is a package initially, this package is shown in the field. @@ -148,7 +148,7 @@ public void testPackageSelected() { * Test if catalog wizard is enabled if a project folder is selected. */ @Test - public void testCheckCatalogWizardIsEnabled() { + void testCheckCatalogWizardIsEnabled() { selectProjectFolder(wizard, VALID_PACKAGE_NAME); // open the check catalog wizard after having selected the project source folder. // that way, the wizard page should be enabled. @@ -164,7 +164,7 @@ public void testCheckCatalogWizardIsEnabled() { * Test if the package field is empty, if the selected item is no package. */ @Test - public void testInitiallyNoPackageSelected() { + void testInitiallyNoPackageSelected() { selectProjectFolder(wizard, SRC_FOLDER); initializeWizardBot(); @@ -176,7 +176,7 @@ public void testInitiallyNoPackageSelected() { * Test if the next and finish button are disabled if the package name is invalid. */ @Test - public void testPackageNameInvalid() { + void testPackageNameInvalid() { selectProjectFolder(wizard, VALID_PACKAGE_NAME); // open the check catalog wizard after having selected the project source folder. initializeWizardBot(); @@ -192,7 +192,7 @@ public void testPackageNameInvalid() { * Test if the finish button is enabled if the package name is valid. */ @Test - public void testPackageNameValid() { + void testPackageNameValid() { selectProjectFolder(wizard, VALID_PACKAGE_NAME); // open the check catalog wizard after having selected the project source folder. initializeWizardBot(); @@ -205,7 +205,7 @@ public void testPackageNameValid() { * Test if the next and finish button are disabled if the catalog name is invalid. */ @Test - public void testCatalogNameInvalid() { + void testCatalogNameInvalid() { selectProjectFolder(wizard, VALID_PACKAGE_NAME); // open the check catalog wizard after having selected the project source folder. initializeWizardBot(); @@ -219,7 +219,7 @@ public void testCatalogNameInvalid() { * Tests that discouraged catalog names are accepted. */ @Test - public void testCatalogNameDiscouraged() { + void testCatalogNameDiscouraged() { selectProjectFolder(wizard, VALID_PACKAGE_NAME); initializeWizardBot(); @@ -232,7 +232,7 @@ public void testCatalogNameDiscouraged() { * Tests valid catalog names. */ @Test - public void testCatalogName() { + void testCatalogName() { selectProjectFolder(wizard, VALID_PACKAGE_NAME); initializeWizardBot(); diff --git a/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/CheckProjectWizardTest.java b/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/CheckProjectWizardTest.java index 0732127aa..7c9a2bd19 100644 --- a/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/CheckProjectWizardTest.java +++ b/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/CheckProjectWizardTest.java @@ -58,7 +58,7 @@ public void setUp() { * Check if the project wizard is available. */ @Test - public void testCheckProjectWizardIsAvailable() { + void testCheckProjectWizardIsAvailable() { assertNotNull("the project wizard was found", wizard); CheckWizardTestUtil.assertButtonsEnabled(false, true, false, wizard); } @@ -88,7 +88,7 @@ public void testFinishButtonDisabledInProjectPage() { * Test if the buttons 'next', 'back' and 'finish' are correctly enabled/disabled. */ @Test - public void testProjectNameValid() { + void testProjectNameValid() { CheckWizardTestUtil.projectName(wizard, "project.name", CheckWizardTestUtil.NEXT_ENABLED); CheckWizardTestUtil.projectName(wizard, "projectname", CheckWizardTestUtil.NEXT_ENABLED); } @@ -97,7 +97,7 @@ public void testProjectNameValid() { * Test if the buttons 'next', 'back' and 'finish' are correctly enabled/disabled. */ @Test - public void fieldValuesAfterPageChange() { + void fieldValuesAfterPageChange() { wizard.writeToTextField(Messages.PROJECT_NAME_LABEL, CORRECT_PROJECT_NAME); wizard.changeToPreviousPage(); wizard.changeToNextPage(); diff --git a/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/builder/CheckContextsExtensionTest.java b/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/builder/CheckContextsExtensionTest.java index 93ed4baaa..65aee9160 100644 --- a/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/builder/CheckContextsExtensionTest.java +++ b/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/builder/CheckContextsExtensionTest.java @@ -71,7 +71,7 @@ public void setUp() throws Exception { * core exception */ @Test - public void testCreateExtension() throws CoreException { + void testCreateExtension() throws CoreException { IPluginExtension extension = contextsUtil.addExtensionToPluginBase(pluginModel, catalog, ExtensionType.CONTEXTS, null); // Test if the extension has been created. assertEquals("Contexts extension has been created.", CheckContextsExtensionHelper.CONTEXTS_EXTENSION_POINT_ID, extension.getPoint()); @@ -87,7 +87,7 @@ public void testCreateExtension() throws CoreException { * the core exception */ @Test - public void testIsExtensionUpdateRequiredTrue() throws CoreException { + void testIsExtensionUpdateRequiredTrue() throws CoreException { IPluginExtension extension = createErroneousExtension(); Iterable elements = Iterables.filter(Lists.newArrayList(extension.getChildren()), IPluginElement.class); assertTrue("Extension update is required", contextsUtil.isExtensionUpdateRequired(catalog, extension, elements)); @@ -100,7 +100,7 @@ public void testIsExtensionUpdateRequiredTrue() throws CoreException { * the core exception */ @Test - public void testIsExtensionUpdateRequiredFalse() throws CoreException { + void testIsExtensionUpdateRequiredFalse() throws CoreException { IPluginExtension extension = contextsUtil.addExtensionToPluginBase(pluginModel, catalog, ExtensionType.CONTEXTS, null); Iterable elements = Iterables.filter(Lists.newArrayList(extension.getChildren()), IPluginElement.class); assertFalse("No extension update is required ", contextsUtil.isExtensionUpdateRequired(catalog, extension, elements)); diff --git a/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/builder/CheckTocExtensionTest.java b/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/builder/CheckTocExtensionTest.java index a0b250476..7f6185ddd 100644 --- a/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/builder/CheckTocExtensionTest.java +++ b/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/builder/CheckTocExtensionTest.java @@ -121,7 +121,7 @@ private IPluginExtension createErroneousTocExtension() throws CoreException { * the core exception */ @Test - public void testUpdateTocExtension() throws CoreException { + void testUpdateTocExtension() throws CoreException { IPluginExtension extension = createErroneousTocExtension(); assertNotSame("File location is not as expected", CheckTocExtensionHelper.TOC_FILE_NAME, ((IPluginElement) extension.getChildren()[0]).getAttribute("file").getValue()); tocUtil.updateExtension(catalog, extension); @@ -135,7 +135,7 @@ public void testUpdateTocExtension() throws CoreException { * the core exception */ @Test - public void testIsExtensionUpdateRequiredFalse() throws CoreException { + void testIsExtensionUpdateRequiredFalse() throws CoreException { IPluginExtension extension = tocUtil.addExtensionToPluginBase(pluginModel, catalog, ExtensionType.CONTEXTS, null); Iterable elements = Iterables.filter(Lists.newArrayList(extension.getChildren()), IPluginElement.class); assertFalse("No toc extension update is required", tocUtil.isExtensionUpdateRequired(catalog, extension, elements)); diff --git a/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/contentassist/BugAig931Test.java b/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/contentassist/BugAig931Test.java index 00f2b435e..a05076bf1 100644 --- a/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/contentassist/BugAig931Test.java +++ b/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/contentassist/BugAig931Test.java @@ -62,7 +62,7 @@ public String apply(final ICompletionProposal input) { * the exception */ @Test - public void testBugAig931() throws Exception { + void testBugAig931() throws Exception { final String partialModel = "package p catalog T for grammar com.avaloq.tools.ddk.check.Check { error \"X\" for "; final String[] expectedContextTypeProposals = {"EObject - org.eclipse.emf.ecore", "JvmType - org.eclipse.xtext.common.types"}; new UIJob("compute completion proposals") { diff --git a/com.avaloq.tools.ddk.test.ui.test/src/com/avaloq/tools/ddk/test/ui/test/swtbot/DeChKeyboardLayoutTest.java b/com.avaloq.tools.ddk.test.ui.test/src/com/avaloq/tools/ddk/test/ui/test/swtbot/DeChKeyboardLayoutTest.java index 76caf02b0..37c8043a4 100644 --- a/com.avaloq.tools.ddk.test.ui.test/src/com/avaloq/tools/ddk/test/ui/test/swtbot/DeChKeyboardLayoutTest.java +++ b/com.avaloq.tools.ddk.test.ui.test/src/com/avaloq/tools/ddk/test/ui/test/swtbot/DeChKeyboardLayoutTest.java @@ -29,7 +29,7 @@ public class DeChKeyboardLayoutTest { * Tests com.avaloq.test.swtbot.DE_CH. */ @Test - public void testDeChKeyboardLayout() { + void testDeChKeyboardLayout() { SWTBotPreferences.KEYBOARD_LAYOUT = "com.avaloq.test.swtbot.DE_CH"; SWTBotPreferences.KEYBOARD_STRATEGY = "org.eclipse.swtbot.swt.finder.keyboard.MockKeyboardStrategy"; SwtWorkbenchBot bot = new SwtWorkbenchBot(); diff --git a/com.avaloq.tools.ddk.typesystem.test/src/com/avaloq/tools/ddk/typesystem/AbstractTypeProviderTest.java b/com.avaloq.tools.ddk.typesystem.test/src/com/avaloq/tools/ddk/typesystem/AbstractTypeProviderTest.java index 113dd7e93..357fa1c53 100644 --- a/com.avaloq.tools.ddk.typesystem.test/src/com/avaloq/tools/ddk/typesystem/AbstractTypeProviderTest.java +++ b/com.avaloq.tools.ddk.typesystem.test/src/com/avaloq/tools/ddk/typesystem/AbstractTypeProviderTest.java @@ -109,13 +109,13 @@ private void testPlainProvider(final ITypeProvider plainProvider) { } @Test - public void testTypeProviderPlain() { + void testTypeProviderPlain() { ITypeProvider provider = new PlainTypeProvider(); testPlainProvider(provider); } @Test - public void testTypeProviderCyclicDefault() { + void testTypeProviderCyclicDefault() { ITypeProvider provider = new CyclicDefaultTypeProvider(); assertNull("cylic type for expression1 not null", provider.getType(expression1)); assertNull("cylic type for expression2 not null", provider.getType(expression2)); @@ -148,13 +148,13 @@ public void testTypeProviderCyclicOverrideMixed() { } @Test - public void testDelegatingTypeProvider() { + void testDelegatingTypeProvider() { delegateProvider = new PlainTypeProvider(); testPlainProvider(new DelegatingTypeProvider()); } @Test - public void testDoNothingTypeProvider() { + void testDoNothingTypeProvider() { // we are mainly testing that the AbstractTypeProvider does not crash when the subclass does nothing ITypeProvider provider = new DoNothingTypeProvider(); assertNull("did something for type of expression1", provider.getType(expression1)); diff --git a/com.avaloq.tools.ddk.typesystem.test/src/com/avaloq/tools/ddk/typesystem/BuiltInTypeModelAccessTest.java b/com.avaloq.tools.ddk.typesystem.test/src/com/avaloq/tools/ddk/typesystem/BuiltInTypeModelAccessTest.java index 6d89bec77..123d56208 100644 --- a/com.avaloq.tools.ddk.typesystem.test/src/com/avaloq/tools/ddk/typesystem/BuiltInTypeModelAccessTest.java +++ b/com.avaloq.tools.ddk.typesystem.test/src/com/avaloq/tools/ddk/typesystem/BuiltInTypeModelAccessTest.java @@ -58,7 +58,7 @@ public void testHasInternalTypes() { } @Test - public void testInvalidInternalTypeNames() { + void testInvalidInternalTypeNames() { assertNull("Null name returns null", BuiltInTypeModelAccess.getInstance().getInternalType(null)); assertNull("Empty name returns null", BuiltInTypeModelAccess.getInstance().getInternalType("")); assertNull("Non-existant name returns null", BuiltInTypeModelAccess.getInstance().getInternalType("xyz!!")); diff --git a/com.avaloq.tools.ddk.typesystem.test/src/com/avaloq/tools/ddk/typesystem/ParameterListMatcherTest.java b/com.avaloq.tools.ddk.typesystem.test/src/com/avaloq/tools/ddk/typesystem/ParameterListMatcherTest.java index 4757e2c8e..4ff14f953 100644 --- a/com.avaloq.tools.ddk.typesystem.test/src/com/avaloq/tools/ddk/typesystem/ParameterListMatcherTest.java +++ b/com.avaloq.tools.ddk.typesystem.test/src/com/avaloq/tools/ddk/typesystem/ParameterListMatcherTest.java @@ -210,13 +210,13 @@ private void checkParameterMatch(final IParameterMatchChecker.MatchStatus status } @Test - public void testNoneAgainstNone() { + void testNoneAgainstNone() { ParameterListMatchResult matchResult = parameterListMatcher.match(new ArrayList(), new ArrayList(), parameterMatcher, CASE_INSENSITIVE); checkParameterListResult(ParameterListMatchStatus.MATCH_SUCCESSFUL, 0, 0, matchResult); } @Test - public void testOneUnnamedAgainstOne() { + void testOneUnnamedAgainstOne() { List formals = new ArrayList(); formals.add(new NamedFormalParameter(NAME_1, intType)); List actuals = new ArrayList(); @@ -272,7 +272,7 @@ public void testOneUnnamedAgainstNone() { } @Test - public void testOneNamedAgainstNone() { + void testOneNamedAgainstNone() { List formals = new ArrayList(); List actuals = new ArrayList(); actuals.add(new NamedActualParameter(NAME_1, intType)); @@ -283,7 +283,7 @@ public void testOneNamedAgainstNone() { } @Test - public void testNoneAgainstOne() { + void testNoneAgainstOne() { List formals = new ArrayList(); NamedFormalParameter mandatoryParam = new NamedFormalParameter(NAME_1, intType); formals.add(mandatoryParam); @@ -295,7 +295,7 @@ public void testNoneAgainstOne() { } @Test - public void testNoneAgainstTwoMandatory() { + void testNoneAgainstTwoMandatory() { // one mandatory and one not mandatory List formals = new ArrayList(); NamedFormalParameter mandatoryParam1 = new NamedFormalParameter(NAME_1, intType); @@ -325,7 +325,7 @@ public void testNoneAgainstTwoMixed() { } @Test - public void testThreeUnnamedWithOneTypeError() { + void testThreeUnnamedWithOneTypeError() { List formals = new ArrayList(); formals.add(new NamedFormalParameter(NAME_1, intType)); formals.add(new NamedFormalParameter(NAME_2, intType)); @@ -343,7 +343,7 @@ public void testThreeUnnamedWithOneTypeError() { } @Test - public void testThreeNamedWithOneTypeError() { + void testThreeNamedWithOneTypeError() { List formals = new ArrayList(); formals.add(new NamedFormalParameter(NAME_1, intType)); formals.add(new NamedFormalParameter(NAME_2, intType)); @@ -361,7 +361,7 @@ public void testThreeNamedWithOneTypeError() { } @Test - public void testThreeMixedAgainstThreeMandatory() { + void testThreeMixedAgainstThreeMandatory() { List formals = new ArrayList(); formals.add(new NamedFormalParameter(NAME_1, intType)); formals.add(new NamedFormalParameter(NAME_2, intType)); @@ -379,7 +379,7 @@ public void testThreeMixedAgainstThreeMandatory() { } @Test - public void testTwoMixedAgainstThreeMandatory() { + void testTwoMixedAgainstThreeMandatory() { List formals = new ArrayList(); formals.add(new NamedFormalParameter(NAME_1, intType)); formals.add(new NamedFormalParameter(NAME_2, intType)); @@ -395,7 +395,7 @@ public void testTwoMixedAgainstThreeMandatory() { } @Test - public void testTwoMixedAgainstThreeWithOptional() { + void testTwoMixedAgainstThreeWithOptional() { List formals = new ArrayList(); formals.add(new NamedFormalParameter(NAME_1, intType)); formals.add(new NamedFormalParameter(NAME_2, intType, IS_OPTIONAL, !IS_MULTI)); @@ -411,7 +411,7 @@ public void testTwoMixedAgainstThreeWithOptional() { } @Test - public void testTwoUnnamedAgainstThreeWithOptional() { + void testTwoUnnamedAgainstThreeWithOptional() { List formals = new ArrayList(); formals.add(new NamedFormalParameter(NAME_1, intType)); formals.add(new NamedFormalParameter(NAME_2, intType)); @@ -423,7 +423,7 @@ public void testTwoUnnamedAgainstThreeWithOptional() { } @Test - public void testUnnamedTooManyActuals() { + void testUnnamedTooManyActuals() { List formals = new ArrayList(); formals.add(new NamedFormalParameter(NAME_1, intType)); formals.add(new NamedFormalParameter(NAME_2, intType)); @@ -442,7 +442,7 @@ public void testUnnamedTooManyActuals() { } @Test - public void testFourUnnamedAgainstTwoWithMulti() { + void testFourUnnamedAgainstTwoWithMulti() { List formals = new ArrayList(); formals.add(new NamedFormalParameter(NAME_1, intType)); formals.add(new NamedFormalParameter(NAME_2, intType, IS_MANDATORY, IS_MULTI)); @@ -455,7 +455,7 @@ public void testFourUnnamedAgainstTwoWithMulti() { } @Test - public void testFourNamedAgainstTwoWithMulti() { + void testFourNamedAgainstTwoWithMulti() { List formals = new ArrayList(); formals.add(new NamedFormalParameter(NAME_1, intType)); formals.add(new NamedFormalParameter(NAME_2, intType, IS_MANDATORY, IS_MULTI)); @@ -474,7 +474,7 @@ public void testFourNamedAgainstTwoWithMulti() { } @Test - public void testTwoUnNamedAgainstTwoPositional() { + void testTwoUnNamedAgainstTwoPositional() { List formals = new ArrayList(); formals.add(new FormalParameter(intType)); formals.add(new FormalParameter(textType)); @@ -493,7 +493,7 @@ private void check2Successful(final List formals, final List formals = new ArrayList(); formals.add(new FormalParameter(intType)); formals.add(new FormalParameter(textType, IS_MANDATORY, IS_MULTI)); @@ -516,7 +516,7 @@ private void check4Successful(final List formals, final List formals = new ArrayList(); formals.add(new FormalParameter(intType)); formals.add(new FormalParameter(textType, IS_MANDATORY, IS_MULTI)); @@ -535,7 +535,7 @@ public void testFourUnNamedAgainstTwoPositionalwithMultiAndTypeError() { } @Test - public void testNamedAgainstPositional() { + void testNamedAgainstPositional() { List formals = new ArrayList(); formals.add(new FormalParameter(intType)); formals.add(new FormalParameter(textType)); @@ -550,7 +550,7 @@ public void testNamedAgainstPositional() { } @Test - public void testMissingMandatoryAgainstPositional() { + void testMissingMandatoryAgainstPositional() { List formals = new ArrayList(); formals.add(new FormalParameter(intType)); formals.add(new FormalParameter(textType)); @@ -581,7 +581,7 @@ public void testInvalidActualNull() { } @Test - public void testInvalidActualNullWithMulti() { + void testInvalidActualNullWithMulti() { List formals = new ArrayList(); formals.add(new NamedFormalParameter(NAME_1, intType)); formals.add(new NamedFormalParameter(NAME_2, textType, IS_MANDATORY, IS_MULTI)); @@ -598,7 +598,7 @@ public void testInvalidActualNullWithMulti() { } @Test - public void testInvalidNamedActualNullName() { + void testInvalidNamedActualNullName() { List formals = new ArrayList(); formals.add(new NamedFormalParameter(NAME_1, intType)); formals.add(new NamedFormalParameter(NAME_2, textType, IS_OPTIONAL, !IS_MULTI)); @@ -609,7 +609,7 @@ public void testInvalidNamedActualNullName() { } @Test - public void testInvalidNamedActualBlankName() { + void testInvalidNamedActualBlankName() { List formals = new ArrayList(); formals.add(new NamedFormalParameter(NAME_1, intType)); formals.add(new NamedFormalParameter(NAME_2, textType, IS_OPTIONAL, !IS_MULTI)); @@ -646,7 +646,7 @@ public void testInvalidFormalNull() { } @Test - public void testInvalidFormalNullName() { + void testInvalidFormalNullName() { List formals = new ArrayList(); formals.add(new NamedFormalParameter(NAME_1, intType)); formals.add(new NamedFormalParameter(null, intType)); @@ -664,7 +664,7 @@ public void testInvalidFormalNullName() { } @Test - public void testInvalidActualNullNameInvalidFormalNullName() { + void testInvalidActualNullNameInvalidFormalNullName() { List formals = new ArrayList(); formals.add(new NamedFormalParameter(NAME_1, intType)); formals.add(new NamedFormalParameter(null, intType)); @@ -699,7 +699,7 @@ public void testDuplicateFormalName() { } @Test - public void testDuplicateNamedActual() { + void testDuplicateNamedActual() { List formals = new ArrayList(); formals.add(new NamedFormalParameter(NAME_1, intType)); formals.add(new NamedFormalParameter(NAME_2, intType)); @@ -777,7 +777,7 @@ public void testNamedMatchesPositional() { } @Test - public void testNamedFormalAfterUnnamed1() { + void testNamedFormalAfterUnnamed1() { // these are allowed, match named by position. List formals = new ArrayList(); formals.add(new FormalParameter(intType)); @@ -824,7 +824,7 @@ private void verifyOneUnnamedFormalAfterNamed(final List formal } @Test - public void testUnnamedFormalAfterNamed1() { + void testUnnamedFormalAfterNamed1() { // unnamed is matched by position List formals = new ArrayList(); formals.add(new NamedFormalParameter(NAME_1, intType)); @@ -846,7 +846,7 @@ public void testUnnamedFormalAfterNamed1() { } @Test - public void testUnnamedFormalAfterNamed2() { + void testUnnamedFormalAfterNamed2() { // unnamed is optional, at end and not matched because fewer formal parameters List formals = new ArrayList(); formals.add(new NamedFormalParameter(NAME_1, intType)); @@ -858,7 +858,7 @@ public void testUnnamedFormalAfterNamed2() { } @Test - public void testUnnamedFormalAfterNamed3() { + void testUnnamedFormalAfterNamed3() { // unnamed is mandatory, at end and not matched because fewer formal parameters List formals = new ArrayList(); formals.add(new NamedFormalParameter(NAME_1, intType)); @@ -870,7 +870,7 @@ public void testUnnamedFormalAfterNamed3() { } @Test - public void testUnnamedFormalAfterNamed4() { + void testUnnamedFormalAfterNamed4() { // two unnamed formals after named List formals = new ArrayList(); formals.add(new NamedFormalParameter(NAME_2, intType)); @@ -890,7 +890,7 @@ public void testUnnamedFormalAfterNamed4() { } @Test - public void testForceMatchByPosition1() { + void testForceMatchByPosition1() { List formals = new ArrayList(); formals.add(new NamedFormalParameter(NAME_1, intType)); formals.add(new NamedFormalParameter(NAME_2, intType)); diff --git a/com.avaloq.tools.ddk.xtext.export.test/src/com/avaloq/tools/ddk/xtext/export/exporting/ExportExportingTest.java b/com.avaloq.tools.ddk.xtext.export.test/src/com/avaloq/tools/ddk/xtext/export/exporting/ExportExportingTest.java index 8ef89ab12..6a6d0ae3c 100644 --- a/com.avaloq.tools.ddk.xtext.export.test/src/com/avaloq/tools/ddk/xtext/export/exporting/ExportExportingTest.java +++ b/com.avaloq.tools.ddk.xtext.export.test/src/com/avaloq/tools/ddk/xtext/export/exporting/ExportExportingTest.java @@ -28,7 +28,7 @@ protected ExportTestUtil getXtextTestUtil() { } @Test - public final void testExport() { + final void testExport() { // TODO - what should we test? } diff --git a/com.avaloq.tools.ddk.xtext.export.test/src/com/avaloq/tools/ddk/xtext/export/scoping/ExportScopingTest.java b/com.avaloq.tools.ddk.xtext.export.test/src/com/avaloq/tools/ddk/xtext/export/scoping/ExportScopingTest.java index b0a6d5687..09f42a4d5 100644 --- a/com.avaloq.tools.ddk.xtext.export.test/src/com/avaloq/tools/ddk/xtext/export/scoping/ExportScopingTest.java +++ b/com.avaloq.tools.ddk.xtext.export.test/src/com/avaloq/tools/ddk/xtext/export/scoping/ExportScopingTest.java @@ -42,7 +42,7 @@ protected ExportTestUtil getXtextTestUtil() { } @Test - public void testImportPackageScope() throws IOException { + void testImportPackageScope() throws IOException { ExportModel model = (ExportModel) getTestSource().getModel(); IScope scope = scopeProvider.scope_Import_package(model.getImports().get(0), ExportPackage.Literals.IMPORT__PACKAGE); assertNotNull("Could not locate Import.", scope.getSingleElement(QualifiedName.create("http://www.avaloq.com/tools/ddk/xtext/export/Export"))); @@ -50,7 +50,7 @@ public void testImportPackageScope() throws IOException { } @Test - public void testEclassScope() throws IOException { + void testEclassScope() throws IOException { ExportModel model = (ExportModel) getTestSource().getModel(); IScope scope = scopeProvider.scope_EClass(model, null); assertNotNull("Could not locate EClass.", scope.getSingleElement(QualifiedName.create("InterfaceExpression"))); @@ -58,7 +58,7 @@ public void testEclassScope() throws IOException { } @Test - public void testEStructuralFeatureScope() throws IOException { + void testEStructuralFeatureScope() throws IOException { ExportModel model = (ExportModel) getTestSource().getModel(); IScope scope = scopeProvider.scope_EStructuralFeature(model.getInterfaces().get(0), null); // CHECKSTYLE:OFF (DuplicateString) @@ -68,7 +68,7 @@ public void testEStructuralFeatureScope() throws IOException { } @Test - public void testEAttributeScope() throws IOException { + void testEAttributeScope() throws IOException { ExportModel model = (ExportModel) getTestSource().getModel(); IScope scope = scopeProvider.scope_EAttribute(model.getInterfaces().get(0), null); // CHECKSTYLE:OFF (DuplicateString) @@ -78,7 +78,7 @@ public void testEAttributeScope() throws IOException { } @Test - public void testInterfaceNavigationRefScope() throws IOException { + void testInterfaceNavigationRefScope() throws IOException { ExportModel model = (ExportModel) getTestSource().getModel(); IScope scope = scopeProvider.scope_InterfaceNavigation_ref(model.getInterfaces().get(0), null); // CHECKSTYLE:OFF (DuplicateString) diff --git a/com.avaloq.tools.ddk.xtext.export.test/src/com/avaloq/tools/ddk/xtext/export/validation/ExportValidationTest.java b/com.avaloq.tools.ddk.xtext.export.test/src/com/avaloq/tools/ddk/xtext/export/validation/ExportValidationTest.java index 77389066f..a43f6c85d 100644 --- a/com.avaloq.tools.ddk.xtext.export.test/src/com/avaloq/tools/ddk/xtext/export/validation/ExportValidationTest.java +++ b/com.avaloq.tools.ddk.xtext.export.test/src/com/avaloq/tools/ddk/xtext/export/validation/ExportValidationTest.java @@ -36,7 +36,7 @@ public final void testCheckInterfaceAndExportUniqueness() { } @Test - public final void testCheckExportFieldUniqueness() { + final void testCheckExportFieldUniqueness() { assertDiagnosticMessage("duplicate found: instanceClassName"); } @@ -47,7 +47,7 @@ public final void testCheckUserDataNameAsFeature() { } @Test - public final void testCheckOverlap() { + final void testCheckOverlap() { // TODO assertDiagnosticMessage(""); } diff --git a/com.avaloq.tools.ddk.xtext.format.test/src/com/avaloq/tools/ddk/xtext/format/builder/FormatBuilderParticipantTest.java b/com.avaloq.tools.ddk.xtext.format.test/src/com/avaloq/tools/ddk/xtext/format/builder/FormatBuilderParticipantTest.java index 2d20798d9..21703a283 100644 --- a/com.avaloq.tools.ddk.xtext.format.test/src/com/avaloq/tools/ddk/xtext/format/builder/FormatBuilderParticipantTest.java +++ b/com.avaloq.tools.ddk.xtext.format.test/src/com/avaloq/tools/ddk/xtext/format/builder/FormatBuilderParticipantTest.java @@ -78,7 +78,7 @@ public void hasCorrectExtensionTest() { * Tests whether a {@link Delta} resource comes form the right (SRC) directory to be used by org.eclipse.xtext.builder.BuilderParticipant. */ @Test - public void isSourceOriginatedTest() { + void isSourceOriginatedTest() { when(uriCorrect.segments()).thenReturn(CORRECT_URI_SEGMENTS); assertTrue("Check if the delta resource has correct URI and comes from SRC directory", participant.isSourceOriginated(delta)); when(uriCorrect.segments()).thenReturn(BIN_URI_SEGMENTS); diff --git a/com.avaloq.tools.ddk.xtext.format.test/src/com/avaloq/tools/ddk/xtext/format/scoping/FormatScopingTest.java b/com.avaloq.tools.ddk.xtext.format.test/src/com/avaloq/tools/ddk/xtext/format/scoping/FormatScopingTest.java index c496aa3e6..fb5c88cef 100644 --- a/com.avaloq.tools.ddk.xtext.format.test/src/com/avaloq/tools/ddk/xtext/format/scoping/FormatScopingTest.java +++ b/com.avaloq.tools.ddk.xtext.format.test/src/com/avaloq/tools/ddk/xtext/format/scoping/FormatScopingTest.java @@ -124,7 +124,7 @@ public void keywordScoped() { * Verify assignemnts (=a, =b ...) are scoped. */ @Test - public void assignmentScoped() { + void assignmentScoped() { AbstractRule parserRuleA = grammarA.getRules().get(0); Set assignmentURIs = Sets.newHashSet(Iterables.transform(GrammarUtil.containedAssignments(parserRuleA), TO_URI)); assertFalse("No assignments found", assignmentURIs.isEmpty()); @@ -136,7 +136,7 @@ public void assignmentScoped() { * Verify Rule { @Rule : ...}. */ @Test - public void ruleCallScoped() { + void ruleCallScoped() { AbstractRule parserRuleAA = grammarA.getRules().get(1); Set ruleCallURIs = Sets.newHashSet(Iterables.transform(GrammarUtil.containedRuleCalls(parserRuleAA), TO_URI)); assertScope(formatA.getRules().get(1), FormatPackage.Literals.GRAMMAR_ELEMENT_REFERENCE__RULE_CALL, ruleCallURIs); @@ -147,7 +147,7 @@ public void ruleCallScoped() { * Verify Rule { rule : ...}. */ @Test - public void ruleSelfScoped() { + void ruleSelfScoped() { AbstractRule parserRuleA = grammarA.getRules().get(0); assertScope(formatC.getRules().get(0), FormatPackage.Literals.GRAMMAR_ELEMENT_REFERENCE__SELF, TO_URI.apply(parserRuleA)); } diff --git a/com.avaloq.tools.ddk.xtext.format.test/src/com/avaloq/tools/ddk/xtext/format/validation/FormatValidationTest.java b/com.avaloq.tools.ddk.xtext.format.test/src/com/avaloq/tools/ddk/xtext/format/validation/FormatValidationTest.java index 9b686920f..30ad6a149 100644 --- a/com.avaloq.tools.ddk.xtext.format.test/src/com/avaloq/tools/ddk/xtext/format/validation/FormatValidationTest.java +++ b/com.avaloq.tools.ddk.xtext.format.test/src/com/avaloq/tools/ddk/xtext/format/validation/FormatValidationTest.java @@ -130,7 +130,7 @@ public void illegalWildcardRuleOverride() { * Verify that IllegalOverride validation issues error for GrammarRules. */ @Test - public void illegalGrammarRuleOverride() { + void illegalGrammarRuleOverride() { setFormattingRules(new String[] {OVERRIDE_INT_EXP_RULE}); assertDiagnostic(extendingFormat, FormatValidator.OVERRIDE_ILLEGAL_CODE); } @@ -149,7 +149,7 @@ public void missingWildcardRuleOverride() { * Verify that OverrideMissing validation issues error for GrammarRules. */ @Test - public void missingGrammarRuleOverride() { + void missingGrammarRuleOverride() { setFormattingRules(new String[] {INT_EXP_RULE}, INT_EXP_RULE); assertDiagnostic(extendingFormat, FormatValidator.OVERRIDE_MISSING_CODE); } @@ -203,7 +203,7 @@ public void extendedGrammarCompatibleOK() { * formatting rule must be defined in the extending configuration if it is defined in the parent. */ @Test - public void requiredRulesImplemented() { + void requiredRulesImplemented() { setFormattingRules(new String[0], "Rule {}"); assertDiagnostic(extendingFormat, FormatValidator.GRAMMAR_RULE_MISSING_CODE); } diff --git a/com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/expression/CodeGenerationXTest.java b/com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/expression/CodeGenerationXTest.java index 4bd3cef04..f25d545ce 100644 --- a/com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/expression/CodeGenerationXTest.java +++ b/com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/expression/CodeGenerationXTest.java @@ -60,7 +60,7 @@ protected String getTestSourceFileName() { } @Test - public void testliterals() throws Exception { + void testliterals() throws Exception { // CHECKSTYLE:CONSTANTS-OFF assertEquals("42", compile("42")); // NOPMD assertEquals("4.2", compile("4.2")); // NOPMD @@ -96,7 +96,7 @@ public void testBracketing() throws Exception { } @Test - public void testBooleanLogic() throws Exception { + void testBooleanLogic() throws Exception { // CHECKSTYLE:CONSTANTS-OFF assertEquals("true", compile("true")); // NOPMD assertEquals("false", compile("false")); // NOPMD @@ -140,7 +140,7 @@ public void testPrefixExpressions() throws Exception { } @Test - public void testInfixExpressions() throws Exception { + void testInfixExpressions() throws Exception { // CHECKSTYLE:CONSTANTS-OFF assertEquals("(true ? 1 : 2) + 3", compile("(true ? 1 : 2) + 3")); // NOPMD assertEquals("!(true ? true : false)", compile("!(true ? true : false)")); // NOPMD @@ -154,7 +154,7 @@ public void testImplicitVariable() throws Exception { } @Test - public void testCasting() throws Exception { + void testCasting() throws Exception { assertEquals("((org.eclipse.emf.ecore.EObject) obj)", compile("(ecore::EObject) this")); // NOPMD } @@ -170,7 +170,7 @@ public void testIsInstance() throws Exception { } @Test - public void testEContainerNavigation() throws Exception { + void testEContainerNavigation() throws Exception { // CHECKSTYLE:CONSTANTS-OFF assertEquals("obj.eContainer()", compile("this.eContainer")); // NOPMD assertEquals("obj.eContainer()", compile("this.eContainer()")); // NOPMD @@ -186,13 +186,13 @@ public void testTypeSelect() throws Exception { } @Test - public void testCollectionExpression() throws Exception { + void testCollectionExpression() throws Exception { assertEquals(// NOPMD "com.google.common.collect.Iterables.filter(java.util.Collections.singletonList(obj), new com.google.common.base.Predicate() { public boolean apply(Object e) {return true;} })", compile("{this}.select(e|true)")); } @Test - public void testMultipleNavigations() throws Exception { + void testMultipleNavigations() throws Exception { assertEquals(// NOPMD "/* NOT COMPILABLE: Complex expressions like \"this.eContainer.eContainer\" cannot be translated to Java. Consider rewriting the expression or using a JAVA extension. */", compile("this.eContainer.eContainer")); assertEquals(// NOPMD diff --git a/com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/expression/CompilationContextTest.java b/com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/expression/CompilationContextTest.java index 6a29967a1..762c80efd 100644 --- a/com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/expression/CompilationContextTest.java +++ b/com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/expression/CompilationContextTest.java @@ -28,7 +28,7 @@ public class CompilationContextTest { @Test - public void isExtension() { + void isExtension() { ExecutionContextImpl executionContext = new ExecutionContextImpl(); executionContext.registerMetaModel(new JavaBeansMetaModel()); ExtensionFile extensionFile = ParseFacade.file(new InputStreamReader(getClass().getResourceAsStream("/com/avaloq/tools/ddk/xtext/generator/expression/TestExtensions.ext")), "TestExtensions.ext"); @@ -39,7 +39,7 @@ public void isExtension() { } @Test - public void analyze() { + void analyze() { ExecutionContextImpl executionContext = new ExecutionContextImpl(); executionContext.registerMetaModel(new JavaBeansMetaModel()); final CompilationContext context = new CompilationContext(executionContext, null); diff --git a/com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/expression/ExpressionsExtentionsTest.java b/com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/expression/ExpressionsExtentionsTest.java index f2e4b149a..779b5f404 100644 --- a/com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/expression/ExpressionsExtentionsTest.java +++ b/com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/expression/ExpressionsExtentionsTest.java @@ -38,7 +38,7 @@ protected String getTestSourceFileName() { } @Test - public final void serialize() throws IOException { + final void serialize() throws IOException { Expression e = (Expression) getXtextTestUtil().getModel("test.expression." + getXtextTestUtil().getFileExtension(), "let x = 1 : 0"); assertEquals("Simple serialization works", "let x = 1 : 0", ExpressionExtensions.serialize(e)); } diff --git a/com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/test/util/EClassComparatorTest.java b/com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/test/util/EClassComparatorTest.java index c3737545a..e9302cd4e 100644 --- a/com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/test/util/EClassComparatorTest.java +++ b/com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/test/util/EClassComparatorTest.java @@ -53,7 +53,7 @@ public void testSorting() { } @Test - public void testSortingWithEObject() { + void testSortingWithEObject() { List sorted = EClassComparator.sortedGroups(Lists.newArrayList(EOBJECT, ECLASS), mapping); assertEquals(Lists.newArrayList(ECLASS, EOBJECT), sorted); @@ -62,7 +62,7 @@ public void testSortingWithEObject() { } @Test - public void testSortingByEPackage() { + void testSortingByEPackage() { ListMultimap sorted = EClassComparator.sortedEPackageGroups(Lists.newArrayList(EOBJECT, ECLASS), mapping); assertEquals(2, sorted.size()); assertEquals(1, sorted.keySet().size()); diff --git a/com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/test/util/GraphTest.java b/com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/test/util/GraphTest.java index 7d352e3cb..e35f9c169 100644 --- a/com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/test/util/GraphTest.java +++ b/com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/test/util/GraphTest.java @@ -29,7 +29,7 @@ public class GraphTest { // CHECKSTYLE:CONSTANTS-OFF @Test - public void testTopologicalSorting() { + void testTopologicalSorting() { Multimap graph = HashMultimap.create(); graph.put("7", "11"); graph.put("7", "8"); @@ -47,7 +47,7 @@ public void testTopologicalSorting() { } @Test - public void testDependencyCycle() { + void testDependencyCycle() { Multimap graph = ImmutableMultimap.of("1", "2", "2", "3", "3", "1"); try { diff --git a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/formatting/AbstractFormattingTest.java b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/formatting/AbstractFormattingTest.java index d2f11e280..2c4e39bbc 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/formatting/AbstractFormattingTest.java +++ b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/formatting/AbstractFormattingTest.java @@ -68,7 +68,7 @@ protected String getExpectedTestSourceFileName() { * Test formatting based on the NodeModel. */ @Test - public void formattedNodeModel() { + void formattedNodeModel() { assertFormattedNodeModel(); } diff --git a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/outline/AbstractOutlineTest.java b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/outline/AbstractOutlineTest.java index 5780e7b7c..53d0d7dfc 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/outline/AbstractOutlineTest.java +++ b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/outline/AbstractOutlineTest.java @@ -54,7 +54,7 @@ protected List getExpectedElements() { * Tests that the outline of the default test resource contains exactly the expected elements. */ @Test - public void testOutline() { + void testOutline() { if (getExpectedElements() == null) { return; // TODO: remove this once all tests have been refactored } diff --git a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/builder/XtextBuildTriggerTest.java b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/builder/XtextBuildTriggerTest.java index e04387c70..3ceab654b 100644 --- a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/builder/XtextBuildTriggerTest.java +++ b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/builder/XtextBuildTriggerTest.java @@ -55,7 +55,7 @@ protected void configure() { } @Test - public void testTriggerRespectsAutoBuilding() { + void testTriggerRespectsAutoBuilding() { XtextBuildTrigger buildTrigger = get(XtextBuildTrigger.class); // auto-build disabled diff --git a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/formatter/FormatterTest.java b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/formatter/FormatterTest.java index bd12e2340..2ca1770ef 100644 --- a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/formatter/FormatterTest.java +++ b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/formatter/FormatterTest.java @@ -93,7 +93,7 @@ public void column() throws IOException { * @throws IOException */ @Test - public void columnMinimumPadding() throws IOException { + void columnMinimumPadding() throws IOException { String model = " test column name item int x;"; String expected = "test\n column name\n\n\titem int x;"; assertFormattedPTC(expected, model); @@ -107,7 +107,7 @@ public void columnMinimumPadding() throws IOException { * @throws IOException */ @Test - public void offset() throws IOException { + void offset() throws IOException { String model = "test offset value v pair p1 p2"; String expected = "test\noffset\n\tvalue v\n\t\tpair p1 p2"; assertFormattedPTC(expected, model); @@ -121,7 +121,7 @@ public void offset() throws IOException { * @throws IOException */ @Test - public void rightPadding() throws IOException { + void rightPadding() throws IOException { String model = "test padding long_name n2;"; String expected = "test\npadding long_name n2 ;"; assertFormattedPTC(expected, model); @@ -166,7 +166,7 @@ public void association() throws IOException { * @throws IOException */ @Test - public void indentationAndComments() throws IOException { + void indentationAndComments() throws IOException { String model = "test /* xxx */ indentation { float val; // some float\n double /* oo */ y; indentation { // some block\n int x; // xxx\n } } // final comment"; String expected = "test /* xxx */ indentation {\n float val; // some float\n double /* oo */ y;\n indentation { // some block\n int x; // xxx\n }\n} // final comment"; assertFormattedPTC(expected, model); @@ -182,7 +182,7 @@ public void indentationAndComments() throws IOException { * @throws IOException */ @Test - public void indentationAndLineWrap() throws IOException { + void indentationAndLineWrap() throws IOException { String model = "test indentation { void func(x:int,y:int,s:javalangString, foo:javasqlDate, blupp:mylongtype, msads:adshdjkhsakdasdkslajdlsask, x:x, a:b, c:d ); }"; String expected = "test indentation {\n void func(x:int,y:int,\n\t\ts:javalangString,\n\t\tfoo:javasqlDate,\n\t\tblupp:mylongtype,\n\t\tmsads:adshdjkhsakdasdkslajdlsask,\n\t\tx:x,a:b,c:d);\n}"; assertFormattedPTC(expected, model); @@ -212,7 +212,7 @@ public void between1() throws IOException { * @throws IOException */ @Test - public void between2() throws IOException { + void between2() throws IOException { String model = "test indentation { indentation { x x; } }"; String expected = "test indentation {\n indentation {\n x x;\n }\n}"; assertFormattedPTC(expected, model); @@ -281,7 +281,7 @@ public void linewrapDatatypeRulePartial3() throws IOException { * @throws IOException */ @Test - public void formatSegment1() throws IOException { + void formatSegment1() throws IOException { String model = "test\nindentation {\n indentation { x x ; } }"; String expected = "test\nindentation {\n indentation {\n x x;\n } }"; assertFormattedNM(expected, model, 30, 18); @@ -294,7 +294,7 @@ public void formatSegment1() throws IOException { * @throws IOException */ @Test - public void formatSegment2() throws IOException { + void formatSegment2() throws IOException { String model = "test indentation {\n indentation { x x ; } }"; // String expected = // "test\nindentation {\n indentation {\n x x;\n } }"; @@ -308,7 +308,7 @@ public void formatSegment2() throws IOException { * @throws IOException */ @Test - public void formatSegment3() throws IOException { + void formatSegment3() throws IOException { String model = " test indentation {\n indentation { x x ; } }"; String expected = "test indentation {\n indentation {\n x x;\n }\n}"; assertFormattedNM(expected, model, 0, model.length()); @@ -335,7 +335,7 @@ public void linewrapDatatypeRuleRef1() throws IOException { * @throws IOException */ @Test - public void linewrapDatatypeRuleRef2() throws IOException { + void linewrapDatatypeRuleRef2() throws IOException { String model = "test linewrap fqn ab.cd.ef; fqnref ab.cd.ef;"; String expected = "test linewrap\nfqn\nab.cd.ef;\nfqnref\nab.cd.ef;"; assertFormattedPTC(expected, model); @@ -370,7 +370,7 @@ public void linewrapDatatypeRuleComments() throws IOException { * @throws IOException */ @Test - public void enumeration() throws IOException { + void enumeration() throws IOException { String model = "test linewrap enum lit1,lit2,lit3,lit1;"; String expected = "test linewrap\nenum lit1 ,\nlit2,\nlit3,\nlit1;"; assertFormattedPTC(expected, model); @@ -386,7 +386,7 @@ public void enumeration() throws IOException { */ // see https://bugs.eclipse.org/bugs/show_bug.cgi?id=312559 @Test - public void suppressedWhitespace() throws IOException { + void suppressedWhitespace() throws IOException { String model = "test linewrap `f%%a` post;"; String expected = "test linewrap\n`f%< b >%a` post;"; assertFormattedPTC(expected, model); @@ -433,7 +433,7 @@ public void linewrapMin() throws IOException { * @throws IOException */ @Test - public void linewrapMax() throws IOException { + void linewrapMax() throws IOException { String model = "test wrapminmax\n\n\n\n\n\n\n\n\n\n\n\n\nfoo bar;"; String expected = "test wrapminmax\n\n\n\n\nfoo bar;"; assertFormattedPTC(expected, model); @@ -496,7 +496,7 @@ public void space() throws IOException { * @throws IOException */ @Test - public void datatypeRules() throws IOException { + void datatypeRules() throws IOException { String model = "test linewrap datatypes abc kw1 bcd def kw3;"; String expected = "test linewrap\ndatatypes abc\nkw1\nbcd\ndef\nkw3;"; assertFormattedPTC(expected, model); diff --git a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/linking/AbstractFragmentProviderTest.java b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/linking/AbstractFragmentProviderTest.java index 669677c08..cdafd1ad9 100644 --- a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/linking/AbstractFragmentProviderTest.java +++ b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/linking/AbstractFragmentProviderTest.java @@ -52,14 +52,14 @@ public String unescape(final String text) { private final TestAbstractFragmentProvider fragmentProvider = new TestAbstractFragmentProvider(); @Test - public void testEscape() { + void testEscape() { StringBuilder builder = new StringBuilder(); fragmentProvider.appendEscaped("foo/bar#\\", builder); Assert.assertEquals("Fragment not properly scaped", builder.toString(), "foo\\/bar#\\\\"); } @Test - public void testUnescape() { + void testUnescape() { Assert.assertEquals("Fragment not properly unscaped", "foo//bar##\\", fragmentProvider.unescape("foo\\/\\/bar##\\\\")); } diff --git a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/naming/QualifiedNamePatternTest.java b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/naming/QualifiedNamePatternTest.java index a37d48b8e..610904435 100644 --- a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/naming/QualifiedNamePatternTest.java +++ b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/naming/QualifiedNamePatternTest.java @@ -30,7 +30,7 @@ public class QualifiedNamePatternTest { @Test - public void testSimpleQualifiedNamePattern() { + void testSimpleQualifiedNamePattern() { QualifiedNamePattern pattern = QualifiedNamePattern.create("foo*"); assertEquals(QualifiedName.create("foo"), pattern.lowerInclusive()); assertEquals(QualifiedName.create("fop"), pattern.upperExclusive()); @@ -103,7 +103,7 @@ public void testPatternWithoutWildcard() { } @Test - public void testRegexpPatterns() { + void testRegexpPatterns() { QualifiedNamePattern pattern = QualifiedNamePattern.createFromGlobs("*"); assertEquals(QualifiedName.create(""), pattern.lowerInclusive()); assertEquals(QualifiedName.create("!"), pattern.upperExclusive()); diff --git a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/naming/QualifiedNameSegmentTreeLookupTest.java b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/naming/QualifiedNameSegmentTreeLookupTest.java index 7cb687f84..d40950e85 100644 --- a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/naming/QualifiedNameSegmentTreeLookupTest.java +++ b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/naming/QualifiedNameSegmentTreeLookupTest.java @@ -30,7 +30,7 @@ public class QualifiedNameSegmentTreeLookupTest { private final QualifiedNameSegmentTreeLookup lookup = new QualifiedNameSegmentTreeLookup(URI.class, true); @Test - public void testEmpty() { + void testEmpty() { assertNull(lookup.get(QualifiedName.EMPTY)); } @@ -53,7 +53,7 @@ public void testExact() { } @Test - public void testTopLevelPatternWithoutWildcard() { + void testTopLevelPatternWithoutWildcard() { URI value1 = put("foo"); URI value2 = put("bar"); URI value3 = put("foo2"); diff --git a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/resource/AbstractSelectorFragmentProviderTest.java b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/resource/AbstractSelectorFragmentProviderTest.java index 8ff421884..d80aafd98 100644 --- a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/resource/AbstractSelectorFragmentProviderTest.java +++ b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/resource/AbstractSelectorFragmentProviderTest.java @@ -57,7 +57,7 @@ public void testTopLevelObject() throws Exception { } @Test - public void testMultiValuedContainment() throws Exception { + void testMultiValuedContainment() throws Exception { Grammar grammar = (Grammar) getModel("grammar foo.Foo\n" + "generate foo 'http://www.foo.com/foo'\n" + "Foo: 'foo';"); assertFragmentMatchesAndResolves(grammar.eResource(), "/0/5(0='Foo')#0", grammar.getRules().get(0)); } @@ -78,7 +78,7 @@ public void testNullSelectorValue() throws Exception { } @Test - public void testEscapedSelectorValue() throws Exception { + void testEscapedSelectorValue() throws Exception { Grammar grammar = (Grammar) getModel("grammar foo.Foo\n" + "generate foo 'http://www.foo.com/foo'\n" + "Foo: 'foo.bar#';"); assertFragmentMatchesAndResolves(grammar.eResource(), "/0/5(0='Foo')#0/2(3='foo.bar#')", grammar.getRules().get(0).getAlternatives()); } diff --git a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/resource/BugAig1084.java b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/resource/BugAig1084.java index a2d550034..b72d54975 100644 --- a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/resource/BugAig1084.java +++ b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/resource/BugAig1084.java @@ -31,7 +31,7 @@ public class BugAig1084 { * stack-overflow. */ @Test - public void recursiveLookUp() { + void recursiveLookUp() { Resource resource = org.mockito.Mockito.mock(Resource.class); EList emptyEList = new BasicEList(); org.mockito.Mockito.when(resource.eAdapters()).thenReturn(emptyEList); diff --git a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/resource/ResourceDescriptionDeltaTest.java b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/resource/ResourceDescriptionDeltaTest.java index 25324f494..64d9a57cb 100644 --- a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/resource/ResourceDescriptionDeltaTest.java +++ b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/resource/ResourceDescriptionDeltaTest.java @@ -58,7 +58,7 @@ public void testGetAddedAndDeletedObjects() { } @Test - public void testGetChangedObjects() { + void testGetChangedObjects() { ResourceDescriptionDelta delta = new ResourceDescriptionDelta(createDescription("a:a"), createDescription("a:a1"), null); assertDeltaEquals(0, 1, 0, delta); @@ -70,7 +70,7 @@ public void testGetChangedObjects() { } @Test - public void testDeltaForNewResource() { + void testDeltaForNewResource() { ResourceDescriptionDelta delta = new ResourceDescriptionDelta(null, createDescription("a"), null); assertDeltaEquals(1, 0, 0, delta); } @@ -82,7 +82,7 @@ public void testDeltaForDeletedResource() { } @Test - public void testOldReconstruction() { + void testOldReconstruction() { IResourceDescription oldRes = createDescription("a"); ResourceDescriptionDelta delta = new ResourceDescriptionDelta(oldRes, createDescription("a"), null); diff --git a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/util/RuntimeProjectUtilTest.java b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/util/RuntimeProjectUtilTest.java index 1e8b835eb..e7ff5c1a3 100644 --- a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/util/RuntimeProjectUtilTest.java +++ b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/util/RuntimeProjectUtilTest.java @@ -83,7 +83,7 @@ protected void beforeAllTests() { * Tests extracting project path from a {@link Resource}. */ @Test - public void getPathProjectTest() { + void getPathProjectTest() { assertEquals("Check if the correct project path has been returned", WORKSPACE_PATH + "/" + TEST_PROJECT_NAME, RuntimeProjectUtil.getPathProject(resource, mapperCorrect)); } @@ -92,7 +92,7 @@ public void getPathProjectTest() { * Tests extracting project name from a {@link URI}. */ @Test - public void getProjectCorrectTest() { + void getProjectCorrectTest() { super.addSourceToWorkspace(SOURCE_NAMES.get(0)); IProject iproject = RuntimeProjectUtil.getProject(uriCorrect, mapperCorrect); assumeNotNull(iproject); @@ -103,7 +103,7 @@ public void getProjectCorrectTest() { * Checks when passed {@link IStorage2UriMapper} is broken then null instead of project name expected. */ @Test - public void getProjectInCorrectTest() { + void getProjectInCorrectTest() { super.addSourceToWorkspace(SOURCE_NAMES.get(0)); IProject iproject = RuntimeProjectUtil.getProject(uriCorrect, mapperInCorrect); assertNull("When passed IStorage2UriMapper is broken then null instead of project name expected", iproject); @@ -114,7 +114,7 @@ public void getProjectInCorrectTest() { * Tests correct delegation of responsibility to the {@link IStorage2UriMapper}. */ @Test - public void findFileStorageCorrectTest() { + void findFileStorageCorrectTest() { super.addSourceToWorkspace(SOURCE_NAMES.get(0)); assertEquals("Check if the correct file has been returned", RuntimeProjectUtil.findFileStorage(uriCorrect, mapperCorrect), file); } @@ -123,7 +123,7 @@ public void findFileStorageCorrectTest() { * Checks when passed {@link IStorage2UriMapper} is broken then no file expected. */ @Test - public void findFileStorageInCorrectTest() { + void findFileStorageInCorrectTest() { assertNull("When passed IStorage2UriMapper is broken then no file expected", RuntimeProjectUtil.findFileStorage(uriInCorrect, mapperInCorrect)); } diff --git a/com.avaloq.tools.ddk.xtext.ui.test/src/com/avaloq/tools/ddk/xtext/ui/quickfix/WorkbenchResolutionAdaptorRunTest.java b/com.avaloq.tools.ddk.xtext.ui.test/src/com/avaloq/tools/ddk/xtext/ui/quickfix/WorkbenchResolutionAdaptorRunTest.java index d7dc56025..ae00ab536 100644 --- a/com.avaloq.tools.ddk.xtext.ui.test/src/com/avaloq/tools/ddk/xtext/ui/quickfix/WorkbenchResolutionAdaptorRunTest.java +++ b/com.avaloq.tools.ddk.xtext.ui.test/src/com/avaloq/tools/ddk/xtext/ui/quickfix/WorkbenchResolutionAdaptorRunTest.java @@ -128,7 +128,7 @@ private void mockMarkerResource(final URI uri) throws CoreException { } @Test - public void testRun() throws CoreException { + void testRun() throws CoreException { WorkbenchResolutionAdapter adapter = wmrg.new WorkbenchResolutionAdapter(mockIssueResolution, mockMarker); when(mockMarkerHelpRegistry.getResolutions(mockMarker)).thenReturn(mockMarkerResolutions); @@ -142,7 +142,7 @@ public void testRun() throws CoreException { } @Test - public void testSingleRun() throws CoreException { + void testSingleRun() throws CoreException { WorkbenchResolutionAdapter adapter = wmrg.new WorkbenchResolutionAdapter(mockIssueResolution, mockMarker); when(mockMarkerHelpRegistry.getResolutions(mockMarker)).thenReturn(mockMarkerResolutions); diff --git a/com.avaloq.tools.ddk.xtext.ui.test/src/com/avaloq/tools/ddk/xtext/ui/templates/ResourceNameTemplateVariableResolverTest.java b/com.avaloq.tools.ddk.xtext.ui.test/src/com/avaloq/tools/ddk/xtext/ui/templates/ResourceNameTemplateVariableResolverTest.java index 93b518bf0..3e0ed8f2a 100644 --- a/com.avaloq.tools.ddk.xtext.ui.test/src/com/avaloq/tools/ddk/xtext/ui/templates/ResourceNameTemplateVariableResolverTest.java +++ b/com.avaloq.tools.ddk.xtext.ui.test/src/com/avaloq/tools/ddk/xtext/ui/templates/ResourceNameTemplateVariableResolverTest.java @@ -77,13 +77,13 @@ public void testResolveValuesWithNullContext() { } @Test - public void testResolveValuesWithFileWithoutExtension() throws TemplateException { + void testResolveValuesWithFileWithoutExtension() throws TemplateException { final String filename = "filenamewithnoextension"; //$NON-NLS-1$ testResolveValues(FILE, filename, filename); } @Test - public void testResolveValuesWithFileWithExtension() throws TemplateException { + void testResolveValuesWithFileWithExtension() throws TemplateException { testResolveValues(FILE, "filename.with.extension", "filename.with"); //$NON-NLS-1$//$NON-NLS-2$ } @@ -98,7 +98,7 @@ public void testResolveValuesWithUnknownParam() throws TemplateException { } @Test - public void testResolveValuesWithWrongTypeOfParam() throws TemplateException { + void testResolveValuesWithWrongTypeOfParam() throws TemplateException { testResolveValues(new Object[] {42}, FILENAME); } From d743b63f3825e0a07f8bc4f40bcb7e52c674bb58 Mon Sep 17 00:00:00 2001 From: Joao Ferreira Date: Wed, 3 Sep 2025 17:46:00 +0200 Subject: [PATCH 48/57] fixup! test: make all JUnit 5 tests package-private --- .../tools/ddk/check/core/test/BugDsl27.java | 2 +- .../registry/CheckExtensionPointTests.java | 6 ++-- .../core/validation/CheckValidatorTest.java | 2 +- .../label/CheckRuleLabelProviderTest.java | 14 ++++---- .../check/ui/test/CheckProjectWizardTest.java | 2 +- .../builder/CheckMarkerHelpExtensionTest.java | 10 +++--- .../test/builder/CheckTocExtensionTest.java | 4 +-- .../validation/CheckCfgValidationTest.java | 2 +- .../ui/test/logging/ErrorLogListenerTest.java | 2 +- .../test/ui/test/swtbot/SwtBotRadioTest.java | 2 +- .../typesystem/AbstractTypeProviderTest.java | 4 +-- .../BuiltInTypeModelAccessTest.java | 6 ++-- .../typesystem/ParameterListMatcherTest.java | 28 ++++++++-------- .../validation/ExportValidationOkTest.java | 2 +- .../validation/ExportValidationTest.java | 6 ++-- .../builder/FormatBuilderParticipantTest.java | 2 +- .../format/scoping/FormatScopingTest.java | 6 ++-- .../validation/FormatValidationTest.java | 16 +++++----- .../expression/CodeGenerationXTest.java | 18 +++++------ .../test/util/EClassComparatorTest.java | 2 +- .../formatting/AbstractFormattingTest.java | 2 +- .../ui/labeling/AbstractLabelingTest.java | 2 +- .../ddk/xtext/formatter/FormatterTest.java | 32 +++++++++---------- .../linking/AbstractFragmentProviderTest.java | 2 +- .../linking/ShortFragmentProviderTest.java | 2 +- .../naming/QualifiedNamePatternTest.java | 10 +++--- .../QualifiedNameSegmentTreeLookupTest.java | 14 ++++---- .../AbstractSelectorFragmentProviderTest.java | 6 ++-- .../ResourceDescriptionDeltaTest.java | 4 +-- .../WorkbenchResolutionAdaptorTest.java | 8 ++--- ...ourceNameTemplateVariableResolverTest.java | 4 +-- ...impleEnumTemplateVariableResolverTest.java | 4 +-- 32 files changed, 113 insertions(+), 113 deletions(-) diff --git a/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/core/test/BugDsl27.java b/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/core/test/BugDsl27.java index e052cd1c5..bd18084db 100644 --- a/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/core/test/BugDsl27.java +++ b/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/core/test/BugDsl27.java @@ -32,7 +32,7 @@ public class BugDsl27 extends AbstractCheckGenerationTestCase { * Tests that our test source compiles fine. */ @org.junit.jupiter.api.Test - public void testGeneratedCodeHasNoErrors() { + void testGeneratedCodeHasNoErrors() { try (InputStream sourceStream = BugDsl27.class.getResourceAsStream("bugdsl27/BugDsl27")) { generateAndCompile(sourceStream); } catch (IOException exception) { diff --git a/com.avaloq.tools.ddk.check.runtime.core.test/src/com/avaloq/tools/ddk/check/runtime/core/registry/CheckExtensionPointTests.java b/com.avaloq.tools.ddk.check.runtime.core.test/src/com/avaloq/tools/ddk/check/runtime/core/registry/CheckExtensionPointTests.java index 7f168cca8..5fbe2b8f2 100644 --- a/com.avaloq.tools.ddk.check.runtime.core.test/src/com/avaloq/tools/ddk/check/runtime/core/registry/CheckExtensionPointTests.java +++ b/com.avaloq.tools.ddk.check.runtime.core.test/src/com/avaloq/tools/ddk/check/runtime/core/registry/CheckExtensionPointTests.java @@ -107,7 +107,7 @@ void testDummyClientRegistered() { * point registry. */ @org.junit.jupiter.api.Test - public void testInvalidClientNotRegistered() { + void testInvalidClientNotRegistered() { assertNull("Non-existing client not registered to the check extension point", findCheckExtensionPoint(findExtensionPoints()).getExtension("a.b.c")); } @@ -115,7 +115,7 @@ public void testInvalidClientNotRegistered() { * Tests that the check extension point has an attribute {@value #TARGET_CLASS_ATTRIBUTE}. */ @org.junit.jupiter.api.Test - public void testTargetClassAttributeFound() { + void testTargetClassAttributeFound() { IExtensionPoint point = findCheckExtensionPoint(findExtensionPoints()); assertNotNull("Found a configuration element with attribute \"targetClass\"", findConfigurationElement(point.getConfigurationElements(), TARGET_CLASS_ATTRIBUTE)); } @@ -124,7 +124,7 @@ public void testTargetClassAttributeFound() { * Tests that the check extension point has an attribute {@value #LANGUAGE_ATTRIBUTE}. */ @org.junit.jupiter.api.Test - public void testLanguageAttributeFound() { + void testLanguageAttributeFound() { IExtensionPoint point = findCheckExtensionPoint(findExtensionPoints()); assertNotNull("Found a configuration element with attribute \"language\"", findConfigurationElement(point.getConfigurationElements(), LANGUAGE_ATTRIBUTE)); } diff --git a/com.avaloq.tools.ddk.check.runtime.core.test/src/com/avaloq/tools/ddk/check/runtime/core/validation/CheckValidatorTest.java b/com.avaloq.tools.ddk.check.runtime.core.test/src/com/avaloq/tools/ddk/check/runtime/core/validation/CheckValidatorTest.java index 3ddb4725b..f932d4a97 100644 --- a/com.avaloq.tools.ddk.check.runtime.core.test/src/com/avaloq/tools/ddk/check/runtime/core/validation/CheckValidatorTest.java +++ b/com.avaloq.tools.ddk.check.runtime.core.test/src/com/avaloq/tools/ddk/check/runtime/core/validation/CheckValidatorTest.java @@ -45,7 +45,7 @@ protected String getHostLanguage() { * @see {@link com.avaloq.tools.ddk.check.extensionpoint.test.validation.DummyValidator} */ @org.junit.jupiter.api.Test - public void testAtLeastOneValidatorFound() { + void testAtLeastOneValidatorFound() { ICheckValidatorImpl dummyValidator = Iterables.getOnlyElement(getValidators(Maps.newHashMap(), null)); assertEquals("Dummy validator found", "DummyValidator", dummyValidator.getClass().getSimpleName()); } diff --git a/com.avaloq.tools.ddk.check.runtime.core.test/src/com/avaloq/tools/ddk/check/runtime/label/CheckRuleLabelProviderTest.java b/com.avaloq.tools.ddk.check.runtime.core.test/src/com/avaloq/tools/ddk/check/runtime/label/CheckRuleLabelProviderTest.java index 42e735bf1..145b36412 100644 --- a/com.avaloq.tools.ddk.check.runtime.core.test/src/com/avaloq/tools/ddk/check/runtime/label/CheckRuleLabelProviderTest.java +++ b/com.avaloq.tools.ddk.check.runtime.core.test/src/com/avaloq/tools/ddk/check/runtime/label/CheckRuleLabelProviderTest.java @@ -136,7 +136,7 @@ void testBinding() { * Test successfully getting a check label. */ @org.junit.jupiter.api.Test - public void testSuccess() { + void testSuccess() { // ARRANGE mockValidatorsWithChecks(); @@ -165,7 +165,7 @@ public void testWhenIssueCodeNotPresent() { * Test trying to get the check label for a null issue code. */ @org.junit.jupiter.api.Test - public void testWithNullID() { + void testWithNullID() { // ARRANGE mockValidatorsWithChecks(); @@ -195,7 +195,7 @@ void testWithNoValidators() { * Test trying to get a check label when there are no checks registered. */ @org.junit.jupiter.api.Test - public void testWithNoChecks() { + void testWithNoChecks() { // ARRANGE when(mockCheckValidatorRegistry.getValidators()).thenReturn(mockValidators); for (ICheckValidatorImpl mockValidator : mockValidators) { @@ -213,7 +213,7 @@ public void testWithNoChecks() { * Test trying to get the check label for an issue code which is not a check issue code. */ @org.junit.jupiter.api.Test - public void testWhenIssueCodeIsNotACheckIssueCode() { + void testWhenIssueCodeIsNotACheckIssueCode() { // ARRANGE final String notACheckIssueCode = "package.name.SomeOtherClass.issue.code"; @@ -233,7 +233,7 @@ public void testWhenIssueCodeIsNotACheckIssueCode() { * Test that check labels are cached. */ @org.junit.jupiter.api.Test - public void testCaching() { + void testCaching() { // ARRANGE mockValidatorsWithChecks(); @@ -267,7 +267,7 @@ public void publicInvalidateCache() { * Test that the cache can be invalidated by subclasses. */ @org.junit.jupiter.api.Test - public void testInvalidatingCache() { + void testInvalidatingCache() { // ARRANGE final CheckRuleLabelProviderWithInvalidateCacheExposed checkRuleLabelProviderWithInvalidateCacheExposed = injector.getInstance(CheckRuleLabelProviderWithInvalidateCacheExposed.class); @@ -291,7 +291,7 @@ public void testInvalidatingCache() { * Test that the class is bound as a singleton. */ @org.junit.jupiter.api.Test - public void testClassIsSingleton() { + void testClassIsSingleton() { // ACT final ICheckRuleLabelProvider otherCheckRuleLabelProvider = injector.getInstance(CheckRuleLabelProvider.class); diff --git a/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/CheckProjectWizardTest.java b/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/CheckProjectWizardTest.java index 7c9a2bd19..78af7e116 100644 --- a/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/CheckProjectWizardTest.java +++ b/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/CheckProjectWizardTest.java @@ -67,7 +67,7 @@ void testCheckProjectWizardIsAvailable() { * Test if the buttons 'next', 'back' and 'finish' are correctly enabled/disabled. */ @org.junit.jupiter.api.Test - public void testProjectNameInvalid() { + void testProjectNameInvalid() { CheckWizardTestUtil.projectName(wizard, "", CheckWizardTestUtil.NEXT_DISABLED); CheckWizardTestUtil.projectName(wizard, ".project.name", CheckWizardTestUtil.NEXT_DISABLED); CheckWizardTestUtil.projectName(wizard, "Project.name", CheckWizardTestUtil.NEXT_DISABLED); diff --git a/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/builder/CheckMarkerHelpExtensionTest.java b/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/builder/CheckMarkerHelpExtensionTest.java index 31a315fdd..e7b052ccb 100644 --- a/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/builder/CheckMarkerHelpExtensionTest.java +++ b/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/builder/CheckMarkerHelpExtensionTest.java @@ -79,7 +79,7 @@ public class CheckMarkerHelpExtensionTest { * the exception */ @org.junit.jupiter.api.Test - public void testCreateExtension() throws Exception { + void testCreateExtension() throws Exception { IPluginExtension extension = createMarkerHelpExtension(parser.parse(CATALOG_WITH_FIRST_CHECK_LIVE)); // Test if the extension has been created. @@ -99,7 +99,7 @@ public void testCreateExtension() throws Exception { * the exception */ @org.junit.jupiter.api.Test - public void testAddElement() throws Exception { + void testAddElement() throws Exception { final CheckCatalog catalogWithOneCheck = parser.parse(CATALOG_WITH_FIRST_CHECK_LIVE); IPluginExtension extension = createMarkerHelpExtension(catalogWithOneCheck); @@ -124,7 +124,7 @@ public void testAddElement() throws Exception { * the exception */ @org.junit.jupiter.api.Test - public void testRemoveElement() throws Exception { + void testRemoveElement() throws Exception { final CheckCatalog catalogWithTwoChecks = parser.parse(CATALOG_WITH_TWO_CHECKS); IPluginExtension extension = createMarkerHelpExtension(catalogWithTwoChecks); @@ -144,7 +144,7 @@ public void testRemoveElement() throws Exception { * the exception */ @org.junit.jupiter.api.Test - public void testMarkerTypeUpdate() throws Exception { + void testMarkerTypeUpdate() throws Exception { IPluginExtension extension = createMarkerHelpExtension(parser.parse(CATALOG_WITH_FIRST_CHECK_LIVE)); assertEquals("Before update: Markertype is fast.", MARKERTYPE_FAST, ((IPluginElement) extension.getChildren()[0]).getAttribute(CheckMarkerHelpExtensionHelper.MARKERTYPE_ATTRIBUTE_TAG).getValue()); @@ -165,7 +165,7 @@ public void testMarkerTypeUpdate() throws Exception { * the exception */ @org.junit.jupiter.api.Test - public void testCheckHasTwoIssueCodes() throws Exception { + void testCheckHasTwoIssueCodes() throws Exception { IPluginExtension extension = createMarkerHelpExtension(parser.parse(CATALOG_WITH_FIRST_CHECK_LIVE)); CheckCatalog twoIssueCodes = parser.parse(CATALOG_CHECK_HAS_TWO_ISSUECODES); diff --git a/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/builder/CheckTocExtensionTest.java b/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/builder/CheckTocExtensionTest.java index 7f6185ddd..992ed23da 100644 --- a/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/builder/CheckTocExtensionTest.java +++ b/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/builder/CheckTocExtensionTest.java @@ -74,7 +74,7 @@ public void setUp() throws Exception { * the core exception */ @org.junit.jupiter.api.Test - public void testCreateExtension() throws CoreException { + void testCreateExtension() throws CoreException { IPluginExtension extension = tocUtil.addExtensionToPluginBase(pluginModel, catalog, ExtensionType.CONTEXTS, null); assertEquals("Toc extension has been created", CheckTocExtensionHelper.TOC_EXTENSION_POINT_ID, extension.getPoint()); assertEquals("Toc extension name is correct", tocUtil.getExtensionPointName(catalog), extension.getName()); @@ -89,7 +89,7 @@ public void testCreateExtension() throws CoreException { * the core exception */ @org.junit.jupiter.api.Test - public void testIsExtensionUpdateRequiredTrue() throws CoreException { + void testIsExtensionUpdateRequiredTrue() throws CoreException { IPluginExtension extension = createErroneousTocExtension(); Iterable elements = Iterables.filter(Lists.newArrayList(extension.getChildren()), IPluginElement.class); diff --git a/com.avaloq.tools.ddk.checkcfg.core.test/src/com/avaloq/tools/ddk/checkcfg/validation/CheckCfgValidationTest.java b/com.avaloq.tools.ddk.checkcfg.core.test/src/com/avaloq/tools/ddk/checkcfg/validation/CheckCfgValidationTest.java index 24db7a7e3..a8aee8d57 100644 --- a/com.avaloq.tools.ddk.checkcfg.core.test/src/com/avaloq/tools/ddk/checkcfg/validation/CheckCfgValidationTest.java +++ b/com.avaloq.tools.ddk.checkcfg.core.test/src/com/avaloq/tools/ddk/checkcfg/validation/CheckCfgValidationTest.java @@ -52,7 +52,7 @@ public class CheckCfgValidationTest extends TestCase { * if a problem occurred parsing the test model */ @org.junit.jupiter.api.Test - public void testDisabledCheckIsNotConfigured() throws Exception { // NOPMD + void testDisabledCheckIsNotConfigured() throws Exception { // NOPMD CheckConfiguration model = parser.parse(modelUtil.basicModelWithDisabledTest() + " (val = 0)"); helper.assertWarning(model, CheckcfgPackage.Literals.CONFIGURED_CHECK, IssueCodes.DISABLED_CHECK_NOT_CONFIGURED); } diff --git a/com.avaloq.tools.ddk.test.ui.test/src/com/avaloq/tools/ddk/test/ui/test/logging/ErrorLogListenerTest.java b/com.avaloq.tools.ddk.test.ui.test/src/com/avaloq/tools/ddk/test/ui/test/logging/ErrorLogListenerTest.java index 5f6aa007d..2272111b4 100644 --- a/com.avaloq.tools.ddk.test.ui.test/src/com/avaloq/tools/ddk/test/ui/test/logging/ErrorLogListenerTest.java +++ b/com.avaloq.tools.ddk.test.ui.test/src/com/avaloq/tools/ddk/test/ui/test/logging/ErrorLogListenerTest.java @@ -54,7 +54,7 @@ public void tearDown() { */ @SuppressWarnings("unlikely-arg-type") @org.junit.jupiter.api.Test - public void testIgnoringExceptionLocations() throws InterruptedException { + void testIgnoringExceptionLocations() throws InterruptedException { assertFalse("NullPointerException must not have been logged.", errorLogListener.isExceptionLogged(NullPointerException.class)); errorLogListener.ignoreException(NullPointerException.class, "com.avaloq.tools.ddk.test.core.util.ErrorLogListenerTest"); diff --git a/com.avaloq.tools.ddk.test.ui.test/src/com/avaloq/tools/ddk/test/ui/test/swtbot/SwtBotRadioTest.java b/com.avaloq.tools.ddk.test.ui.test/src/com/avaloq/tools/ddk/test/ui/test/swtbot/SwtBotRadioTest.java index 83b045c7a..b264161a3 100644 --- a/com.avaloq.tools.ddk.test.ui.test/src/com/avaloq/tools/ddk/test/ui/test/swtbot/SwtBotRadioTest.java +++ b/com.avaloq.tools.ddk.test.ui.test/src/com/avaloq/tools/ddk/test/ui/test/swtbot/SwtBotRadioTest.java @@ -58,7 +58,7 @@ public String getText() { * Test if the method {@link com.avaloq.tools.ddk.test.ui.swtbot.SwtBotRadio#click()} works correctly. */ @org.junit.jupiter.api.Test - public void testSwtRadioButtonClick() { + void testSwtRadioButtonClick() { SwtWorkbenchBot bot = new SwtWorkbenchBot(); bot.resetWorkbench(); testRadioButtonClick(bot); diff --git a/com.avaloq.tools.ddk.typesystem.test/src/com/avaloq/tools/ddk/typesystem/AbstractTypeProviderTest.java b/com.avaloq.tools.ddk.typesystem.test/src/com/avaloq/tools/ddk/typesystem/AbstractTypeProviderTest.java index 357fa1c53..3c658d3c4 100644 --- a/com.avaloq.tools.ddk.typesystem.test/src/com/avaloq/tools/ddk/typesystem/AbstractTypeProviderTest.java +++ b/com.avaloq.tools.ddk.typesystem.test/src/com/avaloq/tools/ddk/typesystem/AbstractTypeProviderTest.java @@ -126,7 +126,7 @@ void testTypeProviderCyclicDefault() { } @org.junit.jupiter.api.Test - public void testTypeProviderCyclicOverride() { + void testTypeProviderCyclicOverride() { ITypeProvider provider = new CyclicOverrideTypeProvider(); assertEquals("cyclic override type for expression1 not type1", type1, provider.getType(expression1)); assertEquals("cyclic override type for expression2 not type1", type1, provider.getType(expression2)); @@ -137,7 +137,7 @@ public void testTypeProviderCyclicOverride() { } @org.junit.jupiter.api.Test - public void testTypeProviderCyclicOverrideMixed() { + void testTypeProviderCyclicOverrideMixed() { ITypeProvider provider = new CyclicOverrideMixedTypeProvider(); assertEquals("cyclic mixed type for expression1 not type1", type1, provider.getType(expression1)); assertEquals("cyclic mixed type for expression2 not type1", type1, provider.getType(expression2)); diff --git a/com.avaloq.tools.ddk.typesystem.test/src/com/avaloq/tools/ddk/typesystem/BuiltInTypeModelAccessTest.java b/com.avaloq.tools.ddk.typesystem.test/src/com/avaloq/tools/ddk/typesystem/BuiltInTypeModelAccessTest.java index 123d56208..508d1468b 100644 --- a/com.avaloq.tools.ddk.typesystem.test/src/com/avaloq/tools/ddk/typesystem/BuiltInTypeModelAccessTest.java +++ b/com.avaloq.tools.ddk.typesystem.test/src/com/avaloq/tools/ddk/typesystem/BuiltInTypeModelAccessTest.java @@ -31,7 +31,7 @@ public class BuiltInTypeModelAccessTest { @org.junit.jupiter.api.Test - public void testLoadModel() { + void testLoadModel() { BuiltInTypeModelAccess typeModelInstance = BuiltInTypeModelAccess.getInstance(); BuiltInTypeModel model = typeModelInstance.getModel(); assertNotNull("Model was created", model); @@ -50,7 +50,7 @@ private void assertPresence(final String name) { } @org.junit.jupiter.api.Test - public void testHasInternalTypes() { + void testHasInternalTypes() { assertPresence(BuiltInTypeModelAccess.ANY_TYPE_NAME); assertPresence(BuiltInTypeModelAccess.ERROR_TYPE_NAME); assertPresence(BuiltInTypeModelAccess.UNDETERMINED_TYPE_NAME); @@ -65,7 +65,7 @@ void testInvalidInternalTypeNames() { } @org.junit.jupiter.api.Test - public void testUniqueInternalTypes() { + void testUniqueInternalTypes() { assertUnique(BuiltInTypeModelAccess.ANY_TYPE_NAME); assertUnique(BuiltInTypeModelAccess.ERROR_TYPE_NAME); assertUnique(BuiltInTypeModelAccess.UNDETERMINED_TYPE_NAME); diff --git a/com.avaloq.tools.ddk.typesystem.test/src/com/avaloq/tools/ddk/typesystem/ParameterListMatcherTest.java b/com.avaloq.tools.ddk.typesystem.test/src/com/avaloq/tools/ddk/typesystem/ParameterListMatcherTest.java index 4ff14f953..b0d92c735 100644 --- a/com.avaloq.tools.ddk.typesystem.test/src/com/avaloq/tools/ddk/typesystem/ParameterListMatcherTest.java +++ b/com.avaloq.tools.ddk.typesystem.test/src/com/avaloq/tools/ddk/typesystem/ParameterListMatcherTest.java @@ -228,7 +228,7 @@ void testOneUnnamedAgainstOne() { } @org.junit.jupiter.api.Test - public void testOneNamedAgainstOne() { + void testOneNamedAgainstOne() { List formals = new ArrayList(); formals.add(new NamedFormalParameter(NAME_1, intType)); List actuals = new ArrayList(); @@ -240,7 +240,7 @@ public void testOneNamedAgainstOne() { } @org.junit.jupiter.api.Test - public void testOneNamedAgainstOneCaseSensitive() { + void testOneNamedAgainstOneCaseSensitive() { List formals = new ArrayList(); formals.add(new NamedFormalParameter(NAME_1.toUpperCase(Locale.getDefault()), intType)); List actuals = new ArrayList(); @@ -261,7 +261,7 @@ public void testOneNamedAgainstOneCaseSensitive() { } @org.junit.jupiter.api.Test - public void testOneUnnamedAgainstNone() { + void testOneUnnamedAgainstNone() { List formals = new ArrayList(); List actuals = new ArrayList(); actuals.add(new ActualParameter(intType)); @@ -311,7 +311,7 @@ void testNoneAgainstTwoMandatory() { } @org.junit.jupiter.api.Test - public void testNoneAgainstTwoMixed() { + void testNoneAgainstTwoMixed() { // one mandatory and one not mandatory List formals = new ArrayList(); NamedFormalParameter mandatoryParam = new NamedFormalParameter(NAME_1, intType); @@ -563,7 +563,7 @@ void testMissingMandatoryAgainstPositional() { } @org.junit.jupiter.api.Test - public void testInvalidActualNull() { + void testInvalidActualNull() { List formals = new ArrayList(); formals.add(new NamedFormalParameter(NAME_1, intType)); formals.add(new NamedFormalParameter(NAME_2, textType)); @@ -628,7 +628,7 @@ private void check2WithNullFormal1(final List formals, fin } @org.junit.jupiter.api.Test - public void testInvalidFormalNull() { + void testInvalidFormalNull() { List formals = new ArrayList(); formals.add(new NamedFormalParameter(NAME_1, intType)); formals.add(null); @@ -682,7 +682,7 @@ void testInvalidActualNullNameInvalidFormalNullName() { } @org.junit.jupiter.api.Test - public void testDuplicateFormalName() { + void testDuplicateFormalName() { List formals = new ArrayList(); formals.add(new NamedFormalParameter(NAME_1, intType)); formals.add(new NamedFormalParameter(NAME_1, intType, IS_OPTIONAL, !IS_MULTI)); @@ -717,7 +717,7 @@ void testDuplicateNamedActual() { } @org.junit.jupiter.api.Test - public void testPositionalAfterNamed1() { + void testPositionalAfterNamed1() { List formals = new ArrayList(); formals.add(new NamedFormalParameter(NAME_1, intType)); formals.add(new NamedFormalParameter(NAME_2, intType)); @@ -735,7 +735,7 @@ public void testPositionalAfterNamed1() { } @org.junit.jupiter.api.Test - public void testPositionalAfterNamed2() { + void testPositionalAfterNamed2() { List formals = new ArrayList(); formals.add(new NamedFormalParameter(NAME_1, intType)); formals.add(new NamedFormalParameter(NAME_2, textType)); @@ -759,7 +759,7 @@ public void testPositionalAfterNamed2() { } @org.junit.jupiter.api.Test - public void testNamedMatchesPositional() { + void testNamedMatchesPositional() { List formals = new ArrayList(); formals.add(new NamedFormalParameter(NAME_1, intType)); formals.add(new NamedFormalParameter(NAME_2, intType)); @@ -789,7 +789,7 @@ void testNamedFormalAfterUnnamed1() { } @org.junit.jupiter.api.Test - public void testNamedFormalAfterUnnamed2() { + void testNamedFormalAfterUnnamed2() { // these are allowed, match named by name. List formals = new ArrayList(); formals.add(new FormalParameter(intType)); @@ -801,7 +801,7 @@ public void testNamedFormalAfterUnnamed2() { } @org.junit.jupiter.api.Test - public void testNamedFormalAfterUnnamed3() { + void testNamedFormalAfterUnnamed3() { // these are allowed, match named by name, unnamed and named optional List formals = new ArrayList(); formals.add(new FormalParameter(intType, !IS_MANDATORY, !IS_MULTI)); @@ -908,7 +908,7 @@ void testForceMatchByPosition1() { } @org.junit.jupiter.api.Test - public void testForceMatchByPosition2() { + void testForceMatchByPosition2() { List formals = new ArrayList(); formals.add(new NamedFormalParameter(NAME_1, intType)); formals.add(new NamedFormalParameter(NAME_2, intType)); @@ -926,7 +926,7 @@ public void testForceMatchByPosition2() { } @org.junit.jupiter.api.Test - public void testForceMatchByPosition3() { + void testForceMatchByPosition3() { List formals = new ArrayList(); formals.add(new FormalParameter(intType)); formals.add(new FormalParameter(intType)); diff --git a/com.avaloq.tools.ddk.xtext.export.test/src/com/avaloq/tools/ddk/xtext/export/validation/ExportValidationOkTest.java b/com.avaloq.tools.ddk.xtext.export.test/src/com/avaloq/tools/ddk/xtext/export/validation/ExportValidationOkTest.java index 0fbb17475..e6b06b6f3 100644 --- a/com.avaloq.tools.ddk.xtext.export.test/src/com/avaloq/tools/ddk/xtext/export/validation/ExportValidationOkTest.java +++ b/com.avaloq.tools.ddk.xtext.export.test/src/com/avaloq/tools/ddk/xtext/export/validation/ExportValidationOkTest.java @@ -26,7 +26,7 @@ protected ExportTestUtil getXtextTestUtil() { } @org.junit.jupiter.api.Test - public final void testCheckAll() { + final void testCheckAll() { assertNoDiagnostics(); } diff --git a/com.avaloq.tools.ddk.xtext.export.test/src/com/avaloq/tools/ddk/xtext/export/validation/ExportValidationTest.java b/com.avaloq.tools.ddk.xtext.export.test/src/com/avaloq/tools/ddk/xtext/export/validation/ExportValidationTest.java index a43f6c85d..8a61f39e9 100644 --- a/com.avaloq.tools.ddk.xtext.export.test/src/com/avaloq/tools/ddk/xtext/export/validation/ExportValidationTest.java +++ b/com.avaloq.tools.ddk.xtext.export.test/src/com/avaloq/tools/ddk/xtext/export/validation/ExportValidationTest.java @@ -26,12 +26,12 @@ protected ExportTestUtil getXtextTestUtil() { } @org.junit.jupiter.api.Test - public final void testCheckExtensions() { + final void testCheckExtensions() { // TODO cannot test as unable to load resource in test environment assertDiagnosticMessage("Extension 'XYZ' not found"); } @org.junit.jupiter.api.Test - public final void testCheckInterfaceAndExportUniqueness() { + final void testCheckInterfaceAndExportUniqueness() { assertDiagnosticMessage("declaration duplicate found: ecore::EClass"); } @@ -41,7 +41,7 @@ final void testCheckExportFieldUniqueness() { } @org.junit.jupiter.api.Test - public final void testCheckUserDataNameAsFeature() { + final void testCheckUserDataNameAsFeature() { assertDiagnosticMessage("instanceClassName is already defined as field"); // TODO assertDiagnosticMessage("xxx has the same name as an existing feature"); } diff --git a/com.avaloq.tools.ddk.xtext.format.test/src/com/avaloq/tools/ddk/xtext/format/builder/FormatBuilderParticipantTest.java b/com.avaloq.tools.ddk.xtext.format.test/src/com/avaloq/tools/ddk/xtext/format/builder/FormatBuilderParticipantTest.java index 21703a283..7109bc44d 100644 --- a/com.avaloq.tools.ddk.xtext.format.test/src/com/avaloq/tools/ddk/xtext/format/builder/FormatBuilderParticipantTest.java +++ b/com.avaloq.tools.ddk.xtext.format.test/src/com/avaloq/tools/ddk/xtext/format/builder/FormatBuilderParticipantTest.java @@ -67,7 +67,7 @@ protected void beforeAllTests() { * Tests whether a {@link Delta} resource has a correct extension to be used by org.eclipse.xtext.builder.BuilderParticipant. */ @org.junit.jupiter.api.Test - public void hasCorrectExtensionTest() { + void hasCorrectExtensionTest() { IResourceServiceProvider resourceServiceProvider = mock(IResourceServiceProvider.class); when(resourceServiceProvider.canHandle(argThat(new IsUri()))).thenReturn(true, false); assertTrue("Check if the delta resource has correct extension", participant.hasCorrectExtension(delta, resourceServiceProvider)); diff --git a/com.avaloq.tools.ddk.xtext.format.test/src/com/avaloq/tools/ddk/xtext/format/scoping/FormatScopingTest.java b/com.avaloq.tools.ddk.xtext.format.test/src/com/avaloq/tools/ddk/xtext/format/scoping/FormatScopingTest.java index fb5c88cef..150889ad9 100644 --- a/com.avaloq.tools.ddk.xtext.format.test/src/com/avaloq/tools/ddk/xtext/format/scoping/FormatScopingTest.java +++ b/com.avaloq.tools.ddk.xtext.format.test/src/com/avaloq/tools/ddk/xtext/format/scoping/FormatScopingTest.java @@ -102,13 +102,13 @@ protected void beforeEachTest() { * Tests that all grammars' rules are scoped. */ @org.junit.jupiter.api.Test - public void allGrammarsScoped() { + void allGrammarsScoped() { Set expectedURIs = Sets.newHashSet(EcoreUtil.getURI(grammarC.getRules().get(0)), EcoreUtil.getURI(grammarB.getRules().get(0)), EcoreUtil.getURI(grammarA.getRules().get(0)), EcoreUtil.getURI(grammarA.getRules().get(1))); assertScope(formatC, FormatPackage.Literals.GRAMMAR_RULE__TARGET_RULE, expectedURIs); } @org.junit.jupiter.api.Test - public void keywordScoped() { + void keywordScoped() { AbstractRule parserRuleA = grammarA.getRules().get(0); Set keywordURIs = Sets.newHashSet(Iterables.transform(GrammarUtil.containedKeywords(parserRuleA), TO_URI)); assertFalse("No keywords found", keywordURIs.isEmpty()); @@ -153,7 +153,7 @@ void ruleSelfScoped() { } @org.junit.jupiter.api.Test - public void groupScoped() { + void groupScoped() { ParserRule parserRuleA = (ParserRule) grammarA.getRules().get(0); CompoundElement group1 = findSemanticElementByString("(", CompoundElement.class, parserRuleA); // ('-' b=STRING | ('-'c=ID ('-'d=INT | '-'e=STRING)))? diff --git a/com.avaloq.tools.ddk.xtext.format.test/src/com/avaloq/tools/ddk/xtext/format/validation/FormatValidationTest.java b/com.avaloq.tools.ddk.xtext.format.test/src/com/avaloq/tools/ddk/xtext/format/validation/FormatValidationTest.java index 30ad6a149..d74cf0e87 100644 --- a/com.avaloq.tools.ddk.xtext.format.test/src/com/avaloq/tools/ddk/xtext/format/validation/FormatValidationTest.java +++ b/com.avaloq.tools.ddk.xtext.format.test/src/com/avaloq/tools/ddk/xtext/format/validation/FormatValidationTest.java @@ -103,7 +103,7 @@ private FormatConfiguration createModel(final String formatName, final String ex * Tests that non-'rule' directives are invalid in a terminal rule context. */ @org.junit.jupiter.api.Test - public void testNegativeACF1000() { + void testNegativeACF1000() { setFormattingRules(new String[0], "INT_EXP { \"e\" : no_space around;}"); assertDiagnostic(parentFormat, FormatValidator.ILLEGAL_DIRECTIVE_CODE); } @@ -112,7 +112,7 @@ public void testNegativeACF1000() { * Tests that 'rule' directives are valid in a terminal rule context. */ @org.junit.jupiter.api.Test - public void testPositiveACF1000() { + void testPositiveACF1000() { setFormattingRules(new String[0], "INT_EXP { rule : no_space around;}"); assertNoDiagnostic(parentFormat, FormatValidator.ILLEGAL_DIRECTIVE_CODE); } @@ -121,7 +121,7 @@ public void testPositiveACF1000() { * Verify that IllegalOverride validation issues error for WildcardRules. */ @org.junit.jupiter.api.Test - public void illegalWildcardRuleOverride() { + void illegalWildcardRuleOverride() { setFormattingRules(new String[] {OVERRIDE_WILDCARD_RULE}); assertDiagnostic(extendingFormat, FormatValidator.OVERRIDE_ILLEGAL_CODE); } @@ -139,7 +139,7 @@ void illegalGrammarRuleOverride() { * Verify that OverrideMissing validation issues error for WildcardRules. */ @org.junit.jupiter.api.Test - public void missingWildcardRuleOverride() { + void missingWildcardRuleOverride() { setFormattingRules(new String[] {WILDCARD_RULE}, WILDCARD_RULE); assertDiagnostic(extendingFormat, FormatValidator.OVERRIDE_MISSING_CODE); @@ -158,7 +158,7 @@ void missingGrammarRuleOverride() { * Verify that OverrideMissing nor IllegalOverride validations issue no error. */ @org.junit.jupiter.api.Test - public void wildcardRuleOverrideOK() { + void wildcardRuleOverrideOK() { setFormattingRules(new String[] {OVERRIDE_WILDCARD_RULE}, WILDCARD_RULE); assertNoDiagnostic(extendingFormat, FormatValidator.OVERRIDE_MISSING_CODE); assertNoDiagnostic(extendingFormat, FormatValidator.OVERRIDE_ILLEGAL_CODE); @@ -168,7 +168,7 @@ public void wildcardRuleOverrideOK() { * Verify that OverrideMissing nor IllegalOverride validations issue no error. */ @org.junit.jupiter.api.Test - public void grammarRuleOverrideOK() { + void grammarRuleOverrideOK() { setFormattingRules(new String[] {OVERRIDE_INT_EXP_RULE}, INT_EXP_RULE); assertNoDiagnostic(extendingFormat, FormatValidator.OVERRIDE_MISSING_CODE); assertNoDiagnostic(extendingFormat, FormatValidator.OVERRIDE_ILLEGAL_CODE); @@ -178,7 +178,7 @@ public void grammarRuleOverrideOK() { * Verify that ExtendedGrammarCompatible validation issues error when grammars of the Format models are incompatible. */ @org.junit.jupiter.api.Test - public void extendedGrammarCompatible() { + void extendedGrammarCompatible() { try { getXtextTestUtil().getModel("MyDsl.xtext", "grammar com.avaloq.tools.ddk.xtext.format.validation.MyDsl\nimport \"http://www.eclipse.org/emf/2002/Ecore\" as ecore\nRule: 'rule';"); } catch (IOException e) { @@ -192,7 +192,7 @@ public void extendedGrammarCompatible() { * Verify that ExtendedGrammarCompatible validation issues no error. */ @org.junit.jupiter.api.Test - public void extendedGrammarCompatibleOK() { + void extendedGrammarCompatibleOK() { createModel(PARENT_MODEL_NAME, null); FormatConfiguration extendModel = createModel(EXTENDING_MODEL_NAME, PARENT_MODEL_NAME); assertNoDiagnostic(extendModel, FormatValidator.EXTENDED_GRAMMAR_INCOMPATIBLE_CODE); diff --git a/com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/expression/CodeGenerationXTest.java b/com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/expression/CodeGenerationXTest.java index f25d545ce..550198faa 100644 --- a/com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/expression/CodeGenerationXTest.java +++ b/com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/expression/CodeGenerationXTest.java @@ -72,19 +72,19 @@ void testliterals() throws Exception { } @org.junit.jupiter.api.Test - public void testListLiterals() throws Exception { + void testListLiterals() throws Exception { assertEquals("java.util.Collections. emptyList()", compile("{}")); // NOPMD assertEquals("java.util.Collections.singletonList(1)", compile("{1}")); // NOPMD assertEquals("com.google.common.collect.Lists.newArrayList(1, 2, 3)", compile("{1,2,3}")); // NOPMD } @org.junit.jupiter.api.Test - public void testIdentifiers() throws Exception { + void testIdentifiers() throws Exception { assertEquals("obj.getTrue()", compile("^true")); // NOPMD } @org.junit.jupiter.api.Test - public void testBracketing() throws Exception { + void testBracketing() throws Exception { // CHECKSTYLE:CONSTANTS-OFF assertEquals("(4 + 2) * 3", compile("(4 + 2) * 3")); // NOPMD assertEquals("(4 + 2) * 3 * 4", compile("(4 + 2) * 3 * 4")); // NOPMD @@ -115,7 +115,7 @@ void testBooleanLogic() throws Exception { } @org.junit.jupiter.api.Test - public void testArithmetics() throws Exception { + void testArithmetics() throws Exception { // CHECKSTYLE:CONSTANTS-OFF assertEquals("4 + 2", compile("4 + 2")); // NOPMD assertEquals("4 - 2", compile("4 - 2")); // NOPMD @@ -126,7 +126,7 @@ public void testArithmetics() throws Exception { } @org.junit.jupiter.api.Test - public void testPrefixExpressions() throws Exception { + void testPrefixExpressions() throws Exception { // CHECKSTYLE:CONSTANTS-OFF assertEquals("-(4 * 2)", compile("-(4 * 2)")); // NOPMD assertEquals("-(-42)", compile("-(-42)")); // NOPMD @@ -149,7 +149,7 @@ void testInfixExpressions() throws Exception { } @org.junit.jupiter.api.Test - public void testImplicitVariable() throws Exception { + void testImplicitVariable() throws Exception { assertEquals("obj", compile("this")); // NOPMD } @@ -159,13 +159,13 @@ void testCasting() throws Exception { } @org.junit.jupiter.api.Test - public void testTypes() throws Exception { + void testTypes() throws Exception { assertEquals("org.eclipse.emf.ecore.EObject", compile("ecore::EObject")); // NOPMD assertEquals("String", compile("java::lang::String")); // NOPMD } @org.junit.jupiter.api.Test - public void testIsInstance() throws Exception { + void testIsInstance() throws Exception { assertEquals("obj instanceof org.eclipse.emf.ecore.EObject", compile("ecore::EObject.isInstance(this)")); // NOPMD } @@ -178,7 +178,7 @@ void testEContainerNavigation() throws Exception { } @org.junit.jupiter.api.Test - public void testTypeSelect() throws Exception { + void testTypeSelect() throws Exception { assertEquals(// NOPMD "com.google.common.collect.Iterables.filter(obj.getFoos(), org.eclipse.emf.ecore.EObject.class)", compile("this.foos.typeSelect(ecore::EObject)")); assertEquals(// NOPMD diff --git a/com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/test/util/EClassComparatorTest.java b/com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/test/util/EClassComparatorTest.java index e9302cd4e..fef2c1a5a 100644 --- a/com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/test/util/EClassComparatorTest.java +++ b/com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/test/util/EClassComparatorTest.java @@ -38,7 +38,7 @@ public class EClassComparatorTest { private final Function mapping = Functions. identity(); @org.junit.jupiter.api.Test - public void testSorting() { + void testSorting() { List sorted = EClassComparator.sortedGroups(Lists.newArrayList(ECLASS, EDATA_TYPE, EPACKAGE, ECLASSIFIER), mapping); assertEquals(Lists.newArrayList(ECLASS, EDATA_TYPE, EPACKAGE, ECLASSIFIER), sorted); diff --git a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/formatting/AbstractFormattingTest.java b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/formatting/AbstractFormattingTest.java index 2c4e39bbc..748bc45c6 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/formatting/AbstractFormattingTest.java +++ b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/formatting/AbstractFormattingTest.java @@ -90,7 +90,7 @@ public void preservedParseTreeConstructor() { * Test preservation of formatting using NodeModelFormatter. */ @org.junit.jupiter.api.Test - public void preservedNodeModel() { + void preservedNodeModel() { assertPreservedNodeModel(); } diff --git a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/labeling/AbstractLabelingTest.java b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/labeling/AbstractLabelingTest.java index bb563859b..2d472b3cb 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/labeling/AbstractLabelingTest.java +++ b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/labeling/AbstractLabelingTest.java @@ -50,7 +50,7 @@ protected List> getExpectedElementLabels() { * Tests that the expected elements and their labels are exactly identical to all elements of the default test resource. */ @org.junit.jupiter.api.Test - public void testLabels() { + void testLabels() { if (getExpectedElementLabels() == null) { return; // TODO: remove this check once all tests have been refactored } diff --git a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/formatter/FormatterTest.java b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/formatter/FormatterTest.java index 2ca1770ef..158fd38a6 100644 --- a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/formatter/FormatterTest.java +++ b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/formatter/FormatterTest.java @@ -48,7 +48,7 @@ protected String getTestSourceFileName() { * @throws IOException */ @org.junit.jupiter.api.Test - public void linewrap() throws IOException { + void linewrap() throws IOException { String model = "test linewrap float val; int x; double y;"; String expected = "test linewrap\nfloat val;\nint x;\ndouble y;"; assertFormattedPTC(expected, model); @@ -63,7 +63,7 @@ public void linewrap() throws IOException { * @throws IOException */ @org.junit.jupiter.api.Test - public void keepComments() throws IOException { + void keepComments() throws IOException { // String model = "test linewrap float val; int x; double y;"; String model = "// begincomment \ntest linewrap// comment1\n" + "float val;//comment2\n" + "int x;" + "double y; //yoyoyo!\n// endcomment."; final String exp = "// begincomment \ntest linewrap// comment1\n" + "float val;//comment2\n" + "int x;\n" + "double y; //yoyoyo!\n// endcomment."; @@ -78,7 +78,7 @@ public void keepComments() throws IOException { * @throws IOException */ @org.junit.jupiter.api.Test - public void column() throws IOException { + void column() throws IOException { String model = "test column item int x;"; String expected = "test\n column\n\titem int x;"; assertFormattedPTC(expected, model); @@ -136,7 +136,7 @@ void rightPadding() throws IOException { * @throws IOException */ @org.junit.jupiter.api.Test - public void indentation() throws IOException { + void indentation() throws IOException { String model = "test indentation { float val; double y; indentation { int x; } }"; String expected = "test indentation {\n float val;\n double y;\n indentation {\n int x;\n }\n}"; assertFormattedPTC(expected, model); @@ -151,7 +151,7 @@ public void indentation() throws IOException { * @throws IOException */ @org.junit.jupiter.api.Test - public void association() throws IOException { + void association() throws IOException { String model = "test indentation { var = [0,1,2,3,4]; }"; String expected = "test indentation {\n var=[ 0, 1, 2, 3, 4 ];\n}"; assertFormattedPTC(expected, model); @@ -197,7 +197,7 @@ void indentationAndLineWrap() throws IOException { * @throws IOException */ @org.junit.jupiter.api.Test - public void between1() throws IOException { + void between1() throws IOException { String model = "test indentation { indentation { x x; }; }"; String expected = "test indentation {\n indentation {\n x x;\n };\n}"; assertFormattedPTC(expected, model); @@ -227,7 +227,7 @@ void between2() throws IOException { * @throws IOException */ @org.junit.jupiter.api.Test - public void linewrapDatatypeRule() throws IOException { + void linewrapDatatypeRule() throws IOException { String model = "test linewrap fqn ab; fqn xx.yy.zz;"; String expected = "test linewrap\nfqn\nab;\nfqn\nxx.yy.zz;"; assertFormattedPTC(expected, model); @@ -242,7 +242,7 @@ public void linewrapDatatypeRule() throws IOException { * @throws IOException */ @org.junit.jupiter.api.Test - public void linewrapDatatypeRulePartial1() throws IOException { + void linewrapDatatypeRulePartial1() throws IOException { String model = "test linewrap fqn ab . xx .yy .zz;"; String expected = "test linewrap fqn ab.xx.yy.zz;"; assertFormattedNM(expected, model, 22, 2); @@ -255,7 +255,7 @@ public void linewrapDatatypeRulePartial1() throws IOException { * @throws IOException */ @org.junit.jupiter.api.Test - public void linewrapDatatypeRulePartial2() throws IOException { + void linewrapDatatypeRulePartial2() throws IOException { String model = "test linewrap fqn ab . xx .yy .zz;fqn xxx;"; String expected = "test linewrap fqn\nab.xx.yy.zz;fqn xxx;"; assertFormattedNM(expected, model, 15, 10); @@ -268,7 +268,7 @@ public void linewrapDatatypeRulePartial2() throws IOException { * @throws IOException */ @org.junit.jupiter.api.Test - public void linewrapDatatypeRulePartial3() throws IOException { + void linewrapDatatypeRulePartial3() throws IOException { String model = "test linewrap fqn ab . xx .yy .zz;fqn xxx;"; String expected = "test linewrap fqn ab.xx.yy.zz;\nfqn xxx;"; assertFormattedNM(expected, model, 25, 12); @@ -321,7 +321,7 @@ void formatSegment3() throws IOException { * @throws IOException */ @org.junit.jupiter.api.Test - public void linewrapDatatypeRuleRef1() throws IOException { + void linewrapDatatypeRuleRef1() throws IOException { String model = "test linewrap fqn ab .cd .ef; fqnref ab. cd. ef;"; String expected = "test linewrap\nfqn\nab.cd.ef;\nfqnref\nab.cd.ef;"; // assertFormattedPTC(expected, model); @@ -351,7 +351,7 @@ void linewrapDatatypeRuleRef2() throws IOException { * @throws IOException */ @org.junit.jupiter.api.Test - public void linewrapDatatypeRuleComments() throws IOException { + void linewrapDatatypeRuleComments() throws IOException { String model = "test linewrap/* 1 */fqn/* 2 */ab.cd.ef/* 3 */;/* 4 */fqnref/* 5 */ab.cd.ef/* 6 */;/* 7 */"; // The expected model string differs from Xtext's - // Xtext does not expect a line wrap after the keyword "linewrap" @@ -418,7 +418,7 @@ public void suppressedLinewrap() throws IOException { * @throws IOException */ @org.junit.jupiter.api.Test - public void linewrapMin() throws IOException { + void linewrapMin() throws IOException { String model = "test wrapminmax foo bar;"; String expected = "test wrapminmax\n\nfoo bar;"; assertFormattedPTC(expected, model); @@ -448,7 +448,7 @@ void linewrapMax() throws IOException { * @throws IOException */ @org.junit.jupiter.api.Test - public void linewrapKeep() throws IOException { + void linewrapKeep() throws IOException { String model = "test wrapminmax\n\n\n\nfoo bar;"; assertFormattedPTC(model, model); assertFormattedNM(model, model, 0, model.length()); @@ -462,7 +462,7 @@ public void linewrapKeep() throws IOException { * @throws IOException */ @org.junit.jupiter.api.Test - public void linewrapDefault() { + void linewrapDefault() { FormatterTestLanguageFactory f = FormatterTestLanguageFactory.eINSTANCE; TestLinewrapMinMax m = f.createTestLinewrapMinMax(); Decl d = f.createDecl(); @@ -481,7 +481,7 @@ public void linewrapDefault() { * @throws IOException */ @org.junit.jupiter.api.Test - public void space() throws IOException { + void space() throws IOException { String model = "test linewrap space foo;"; String expected = "test linewrap\nspace foo;"; assertFormattedPTC(expected, model); diff --git a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/linking/AbstractFragmentProviderTest.java b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/linking/AbstractFragmentProviderTest.java index cdafd1ad9..42b03660d 100644 --- a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/linking/AbstractFragmentProviderTest.java +++ b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/linking/AbstractFragmentProviderTest.java @@ -64,7 +64,7 @@ void testUnescape() { } @org.junit.jupiter.api.Test - public void testUnescapeEscape() { + void testUnescapeEscape() { for (String text : SPECIAL_ESCAPE_CASES) { StringBuilder builder = new StringBuilder(); fragmentProvider.appendEscaped(text, builder); diff --git a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/linking/ShortFragmentProviderTest.java b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/linking/ShortFragmentProviderTest.java index 873c5d6c6..2ed55953c 100644 --- a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/linking/ShortFragmentProviderTest.java +++ b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/linking/ShortFragmentProviderTest.java @@ -107,7 +107,7 @@ public void testLongFragment() { } @org.junit.jupiter.api.Test - public void testLongFragment2() { + void testLongFragment2() { int reps = 10; EObject root = EcoreUtil.create(testClass); EObject parent = root; diff --git a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/naming/QualifiedNamePatternTest.java b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/naming/QualifiedNamePatternTest.java index 610904435..f90a25ee4 100644 --- a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/naming/QualifiedNamePatternTest.java +++ b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/naming/QualifiedNamePatternTest.java @@ -40,7 +40,7 @@ void testSimpleQualifiedNamePattern() { } @org.junit.jupiter.api.Test - public void testQualifiedPrefixNamePattern() { + void testQualifiedPrefixNamePattern() { QualifiedNamePattern pattern = QualifiedNamePattern.create("foo", "*"); assertEquals(QualifiedName.create("foo", ""), pattern.lowerInclusive()); assertEquals(QualifiedName.create("foo!"), pattern.upperExclusive()); @@ -54,7 +54,7 @@ public void testQualifiedPrefixNamePattern() { } @org.junit.jupiter.api.Test - public void testRecursiveWildcardPattern() { + void testRecursiveWildcardPattern() { QualifiedNamePattern pattern = QualifiedNamePattern.create("foo", "**"); assertEquals(QualifiedName.create("foo", ""), pattern.lowerInclusive()); assertEquals(QualifiedName.create("foo!"), pattern.upperExclusive()); @@ -64,7 +64,7 @@ public void testRecursiveWildcardPattern() { } @org.junit.jupiter.api.Test - public void testRecursiveWildcardPatternWithPrefix() { + void testRecursiveWildcardPatternWithPrefix() { QualifiedNamePattern pattern = QualifiedNamePattern.create("foo", "b**"); assertEquals(QualifiedName.create("foo", "b"), pattern.lowerInclusive()); assertEquals(QualifiedName.create("foo", "c"), pattern.upperExclusive()); @@ -89,14 +89,14 @@ public void testRecursiveWildcardPatternError3() { } @org.junit.jupiter.api.Test - public void testAllPattern() { + void testAllPattern() { QualifiedNamePattern pattern = QualifiedNamePattern.create("*"); assertEquals(QualifiedName.create(""), pattern.lowerInclusive()); assertEquals(QualifiedName.create("!"), pattern.upperExclusive()); } @org.junit.jupiter.api.Test - public void testPatternWithoutWildcard() { + void testPatternWithoutWildcard() { QualifiedNamePattern pattern = QualifiedNamePattern.create("foo"); assertEquals(QualifiedName.create("foo"), pattern.lowerInclusive()); assertEquals(QualifiedName.create("foo!"), pattern.upperExclusive()); diff --git a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/naming/QualifiedNameSegmentTreeLookupTest.java b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/naming/QualifiedNameSegmentTreeLookupTest.java index d40950e85..96ba0e2bd 100644 --- a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/naming/QualifiedNameSegmentTreeLookupTest.java +++ b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/naming/QualifiedNameSegmentTreeLookupTest.java @@ -35,7 +35,7 @@ void testEmpty() { } @org.junit.jupiter.api.Test - public void testExact() { + void testExact() { QualifiedName name = name("foo"); Collection values = Collections.singletonList(uri(name)); lookup.putAll(name, values); @@ -64,7 +64,7 @@ void testTopLevelPatternWithoutWildcard() { } @org.junit.jupiter.api.Test - public void testTopLevelPatternWithWildcard() { + void testTopLevelPatternWithWildcard() { URI value1 = put("foo"); URI value2 = put("foo2"); URI value3 = put("bar"); @@ -75,7 +75,7 @@ public void testTopLevelPatternWithWildcard() { } @org.junit.jupiter.api.Test - public void testNestedPatternMatchesWithoutWildcard() { + void testNestedPatternMatchesWithoutWildcard() { URI value1 = put("foo"); URI value2 = put("foo.bar"); URI value3 = put("foo2"); @@ -86,7 +86,7 @@ public void testNestedPatternMatchesWithoutWildcard() { } @org.junit.jupiter.api.Test - public void testNestedPatternMatchesWithWildcard() { + void testNestedPatternMatchesWithWildcard() { URI value1 = put("foo"); URI value2 = put("foo.bar"); URI value3 = put("foo.baz"); @@ -100,7 +100,7 @@ public void testNestedPatternMatchesWithWildcard() { } @org.junit.jupiter.api.Test - public void testNestedPatternMatchesWithRecursiveWildcard() { + void testNestedPatternMatchesWithRecursiveWildcard() { URI value1 = put("foo"); URI value2 = put("foo.bar"); URI value3 = put("foo.bar.baz"); @@ -113,7 +113,7 @@ public void testNestedPatternMatchesWithRecursiveWildcard() { } @org.junit.jupiter.api.Test - public void testUnmatchedNestedPattern() { + void testUnmatchedNestedPattern() { URI value1 = put("foo"); URI value2 = put("foo.bar"); URI value3 = put("foo.bar.baz"); @@ -132,7 +132,7 @@ public void testUnmatchedNestedPattern() { } @org.junit.jupiter.api.Test - public void testOutOfOrderInsertion() { + void testOutOfOrderInsertion() { QualifiedName name1 = name("foo.bar"); Collection value1 = Collections.singletonList(uri(name1)); lookup.putAll(name1, value1); diff --git a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/resource/AbstractSelectorFragmentProviderTest.java b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/resource/AbstractSelectorFragmentProviderTest.java index d80aafd98..6a0bbb4f1 100644 --- a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/resource/AbstractSelectorFragmentProviderTest.java +++ b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/resource/AbstractSelectorFragmentProviderTest.java @@ -51,7 +51,7 @@ protected void configure() { } @org.junit.jupiter.api.Test - public void testTopLevelObject() throws Exception { + void testTopLevelObject() throws Exception { Grammar grammar = (Grammar) getModel("grammar foo.Foo\n" + "generate foo 'http://www.foo.com/foo'\n" + "Foo: 'foo';"); assertFragmentMatchesAndResolves(grammar.eResource(), "/0", grammar); } @@ -63,13 +63,13 @@ void testMultiValuedContainment() throws Exception { } @org.junit.jupiter.api.Test - public void testSingleValuedContainment() throws Exception { + void testSingleValuedContainment() throws Exception { Grammar grammar = (Grammar) getModel("grammar foo.Foo\n" + "generate foo 'http://www.foo.com/foo'\n" + "Foo: 'foo'+;"); assertFragmentMatchesAndResolves(grammar.eResource(), "/0/5(0='Foo')#0/2(3='foo')", grammar.getRules().get(0).getAlternatives()); } @org.junit.jupiter.api.Test - public void testNullSelectorValue() throws Exception { + void testNullSelectorValue() throws Exception { Grammar grammar = (Grammar) getModel("grammar foo.Foo\n" + "generate foo 'http://www.foo.com/foo'\n" + "Foo: 'selectCardinality';"); assertFragmentMatchesAndResolves(grammar.eResource(), "/0/5(0='Foo')#0/2(0=null)", grammar.getRules().get(0).getAlternatives()); diff --git a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/resource/ResourceDescriptionDeltaTest.java b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/resource/ResourceDescriptionDeltaTest.java index 64d9a57cb..f1ddfe9a1 100644 --- a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/resource/ResourceDescriptionDeltaTest.java +++ b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/resource/ResourceDescriptionDeltaTest.java @@ -37,7 +37,7 @@ public class ResourceDescriptionDeltaTest { @org.junit.jupiter.api.Test - public void testGetAddedAndDeletedObjects() { + void testGetAddedAndDeletedObjects() { ResourceDescriptionDelta delta = new ResourceDescriptionDelta(createDescription("a"), createDescription("a"), null); assertDeltaEquals(0, 0, 0, delta); @@ -76,7 +76,7 @@ void testDeltaForNewResource() { } @org.junit.jupiter.api.Test - public void testDeltaForDeletedResource() { + void testDeltaForDeletedResource() { ResourceDescriptionDelta delta = new ResourceDescriptionDelta(createDescription("a"), null, null); assertDeltaEquals(0, 0, 1, delta); } diff --git a/com.avaloq.tools.ddk.xtext.ui.test/src/com/avaloq/tools/ddk/xtext/ui/quickfix/WorkbenchResolutionAdaptorTest.java b/com.avaloq.tools.ddk.xtext.ui.test/src/com/avaloq/tools/ddk/xtext/ui/quickfix/WorkbenchResolutionAdaptorTest.java index 42232e4fb..2f52c3c20 100644 --- a/com.avaloq.tools.ddk.xtext.ui.test/src/com/avaloq/tools/ddk/xtext/ui/quickfix/WorkbenchResolutionAdaptorTest.java +++ b/com.avaloq.tools.ddk.xtext.ui.test/src/com/avaloq/tools/ddk/xtext/ui/quickfix/WorkbenchResolutionAdaptorTest.java @@ -43,7 +43,7 @@ public void setUp() throws Exception { } @org.junit.jupiter.api.Test - public void testGetLabel() { + void testGetLabel() { IssueResolution mockIssueResolution = mock(IssueResolution.class); IMarker mockMarker = mock(IMarker.class); @@ -55,7 +55,7 @@ public void testGetLabel() { } @org.junit.jupiter.api.Test - public void testGetDescription() { + void testGetDescription() { IssueResolution mockIssueResolution = mock(IssueResolution.class); IMarker mockMarker = mock(IMarker.class); @@ -67,7 +67,7 @@ public void testGetDescription() { } @org.junit.jupiter.api.Test - public void testGetImage() { + void testGetImage() { IssueResolution mockIssueResolution = mock(IssueResolution.class); IMarker mockMarker = mock(IMarker.class); @@ -79,7 +79,7 @@ public void testGetImage() { } @org.junit.jupiter.api.Test - public void findOtherMarkers() { + void findOtherMarkers() { IssueResolution mockIssueResolution = mock(IssueResolution.class); IMarker mockResolutionMarker = mock(IMarker.class); when(mockResolutionMarker.getAttribute(Issue.CODE_KEY, null)).thenReturn(CODE1); diff --git a/com.avaloq.tools.ddk.xtext.ui.test/src/com/avaloq/tools/ddk/xtext/ui/templates/ResourceNameTemplateVariableResolverTest.java b/com.avaloq.tools.ddk.xtext.ui.test/src/com/avaloq/tools/ddk/xtext/ui/templates/ResourceNameTemplateVariableResolverTest.java index 3e0ed8f2a..ec3290ad5 100644 --- a/com.avaloq.tools.ddk.xtext.ui.test/src/com/avaloq/tools/ddk/xtext/ui/templates/ResourceNameTemplateVariableResolverTest.java +++ b/com.avaloq.tools.ddk.xtext.ui.test/src/com/avaloq/tools/ddk/xtext/ui/templates/ResourceNameTemplateVariableResolverTest.java @@ -88,12 +88,12 @@ void testResolveValuesWithFileWithExtension() throws TemplateException { } @org.junit.jupiter.api.Test - public void testResolveValuesWithExtraParams() throws TemplateException { + void testResolveValuesWithExtraParams() throws TemplateException { testResolveValues(new Object[] {FILE[0], "other", "random", "values"}, FILENAME, FILENAME); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ } @org.junit.jupiter.api.Test - public void testResolveValuesWithUnknownParam() throws TemplateException { + void testResolveValuesWithUnknownParam() throws TemplateException { testResolveValues(new Object[] {"This is not the parameter you are looking for"}, FILENAME); //$NON-NLS-1$ } diff --git a/com.avaloq.tools.ddk.xtext.ui.test/src/com/avaloq/tools/ddk/xtext/ui/templates/SimpleEnumTemplateVariableResolverTest.java b/com.avaloq.tools.ddk.xtext.ui.test/src/com/avaloq/tools/ddk/xtext/ui/templates/SimpleEnumTemplateVariableResolverTest.java index ce06f0d47..f1f359649 100644 --- a/com.avaloq.tools.ddk.xtext.ui.test/src/com/avaloq/tools/ddk/xtext/ui/templates/SimpleEnumTemplateVariableResolverTest.java +++ b/com.avaloq.tools.ddk.xtext.ui.test/src/com/avaloq/tools/ddk/xtext/ui/templates/SimpleEnumTemplateVariableResolverTest.java @@ -56,12 +56,12 @@ public void testResolveValuesWithNullVariable() { } @org.junit.jupiter.api.Test - public void testResolveValuesWithOneParam() throws TemplateException { + void testResolveValuesWithOneParam() throws TemplateException { testResolveValues("Value"); //$NON-NLS-1$ } @org.junit.jupiter.api.Test - public void testResolveValuesWithMultipleParams() throws TemplateException { + void testResolveValuesWithMultipleParams() throws TemplateException { testResolveValues("Value 1", "Value 2", "Value 3"); //$NON-NLS-1$//$NON-NLS-2$//$NON-NLS-3$ } From 16d66d91b21916658a94efdfbb7510861d4032a7 Mon Sep 17 00:00:00 2001 From: Joao Ferreira Date: Thu, 4 Sep 2025 08:29:25 +0200 Subject: [PATCH 49/57] test: replace JUnit4 "Assert" imports with JUnit5 equivalents --- .../tools/ddk/check/core/test/BasicModelTest.xtend | 2 +- .../avaloq/tools/ddk/check/core/test/BugAig1314.java | 6 +++--- .../runtime/core/validation/CheckValidatorTest.java | 2 +- .../runtime/label/CheckRuleLabelProviderTest.java | 6 +++--- .../ddk/check/test/runtime/label/IssueLabelTest.xtend | 4 ++-- .../ddk/check/ui/test/CheckCatalogWizardTest.java | 4 ++-- .../ddk/check/ui/test/CheckProjectWizardTest.java | 6 +++--- .../ui/test/builder/CheckMarkerHelpExtensionTest.java | 4 ++-- .../ddk/check/ui/test/quickfix/CheckQuickfixTest.xtend | 2 +- .../ddk/check/ui/test/util/CheckWizardTestUtil.java | 4 ++-- .../checkcfg/scoping/CheckCfgScopeProviderTest.xtend | 2 +- .../ddk/sample/helloworld/label/IssueLabelTest.xtend | 4 ++-- .../ddk/test/ui/test/logging/ErrorLogListenerTest.java | 4 ++-- .../test/ui/test/swtbot/DeChKeyboardLayoutTest.java | 2 +- .../tools/ddk/test/ui/test/swtbot/SwtBotRadioTest.java | 4 ++-- .../tools/ddk/test/ui/swtbot/CoreSwtbotTools.java | 2 +- .../avaloq/tools/ddk/test/ui/swtbot/SwtWizardBot.java | 2 +- .../tools/ddk/typesystem/AbstractTypeProviderTest.java | 6 +++--- .../ddk/typesystem/BuiltInTypeModelAccessTest.java | 10 +++++----- .../tools/ddk/typesystem/ParameterListMatcherTest.java | 6 +++--- .../ddk/xtext/export/scoping/ExportScopingTest.java | 4 ++-- .../format/builder/FormatBuilderParticipantTest.java | 4 ++-- .../ddk/xtext/format/scoping/FormatScopingTest.java | 2 +- .../xtext/format/validation/FormatValidationTest.java | 2 +- .../ddk/xtext/test/format/util/FormatTestUtil.java | 2 +- .../generator/expression/CodeGenerationXTest.java | 2 +- .../generator/expression/CompilationContextTest.java | 4 ++-- .../expression/ExpressionsExtentionsTest.java | 2 +- .../generator/test/util/EClassComparatorTest.java | 2 +- .../tools/ddk/xtext/generator/test/util/GraphTest.java | 4 ++-- .../ddk/xtext/test/AbstractXtextMarkerBasedTest.java | 8 ++++---- .../tools/ddk/xtext/test/AbstractXtextTestUtil.java | 4 ++-- .../test/AcfContentAssistProcessorTestBuilder.java | 2 +- .../contentassist/AbstractAcfContentAssistTest.java | 6 +++--- .../conversion/AbstractValueConverterServiceTest.java | 6 +++--- .../ddk/xtext/test/linking/AbstractLinkingTest.java | 2 +- .../test/modelinference/AbstractModelInferrerTest.java | 2 +- .../ddk/xtext/test/scoping/AbstractScopingTest.java | 10 +++++----- .../ddk/xtext/test/ui/AbstractXtextEditorTest.java | 4 ++-- .../ddk/xtext/test/ui/folding/AbstractFoldingTest.java | 2 +- .../test/ui/occurrences/AbstractOccurrencesTest.java | 4 ++-- .../xtext/test/ui/outline/AbstractOutlineViewTest.java | 2 +- .../xtext/test/ui/quickfix/AbstractQuickFixTest.java | 2 +- .../test/validation/AbstractValidValidationTest.java | 4 ++-- .../xtext/test/validation/AbstractValidationTest.java | 10 +++++----- .../ddk/xtext/naming/QualifiedNamePatternTest.java | 6 +++--- .../naming/QualifiedNameSegmentTreeLookupTest.java | 4 ++-- .../xtext/resource/ResourceDescriptionDeltaTest.java | 8 ++++---- .../tools/ddk/xtext/util/RuntimeProjectUtilTest.java | 4 ++-- .../ui/quickfix/WorkbenchResolutionAdaptorTest.java | 4 ++-- .../SimpleEnumTemplateVariableResolverTest.java | 2 +- .../templates/TemplateProposalProviderHelperTest.xtend | 4 ++-- .../templates/TemplateVariableResolverTestHelper.java | 2 +- 53 files changed, 106 insertions(+), 106 deletions(-) diff --git a/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/core/test/BasicModelTest.xtend b/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/core/test/BasicModelTest.xtend index 1f0d2ade7..6e233c15b 100644 --- a/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/core/test/BasicModelTest.xtend +++ b/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/core/test/BasicModelTest.xtend @@ -25,7 +25,7 @@ import org.junit.Ignore import org.junit.Test import org.junit.runner.RunWith -import static org.junit.Assert.* +import static org.junit.jupiter.api.Assertions.* @InjectWith(typeof(CheckUiInjectorProvider)) @RunWith(typeof(XtextRunner)) diff --git a/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/core/test/BugAig1314.java b/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/core/test/BugAig1314.java index 31a2bd5b3..2d85bf954 100644 --- a/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/core/test/BugAig1314.java +++ b/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/core/test/BugAig1314.java @@ -10,9 +10,9 @@ *******************************************************************************/ package com.avaloq.tools.ddk.check.core.test; -import static org.junit.Assert.assertEquals; -import static org.junit.Assert.assertFalse; -import static org.junit.Assert.assertTrue; +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertFalse; +import static org.junit.jupiter.api.Assertions.assertTrue; import java.io.InputStream; import java.net.MalformedURLException; diff --git a/com.avaloq.tools.ddk.check.runtime.core.test/src/com/avaloq/tools/ddk/check/runtime/core/validation/CheckValidatorTest.java b/com.avaloq.tools.ddk.check.runtime.core.test/src/com/avaloq/tools/ddk/check/runtime/core/validation/CheckValidatorTest.java index f932d4a97..6ed9bf1d2 100644 --- a/com.avaloq.tools.ddk.check.runtime.core.test/src/com/avaloq/tools/ddk/check/runtime/core/validation/CheckValidatorTest.java +++ b/com.avaloq.tools.ddk.check.runtime.core.test/src/com/avaloq/tools/ddk/check/runtime/core/validation/CheckValidatorTest.java @@ -10,7 +10,7 @@ *******************************************************************************/ package com.avaloq.tools.ddk.check.runtime.core.validation; -import static org.junit.Assert.assertEquals; +import static org.junit.jupiter.api.Assertions.assertEquals; import org.junit.jupiter.api.Test; diff --git a/com.avaloq.tools.ddk.check.runtime.core.test/src/com/avaloq/tools/ddk/check/runtime/label/CheckRuleLabelProviderTest.java b/com.avaloq.tools.ddk.check.runtime.core.test/src/com/avaloq/tools/ddk/check/runtime/label/CheckRuleLabelProviderTest.java index 145b36412..2bae132c7 100644 --- a/com.avaloq.tools.ddk.check.runtime.core.test/src/com/avaloq/tools/ddk/check/runtime/label/CheckRuleLabelProviderTest.java +++ b/com.avaloq.tools.ddk.check.runtime.core.test/src/com/avaloq/tools/ddk/check/runtime/label/CheckRuleLabelProviderTest.java @@ -10,9 +10,9 @@ package com.avaloq.tools.ddk.check.runtime.label; -import static org.junit.Assert.assertEquals; -import static org.junit.Assert.assertNull; -import static org.junit.Assert.assertSame; +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertNull; +import static org.junit.jupiter.api.Assertions.assertSame; import static org.mockito.Mockito.mock; import static org.mockito.Mockito.times; import static org.mockito.Mockito.verify; diff --git a/com.avaloq.tools.ddk.check.test.runtime.tests/src/com/avaloq/tools/ddk/check/test/runtime/label/IssueLabelTest.xtend b/com.avaloq.tools.ddk.check.test.runtime.tests/src/com/avaloq/tools/ddk/check/test/runtime/label/IssueLabelTest.xtend index 8d485dff3..68142c89a 100644 --- a/com.avaloq.tools.ddk.check.test.runtime.tests/src/com/avaloq/tools/ddk/check/test/runtime/label/IssueLabelTest.xtend +++ b/com.avaloq.tools.ddk.check.test.runtime.tests/src/com/avaloq/tools/ddk/check/test/runtime/label/IssueLabelTest.xtend @@ -17,8 +17,8 @@ import com.google.inject.AbstractModule import com.google.inject.Guice import org.junit.Test -import static org.junit.Assert.assertEquals -import static org.junit.Assert.assertNotNull +import static org.junit.jupiter.api.Assertions.assertEquals +import static org.junit.jupiter.api.Assertions.assertNotNull /** * End-to-end test for getting Check labels. diff --git a/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/CheckCatalogWizardTest.java b/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/CheckCatalogWizardTest.java index e198ab1b0..8ac55d3bb 100644 --- a/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/CheckCatalogWizardTest.java +++ b/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/CheckCatalogWizardTest.java @@ -11,8 +11,8 @@ package com.avaloq.tools.ddk.check.ui.test; import static com.avaloq.tools.ddk.test.ui.swtbot.util.SwtBotWizardUtil.selectProjectFolder; -import static org.junit.Assert.assertEquals; -import static org.junit.Assert.assertSame; +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertSame; import java.lang.reflect.InvocationTargetException; import java.util.Collections; diff --git a/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/CheckProjectWizardTest.java b/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/CheckProjectWizardTest.java index 78af7e116..c93965205 100644 --- a/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/CheckProjectWizardTest.java +++ b/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/CheckProjectWizardTest.java @@ -10,9 +10,9 @@ *******************************************************************************/ package com.avaloq.tools.ddk.check.ui.test; -import static org.junit.Assert.assertEquals; -import static org.junit.Assert.assertNotNull; -import static org.junit.Assert.assertNotSame; +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertNotNull; +import static org.junit.jupiter.api.Assertions.assertNotSame; import org.eclipse.swtbot.swt.finder.widgets.SWTBotShell; import org.eclipse.xtext.testing.InjectWith; diff --git a/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/builder/CheckMarkerHelpExtensionTest.java b/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/builder/CheckMarkerHelpExtensionTest.java index e7b052ccb..5811eedcf 100644 --- a/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/builder/CheckMarkerHelpExtensionTest.java +++ b/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/builder/CheckMarkerHelpExtensionTest.java @@ -10,8 +10,8 @@ *******************************************************************************/ package com.avaloq.tools.ddk.check.ui.test.builder; -import static org.junit.Assert.assertEquals; -import static org.junit.Assert.assertTrue; +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertTrue; import java.util.List; import java.util.Set; diff --git a/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/quickfix/CheckQuickfixTest.xtend b/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/quickfix/CheckQuickfixTest.xtend index 00bbade63..98a8315ae 100644 --- a/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/quickfix/CheckQuickfixTest.xtend +++ b/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/quickfix/CheckQuickfixTest.xtend @@ -22,7 +22,7 @@ import org.eclipse.xtext.diagnostics.Diagnostic import org.junit.Assert import org.junit.Test -import static org.junit.Assert.fail +import static org.junit.jupiter.api.Assertions.fail /** * Test quickfixes for Check files. diff --git a/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/util/CheckWizardTestUtil.java b/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/util/CheckWizardTestUtil.java index e13c18538..fa35472ac 100644 --- a/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/util/CheckWizardTestUtil.java +++ b/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/util/CheckWizardTestUtil.java @@ -14,8 +14,8 @@ import static com.avaloq.tools.ddk.test.ui.swtbot.SwtWizardBot.FINISH; import static com.avaloq.tools.ddk.test.ui.swtbot.SwtWizardBot.NEXT; import static org.eclipse.swtbot.swt.finder.finders.UIThreadRunnable.syncExec; -import static org.junit.Assert.assertFalse; -import static org.junit.Assert.assertTrue; +import static org.junit.jupiter.api.Assertions.assertFalse; +import static org.junit.jupiter.api.Assertions.assertTrue; import org.eclipse.jface.wizard.WizardDialog; import org.eclipse.swtbot.eclipse.finder.waits.Conditions; diff --git a/com.avaloq.tools.ddk.checkcfg.core.test/src/com/avaloq/tools/ddk/checkcfg/scoping/CheckCfgScopeProviderTest.xtend b/com.avaloq.tools.ddk.checkcfg.core.test/src/com/avaloq/tools/ddk/checkcfg/scoping/CheckCfgScopeProviderTest.xtend index dd8e62f97..06e5dd3ab 100644 --- a/com.avaloq.tools.ddk.checkcfg.core.test/src/com/avaloq/tools/ddk/checkcfg/scoping/CheckCfgScopeProviderTest.xtend +++ b/com.avaloq.tools.ddk.checkcfg.core.test/src/com/avaloq/tools/ddk/checkcfg/scoping/CheckCfgScopeProviderTest.xtend @@ -16,7 +16,7 @@ import com.avaloq.tools.ddk.checkcfg.checkcfg.CheckcfgPackage import com.avaloq.tools.ddk.checkcfg.util.CheckCfgTestUtil import com.avaloq.tools.ddk.xtext.test.scoping.AbstractScopingTest -import static org.junit.Assert.assertArrayEquals +import static org.junit.jupiter.api.Assertions.assertArrayEquals final class CheckCfgScopeProviderTest extends AbstractScopingTest { diff --git a/com.avaloq.tools.ddk.sample.helloworld.ui.test/src/com/avaloq/tools/ddk/sample/helloworld/label/IssueLabelTest.xtend b/com.avaloq.tools.ddk.sample.helloworld.ui.test/src/com/avaloq/tools/ddk/sample/helloworld/label/IssueLabelTest.xtend index 52f52a928..828c0a268 100644 --- a/com.avaloq.tools.ddk.sample.helloworld.ui.test/src/com/avaloq/tools/ddk/sample/helloworld/label/IssueLabelTest.xtend +++ b/com.avaloq.tools.ddk.sample.helloworld.ui.test/src/com/avaloq/tools/ddk/sample/helloworld/label/IssueLabelTest.xtend @@ -14,8 +14,8 @@ import com.google.inject.AbstractModule import com.google.inject.Guice import org.junit.Test -import static org.junit.Assert.assertEquals -import static org.junit.Assert.assertNotNull +import static org.junit.jupiter.api.Assertions.assertEquals +import static org.junit.jupiter.api.Assertions.assertNotNull import com.avaloq.tools.ddk.sample.helloworld.validation.LibraryChecksIssueCodes import com.avaloq.tools.ddk.check.runtime.label.ICheckRuleLabelProvider diff --git a/com.avaloq.tools.ddk.test.ui.test/src/com/avaloq/tools/ddk/test/ui/test/logging/ErrorLogListenerTest.java b/com.avaloq.tools.ddk.test.ui.test/src/com/avaloq/tools/ddk/test/ui/test/logging/ErrorLogListenerTest.java index 2272111b4..8b0ff76b1 100644 --- a/com.avaloq.tools.ddk.test.ui.test/src/com/avaloq/tools/ddk/test/ui/test/logging/ErrorLogListenerTest.java +++ b/com.avaloq.tools.ddk.test.ui.test/src/com/avaloq/tools/ddk/test/ui/test/logging/ErrorLogListenerTest.java @@ -10,8 +10,8 @@ *******************************************************************************/ package com.avaloq.tools.ddk.test.ui.test.logging; -import static org.junit.Assert.assertFalse; -import static org.junit.Assert.assertTrue; +import static org.junit.jupiter.api.Assertions.assertFalse; +import static org.junit.jupiter.api.Assertions.assertTrue; import org.eclipse.core.runtime.IProgressMonitor; import org.eclipse.core.runtime.IStatus; diff --git a/com.avaloq.tools.ddk.test.ui.test/src/com/avaloq/tools/ddk/test/ui/test/swtbot/DeChKeyboardLayoutTest.java b/com.avaloq.tools.ddk.test.ui.test/src/com/avaloq/tools/ddk/test/ui/test/swtbot/DeChKeyboardLayoutTest.java index 37c8043a4..9cd7e8d82 100644 --- a/com.avaloq.tools.ddk.test.ui.test/src/com/avaloq/tools/ddk/test/ui/test/swtbot/DeChKeyboardLayoutTest.java +++ b/com.avaloq.tools.ddk.test.ui.test/src/com/avaloq/tools/ddk/test/ui/test/swtbot/DeChKeyboardLayoutTest.java @@ -10,7 +10,7 @@ *******************************************************************************/ package com.avaloq.tools.ddk.test.ui.test.swtbot; -import static org.junit.Assert.assertEquals; +import static org.junit.jupiter.api.Assertions.assertEquals; import org.eclipse.swtbot.eclipse.finder.widgets.SWTBotEclipseEditor; import org.eclipse.swtbot.swt.finder.utils.SWTBotPreferences; diff --git a/com.avaloq.tools.ddk.test.ui.test/src/com/avaloq/tools/ddk/test/ui/test/swtbot/SwtBotRadioTest.java b/com.avaloq.tools.ddk.test.ui.test/src/com/avaloq/tools/ddk/test/ui/test/swtbot/SwtBotRadioTest.java index b264161a3..1e94821ee 100644 --- a/com.avaloq.tools.ddk.test.ui.test/src/com/avaloq/tools/ddk/test/ui/test/swtbot/SwtBotRadioTest.java +++ b/com.avaloq.tools.ddk.test.ui.test/src/com/avaloq/tools/ddk/test/ui/test/swtbot/SwtBotRadioTest.java @@ -10,8 +10,8 @@ *******************************************************************************/ package com.avaloq.tools.ddk.test.ui.test.swtbot; -import static org.junit.Assert.assertNotNull; -import static org.junit.Assert.assertTrue; +import static org.junit.jupiter.api.Assertions.assertNotNull; +import static org.junit.jupiter.api.Assertions.assertTrue; import org.eclipse.swtbot.eclipse.finder.SWTWorkbenchBot; import org.junit.Rule; diff --git a/com.avaloq.tools.ddk.test.ui/src/com/avaloq/tools/ddk/test/ui/swtbot/CoreSwtbotTools.java b/com.avaloq.tools.ddk.test.ui/src/com/avaloq/tools/ddk/test/ui/swtbot/CoreSwtbotTools.java index 17375e054..8e417236a 100644 --- a/com.avaloq.tools.ddk.test.ui/src/com/avaloq/tools/ddk/test/ui/swtbot/CoreSwtbotTools.java +++ b/com.avaloq.tools.ddk.test.ui/src/com/avaloq/tools/ddk/test/ui/swtbot/CoreSwtbotTools.java @@ -11,7 +11,7 @@ package com.avaloq.tools.ddk.test.ui.swtbot; import static org.eclipse.swtbot.swt.finder.waits.Conditions.widgetIsEnabled; -import static org.junit.Assert.assertTrue; +import static org.junit.jupiter.api.Assertions.assertTrue; import java.awt.AWTException; import java.awt.Robot; diff --git a/com.avaloq.tools.ddk.test.ui/src/com/avaloq/tools/ddk/test/ui/swtbot/SwtWizardBot.java b/com.avaloq.tools.ddk.test.ui/src/com/avaloq/tools/ddk/test/ui/swtbot/SwtWizardBot.java index 058fc8374..83a734254 100644 --- a/com.avaloq.tools.ddk.test.ui/src/com/avaloq/tools/ddk/test/ui/swtbot/SwtWizardBot.java +++ b/com.avaloq.tools.ddk.test.ui/src/com/avaloq/tools/ddk/test/ui/swtbot/SwtWizardBot.java @@ -12,7 +12,7 @@ import static com.avaloq.tools.ddk.test.ui.swtbot.util.SwtBotWizardUtil.selectItem; import static org.eclipse.swtbot.swt.finder.finders.UIThreadRunnable.syncExec; -import static org.junit.Assert.assertTrue; +import static org.junit.jupiter.api.Assertions.assertTrue; import java.util.Arrays; diff --git a/com.avaloq.tools.ddk.typesystem.test/src/com/avaloq/tools/ddk/typesystem/AbstractTypeProviderTest.java b/com.avaloq.tools.ddk.typesystem.test/src/com/avaloq/tools/ddk/typesystem/AbstractTypeProviderTest.java index 3c658d3c4..7a33deee2 100644 --- a/com.avaloq.tools.ddk.typesystem.test/src/com/avaloq/tools/ddk/typesystem/AbstractTypeProviderTest.java +++ b/com.avaloq.tools.ddk.typesystem.test/src/com/avaloq/tools/ddk/typesystem/AbstractTypeProviderTest.java @@ -10,9 +10,9 @@ *******************************************************************************/ package com.avaloq.tools.ddk.typesystem; -import static org.junit.Assert.assertEquals; -import static org.junit.Assert.assertNotNull; -import static org.junit.Assert.assertNull; +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertNotNull; +import static org.junit.jupiter.api.Assertions.assertNull; import java.util.Arrays; diff --git a/com.avaloq.tools.ddk.typesystem.test/src/com/avaloq/tools/ddk/typesystem/BuiltInTypeModelAccessTest.java b/com.avaloq.tools.ddk.typesystem.test/src/com/avaloq/tools/ddk/typesystem/BuiltInTypeModelAccessTest.java index 508d1468b..92ed94a19 100644 --- a/com.avaloq.tools.ddk.typesystem.test/src/com/avaloq/tools/ddk/typesystem/BuiltInTypeModelAccessTest.java +++ b/com.avaloq.tools.ddk.typesystem.test/src/com/avaloq/tools/ddk/typesystem/BuiltInTypeModelAccessTest.java @@ -10,11 +10,11 @@ *******************************************************************************/ package com.avaloq.tools.ddk.typesystem; -import static org.junit.Assert.assertEquals; -import static org.junit.Assert.assertFalse; -import static org.junit.Assert.assertNotNull; -import static org.junit.Assert.assertNull; -import static org.junit.Assert.assertSame; +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertFalse; +import static org.junit.jupiter.api.Assertions.assertNotNull; +import static org.junit.jupiter.api.Assertions.assertNull; +import static org.junit.jupiter.api.Assertions.assertSame; import org.eclipse.emf.common.util.EList; diff --git a/com.avaloq.tools.ddk.typesystem.test/src/com/avaloq/tools/ddk/typesystem/ParameterListMatcherTest.java b/com.avaloq.tools.ddk.typesystem.test/src/com/avaloq/tools/ddk/typesystem/ParameterListMatcherTest.java index b0d92c735..b35d6e25d 100644 --- a/com.avaloq.tools.ddk.typesystem.test/src/com/avaloq/tools/ddk/typesystem/ParameterListMatcherTest.java +++ b/com.avaloq.tools.ddk.typesystem.test/src/com/avaloq/tools/ddk/typesystem/ParameterListMatcherTest.java @@ -10,9 +10,9 @@ *******************************************************************************/ package com.avaloq.tools.ddk.typesystem; -import static org.junit.Assert.assertEquals; -import static org.junit.Assert.assertNull; -import static org.junit.Assert.assertSame; +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertNull; +import static org.junit.jupiter.api.Assertions.assertSame; import java.util.ArrayList; import java.util.List; diff --git a/com.avaloq.tools.ddk.xtext.export.test/src/com/avaloq/tools/ddk/xtext/export/scoping/ExportScopingTest.java b/com.avaloq.tools.ddk.xtext.export.test/src/com/avaloq/tools/ddk/xtext/export/scoping/ExportScopingTest.java index 09f42a4d5..059baa20d 100644 --- a/com.avaloq.tools.ddk.xtext.export.test/src/com/avaloq/tools/ddk/xtext/export/scoping/ExportScopingTest.java +++ b/com.avaloq.tools.ddk.xtext.export.test/src/com/avaloq/tools/ddk/xtext/export/scoping/ExportScopingTest.java @@ -10,8 +10,8 @@ *******************************************************************************/ package com.avaloq.tools.ddk.xtext.export.scoping; -import static org.junit.Assert.assertNotNull; -import static org.junit.Assert.assertNull; +import static org.junit.jupiter.api.Assertions.assertNotNull; +import static org.junit.jupiter.api.Assertions.assertNull; import java.io.IOException; diff --git a/com.avaloq.tools.ddk.xtext.format.test/src/com/avaloq/tools/ddk/xtext/format/builder/FormatBuilderParticipantTest.java b/com.avaloq.tools.ddk.xtext.format.test/src/com/avaloq/tools/ddk/xtext/format/builder/FormatBuilderParticipantTest.java index 7109bc44d..2800f6d1c 100644 --- a/com.avaloq.tools.ddk.xtext.format.test/src/com/avaloq/tools/ddk/xtext/format/builder/FormatBuilderParticipantTest.java +++ b/com.avaloq.tools.ddk.xtext.format.test/src/com/avaloq/tools/ddk/xtext/format/builder/FormatBuilderParticipantTest.java @@ -10,8 +10,8 @@ *******************************************************************************/ package com.avaloq.tools.ddk.xtext.format.builder; -import static org.junit.Assert.assertFalse; -import static org.junit.Assert.assertTrue; +import static org.junit.jupiter.api.Assertions.assertFalse; +import static org.junit.jupiter.api.Assertions.assertTrue; import static org.mockito.ArgumentMatchers.argThat; import static org.mockito.Mockito.mock; import static org.mockito.Mockito.when; diff --git a/com.avaloq.tools.ddk.xtext.format.test/src/com/avaloq/tools/ddk/xtext/format/scoping/FormatScopingTest.java b/com.avaloq.tools.ddk.xtext.format.test/src/com/avaloq/tools/ddk/xtext/format/scoping/FormatScopingTest.java index 150889ad9..b242bb8d1 100644 --- a/com.avaloq.tools.ddk.xtext.format.test/src/com/avaloq/tools/ddk/xtext/format/scoping/FormatScopingTest.java +++ b/com.avaloq.tools.ddk.xtext.format.test/src/com/avaloq/tools/ddk/xtext/format/scoping/FormatScopingTest.java @@ -10,7 +10,7 @@ *******************************************************************************/ package com.avaloq.tools.ddk.xtext.format.scoping; -import static org.junit.Assert.assertFalse; +import static org.junit.jupiter.api.Assertions.assertFalse; import java.util.List; import java.util.Set; diff --git a/com.avaloq.tools.ddk.xtext.format.test/src/com/avaloq/tools/ddk/xtext/format/validation/FormatValidationTest.java b/com.avaloq.tools.ddk.xtext.format.test/src/com/avaloq/tools/ddk/xtext/format/validation/FormatValidationTest.java index d74cf0e87..54c485b8b 100644 --- a/com.avaloq.tools.ddk.xtext.format.test/src/com/avaloq/tools/ddk/xtext/format/validation/FormatValidationTest.java +++ b/com.avaloq.tools.ddk.xtext.format.test/src/com/avaloq/tools/ddk/xtext/format/validation/FormatValidationTest.java @@ -10,7 +10,7 @@ *******************************************************************************/ package com.avaloq.tools.ddk.xtext.format.validation; -import static org.junit.Assert.fail; +import static org.junit.jupiter.api.Assertions.fail; import java.io.IOException; import java.util.List; diff --git a/com.avaloq.tools.ddk.xtext.format.test/src/com/avaloq/tools/ddk/xtext/test/format/util/FormatTestUtil.java b/com.avaloq.tools.ddk.xtext.format.test/src/com/avaloq/tools/ddk/xtext/test/format/util/FormatTestUtil.java index 289ccd3ec..f72244c23 100644 --- a/com.avaloq.tools.ddk.xtext.format.test/src/com/avaloq/tools/ddk/xtext/test/format/util/FormatTestUtil.java +++ b/com.avaloq.tools.ddk.xtext.format.test/src/com/avaloq/tools/ddk/xtext/test/format/util/FormatTestUtil.java @@ -10,7 +10,7 @@ *******************************************************************************/ package com.avaloq.tools.ddk.xtext.test.format.util; -import static org.junit.Assert.fail; +import static org.junit.jupiter.api.Assertions.fail; import java.io.IOException; diff --git a/com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/expression/CodeGenerationXTest.java b/com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/expression/CodeGenerationXTest.java index 550198faa..6f42b65c8 100644 --- a/com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/expression/CodeGenerationXTest.java +++ b/com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/expression/CodeGenerationXTest.java @@ -10,7 +10,7 @@ *******************************************************************************/ package com.avaloq.tools.ddk.xtext.generator.expression; -import static org.junit.Assert.assertEquals; +import static org.junit.jupiter.api.Assertions.assertEquals; import java.io.IOException; diff --git a/com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/expression/CompilationContextTest.java b/com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/expression/CompilationContextTest.java index 762c80efd..ab43b055d 100644 --- a/com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/expression/CompilationContextTest.java +++ b/com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/expression/CompilationContextTest.java @@ -10,8 +10,8 @@ *******************************************************************************/ package com.avaloq.tools.ddk.xtext.generator.expression; -import static org.junit.Assert.assertSame; -import static org.junit.Assert.assertTrue; +import static org.junit.jupiter.api.Assertions.assertSame; +import static org.junit.jupiter.api.Assertions.assertTrue; import java.io.InputStreamReader; diff --git a/com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/expression/ExpressionsExtentionsTest.java b/com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/expression/ExpressionsExtentionsTest.java index 779b5f404..2687e99d6 100644 --- a/com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/expression/ExpressionsExtentionsTest.java +++ b/com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/expression/ExpressionsExtentionsTest.java @@ -10,7 +10,7 @@ *******************************************************************************/ package com.avaloq.tools.ddk.xtext.generator.expression; -import static org.junit.Assert.assertEquals; +import static org.junit.jupiter.api.Assertions.assertEquals; import java.io.IOException; diff --git a/com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/test/util/EClassComparatorTest.java b/com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/test/util/EClassComparatorTest.java index fef2c1a5a..838e88d79 100644 --- a/com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/test/util/EClassComparatorTest.java +++ b/com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/test/util/EClassComparatorTest.java @@ -15,7 +15,7 @@ import static org.eclipse.emf.ecore.EcorePackage.Literals.EDATA_TYPE; import static org.eclipse.emf.ecore.EcorePackage.Literals.EOBJECT; import static org.eclipse.emf.ecore.EcorePackage.Literals.EPACKAGE; -import static org.junit.Assert.assertEquals; +import static org.junit.jupiter.api.Assertions.assertEquals; import java.util.List; diff --git a/com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/test/util/GraphTest.java b/com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/test/util/GraphTest.java index e35f9c169..11099aaf8 100644 --- a/com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/test/util/GraphTest.java +++ b/com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/test/util/GraphTest.java @@ -10,8 +10,8 @@ *******************************************************************************/ package com.avaloq.tools.ddk.xtext.generator.test.util; -import static org.junit.Assert.assertTrue; -import static org.junit.Assert.fail; +import static org.junit.jupiter.api.Assertions.assertTrue; +import static org.junit.jupiter.api.Assertions.fail; import java.util.List; import java.util.Map; diff --git a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/AbstractXtextMarkerBasedTest.java b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/AbstractXtextMarkerBasedTest.java index 9032a4011..c60b1d289 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/AbstractXtextMarkerBasedTest.java +++ b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/AbstractXtextMarkerBasedTest.java @@ -10,10 +10,10 @@ *******************************************************************************/ package com.avaloq.tools.ddk.xtext.test; -import static org.junit.Assert.assertEquals; -import static org.junit.Assert.assertNotNull; -import static org.junit.Assert.assertTrue; -import static org.junit.Assert.fail; +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertNotNull; +import static org.junit.jupiter.api.Assertions.assertTrue; +import static org.junit.jupiter.api.Assertions.fail; import java.io.IOException; import java.util.Collections; diff --git a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/AbstractXtextTestUtil.java b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/AbstractXtextTestUtil.java index b56948946..65334ad5f 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/AbstractXtextTestUtil.java +++ b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/AbstractXtextTestUtil.java @@ -10,8 +10,8 @@ *******************************************************************************/ package com.avaloq.tools.ddk.xtext.test; //NOPMD -import static org.junit.Assert.assertEquals; -import static org.junit.Assert.fail; +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.fail; import java.io.IOException; import java.io.InputStream; diff --git a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/AcfContentAssistProcessorTestBuilder.java b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/AcfContentAssistProcessorTestBuilder.java index 8415facde..f958a0693 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/AcfContentAssistProcessorTestBuilder.java +++ b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/AcfContentAssistProcessorTestBuilder.java @@ -11,7 +11,7 @@ package com.avaloq.tools.ddk.xtext.test; // CHECKSTYLE:OFF -import static org.junit.Assert.assertNotNull; +import static org.junit.jupiter.api.Assertions.assertNotNull; import java.text.MessageFormat; diff --git a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/contentassist/AbstractAcfContentAssistTest.java b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/contentassist/AbstractAcfContentAssistTest.java index 569fc457e..04121d71c 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/contentassist/AbstractAcfContentAssistTest.java +++ b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/contentassist/AbstractAcfContentAssistTest.java @@ -10,9 +10,9 @@ *******************************************************************************/ package com.avaloq.tools.ddk.xtext.test.contentassist; -import static org.junit.Assert.assertFalse; -import static org.junit.Assert.assertNotEquals; -import static org.junit.Assert.fail; +import static org.junit.jupiter.api.Assertions.assertFalse; +import static org.junit.jupiter.api.Assertions.assertNotEquals; +import static org.junit.jupiter.api.Assertions.fail; import java.text.MessageFormat; import java.util.Arrays; diff --git a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/conversion/AbstractValueConverterServiceTest.java b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/conversion/AbstractValueConverterServiceTest.java index 1a877b1ea..0bcf9d031 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/conversion/AbstractValueConverterServiceTest.java +++ b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/conversion/AbstractValueConverterServiceTest.java @@ -10,9 +10,9 @@ *******************************************************************************/ package com.avaloq.tools.ddk.xtext.test.conversion; -import static org.junit.Assert.assertEquals; -import static org.junit.Assert.assertNotNull; -import static org.junit.Assert.fail; +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertNotNull; +import static org.junit.jupiter.api.Assertions.fail; import java.util.Collection; import java.util.List; diff --git a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/linking/AbstractLinkingTest.java b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/linking/AbstractLinkingTest.java index 14e526620..c57fc21ea 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/linking/AbstractLinkingTest.java +++ b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/linking/AbstractLinkingTest.java @@ -10,7 +10,7 @@ *******************************************************************************/ package com.avaloq.tools.ddk.xtext.test.linking; -import static org.junit.Assert.assertEquals; +import static org.junit.jupiter.api.Assertions.assertEquals; import org.eclipse.emf.ecore.EObject; import org.eclipse.emf.ecore.util.EcoreUtil; diff --git a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/modelinference/AbstractModelInferrerTest.java b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/modelinference/AbstractModelInferrerTest.java index 4d4245bb6..e293e34ff 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/modelinference/AbstractModelInferrerTest.java +++ b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/modelinference/AbstractModelInferrerTest.java @@ -10,7 +10,7 @@ *******************************************************************************/ package com.avaloq.tools.ddk.xtext.test.modelinference; -import static org.junit.Assert.assertTrue; +import static org.junit.jupiter.api.Assertions.assertTrue; import java.util.List; import java.util.Set; diff --git a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/scoping/AbstractScopingTest.java b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/scoping/AbstractScopingTest.java index ad5df858a..28e93c1e3 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/scoping/AbstractScopingTest.java +++ b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/scoping/AbstractScopingTest.java @@ -17,11 +17,11 @@ import static com.avaloq.tools.ddk.xtext.resource.AbstractSelectorFragmentProvider.SELECTOR_START; import static com.avaloq.tools.ddk.xtext.resource.AbstractSelectorFragmentProvider.UNIQUE; import static com.avaloq.tools.ddk.xtext.resource.AbstractSelectorFragmentProvider.VALUE_SEP; -import static org.junit.Assert.assertEquals; -import static org.junit.Assert.assertFalse; -import static org.junit.Assert.assertNotNull; -import static org.junit.Assert.assertTrue; -import static org.junit.Assert.fail; +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertFalse; +import static org.junit.jupiter.api.Assertions.assertNotNull; +import static org.junit.jupiter.api.Assertions.assertTrue; +import static org.junit.jupiter.api.Assertions.fail; import java.util.ArrayList; import java.util.Collection; diff --git a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/AbstractXtextEditorTest.java b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/AbstractXtextEditorTest.java index c0f4e81eb..9f5b23707 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/AbstractXtextEditorTest.java +++ b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/AbstractXtextEditorTest.java @@ -10,8 +10,8 @@ *******************************************************************************/ package com.avaloq.tools.ddk.xtext.test.ui; -import static org.junit.Assert.assertFalse; -import static org.junit.Assert.assertNotNull; +import static org.junit.jupiter.api.Assertions.assertFalse; +import static org.junit.jupiter.api.Assertions.assertNotNull; import org.eclipse.emf.common.util.WrappedException; import org.eclipse.jface.text.BadLocationException; diff --git a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/folding/AbstractFoldingTest.java b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/folding/AbstractFoldingTest.java index ed168df67..20ae2ce9c 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/folding/AbstractFoldingTest.java +++ b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/folding/AbstractFoldingTest.java @@ -10,7 +10,7 @@ *******************************************************************************/ package com.avaloq.tools.ddk.xtext.test.ui.folding; -import static org.junit.Assert.fail; +import static org.junit.jupiter.api.Assertions.fail; import java.util.Collection; import java.util.Collections; diff --git a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/occurrences/AbstractOccurrencesTest.java b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/occurrences/AbstractOccurrencesTest.java index 38b14c66c..c640c9888 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/occurrences/AbstractOccurrencesTest.java +++ b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/occurrences/AbstractOccurrencesTest.java @@ -10,8 +10,8 @@ *******************************************************************************/ package com.avaloq.tools.ddk.xtext.test.ui.occurrences; -import static org.junit.Assert.assertNotSame; -import static org.junit.Assert.assertSame; +import static org.junit.jupiter.api.Assertions.assertNotSame; +import static org.junit.jupiter.api.Assertions.assertSame; import java.util.Set; diff --git a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/outline/AbstractOutlineViewTest.java b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/outline/AbstractOutlineViewTest.java index 898845011..01c02bbe7 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/outline/AbstractOutlineViewTest.java +++ b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/outline/AbstractOutlineViewTest.java @@ -10,7 +10,7 @@ *******************************************************************************/ package com.avaloq.tools.ddk.xtext.test.ui.outline; -import static org.junit.Assert.assertNotNull; +import static org.junit.jupiter.api.Assertions.assertNotNull; import org.eclipse.swtbot.eclipse.finder.widgets.SWTBotView; import org.eclipse.swtbot.swt.finder.widgets.SWTBotTreeItem; diff --git a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/quickfix/AbstractQuickFixTest.java b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/quickfix/AbstractQuickFixTest.java index 67c11897d..8c0a772b8 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/quickfix/AbstractQuickFixTest.java +++ b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/quickfix/AbstractQuickFixTest.java @@ -10,7 +10,7 @@ *******************************************************************************/ package com.avaloq.tools.ddk.xtext.test.ui.quickfix; -import static org.junit.Assert.assertEquals; +import static org.junit.jupiter.api.Assertions.assertEquals; import java.util.ArrayList; import java.util.List; diff --git a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/validation/AbstractValidValidationTest.java b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/validation/AbstractValidValidationTest.java index ffddb3abb..a49f460fa 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/validation/AbstractValidValidationTest.java +++ b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/validation/AbstractValidValidationTest.java @@ -10,8 +10,8 @@ *******************************************************************************/ package com.avaloq.tools.ddk.xtext.test.validation; -import static org.junit.Assert.assertFalse; -import static org.junit.Assert.fail; +import static org.junit.jupiter.api.Assertions.assertFalse; +import static org.junit.jupiter.api.Assertions.fail; import org.eclipse.emf.ecore.EObject; import org.eclipse.xtext.testing.validation.AssertableDiagnostics.Pred; diff --git a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/validation/AbstractValidationTest.java b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/validation/AbstractValidationTest.java index abb767b6e..ca885c1af 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/validation/AbstractValidationTest.java +++ b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/validation/AbstractValidationTest.java @@ -11,11 +11,11 @@ package com.avaloq.tools.ddk.xtext.test.validation; import static org.eclipse.xtext.validation.ValidationMessageAcceptor.INSIGNIFICANT_INDEX; -import static org.junit.Assert.assertEquals; -import static org.junit.Assert.assertFalse; -import static org.junit.Assert.assertNotNull; -import static org.junit.Assert.assertTrue; -import static org.junit.Assert.fail; +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertFalse; +import static org.junit.jupiter.api.Assertions.assertNotNull; +import static org.junit.jupiter.api.Assertions.assertTrue; +import static org.junit.jupiter.api.Assertions.fail; import java.util.Arrays; import java.util.List; diff --git a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/naming/QualifiedNamePatternTest.java b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/naming/QualifiedNamePatternTest.java index f90a25ee4..6e03406d8 100644 --- a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/naming/QualifiedNamePatternTest.java +++ b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/naming/QualifiedNamePatternTest.java @@ -10,9 +10,9 @@ *******************************************************************************/ package com.avaloq.tools.ddk.xtext.naming; -import static org.junit.Assert.assertEquals; -import static org.junit.Assert.assertFalse; -import static org.junit.Assert.assertTrue; +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertFalse; +import static org.junit.jupiter.api.Assertions.assertTrue; import java.util.Comparator; diff --git a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/naming/QualifiedNameSegmentTreeLookupTest.java b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/naming/QualifiedNameSegmentTreeLookupTest.java index 96ba0e2bd..dc8f6158e 100644 --- a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/naming/QualifiedNameSegmentTreeLookupTest.java +++ b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/naming/QualifiedNameSegmentTreeLookupTest.java @@ -10,8 +10,8 @@ *******************************************************************************/ package com.avaloq.tools.ddk.xtext.naming; -import static org.junit.Assert.assertEquals; -import static org.junit.Assert.assertNull; +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertNull; import java.util.Collection; import java.util.Collections; diff --git a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/resource/ResourceDescriptionDeltaTest.java b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/resource/ResourceDescriptionDeltaTest.java index f1ddfe9a1..990416a28 100644 --- a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/resource/ResourceDescriptionDeltaTest.java +++ b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/resource/ResourceDescriptionDeltaTest.java @@ -10,10 +10,10 @@ *******************************************************************************/ package com.avaloq.tools.ddk.xtext.resource; -import static org.junit.Assert.assertEquals; -import static org.junit.Assert.assertFalse; -import static org.junit.Assert.assertSame; -import static org.junit.Assert.assertTrue; +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertFalse; +import static org.junit.jupiter.api.Assertions.assertSame; +import static org.junit.jupiter.api.Assertions.assertTrue; import java.util.List; diff --git a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/util/RuntimeProjectUtilTest.java b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/util/RuntimeProjectUtilTest.java index e7ff5c1a3..9f1a0d4da 100644 --- a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/util/RuntimeProjectUtilTest.java +++ b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/util/RuntimeProjectUtilTest.java @@ -10,8 +10,8 @@ *******************************************************************************/ package com.avaloq.tools.ddk.xtext.util; -import static org.junit.Assert.assertEquals; -import static org.junit.Assert.assertNull; +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertNull; import static org.junit.Assume.assumeNotNull; import static org.mockito.Mockito.mock; import static org.mockito.Mockito.when; diff --git a/com.avaloq.tools.ddk.xtext.ui.test/src/com/avaloq/tools/ddk/xtext/ui/quickfix/WorkbenchResolutionAdaptorTest.java b/com.avaloq.tools.ddk.xtext.ui.test/src/com/avaloq/tools/ddk/xtext/ui/quickfix/WorkbenchResolutionAdaptorTest.java index 2f52c3c20..fa7efcc97 100644 --- a/com.avaloq.tools.ddk.xtext.ui.test/src/com/avaloq/tools/ddk/xtext/ui/quickfix/WorkbenchResolutionAdaptorTest.java +++ b/com.avaloq.tools.ddk.xtext.ui.test/src/com/avaloq/tools/ddk/xtext/ui/quickfix/WorkbenchResolutionAdaptorTest.java @@ -11,8 +11,8 @@ package com.avaloq.tools.ddk.xtext.ui.quickfix; -import static org.junit.Assert.assertArrayEquals; -import static org.junit.Assert.assertEquals; +import static org.junit.jupiter.api.Assertions.assertArrayEquals; +import static org.junit.jupiter.api.Assertions.assertEquals; import static org.mockito.Mockito.mock; import static org.mockito.Mockito.when; diff --git a/com.avaloq.tools.ddk.xtext.ui.test/src/com/avaloq/tools/ddk/xtext/ui/templates/SimpleEnumTemplateVariableResolverTest.java b/com.avaloq.tools.ddk.xtext.ui.test/src/com/avaloq/tools/ddk/xtext/ui/templates/SimpleEnumTemplateVariableResolverTest.java index f1f359649..6394c6194 100644 --- a/com.avaloq.tools.ddk.xtext.ui.test/src/com/avaloq/tools/ddk/xtext/ui/templates/SimpleEnumTemplateVariableResolverTest.java +++ b/com.avaloq.tools.ddk.xtext.ui.test/src/com/avaloq/tools/ddk/xtext/ui/templates/SimpleEnumTemplateVariableResolverTest.java @@ -11,7 +11,7 @@ package com.avaloq.tools.ddk.xtext.ui.templates; -import static org.junit.Assert.assertArrayEquals; +import static org.junit.jupiter.api.Assertions.assertArrayEquals; import static org.mockito.Mockito.mock; import java.util.List; diff --git a/com.avaloq.tools.ddk.xtext.ui.test/src/com/avaloq/tools/ddk/xtext/ui/templates/TemplateProposalProviderHelperTest.xtend b/com.avaloq.tools.ddk.xtext.ui.test/src/com/avaloq/tools/ddk/xtext/ui/templates/TemplateProposalProviderHelperTest.xtend index 6285b36de..3b1ddd09b 100644 --- a/com.avaloq.tools.ddk.xtext.ui.test/src/com/avaloq/tools/ddk/xtext/ui/templates/TemplateProposalProviderHelperTest.xtend +++ b/com.avaloq.tools.ddk.xtext.ui.test/src/com/avaloq/tools/ddk/xtext/ui/templates/TemplateProposalProviderHelperTest.xtend @@ -25,8 +25,8 @@ import org.eclipse.xtext.ui.editor.templates.XtextTemplateContextType import org.junit.Test import org.junit.runner.RunWith -import static org.junit.Assert.assertArrayEquals -import static org.junit.Assert.assertEquals +import static org.junit.jupiter.api.Assertions.assertArrayEquals +import static org.junit.jupiter.api.Assertions.assertEquals import static org.mockito.ArgumentMatchers.anyInt import static org.mockito.Mockito.mock import static org.mockito.Mockito.spy diff --git a/com.avaloq.tools.ddk.xtext.ui.test/src/com/avaloq/tools/ddk/xtext/ui/templates/TemplateVariableResolverTestHelper.java b/com.avaloq.tools.ddk.xtext.ui.test/src/com/avaloq/tools/ddk/xtext/ui/templates/TemplateVariableResolverTestHelper.java index 35fe8a7a6..bbca30b73 100644 --- a/com.avaloq.tools.ddk.xtext.ui.test/src/com/avaloq/tools/ddk/xtext/ui/templates/TemplateVariableResolverTestHelper.java +++ b/com.avaloq.tools.ddk.xtext.ui.test/src/com/avaloq/tools/ddk/xtext/ui/templates/TemplateVariableResolverTestHelper.java @@ -11,7 +11,7 @@ package com.avaloq.tools.ddk.xtext.ui.templates; -import static org.junit.Assert.assertEquals; +import static org.junit.jupiter.api.Assertions.assertEquals; import org.eclipse.jface.text.templates.TemplateException; import org.eclipse.jface.text.templates.TemplateTranslator; From 96fe913e399b54ed93de71a560997110b8186051 Mon Sep 17 00:00:00 2001 From: Joao Ferreira Date: Thu, 4 Sep 2025 08:31:54 +0200 Subject: [PATCH 50/57] fixup! test: replace JUnit4 "Assert" imports with JUnit5 equivalents --- .../src/com/avaloq/tools/ddk/check/core/test/BugAig830.xtend | 2 +- .../tools/ddk/check/runtime/context/CheckContextTest.java | 2 +- .../tools/ddk/check/ui/test/contentassist/BugAig931Test.java | 2 +- .../tools/ddk/check/ui/test/quickfix/CheckQuickfixTest.xtend | 2 +- .../src/com/avaloq/tools/ddk/test/core/TestPlan.java | 2 +- .../avaloq/tools/ddk/test/core/junit/runners/ClassRunner.java | 2 +- .../avaloq/tools/ddk/test/core/mock/ExtensionRegistryMock.java | 2 +- .../src/com/avaloq/tools/ddk/test/core/mock/ServiceMock.java | 2 +- .../avaloq/tools/ddk/test/core/util/SimpleProgressMonitor.java | 2 +- .../avaloq/tools/ddk/test/ui/swtbot/util/SwtBotWizardUtil.java | 2 +- .../com/avaloq/tools/ddk/xtext/format/FormatParsingTest.xtend | 2 +- .../tools/ddk/xtext/test/AbstractXtextMarkerBasedTest.java | 2 +- .../ddk/xtext/test/AcfContentAssistProcessorTestBuilder.java | 2 +- .../tools/ddk/xtext/test/formatting/AbstractFormattingTest.java | 2 +- .../tools/ddk/xtext/test/generator/AbstractGeneratorTest.java | 2 +- .../tools/ddk/xtext/test/junit/runners/XtextClassRunner.java | 2 +- .../src/com/avaloq/tools/ddk/xtext/test/model/ModelUtil.java | 2 +- .../test/resource/AbstractResourceDescriptionManagerTest.xtend | 2 +- .../test/ui/contentassist/AbstractContentAssistUiTest.java | 2 +- .../tools/ddk/xtext/test/ui/folding/AbstractFoldingTest.java | 2 +- .../avaloq/tools/ddk/xtext/test/ui/hover/AbstractHoverTest.java | 2 +- .../xtext/test/ui/hyperlinking/AbstractHyperlinkHelperTest.java | 2 +- .../tools/ddk/xtext/test/ui/labeling/AbstractLabelingTest.java | 2 +- .../tools/ddk/xtext/test/ui/outline/AbstractOutlineTest.java | 2 +- .../tools/ddk/xtext/test/ui/quickfix/AbstractQuickFixTest.java | 2 +- .../avaloq/tools/ddk/xtext/formatter/AbstractFormatterTest.java | 2 +- .../src/com/avaloq/tools/ddk/xtext/formatter/FormatterTest.java | 2 +- .../tools/ddk/xtext/linking/AbstractFragmentProviderTest.java | 2 +- .../tools/ddk/xtext/linking/ShortFragmentProviderTest.java | 2 +- .../ui/templates/ResourceNameTemplateVariableResolverTest.java | 2 +- 30 files changed, 30 insertions(+), 30 deletions(-) diff --git a/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/core/test/BugAig830.xtend b/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/core/test/BugAig830.xtend index e5c57fde4..09fb101d8 100644 --- a/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/core/test/BugAig830.xtend +++ b/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/core/test/BugAig830.xtend @@ -19,7 +19,7 @@ import org.eclipse.xtext.testing.InjectWith import org.eclipse.xtext.testing.XtextRunner import org.eclipse.xtext.testing.util.ParseHelper import org.eclipse.xtext.xbase.XbasePackage -import org.junit.Assert +import org.junit.jupiter.api.Assertions import org.junit.Test import org.junit.runner.RunWith diff --git a/com.avaloq.tools.ddk.check.runtime.core.test/src/com/avaloq/tools/ddk/check/runtime/context/CheckContextTest.java b/com.avaloq.tools.ddk.check.runtime.core.test/src/com/avaloq/tools/ddk/check/runtime/context/CheckContextTest.java index f187160c8..936d0788d 100644 --- a/com.avaloq.tools.ddk.check.runtime.core.test/src/com/avaloq/tools/ddk/check/runtime/context/CheckContextTest.java +++ b/com.avaloq.tools.ddk.check.runtime.core.test/src/com/avaloq/tools/ddk/check/runtime/context/CheckContextTest.java @@ -11,7 +11,7 @@ package com.avaloq.tools.ddk.check.runtime.context; import org.eclipse.emf.ecore.EObject; -import org.junit.Assert; +import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Test; import junit.framework.TestCase; diff --git a/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/contentassist/BugAig931Test.java b/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/contentassist/BugAig931Test.java index a05076bf1..57c6432ec 100644 --- a/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/contentassist/BugAig931Test.java +++ b/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/contentassist/BugAig931Test.java @@ -20,7 +20,7 @@ import org.eclipse.osgi.util.NLS; import org.eclipse.ui.progress.UIJob; import org.eclipse.xtext.common.types.access.jdt.IJavaProjectProvider; -import org.junit.Assert; +import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Test; import com.google.common.base.Function; diff --git a/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/quickfix/CheckQuickfixTest.xtend b/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/quickfix/CheckQuickfixTest.xtend index 98a8315ae..f3532e405 100644 --- a/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/quickfix/CheckQuickfixTest.xtend +++ b/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/quickfix/CheckQuickfixTest.xtend @@ -19,7 +19,7 @@ import com.avaloq.tools.ddk.test.ui.swtbot.condition.WaitForEquals import com.avaloq.tools.ddk.test.ui.swtbot.util.ProblemsViewTestUtil import org.eclipse.swtbot.swt.finder.widgets.TimeoutException import org.eclipse.xtext.diagnostics.Diagnostic -import org.junit.Assert +import org.junit.jupiter.api.Assertions import org.junit.Test import static org.junit.jupiter.api.Assertions.fail diff --git a/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/TestPlan.java b/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/TestPlan.java index 0d1427d31..60539a5ca 100644 --- a/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/TestPlan.java +++ b/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/TestPlan.java @@ -18,7 +18,7 @@ import java.util.ListIterator; import java.util.Set; -import org.junit.Assert; +import org.junit.jupiter.api.Assertions; import com.google.common.collect.Collections2; import com.google.common.collect.Lists; diff --git a/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/junit/runners/ClassRunner.java b/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/junit/runners/ClassRunner.java index 327439c53..705fda819 100644 --- a/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/junit/runners/ClassRunner.java +++ b/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/junit/runners/ClassRunner.java @@ -19,7 +19,7 @@ import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; -import org.junit.Assert; +import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; import org.junit.internal.AssumptionViolatedException; diff --git a/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/mock/ExtensionRegistryMock.java b/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/mock/ExtensionRegistryMock.java index a8eb2d487..85b56078b 100644 --- a/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/mock/ExtensionRegistryMock.java +++ b/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/mock/ExtensionRegistryMock.java @@ -25,7 +25,7 @@ import org.eclipse.core.runtime.IExtensionRegistry; import org.eclipse.core.runtime.RegistryFactory; import org.eclipse.emf.common.util.WrappedException; -import org.junit.Assert; +import org.junit.jupiter.api.Assertions; import org.mockito.stubbing.Answer; import com.google.common.collect.LinkedHashMultimap; diff --git a/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/mock/ServiceMock.java b/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/mock/ServiceMock.java index aa8988e36..2a330e2a3 100644 --- a/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/mock/ServiceMock.java +++ b/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/mock/ServiceMock.java @@ -14,7 +14,7 @@ import java.util.Iterator; import java.util.Map; -import org.junit.Assert; +import org.junit.jupiter.api.Assertions; /** diff --git a/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/util/SimpleProgressMonitor.java b/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/util/SimpleProgressMonitor.java index a2ced2e21..e6aa103bb 100644 --- a/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/util/SimpleProgressMonitor.java +++ b/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/util/SimpleProgressMonitor.java @@ -11,7 +11,7 @@ package com.avaloq.tools.ddk.test.core.util; import org.eclipse.core.runtime.IProgressMonitor; -import org.junit.Assert; +import org.junit.jupiter.api.Assertions; /** diff --git a/com.avaloq.tools.ddk.test.ui/src/com/avaloq/tools/ddk/test/ui/swtbot/util/SwtBotWizardUtil.java b/com.avaloq.tools.ddk.test.ui/src/com/avaloq/tools/ddk/test/ui/swtbot/util/SwtBotWizardUtil.java index e0e11cdf2..19b3f927b 100644 --- a/com.avaloq.tools.ddk.test.ui/src/com/avaloq/tools/ddk/test/ui/swtbot/util/SwtBotWizardUtil.java +++ b/com.avaloq.tools.ddk.test.ui/src/com/avaloq/tools/ddk/test/ui/swtbot/util/SwtBotWizardUtil.java @@ -18,7 +18,7 @@ import org.eclipse.swtbot.swt.finder.widgets.SWTBotTree; import org.eclipse.swtbot.swt.finder.widgets.SWTBotTreeItem; import org.eclipse.ui.PlatformUI; -import org.junit.Assert; +import org.junit.jupiter.api.Assertions; import com.avaloq.tools.ddk.test.ui.swtbot.SwtWorkbenchBot; diff --git a/com.avaloq.tools.ddk.xtext.format.test/src/com/avaloq/tools/ddk/xtext/format/FormatParsingTest.xtend b/com.avaloq.tools.ddk.xtext.format.test/src/com/avaloq/tools/ddk/xtext/format/FormatParsingTest.xtend index a196c100c..5aca57ae0 100644 --- a/com.avaloq.tools.ddk.xtext.format.test/src/com/avaloq/tools/ddk/xtext/format/FormatParsingTest.xtend +++ b/com.avaloq.tools.ddk.xtext.format.test/src/com/avaloq/tools/ddk/xtext/format/FormatParsingTest.xtend @@ -8,7 +8,7 @@ import com.google.inject.Inject import org.eclipse.xtext.testing.InjectWith import org.eclipse.xtext.testing.XtextRunner import org.eclipse.xtext.testing.util.ParseHelper -import org.junit.Assert +import org.junit.jupiter.api.Assertions import org.junit.Test import org.junit.runner.RunWith diff --git a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/AbstractXtextMarkerBasedTest.java b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/AbstractXtextMarkerBasedTest.java index c60b1d289..ec00ec3f3 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/AbstractXtextMarkerBasedTest.java +++ b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/AbstractXtextMarkerBasedTest.java @@ -30,7 +30,7 @@ import org.eclipse.xtext.nodemodel.INode; import org.eclipse.xtext.nodemodel.util.NodeModelUtils; import org.eclipse.xtext.xbase.lib.Procedures; -import org.junit.Assert; +import org.junit.jupiter.api.Assertions; import com.google.common.collect.LinkedHashMultimap; import com.google.common.collect.Lists; diff --git a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/AcfContentAssistProcessorTestBuilder.java b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/AcfContentAssistProcessorTestBuilder.java index f958a0693..a61429fc8 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/AcfContentAssistProcessorTestBuilder.java +++ b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/AcfContentAssistProcessorTestBuilder.java @@ -33,7 +33,7 @@ import org.eclipse.xtext.util.Pair; import org.eclipse.xtext.util.StringInputStream; import org.eclipse.xtext.util.Tuples; -import org.junit.Assert; +import org.junit.jupiter.api.Assertions; import com.avaloq.tools.ddk.xtext.ui.util.Function; import com.avaloq.tools.ddk.xtext.ui.util.UiThreadDispatcher; diff --git a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/formatting/AbstractFormattingTest.java b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/formatting/AbstractFormattingTest.java index 748bc45c6..2f35b51b5 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/formatting/AbstractFormattingTest.java +++ b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/formatting/AbstractFormattingTest.java @@ -18,7 +18,7 @@ import org.eclipse.xtext.nodemodel.ICompositeNode; import org.eclipse.xtext.nodemodel.util.NodeModelUtils; import org.eclipse.xtext.resource.SaveOptions; -import org.junit.Assert; +import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Test; import com.avaloq.tools.ddk.xtext.test.AbstractXtextTest; diff --git a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/generator/AbstractGeneratorTest.java b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/generator/AbstractGeneratorTest.java index bb27db83d..182548056 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/generator/AbstractGeneratorTest.java +++ b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/generator/AbstractGeneratorTest.java @@ -44,7 +44,7 @@ import org.eclipse.xtext.ui.testing.util.JavaProjectSetupUtil; import org.eclipse.xtext.ui.util.PluginProjectFactory; import org.junit.jupiter.api.AfterAll; -import org.junit.Assert; +import org.junit.jupiter.api.Assertions; import com.google.common.base.Functions; import com.google.common.base.Predicate; diff --git a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/junit/runners/XtextClassRunner.java b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/junit/runners/XtextClassRunner.java index ea236ecac..768cc8d45 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/junit/runners/XtextClassRunner.java +++ b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/junit/runners/XtextClassRunner.java @@ -20,7 +20,7 @@ import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; import org.eclipse.xtext.testing.XtextRunner; -import org.junit.Assert; +import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Disabled; import org.junit.internal.AssumptionViolatedException; import org.junit.internal.runners.model.EachTestNotifier; diff --git a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/model/ModelUtil.java b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/model/ModelUtil.java index 38153b650..4e7b6ac4e 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/model/ModelUtil.java +++ b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/model/ModelUtil.java @@ -14,7 +14,7 @@ import org.eclipse.emf.ecore.EObject; import org.eclipse.emf.ecore.EStructuralFeature; -import org.junit.Assert; +import org.junit.jupiter.api.Assertions; import com.google.common.collect.Iterables; import com.google.common.collect.Iterators; diff --git a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/resource/AbstractResourceDescriptionManagerTest.xtend b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/resource/AbstractResourceDescriptionManagerTest.xtend index f8b03f267..97b07745a 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/resource/AbstractResourceDescriptionManagerTest.xtend +++ b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/resource/AbstractResourceDescriptionManagerTest.xtend @@ -18,7 +18,7 @@ import org.eclipse.emf.common.util.URI import java.util.Collection import org.eclipse.xtext.resource.IResourceDescription.Delta import com.google.common.collect.HashMultiset -import org.junit.Assert +import org.junit.jupiter.api.Assertions import com.google.common.collect.Sets import com.avaloq.tools.ddk.xtext.test.TestSource diff --git a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/contentassist/AbstractContentAssistUiTest.java b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/contentassist/AbstractContentAssistUiTest.java index 8e8086ede..26cb99bf7 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/contentassist/AbstractContentAssistUiTest.java +++ b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/contentassist/AbstractContentAssistUiTest.java @@ -25,7 +25,7 @@ import org.eclipse.xtext.ui.editor.XtextSourceViewerConfiguration; import org.eclipse.xtext.ui.editor.contentassist.CompletionProposalComputer; import org.eclipse.xtext.ui.editor.contentassist.CompletionProposalComputer.State; -import org.junit.Assert; +import org.junit.jupiter.api.Assertions; import com.avaloq.tools.ddk.xtext.common.ui.contentassist.TemplatesFirstCompletionProposalComparator; import com.avaloq.tools.ddk.xtext.resource.Messages; diff --git a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/folding/AbstractFoldingTest.java b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/folding/AbstractFoldingTest.java index 20ae2ce9c..b59607325 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/folding/AbstractFoldingTest.java +++ b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/folding/AbstractFoldingTest.java @@ -23,7 +23,7 @@ import org.eclipse.xtext.ui.editor.folding.DefaultFoldedPosition; import org.eclipse.xtext.ui.editor.folding.FoldedPosition; import org.eclipse.xtext.ui.editor.folding.IFoldingRegionProvider; -import org.junit.Assert; +import org.junit.jupiter.api.Assertions; import com.avaloq.tools.ddk.test.core.BugTest; import com.avaloq.tools.ddk.xtext.test.ui.AbstractXtextEditorTest; diff --git a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/hover/AbstractHoverTest.java b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/hover/AbstractHoverTest.java index a29a2574b..38db49ecf 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/hover/AbstractHoverTest.java +++ b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/hover/AbstractHoverTest.java @@ -24,7 +24,7 @@ import org.eclipse.emf.ecore.EReference; import org.eclipse.emf.ecore.EStructuralFeature; import org.eclipse.xtext.ui.editor.hover.IEObjectHoverProvider; -import org.junit.Assert; +import org.junit.jupiter.api.Assertions; import com.avaloq.tools.ddk.xtext.test.AbstractXtextTest; diff --git a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/hyperlinking/AbstractHyperlinkHelperTest.java b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/hyperlinking/AbstractHyperlinkHelperTest.java index d1821ecec..7824ae87d 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/hyperlinking/AbstractHyperlinkHelperTest.java +++ b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/hyperlinking/AbstractHyperlinkHelperTest.java @@ -28,7 +28,7 @@ import org.eclipse.xtext.ui.editor.hyperlinking.XtextHyperlink; import org.hamcrest.CoreMatchers; import org.hamcrest.MatcherAssert; -import org.junit.Assert; +import org.junit.jupiter.api.Assertions; import com.avaloq.tools.ddk.xtext.test.ui.AbstractXtextEditorTest; import com.google.common.base.Predicate; diff --git a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/labeling/AbstractLabelingTest.java b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/labeling/AbstractLabelingTest.java index 2d472b3cb..789b1ee49 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/labeling/AbstractLabelingTest.java +++ b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/labeling/AbstractLabelingTest.java @@ -25,7 +25,7 @@ import org.eclipse.jface.viewers.ILabelProvider; import org.eclipse.xtext.util.Pair; import org.eclipse.xtext.util.Tuples; -import org.junit.Assert; +import org.junit.jupiter.api.Assertions; import com.avaloq.tools.ddk.xtext.test.AbstractXtextTest; import org.junit.jupiter.api.Test; diff --git a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/outline/AbstractOutlineTest.java b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/outline/AbstractOutlineTest.java index 53d0d7dfc..80177ffd7 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/outline/AbstractOutlineTest.java +++ b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/outline/AbstractOutlineTest.java @@ -27,7 +27,7 @@ import org.eclipse.xtext.ui.editor.outline.impl.EObjectNode; import org.eclipse.xtext.ui.editor.outline.impl.EStructuralFeatureNode; import org.eclipse.xtext.util.concurrent.IUnitOfWork; -import org.junit.Assert; +import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Test; import com.avaloq.tools.ddk.xtext.test.ui.AbstractXtextEditorTest; diff --git a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/quickfix/AbstractQuickFixTest.java b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/quickfix/AbstractQuickFixTest.java index 8c0a772b8..ac63b3081 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/quickfix/AbstractQuickFixTest.java +++ b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/quickfix/AbstractQuickFixTest.java @@ -23,7 +23,7 @@ import org.eclipse.xtext.validation.Issue; import org.hamcrest.MatcherAssert; import org.hamcrest.text.IsEqualCompressingWhiteSpace; -import org.junit.Assert; +import org.junit.jupiter.api.Assertions; import com.avaloq.tools.ddk.check.runtime.quickfix.ICoreModificationContext; import com.avaloq.tools.ddk.check.runtime.ui.quickfix.CoreIssueModificationContext; diff --git a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/formatter/AbstractFormatterTest.java b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/formatter/AbstractFormatterTest.java index 39407153a..75158da98 100644 --- a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/formatter/AbstractFormatterTest.java +++ b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/formatter/AbstractFormatterTest.java @@ -19,7 +19,7 @@ import org.eclipse.xtext.nodemodel.util.NodeModelUtils; import org.eclipse.xtext.resource.SaveOptions; import org.eclipse.xtext.serializer.ISerializer; -import org.junit.Assert; +import org.junit.jupiter.api.Assertions; import com.avaloq.tools.ddk.xtext.test.AbstractXtextTest; diff --git a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/formatter/FormatterTest.java b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/formatter/FormatterTest.java index 158fd38a6..59210d112 100644 --- a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/formatter/FormatterTest.java +++ b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/formatter/FormatterTest.java @@ -13,7 +13,7 @@ import java.io.IOException; import org.eclipse.xtext.resource.SaveOptions; -import org.junit.Assert; +import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; diff --git a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/linking/AbstractFragmentProviderTest.java b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/linking/AbstractFragmentProviderTest.java index 42b03660d..184493048 100644 --- a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/linking/AbstractFragmentProviderTest.java +++ b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/linking/AbstractFragmentProviderTest.java @@ -11,7 +11,7 @@ package com.avaloq.tools.ddk.xtext.linking; import org.eclipse.emf.ecore.EObject; -import org.junit.Assert; +import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Test; diff --git a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/linking/ShortFragmentProviderTest.java b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/linking/ShortFragmentProviderTest.java index 2ed55953c..2f37a8cc1 100644 --- a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/linking/ShortFragmentProviderTest.java +++ b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/linking/ShortFragmentProviderTest.java @@ -19,7 +19,7 @@ import org.eclipse.emf.ecore.util.EcoreUtil; import org.eclipse.xtext.resource.IFragmentProvider; import org.junit.jupiter.api.*; -import org.junit.Assert; +import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.AfterEach; import org.junit.jupiter.api.Test; diff --git a/com.avaloq.tools.ddk.xtext.ui.test/src/com/avaloq/tools/ddk/xtext/ui/templates/ResourceNameTemplateVariableResolverTest.java b/com.avaloq.tools.ddk.xtext.ui.test/src/com/avaloq/tools/ddk/xtext/ui/templates/ResourceNameTemplateVariableResolverTest.java index ec3290ad5..2290d8f66 100644 --- a/com.avaloq.tools.ddk.xtext.ui.test/src/com/avaloq/tools/ddk/xtext/ui/templates/ResourceNameTemplateVariableResolverTest.java +++ b/com.avaloq.tools.ddk.xtext.ui.test/src/com/avaloq/tools/ddk/xtext/ui/templates/ResourceNameTemplateVariableResolverTest.java @@ -17,7 +17,7 @@ import org.eclipse.xtext.XtextRuntimeModule; import org.eclipse.xtext.ui.editor.model.IXtextDocument; import org.eclipse.xtext.ui.editor.templates.XtextTemplateContext; -import org.junit.Assert; +import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Test; import org.junit.runner.RunWith; import org.mockito.Mockito; From da5dc67f9b9580d681ad2a997b5acfd328d38665 Mon Sep 17 00:00:00 2001 From: Joao Ferreira Date: Thu, 4 Sep 2025 08:35:08 +0200 Subject: [PATCH 51/57] "org.junit.Test" --> "org.junit.jupiter.api.Test" --- .../tools/ddk/check/core/generator/IssueCodeValueTest.xtend | 2 +- .../com/avaloq/tools/ddk/check/core/test/BasicModelTest.xtend | 2 +- .../src/com/avaloq/tools/ddk/check/core/test/BugAig830.xtend | 2 +- .../com/avaloq/tools/ddk/check/core/test/CheckScopingTest.xtend | 2 +- .../ddk/check/core/test/IssueCodeToLabelMapGenerationTest.xtend | 2 +- .../avaloq/tools/ddk/check/core/test/ProjectBasedTests.xtend | 2 +- .../avaloq/tools/ddk/check/formatting/CheckFormattingTest.xtend | 2 +- .../imports/test/CheckRewritableImportSectionFactoryTest.xtend | 2 +- .../ddk/check/validation/CheckApiAccessValidationsTest.xtend | 2 +- .../avaloq/tools/ddk/check/validation/CheckValidationTest.xtend | 2 +- .../check/test/runtime/CheckConfigurationIsAppliedTest.xtend | 2 +- .../test/runtime/CheckExecutionEnvironmentProjectTest.xtend | 2 +- .../tools/ddk/check/test/runtime/label/IssueLabelTest.xtend | 2 +- .../tools/ddk/check/ui/test/quickfix/CheckQuickfixTest.xtend | 2 +- .../ddk/checkcfg/contentassist/CheckCfgContentAssistTest.xtend | 2 +- .../avaloq/tools/ddk/checkcfg/syntax/CheckCfgSyntaxTest.xtend | 2 +- .../validation/CheckCfgConfiguredParameterValidationsTest.xtend | 2 +- .../com/avaloq/tools/ddk/checkcfg/validation/CheckCfgTest.xtend | 2 +- .../helloworld/check/CheckConfigurationIsAppliedTest.xtend | 2 +- .../helloworld/check/CheckExecutionEnvironmentProjectTest.xtend | 2 +- .../tools/ddk/sample/helloworld/label/IssueLabelTest.xtend | 2 +- .../com/avaloq/tools/ddk/xtext/format/FormatParsingTest.xtend | 2 +- .../xtext/generator/xbase/test/XbaseGeneratorFragmentTest.xtend | 2 +- .../xtext/ui/templates/TemplateProposalProviderHelperTest.xtend | 2 +- 24 files changed, 24 insertions(+), 24 deletions(-) diff --git a/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/core/generator/IssueCodeValueTest.xtend b/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/core/generator/IssueCodeValueTest.xtend index 26ad42659..55b67b4f4 100644 --- a/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/core/generator/IssueCodeValueTest.xtend +++ b/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/core/generator/IssueCodeValueTest.xtend @@ -16,7 +16,7 @@ import org.junit.runner.RunWith import com.avaloq.tools.ddk.check.CheckInjectorProvider import org.eclipse.xtext.testing.XtextRunner import com.avaloq.tools.ddk.check.core.test.AbstractCheckGenerationTestCase -import org.junit.Test +import org.junit.jupiter.api.Test import java.util.List import org.eclipse.xtext.xbase.testing.JavaSource import java.io.ByteArrayInputStream diff --git a/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/core/test/BasicModelTest.xtend b/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/core/test/BasicModelTest.xtend index 6e233c15b..d3735b5e0 100644 --- a/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/core/test/BasicModelTest.xtend +++ b/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/core/test/BasicModelTest.xtend @@ -22,7 +22,7 @@ import org.eclipse.xtext.testing.InjectWith import org.eclipse.xtext.testing.XtextRunner import org.eclipse.xtext.testing.util.ParseHelper import org.junit.Ignore -import org.junit.Test +import org.junit.jupiter.api.Test import org.junit.runner.RunWith import static org.junit.jupiter.api.Assertions.* diff --git a/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/core/test/BugAig830.xtend b/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/core/test/BugAig830.xtend index 09fb101d8..a9d187313 100644 --- a/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/core/test/BugAig830.xtend +++ b/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/core/test/BugAig830.xtend @@ -20,7 +20,7 @@ import org.eclipse.xtext.testing.XtextRunner import org.eclipse.xtext.testing.util.ParseHelper import org.eclipse.xtext.xbase.XbasePackage import org.junit.jupiter.api.Assertions -import org.junit.Test +import org.junit.jupiter.api.Test import org.junit.runner.RunWith @InjectWith(typeof(CheckUiInjectorProvider)) diff --git a/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/core/test/CheckScopingTest.xtend b/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/core/test/CheckScopingTest.xtend index 7433dd641..bab88e16c 100644 --- a/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/core/test/CheckScopingTest.xtend +++ b/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/core/test/CheckScopingTest.xtend @@ -22,7 +22,7 @@ import java.util.List import org.eclipse.xtext.testing.InjectWith import org.eclipse.xtext.testing.XtextRunner import org.eclipse.xtext.ui.testing.util.IResourcesSetupUtil -import org.junit.Test +import org.junit.jupiter.api.Test import org.junit.runner.RunWith @InjectWith(typeof(CheckUiInjectorProvider)) diff --git a/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/core/test/IssueCodeToLabelMapGenerationTest.xtend b/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/core/test/IssueCodeToLabelMapGenerationTest.xtend index c5b381b55..57ba171a8 100644 --- a/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/core/test/IssueCodeToLabelMapGenerationTest.xtend +++ b/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/core/test/IssueCodeToLabelMapGenerationTest.xtend @@ -15,7 +15,7 @@ import com.avaloq.tools.ddk.check.CheckInjectorProvider import java.io.ByteArrayInputStream import org.eclipse.xtext.testing.InjectWith import org.eclipse.xtext.testing.XtextRunner -import org.junit.Test +import org.junit.jupiter.api.Test import org.junit.runner.RunWith import java.util.List import org.eclipse.xtext.xbase.testing.JavaSource diff --git a/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/core/test/ProjectBasedTests.xtend b/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/core/test/ProjectBasedTests.xtend index 10d3b47e0..a822bfdca 100644 --- a/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/core/test/ProjectBasedTests.xtend +++ b/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/core/test/ProjectBasedTests.xtend @@ -20,7 +20,7 @@ import org.eclipse.core.resources.IProject import org.eclipse.core.resources.IResource import org.eclipse.xtext.testing.InjectWith import org.eclipse.xtext.testing.XtextRunner -import org.junit.Test +import org.junit.jupiter.api.Test import org.junit.runner.RunWith import org.eclipse.xtext.ui.testing.util.IResourcesSetupUtil diff --git a/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/formatting/CheckFormattingTest.xtend b/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/formatting/CheckFormattingTest.xtend index 4b7f8c067..247a07477 100644 --- a/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/formatting/CheckFormattingTest.xtend +++ b/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/formatting/CheckFormattingTest.xtend @@ -18,7 +18,7 @@ import org.eclipse.xtext.preferences.MapBasedPreferenceValues import org.eclipse.xtext.testing.InjectWith import org.eclipse.xtext.testing.XtextRunner import org.eclipse.xtext.testing.formatter.FormatterTestHelper -import org.junit.Test +import org.junit.jupiter.api.Test import org.junit.runner.RunWith @InjectWith(typeof(CheckUiInjectorProvider)) diff --git a/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/imports/test/CheckRewritableImportSectionFactoryTest.xtend b/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/imports/test/CheckRewritableImportSectionFactoryTest.xtend index 40b8fe54f..6e00a7bc6 100644 --- a/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/imports/test/CheckRewritableImportSectionFactoryTest.xtend +++ b/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/imports/test/CheckRewritableImportSectionFactoryTest.xtend @@ -19,7 +19,7 @@ import org.eclipse.emf.common.util.URI import org.eclipse.emf.ecore.EObject import org.eclipse.xtext.resource.XtextResource import org.eclipse.xtext.testing.XtextRunner -import org.junit.Test +import org.junit.jupiter.api.Test import org.junit.runner.RunWith import static org.mockito.Mockito.mock diff --git a/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/validation/CheckApiAccessValidationsTest.xtend b/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/validation/CheckApiAccessValidationsTest.xtend index 37f141b58..ca4b53ffe 100644 --- a/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/validation/CheckApiAccessValidationsTest.xtend +++ b/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/validation/CheckApiAccessValidationsTest.xtend @@ -13,7 +13,7 @@ import org.eclipse.xtext.testing.InjectWith import org.junit.runner.RunWith import org.eclipse.xtext.testing.XtextRunner import com.avaloq.tools.ddk.check.CheckUiInjectorProvider -import org.junit.Test +import org.junit.jupiter.api.Test import com.google.inject.Inject import org.eclipse.xtext.testing.util.ParseHelper import com.avaloq.tools.ddk.check.check.CheckCatalog diff --git a/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/validation/CheckValidationTest.xtend b/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/validation/CheckValidationTest.xtend index 340eb56c3..326bed903 100644 --- a/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/validation/CheckValidationTest.xtend +++ b/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/validation/CheckValidationTest.xtend @@ -21,7 +21,7 @@ import org.eclipse.xtext.testing.util.ParseHelper import org.eclipse.xtext.testing.validation.ValidationTestHelper import org.eclipse.xtext.xbase.XbasePackage$Literals import org.junit.Ignore -import org.junit.Test +import org.junit.jupiter.api.Test import org.junit.runner.RunWith import com.avaloq.tools.ddk.check.validation.IssueCodes import com.avaloq.tools.ddk.check.check.CheckPackage diff --git a/com.avaloq.tools.ddk.check.test.runtime.tests/src/com/avaloq/tools/ddk/check/test/runtime/CheckConfigurationIsAppliedTest.xtend b/com.avaloq.tools.ddk.check.test.runtime.tests/src/com/avaloq/tools/ddk/check/test/runtime/CheckConfigurationIsAppliedTest.xtend index 5e7b6983e..48ecfad6a 100644 --- a/com.avaloq.tools.ddk.check.test.runtime.tests/src/com/avaloq/tools/ddk/check/test/runtime/CheckConfigurationIsAppliedTest.xtend +++ b/com.avaloq.tools.ddk.check.test.runtime.tests/src/com/avaloq/tools/ddk/check/test/runtime/CheckConfigurationIsAppliedTest.xtend @@ -23,7 +23,7 @@ import org.eclipse.xtext.testing.InjectWith import org.eclipse.xtext.testing.XtextRunner import org.eclipse.xtext.testing.validation.ValidationTestHelper import org.eclipse.xtext.ui.testing.util.IResourcesSetupUtil -import org.junit.Test +import org.junit.jupiter.api.Test import org.junit.runner.RunWith @InjectWith(typeof(TestLanguageUiInjectorProvider)) diff --git a/com.avaloq.tools.ddk.check.test.runtime.tests/src/com/avaloq/tools/ddk/check/test/runtime/CheckExecutionEnvironmentProjectTest.xtend b/com.avaloq.tools.ddk.check.test.runtime.tests/src/com/avaloq/tools/ddk/check/test/runtime/CheckExecutionEnvironmentProjectTest.xtend index 97ee56ff3..2afef11d8 100644 --- a/com.avaloq.tools.ddk.check.test.runtime.tests/src/com/avaloq/tools/ddk/check/test/runtime/CheckExecutionEnvironmentProjectTest.xtend +++ b/com.avaloq.tools.ddk.check.test.runtime.tests/src/com/avaloq/tools/ddk/check/test/runtime/CheckExecutionEnvironmentProjectTest.xtend @@ -22,7 +22,7 @@ import org.eclipse.xtext.testing.InjectWith import org.eclipse.xtext.testing.XtextRunner import org.eclipse.xtext.testing.util.ParseHelper import org.eclipse.xtext.testing.validation.ValidationTestHelper -import org.junit.Test +import org.junit.jupiter.api.Test import org.junit.runner.RunWith @InjectWith(typeof(TestLanguageUiInjectorProvider)) diff --git a/com.avaloq.tools.ddk.check.test.runtime.tests/src/com/avaloq/tools/ddk/check/test/runtime/label/IssueLabelTest.xtend b/com.avaloq.tools.ddk.check.test.runtime.tests/src/com/avaloq/tools/ddk/check/test/runtime/label/IssueLabelTest.xtend index 68142c89a..7071adcfc 100644 --- a/com.avaloq.tools.ddk.check.test.runtime.tests/src/com/avaloq/tools/ddk/check/test/runtime/label/IssueLabelTest.xtend +++ b/com.avaloq.tools.ddk.check.test.runtime.tests/src/com/avaloq/tools/ddk/check/test/runtime/label/IssueLabelTest.xtend @@ -15,7 +15,7 @@ import com.avaloq.tools.ddk.check.runtime.label.ICheckRuleLabelProvider import com.avaloq.tools.ddk.check.validation.LibraryChecksIssueCodes import com.google.inject.AbstractModule import com.google.inject.Guice -import org.junit.Test +import org.junit.jupiter.api.Test import static org.junit.jupiter.api.Assertions.assertEquals import static org.junit.jupiter.api.Assertions.assertNotNull diff --git a/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/quickfix/CheckQuickfixTest.xtend b/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/quickfix/CheckQuickfixTest.xtend index f3532e405..7e0281ad0 100644 --- a/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/quickfix/CheckQuickfixTest.xtend +++ b/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/quickfix/CheckQuickfixTest.xtend @@ -20,7 +20,7 @@ import com.avaloq.tools.ddk.test.ui.swtbot.util.ProblemsViewTestUtil import org.eclipse.swtbot.swt.finder.widgets.TimeoutException import org.eclipse.xtext.diagnostics.Diagnostic import org.junit.jupiter.api.Assertions -import org.junit.Test +import org.junit.jupiter.api.Test import static org.junit.jupiter.api.Assertions.fail diff --git a/com.avaloq.tools.ddk.checkcfg.core.test/src/com/avaloq/tools/ddk/checkcfg/contentassist/CheckCfgContentAssistTest.xtend b/com.avaloq.tools.ddk.checkcfg.core.test/src/com/avaloq/tools/ddk/checkcfg/contentassist/CheckCfgContentAssistTest.xtend index e9985f811..fb2d9f7aa 100644 --- a/com.avaloq.tools.ddk.checkcfg.core.test/src/com/avaloq/tools/ddk/checkcfg/contentassist/CheckCfgContentAssistTest.xtend +++ b/com.avaloq.tools.ddk.checkcfg.core.test/src/com/avaloq/tools/ddk/checkcfg/contentassist/CheckCfgContentAssistTest.xtend @@ -16,7 +16,7 @@ import com.avaloq.tools.ddk.test.checkcfg.TestPropertySpecificationWithExpectedV import com.avaloq.tools.ddk.test.checkcfg.TestPropertySpecificationWithOutExpectedValues import com.avaloq.tools.ddk.xtext.test.contentassist.AbstractAcfContentAssistTest import com.google.common.collect.Lists -import org.junit.Test +import org.junit.jupiter.api.Test import static com.avaloq.tools.ddk.checkcfg.CheckCfgConstants.PROPERTY_EXECUTABLE_EXTENSION_ATTRIBUTE import static com.avaloq.tools.ddk.checkcfg.CheckCfgConstants.PROPERTY_EXTENSION_POINT diff --git a/com.avaloq.tools.ddk.checkcfg.core.test/src/com/avaloq/tools/ddk/checkcfg/syntax/CheckCfgSyntaxTest.xtend b/com.avaloq.tools.ddk.checkcfg.core.test/src/com/avaloq/tools/ddk/checkcfg/syntax/CheckCfgSyntaxTest.xtend index 978c127b6..58c964040 100644 --- a/com.avaloq.tools.ddk.checkcfg.core.test/src/com/avaloq/tools/ddk/checkcfg/syntax/CheckCfgSyntaxTest.xtend +++ b/com.avaloq.tools.ddk.checkcfg.core.test/src/com/avaloq/tools/ddk/checkcfg/syntax/CheckCfgSyntaxTest.xtend @@ -15,7 +15,7 @@ import com.avaloq.tools.ddk.checkcfg.util.CheckCfgTestUtil import com.avaloq.tools.ddk.xtext.test.validation.AbstractValidationTest import java.util.LinkedList import org.eclipse.xtext.ui.testing.util.IResourcesSetupUtil -import org.junit.Test +import org.junit.jupiter.api.Test class CheckCfgSyntaxTest extends AbstractValidationTest { diff --git a/com.avaloq.tools.ddk.checkcfg.core.test/src/com/avaloq/tools/ddk/checkcfg/validation/CheckCfgConfiguredParameterValidationsTest.xtend b/com.avaloq.tools.ddk.checkcfg.core.test/src/com/avaloq/tools/ddk/checkcfg/validation/CheckCfgConfiguredParameterValidationsTest.xtend index 015a28f1c..652212cd1 100644 --- a/com.avaloq.tools.ddk.checkcfg.core.test/src/com/avaloq/tools/ddk/checkcfg/validation/CheckCfgConfiguredParameterValidationsTest.xtend +++ b/com.avaloq.tools.ddk.checkcfg.core.test/src/com/avaloq/tools/ddk/checkcfg/validation/CheckCfgConfiguredParameterValidationsTest.xtend @@ -16,7 +16,7 @@ import com.avaloq.tools.ddk.test.checkcfg.TestPropertySpecificationWithExpectedV import com.avaloq.tools.ddk.test.checkcfg.TestPropertySpecificationWithOutExpectedValues import com.avaloq.tools.ddk.xtext.test.validation.AbstractValidationTest import com.google.common.collect.Lists -import org.junit.Test +import org.junit.jupiter.api.Test import static com.avaloq.tools.ddk.checkcfg.CheckCfgConstants.PROPERTY_EXECUTABLE_EXTENSION_ATTRIBUTE import static com.avaloq.tools.ddk.checkcfg.CheckCfgConstants.PROPERTY_EXTENSION_POINT diff --git a/com.avaloq.tools.ddk.checkcfg.core.test/src/com/avaloq/tools/ddk/checkcfg/validation/CheckCfgTest.xtend b/com.avaloq.tools.ddk.checkcfg.core.test/src/com/avaloq/tools/ddk/checkcfg/validation/CheckCfgTest.xtend index b3e3b4ca3..847faf355 100644 --- a/com.avaloq.tools.ddk.checkcfg.core.test/src/com/avaloq/tools/ddk/checkcfg/validation/CheckCfgTest.xtend +++ b/com.avaloq.tools.ddk.checkcfg.core.test/src/com/avaloq/tools/ddk/checkcfg/validation/CheckCfgTest.xtend @@ -17,7 +17,7 @@ import junit.framework.TestCase import org.eclipse.xtext.testing.XtextRunner import org.eclipse.xtext.testing.util.ParseHelper import org.eclipse.xtext.testing.validation.ValidationTestHelper -import org.junit.Test +import org.junit.jupiter.api.Test import org.junit.runner.RunWith import org.eclipse.xtext.testing.InjectWith import com.avaloq.tools.ddk.checkcfg.CheckCfgUiInjectorProvider diff --git a/com.avaloq.tools.ddk.sample.helloworld.ui.test/src/com/avaloq/tools/ddk/sample/helloworld/check/CheckConfigurationIsAppliedTest.xtend b/com.avaloq.tools.ddk.sample.helloworld.ui.test/src/com/avaloq/tools/ddk/sample/helloworld/check/CheckConfigurationIsAppliedTest.xtend index 7a4f8e9b6..d0efb358c 100644 --- a/com.avaloq.tools.ddk.sample.helloworld.ui.test/src/com/avaloq/tools/ddk/sample/helloworld/check/CheckConfigurationIsAppliedTest.xtend +++ b/com.avaloq.tools.ddk.sample.helloworld.ui.test/src/com/avaloq/tools/ddk/sample/helloworld/check/CheckConfigurationIsAppliedTest.xtend @@ -18,7 +18,7 @@ import org.eclipse.xtext.testing.InjectWith import org.eclipse.xtext.testing.XtextRunner import org.eclipse.xtext.testing.validation.ValidationTestHelper import org.eclipse.xtext.ui.testing.util.IResourcesSetupUtil -import org.junit.Test +import org.junit.jupiter.api.Test import org.junit.runner.RunWith import com.avaloq.tools.ddk.sample.helloworld.helloWorld.Model import com.avaloq.tools.ddk.sample.helloworld.ui.internal.HelloworldActivator diff --git a/com.avaloq.tools.ddk.sample.helloworld.ui.test/src/com/avaloq/tools/ddk/sample/helloworld/check/CheckExecutionEnvironmentProjectTest.xtend b/com.avaloq.tools.ddk.sample.helloworld.ui.test/src/com/avaloq/tools/ddk/sample/helloworld/check/CheckExecutionEnvironmentProjectTest.xtend index 6ee7691b4..bb49723ff 100644 --- a/com.avaloq.tools.ddk.sample.helloworld.ui.test/src/com/avaloq/tools/ddk/sample/helloworld/check/CheckExecutionEnvironmentProjectTest.xtend +++ b/com.avaloq.tools.ddk.sample.helloworld.ui.test/src/com/avaloq/tools/ddk/sample/helloworld/check/CheckExecutionEnvironmentProjectTest.xtend @@ -16,7 +16,7 @@ import org.eclipse.xtext.testing.InjectWith import org.eclipse.xtext.testing.XtextRunner import org.eclipse.xtext.testing.util.ParseHelper import org.eclipse.xtext.testing.validation.ValidationTestHelper -import org.junit.Test +import org.junit.jupiter.api.Test import org.junit.runner.RunWith import com.avaloq.tools.ddk.sample.helloworld.ui.internal.HelloworldActivator import com.avaloq.tools.ddk.sample.helloworld.helloWorld.Model diff --git a/com.avaloq.tools.ddk.sample.helloworld.ui.test/src/com/avaloq/tools/ddk/sample/helloworld/label/IssueLabelTest.xtend b/com.avaloq.tools.ddk.sample.helloworld.ui.test/src/com/avaloq/tools/ddk/sample/helloworld/label/IssueLabelTest.xtend index 828c0a268..2d1fdaf53 100644 --- a/com.avaloq.tools.ddk.sample.helloworld.ui.test/src/com/avaloq/tools/ddk/sample/helloworld/label/IssueLabelTest.xtend +++ b/com.avaloq.tools.ddk.sample.helloworld.ui.test/src/com/avaloq/tools/ddk/sample/helloworld/label/IssueLabelTest.xtend @@ -12,7 +12,7 @@ package com.avaloq.tools.ddk.sample.helloworld.label import com.google.inject.AbstractModule import com.google.inject.Guice -import org.junit.Test +import org.junit.jupiter.api.Test import static org.junit.jupiter.api.Assertions.assertEquals import static org.junit.jupiter.api.Assertions.assertNotNull diff --git a/com.avaloq.tools.ddk.xtext.format.test/src/com/avaloq/tools/ddk/xtext/format/FormatParsingTest.xtend b/com.avaloq.tools.ddk.xtext.format.test/src/com/avaloq/tools/ddk/xtext/format/FormatParsingTest.xtend index 5aca57ae0..a3e25c484 100644 --- a/com.avaloq.tools.ddk.xtext.format.test/src/com/avaloq/tools/ddk/xtext/format/FormatParsingTest.xtend +++ b/com.avaloq.tools.ddk.xtext.format.test/src/com/avaloq/tools/ddk/xtext/format/FormatParsingTest.xtend @@ -9,7 +9,7 @@ import org.eclipse.xtext.testing.InjectWith import org.eclipse.xtext.testing.XtextRunner import org.eclipse.xtext.testing.util.ParseHelper import org.junit.jupiter.api.Assertions -import org.junit.Test +import org.junit.jupiter.api.Test import org.junit.runner.RunWith @RunWith(XtextRunner) diff --git a/com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/xbase/test/XbaseGeneratorFragmentTest.xtend b/com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/xbase/test/XbaseGeneratorFragmentTest.xtend index abdec160f..2e8190056 100644 --- a/com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/xbase/test/XbaseGeneratorFragmentTest.xtend +++ b/com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/xbase/test/XbaseGeneratorFragmentTest.xtend @@ -26,7 +26,7 @@ import org.eclipse.xtext.RuleCall import org.eclipse.xtext.TypeRef import org.eclipse.xtext.XtextPackage import org.eclipse.xtext.testing.XtextRunner -import org.junit.Test +import org.junit.jupiter.api.Test import org.junit.runner.RunWith import static org.mockito.Mockito.mock diff --git a/com.avaloq.tools.ddk.xtext.ui.test/src/com/avaloq/tools/ddk/xtext/ui/templates/TemplateProposalProviderHelperTest.xtend b/com.avaloq.tools.ddk.xtext.ui.test/src/com/avaloq/tools/ddk/xtext/ui/templates/TemplateProposalProviderHelperTest.xtend index 3b1ddd09b..76df10a14 100644 --- a/com.avaloq.tools.ddk.xtext.ui.test/src/com/avaloq/tools/ddk/xtext/ui/templates/TemplateProposalProviderHelperTest.xtend +++ b/com.avaloq.tools.ddk.xtext.ui.test/src/com/avaloq/tools/ddk/xtext/ui/templates/TemplateProposalProviderHelperTest.xtend @@ -22,7 +22,7 @@ import org.eclipse.jface.text.templates.Template import org.eclipse.xtext.XtextRuntimeModule import org.eclipse.xtext.ui.editor.templates.XtextTemplateContext import org.eclipse.xtext.ui.editor.templates.XtextTemplateContextType -import org.junit.Test +import org.junit.jupiter.api.Test import org.junit.runner.RunWith import static org.junit.jupiter.api.Assertions.assertArrayEquals From 0210b42fd12eef79974c8406409168e0608bd90c Mon Sep 17 00:00:00 2001 From: Joao Ferreira Date: Thu, 4 Sep 2025 08:38:24 +0200 Subject: [PATCH 52/57] "org.junit.Ignore" --> "org.junit.jupiter.api.Disabled" --- .../com/avaloq/tools/ddk/check/core/test/BasicModelTest.xtend | 4 ++-- .../tools/ddk/check/validation/CheckValidationTest.xtend | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/core/test/BasicModelTest.xtend b/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/core/test/BasicModelTest.xtend index d3735b5e0..7fec83879 100644 --- a/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/core/test/BasicModelTest.xtend +++ b/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/core/test/BasicModelTest.xtend @@ -21,7 +21,7 @@ import org.eclipse.xtext.resource.XtextResource import org.eclipse.xtext.testing.InjectWith import org.eclipse.xtext.testing.XtextRunner import org.eclipse.xtext.testing.util.ParseHelper -import org.junit.Ignore +import org.junit.jupiter.api.Disabled import org.junit.jupiter.api.Test import org.junit.runner.RunWith @@ -73,8 +73,8 @@ class BasicModelTest { } /* Tests that Checks documented with ML_COMMENTs have an inferred description field. */ + @Disabled("Fails because DocumentedImplCustom uses the null resource description provider to get the document provider") @Test - @Ignore("Fails because DocumentedImplCustom uses the null resource description provider to get the document provider") def void testInferingOfDescription() { val check = util.getFirstInstanceOf(parser.parse(modelUtil.modelWithCheck), typeof(Check)) assertEquals("No documentation.", check.description) diff --git a/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/validation/CheckValidationTest.xtend b/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/validation/CheckValidationTest.xtend index 326bed903..1599d26f5 100644 --- a/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/validation/CheckValidationTest.xtend +++ b/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/validation/CheckValidationTest.xtend @@ -20,7 +20,7 @@ import org.eclipse.xtext.testing.XtextRunner import org.eclipse.xtext.testing.util.ParseHelper import org.eclipse.xtext.testing.validation.ValidationTestHelper import org.eclipse.xtext.xbase.XbasePackage$Literals -import org.junit.Ignore +import org.junit.jupiter.api.Disabled import org.junit.jupiter.api.Test import org.junit.runner.RunWith import com.avaloq.tools.ddk.check.validation.IssueCodes @@ -96,8 +96,8 @@ class CheckValidationTest { } /* Tests checkContextTypeIsUnique(Check) */ + @Disabled("Tests do not work because of scoping issues at run-time") @Test - @Ignore("Tests do not work because of scoping issues at run-time") def void testContextTypeIsUnique() { // should fail var contexts = Lists::newArrayList("for C c {issue}", "for C d {issue}") From 65b1ef4f5bfb82b12144c22d5029425b7ac79dc0 Mon Sep 17 00:00:00 2001 From: Joao Ferreira Date: Thu, 4 Sep 2025 08:42:49 +0200 Subject: [PATCH 53/57] Remove JUnit3's "extends TestCase" pattern --- .../core/test/AbstractCheckTestCase.java | 9 +++++---- .../CheckJavaValidatorUtilTest.java | 6 +++--- .../runtime/context/CheckContextTest.java | 5 +---- .../registry/CheckExtensionPointTests.java | 8 +++++--- .../builder/CheckContextsExtensionTest.java | 12 +++++++----- .../test/builder/CheckTocExtensionTest.java | 19 +++++++++++-------- .../checkcfg/validation/CheckCfgTest.xtend | 7 +++---- .../validation/CheckCfgValidationTest.java | 5 +---- .../test/XbaseGeneratorFragmentTest.xtend | 3 +-- 9 files changed, 37 insertions(+), 37 deletions(-) diff --git a/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/core/test/AbstractCheckTestCase.java b/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/core/test/AbstractCheckTestCase.java index 4d49d8316..2cfe1ac08 100644 --- a/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/core/test/AbstractCheckTestCase.java +++ b/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/core/test/AbstractCheckTestCase.java @@ -11,6 +11,9 @@ package com.avaloq.tools.ddk.check.core.test; import static com.google.common.collect.Sets.newHashSet; +import org.junit.jupiter.api.Assertions.assertEquals; +import org.junit.jupiter.api.Assertions.assertNotNull; +import org.junit.jupiter.api.Assertions.fail; import java.io.IOException; import java.io.InputStream; @@ -19,8 +22,8 @@ import java.util.List; import java.util.Set; -import org.apache.logging.log4j.Logger; import org.apache.logging.log4j.LogManager; +import org.apache.logging.log4j.Logger; import org.eclipse.core.resources.IFile; import org.eclipse.core.resources.IProject; import org.eclipse.core.resources.IWorkspaceRoot; @@ -54,14 +57,12 @@ import com.google.inject.Injector; import com.google.inject.Provider; -import junit.framework.TestCase; - /** * An abstract test class for tests on Check models. Allows creating a project and adding files. */ @SuppressWarnings({"PMD.SignatureDeclareThrowsException", "restriction"}) -public abstract class AbstractCheckTestCase extends TestCase { +public abstract class AbstractCheckTestCase { private static final int TWO_KILO_BYTES = 2048; protected static final Logger LOGGER = LogManager.getLogger(AbstractCheckTestCase.class); private static final PluginTestProjectManager PROJECT_MANAGER = new PluginTestProjectManager(CheckActivator.getInstance().getInjector(CheckConstants.GRAMMAR)); diff --git a/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/validation/CheckJavaValidatorUtilTest.java b/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/validation/CheckJavaValidatorUtilTest.java index 4d3df047d..99a32e931 100644 --- a/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/validation/CheckJavaValidatorUtilTest.java +++ b/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/validation/CheckJavaValidatorUtilTest.java @@ -10,6 +10,8 @@ *******************************************************************************/ package com.avaloq.tools.ddk.check.validation; +import org.junit.jupiter.api.Assertions.assertTrue; + import org.eclipse.core.runtime.IStatus; import org.eclipse.xtext.testing.InjectWith; import org.eclipse.xtext.testing.XtextRunner; @@ -19,8 +21,6 @@ import com.avaloq.tools.ddk.check.CheckUiInjectorProvider; import com.google.inject.Inject; -import junit.framework.TestCase; - /** * Tests for com.avaloq.tools.ddk.check.validation.CheckJavaValidatorUtil. @@ -28,7 +28,7 @@ @InjectWith(CheckUiInjectorProvider.class) @RunWith(XtextRunner.class) -public class CheckJavaValidatorUtilTest extends TestCase { +public class CheckJavaValidatorUtilTest { // assertion messages. private static final String STARTS_WITH_LOWER_CASE = "starts with lower case"; diff --git a/com.avaloq.tools.ddk.check.runtime.core.test/src/com/avaloq/tools/ddk/check/runtime/context/CheckContextTest.java b/com.avaloq.tools.ddk.check.runtime.core.test/src/com/avaloq/tools/ddk/check/runtime/context/CheckContextTest.java index 936d0788d..4594fbb55 100644 --- a/com.avaloq.tools.ddk.check.runtime.core.test/src/com/avaloq/tools/ddk/check/runtime/context/CheckContextTest.java +++ b/com.avaloq.tools.ddk.check.runtime.core.test/src/com/avaloq/tools/ddk/check/runtime/context/CheckContextTest.java @@ -11,16 +11,13 @@ package com.avaloq.tools.ddk.check.runtime.context; import org.eclipse.emf.ecore.EObject; -import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Test; -import junit.framework.TestCase; - /** * Provides some tests of the reflective {@link AbstractCheckContext} framework. */ -public class CheckContextTest extends TestCase { +public class CheckContextTest { public static final String ENABLED_ISSUE_CODE = "Enabled.Issue.Code"; public static final String DISABLED_ISSUE_CODE = "Disabled.Issue.Code"; diff --git a/com.avaloq.tools.ddk.check.runtime.core.test/src/com/avaloq/tools/ddk/check/runtime/core/registry/CheckExtensionPointTests.java b/com.avaloq.tools.ddk.check.runtime.core.test/src/com/avaloq/tools/ddk/check/runtime/core/registry/CheckExtensionPointTests.java index 5fbe2b8f2..e937a5a63 100644 --- a/com.avaloq.tools.ddk.check.runtime.core.test/src/com/avaloq/tools/ddk/check/runtime/core/registry/CheckExtensionPointTests.java +++ b/com.avaloq.tools.ddk.check.runtime.core.test/src/com/avaloq/tools/ddk/check/runtime/core/registry/CheckExtensionPointTests.java @@ -10,6 +10,10 @@ *******************************************************************************/ package com.avaloq.tools.ddk.check.runtime.core.registry; +import org.junit.jupiter.api.Assertions.assertNotNull; +import org.junit.jupiter.api.Assertions.assertNull; +import org.junit.jupiter.api.Assertions.fail; + import java.util.List; import java.util.NoSuchElementException; @@ -21,13 +25,11 @@ import com.google.common.collect.Iterables; import com.google.common.collect.Lists; -import junit.framework.TestCase; - /** * Provides some test cases for the Check extension point. */ -public class CheckExtensionPointTests extends TestCase { +public class CheckExtensionPointTests { private static final String DUMMY_EXTENSION_ID = "com.avaloq.tools.ddk.check.runtime.core.test"; private static final String CHECK_EXTENSION_ID = "com.avaloq.tools.ddk.check.runtime.core"; diff --git a/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/builder/CheckContextsExtensionTest.java b/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/builder/CheckContextsExtensionTest.java index 65aee9160..4ec0e2ceb 100644 --- a/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/builder/CheckContextsExtensionTest.java +++ b/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/builder/CheckContextsExtensionTest.java @@ -10,6 +10,10 @@ *******************************************************************************/ package com.avaloq.tools.ddk.check.ui.test.builder; +import org.junit.jupiter.api.Assertions.assertEquals; +import org.junit.jupiter.api.Assertions.assertFalse; +import org.junit.jupiter.api.Assertions.assertTrue; + import org.eclipse.core.resources.IFile; import org.eclipse.core.resources.IWorkspace; import org.eclipse.core.runtime.CoreException; @@ -18,11 +22,11 @@ import org.eclipse.pde.core.plugin.IPluginExtension; import org.eclipse.pde.core.plugin.IPluginModelBase; import org.eclipse.pde.internal.core.plugin.WorkspacePluginModel; +import org.eclipse.xtext.testing.InjectWith; import org.eclipse.xtext.testing.XtextRunner; import org.eclipse.xtext.testing.util.ParseHelper; -import org.eclipse.xtext.testing.InjectWith; -import org.junit.jupiter.api.Test; import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; import org.junit.runner.RunWith; import com.avaloq.tools.ddk.check.check.CheckCatalog; @@ -33,8 +37,6 @@ import com.google.common.collect.Lists; import com.google.inject.Inject; -import junit.framework.TestCase; - /** * Tests CheckContextExtensionUtil. @@ -42,7 +44,7 @@ @SuppressWarnings("restriction") @InjectWith(CheckWizardUiTestInjectorProvider.class) @RunWith(XtextRunner.class) -public class CheckContextsExtensionTest extends TestCase { +public class CheckContextsExtensionTest { private static final String CATALOG_WITH_FIRST_CHECK_LIVE = "package com.test catalog c for grammar g { live error \"First Check\"{ for g { issue }}}"; diff --git a/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/builder/CheckTocExtensionTest.java b/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/builder/CheckTocExtensionTest.java index 992ed23da..76943c16a 100644 --- a/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/builder/CheckTocExtensionTest.java +++ b/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/builder/CheckTocExtensionTest.java @@ -10,7 +10,10 @@ *******************************************************************************/ package com.avaloq.tools.ddk.check.ui.test.builder; -import junit.framework.TestCase; +import org.junit.jupiter.api.Assertions.assertEquals; +import org.junit.jupiter.api.Assertions.assertFalse; +import org.junit.jupiter.api.Assertions.assertNotSame; +import org.junit.jupiter.api.Assertions.assertTrue; import org.eclipse.core.resources.IFile; import org.eclipse.core.resources.IWorkspace; @@ -23,8 +26,8 @@ import org.eclipse.xtext.testing.InjectWith; import org.eclipse.xtext.testing.XtextRunner; import org.eclipse.xtext.testing.util.ParseHelper; -import org.junit.jupiter.api.Test; import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; import org.junit.runner.RunWith; import com.avaloq.tools.ddk.check.check.CheckCatalog; @@ -42,7 +45,7 @@ @SuppressWarnings({"restriction", "PMD.SignatureDeclareThrowsException"}) @InjectWith(CheckWizardUiTestInjectorProvider.class) @RunWith(XtextRunner.class) -public class CheckTocExtensionTest extends TestCase { +public class CheckTocExtensionTest { @Inject private ParseHelper parser; @@ -69,7 +72,7 @@ public void setUp() throws Exception { /** * Tests if the toc extension is correctly created. - * + * * @throws CoreException * the core exception */ @@ -84,7 +87,7 @@ void testCreateExtension() throws CoreException { /** * Tests if isExtensionUpdateRequired returns true if only an erroneous extension exists for the check catalog. - * + * * @throws CoreException * the core exception */ @@ -98,7 +101,7 @@ void testIsExtensionUpdateRequiredTrue() throws CoreException { /** * Creates an erroneous toc extension. - * + * * @return the plugin extension * @throws CoreException * the core exception @@ -116,7 +119,7 @@ private IPluginExtension createErroneousTocExtension() throws CoreException { /** * Tests if an update of a toc extension is correctly done. - * + * * @throws CoreException * the core exception */ @@ -130,7 +133,7 @@ void testUpdateTocExtension() throws CoreException { /** * Tests if isExtensionUpdateRequires returns false if a correct extension already exists. - * + * * @throws CoreException * the core exception */ diff --git a/com.avaloq.tools.ddk.checkcfg.core.test/src/com/avaloq/tools/ddk/checkcfg/validation/CheckCfgTest.xtend b/com.avaloq.tools.ddk.checkcfg.core.test/src/com/avaloq/tools/ddk/checkcfg/validation/CheckCfgTest.xtend index 847faf355..e2091d231 100644 --- a/com.avaloq.tools.ddk.checkcfg.core.test/src/com/avaloq/tools/ddk/checkcfg/validation/CheckCfgTest.xtend +++ b/com.avaloq.tools.ddk.checkcfg.core.test/src/com/avaloq/tools/ddk/checkcfg/validation/CheckCfgTest.xtend @@ -10,21 +10,20 @@ *******************************************************************************/ package com.avaloq.tools.ddk.checkcfg.validation +import com.avaloq.tools.ddk.checkcfg.CheckCfgUiInjectorProvider import com.avaloq.tools.ddk.checkcfg.checkcfg.CheckConfiguration import com.avaloq.tools.ddk.checkcfg.checkcfg.CheckcfgPackage import com.google.inject.Inject -import junit.framework.TestCase +import org.eclipse.xtext.testing.InjectWith import org.eclipse.xtext.testing.XtextRunner import org.eclipse.xtext.testing.util.ParseHelper import org.eclipse.xtext.testing.validation.ValidationTestHelper import org.junit.jupiter.api.Test import org.junit.runner.RunWith -import org.eclipse.xtext.testing.InjectWith -import com.avaloq.tools.ddk.checkcfg.CheckCfgUiInjectorProvider @InjectWith(typeof(CheckCfgUiInjectorProvider)) @RunWith(XtextRunner) -class CheckCfgTest extends TestCase { +class CheckCfgTest { @Inject diff --git a/com.avaloq.tools.ddk.checkcfg.core.test/src/com/avaloq/tools/ddk/checkcfg/validation/CheckCfgValidationTest.java b/com.avaloq.tools.ddk.checkcfg.core.test/src/com/avaloq/tools/ddk/checkcfg/validation/CheckCfgValidationTest.java index a8aee8d57..1ee103114 100644 --- a/com.avaloq.tools.ddk.checkcfg.core.test/src/com/avaloq/tools/ddk/checkcfg/validation/CheckCfgValidationTest.java +++ b/com.avaloq.tools.ddk.checkcfg.core.test/src/com/avaloq/tools/ddk/checkcfg/validation/CheckCfgValidationTest.java @@ -14,7 +14,6 @@ import org.eclipse.xtext.testing.XtextRunner; import org.eclipse.xtext.testing.util.ParseHelper; import org.eclipse.xtext.testing.validation.ValidationTestHelper; -import org.junit.jupiter.api.Test; import org.junit.runner.RunWith; import com.avaloq.tools.ddk.checkcfg.CheckCfgUiInjectorProvider; @@ -23,15 +22,13 @@ import com.avaloq.tools.ddk.checkcfg.util.CheckCfgModelUtil; import com.google.inject.Inject; -import junit.framework.TestCase; - /** * Performs validations on Check Configuration models. */ @InjectWith(CheckCfgUiInjectorProvider.class) @RunWith(XtextRunner.class) -public class CheckCfgValidationTest extends TestCase { +public class CheckCfgValidationTest { @Inject private ValidationTestHelper helper; diff --git a/com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/xbase/test/XbaseGeneratorFragmentTest.xtend b/com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/xbase/test/XbaseGeneratorFragmentTest.xtend index 2e8190056..f20910b22 100644 --- a/com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/xbase/test/XbaseGeneratorFragmentTest.xtend +++ b/com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/xbase/test/XbaseGeneratorFragmentTest.xtend @@ -12,7 +12,6 @@ package com.avaloq.tools.ddk.xtext.generator.xbase.test import com.avaloq.tools.ddk.test.core.BugTest -import junit.framework.TestCase import org.eclipse.emf.common.util.BasicEList import org.eclipse.emf.ecore.EPackage import org.eclipse.xtext.AbstractElement @@ -37,7 +36,7 @@ import org.eclipse.xtext.xtext.generator.xbase.XbaseUsageDetector * Tests for {@link XbaseUsageDetector}. */ @RunWith(XtextRunner) -class XbaseGeneratorFragmentTest extends TestCase { +class XbaseGeneratorFragmentTest { val thisPackageName = "thisPackage" val xtypePackageName = "xtype" From c283292f14639dfb30775bd8f6b8cf8c0ccc43ae Mon Sep 17 00:00:00 2001 From: Joao Ferreira Date: Thu, 4 Sep 2025 08:54:09 +0200 Subject: [PATCH 54/57] "Assert." --> "Assertions." Removes leftover uses of JUnit4's "Assert.". --- .../META-INF/MANIFEST.MF | 4 +- .../CheckJavaValidatorUtilTest.java | 2 +- .../runtime/context/CheckContextTest.java | 10 +-- .../ExecutionEnvironmentCheckCatalog.java | 2 +- .../validation/LibraryChecksCheckCatalog.java | 2 +- .../ui/test/contentassist/BugAig931Test.java | 2 +- .../ui/test/quickfix/CheckQuickfixTest.xtend | 2 +- .../ExecutionEnvironmentCheckCatalog.java | 2 +- .../validation/LibraryChecksCheckCatalog.java | 2 +- .../tools/ddk/test/core/BugTestAwareRule.java | 2 +- .../tools/ddk/test/core/CompoundStep.java | 14 ++-- .../tools/ddk/test/core/IssueAwareRule.java | 2 +- .../tools/ddk/test/core/StepResult.java | 2 +- .../tools/ddk/test/core/TestEntityAction.java | 4 +- .../avaloq/tools/ddk/test/core/TestPlan.java | 2 +- .../test/core/junit/runners/ClassRunner.java | 2 +- .../test/core/mock/ExtensionRegistryMock.java | 2 +- .../tools/ddk/test/core/mock/ServiceMock.java | 7 +- .../ddk/test/core/util/CoreUtilTools.java | 2 +- .../ddk/test/core/util/JobChangeListener.java | 2 +- .../tools/ddk/test/core/util/JobMatcher.java | 8 +- .../test/core/util/SimpleProgressMonitor.java | 2 +- .../ddk/test/ui/swtbot/CoreSwtbotTools.java | 80 +++++++++---------- .../ui/swtbot/condition/WaitForTable.java | 2 +- .../test/ui/swtbot/condition/WaitForTree.java | 2 +- .../swtbot/util/SwtBotToolbarButtonUtil.java | 2 +- .../test/ui/swtbot/util/SwtBotWizardUtil.java | 2 +- .../META-INF/MANIFEST.MF | 3 +- .../ddk/xtext/format/FormatParsingTest.xtend | 4 +- .../tools/ddk/xtext/test/AbstractTest.java | 2 +- .../test/AbstractXtextMarkerBasedTest.java | 4 +- .../AcfContentAssistProcessorTestBuilder.java | 4 +- .../formatting/AbstractFormattingTest.java | 4 +- .../test/generator/AbstractGeneratorTest.java | 10 +-- .../test/junit/runners/XtextClassRunner.java | 2 +- .../tools/ddk/xtext/test/model/ModelUtil.java | 2 +- ...stractResourceDescriptionManagerTest.xtend | 2 +- .../test/scoping/AbstractScopingTest.java | 14 ++-- .../ddk/xtext/test/ui/AbstractUiTest.java | 4 +- .../xtext/test/ui/AbstractXtextUiTest.java | 2 +- .../AbstractContentAssistUiTest.java | 14 ++-- .../test/ui/folding/AbstractFoldingTest.java | 4 +- .../test/ui/hover/AbstractHoverTest.java | 6 +- .../AbstractHyperlinkHelperTest.java | 10 +-- .../ui/labeling/AbstractLabelingTest.java | 4 +- .../test/ui/outline/AbstractOutlineTest.java | 14 ++-- .../ui/quickfix/AbstractQuickFixTest.java | 20 ++--- .../formatter/AbstractFormatterTest.java | 6 +- .../ddk/xtext/formatter/FormatterTest.java | 2 +- .../linking/AbstractFragmentProviderTest.java | 6 +- .../linking/ShortFragmentProviderTest.java | 8 +- ...ourceNameTemplateVariableResolverTest.java | 2 +- .../tools/ddk/xtext/ui/util/UiAssert.java | 4 +- .../ddk/xtext/ui/util/UiThreadDispatcher.java | 2 +- .../validation/ValidPreferenceStore.java | 2 +- 55 files changed, 164 insertions(+), 164 deletions(-) diff --git a/com.avaloq.tools.ddk.check.core.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.core.test/META-INF/MANIFEST.MF index 71a85ffd8..76c1daa73 100644 --- a/com.avaloq.tools.ddk.check.core.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.core.test/META-INF/MANIFEST.MF @@ -28,7 +28,9 @@ Require-Bundle: com.avaloq.tools.ddk.check.core, org.eclipse.xtext.xbase.lib, org.apache.logging.log4j, org.apache.commons.lang, - org.eclipse.xtext.xbase.testing + org.eclipse.xtext.xbase.testing, + org.junit, + junit-jupiter-api Export-Package: com.avaloq.tools.ddk.check.core.test, com.avaloq.tools.ddk.check.core.test.util, com.avaloq.tools.ddk.check.test.core, diff --git a/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/validation/CheckJavaValidatorUtilTest.java b/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/validation/CheckJavaValidatorUtilTest.java index 99a32e931..bc7159d80 100644 --- a/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/validation/CheckJavaValidatorUtilTest.java +++ b/com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check/validation/CheckJavaValidatorUtilTest.java @@ -10,7 +10,7 @@ *******************************************************************************/ package com.avaloq.tools.ddk.check.validation; -import org.junit.jupiter.api.Assertions.assertTrue; +import static org.junit.jupiter.api.Assertions.assertTrue; import org.eclipse.core.runtime.IStatus; import org.eclipse.xtext.testing.InjectWith; diff --git a/com.avaloq.tools.ddk.check.runtime.core.test/src/com/avaloq/tools/ddk/check/runtime/context/CheckContextTest.java b/com.avaloq.tools.ddk.check.runtime.core.test/src/com/avaloq/tools/ddk/check/runtime/context/CheckContextTest.java index 4594fbb55..de1811c21 100644 --- a/com.avaloq.tools.ddk.check.runtime.core.test/src/com/avaloq/tools/ddk/check/runtime/context/CheckContextTest.java +++ b/com.avaloq.tools.ddk.check.runtime.core.test/src/com/avaloq/tools/ddk/check/runtime/context/CheckContextTest.java @@ -32,11 +32,11 @@ public class CheckContextTest { @Test void testIssuesEnabledDisabled() { ICheckContext checkContext = new DummyCheckContext(); - Assert.assertTrue("Check an issue code in annotations but enabled is still enabled", checkContext.isCheckValid(DUMMY_CONTEXT, ENABLED_ISSUE_CODE)); - Assert.assertTrue("Check an issue code not in any annotations is still enabled", checkContext.isCheckValid(DUMMY_CONTEXT, NOT_MENTIONED_ISSUE_CODE)); - Assert.assertFalse("Check an issue code in annotations is disabled", checkContext.isCheckValid(DUMMY_CONTEXT, DISABLED_ISSUE_CODE)); - Assert.assertFalse("Check disabling has priority over enabling", checkContext.isCheckValid(DUMMY_CONTEXT, DISABLED_AND_ENABLED_ISSUE_CODE)); - Assert.assertFalse("Check disabling has priority over enabling, using different order", checkContext.isCheckValid(DUMMY_CONTEXT, ENABLED_AND_DISABLED_ISSUE_CODE)); + Assertions.assertTrue("Check an issue code in annotations but enabled is still enabled", checkContext.isCheckValid(DUMMY_CONTEXT, ENABLED_ISSUE_CODE)); + Assertions.assertTrue("Check an issue code not in any annotations is still enabled", checkContext.isCheckValid(DUMMY_CONTEXT, NOT_MENTIONED_ISSUE_CODE)); + Assertions.assertFalse("Check an issue code in annotations is disabled", checkContext.isCheckValid(DUMMY_CONTEXT, DISABLED_ISSUE_CODE)); + Assertions.assertFalse("Check disabling has priority over enabling", checkContext.isCheckValid(DUMMY_CONTEXT, DISABLED_AND_ENABLED_ISSUE_CODE)); + Assertions.assertFalse("Check disabling has priority over enabling, using different order", checkContext.isCheckValid(DUMMY_CONTEXT, ENABLED_AND_DISABLED_ISSUE_CODE)); } } diff --git a/com.avaloq.tools.ddk.check.test.runtime/src-gen/com/avaloq/tools/ddk/check/validation/ExecutionEnvironmentCheckCatalog.java b/com.avaloq.tools.ddk.check.test.runtime/src-gen/com/avaloq/tools/ddk/check/validation/ExecutionEnvironmentCheckCatalog.java index 88bfb0b8d..9884759c0 100644 --- a/com.avaloq.tools.ddk.check.test.runtime/src-gen/com/avaloq/tools/ddk/check/validation/ExecutionEnvironmentCheckCatalog.java +++ b/com.avaloq.tools.ddk.check.test.runtime/src-gen/com/avaloq/tools/ddk/check/validation/ExecutionEnvironmentCheckCatalog.java @@ -17,7 +17,7 @@ public class ExecutionEnvironmentCheckCatalog extends AbstractIssue { @Inject private ICheckConfigurationStoreService checkConfigurationStoreService; - private static final ImmutableMap issueCodeToLabelMap = ImmutableMap.builder() + private static final ImmutableMap issueCodeToLabelMap = ImmutableMap.builderWithExpectedSize(2) .put(ExecutionEnvironmentIssueCodes.FRANZNAME, "Greeting name length") .put(ExecutionEnvironmentIssueCodes.NAMELENGTH, "Greeting name length") .build() diff --git a/com.avaloq.tools.ddk.check.test.runtime/src-gen/com/avaloq/tools/ddk/check/validation/LibraryChecksCheckCatalog.java b/com.avaloq.tools.ddk.check.test.runtime/src-gen/com/avaloq/tools/ddk/check/validation/LibraryChecksCheckCatalog.java index b9c554c56..737337e7a 100644 --- a/com.avaloq.tools.ddk.check.test.runtime/src-gen/com/avaloq/tools/ddk/check/validation/LibraryChecksCheckCatalog.java +++ b/com.avaloq.tools.ddk.check.test.runtime/src-gen/com/avaloq/tools/ddk/check/validation/LibraryChecksCheckCatalog.java @@ -18,7 +18,7 @@ public class LibraryChecksCheckCatalog extends AbstractIssue { @Inject private ICheckConfigurationStoreService checkConfigurationStoreService; - private static final ImmutableMap issueCodeToLabelMap = ImmutableMap.builder() + private static final ImmutableMap issueCodeToLabelMap = ImmutableMap.builderWithExpectedSize(4) .put(LibraryChecksIssueCodes.CACHE_DOESNT_WORK, "Cache doesn't work") .put(LibraryChecksIssueCodes.CACHE_INJECTION_FAILED, "Cache injection failed") .put(LibraryChecksIssueCodes.CHECK_CATALOG_IS_ACTIVE, "Check catalog is active") diff --git a/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/contentassist/BugAig931Test.java b/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/contentassist/BugAig931Test.java index 57c6432ec..38549a696 100644 --- a/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/contentassist/BugAig931Test.java +++ b/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/contentassist/BugAig931Test.java @@ -51,7 +51,7 @@ public String apply(final ICompletionProposal input) { } })); for (String string : expected) { - Assert.assertTrue(NLS.bind("Expected {0} but found {1}", Arrays.toString(expected), actual), actual.contains(string)); + Assertions.assertTrue(NLS.bind("Expected {0} but found {1}", Arrays.toString(expected), actual), actual.contains(string)); } } diff --git a/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/quickfix/CheckQuickfixTest.xtend b/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/quickfix/CheckQuickfixTest.xtend index 7e0281ad0..16b1081bc 100644 --- a/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/quickfix/CheckQuickfixTest.xtend +++ b/com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test/quickfix/CheckQuickfixTest.xtend @@ -95,7 +95,7 @@ class CheckQuickfixTest extends AbstractCheckQuickfixTest { assertHasQuickFix(Diagnostic::LINKING_DIAGNOSTIC, quickfixLabel); assertQuickFixSuccessful(Diagnostic::LINKING_DIAGNOSTIC, quickfixLabel); val afterIssues = getXtextTestUtil().getIssues(getDocument()); - Assert.assertTrue(afterIssues.size < beforeIssues.size); + Assertions.assertTrue(afterIssues.size < beforeIssues.size); } /** diff --git a/com.avaloq.tools.ddk.sample.helloworld/dsl-gen/com/avaloq/tools/ddk/sample/helloworld/validation/ExecutionEnvironmentCheckCatalog.java b/com.avaloq.tools.ddk.sample.helloworld/dsl-gen/com/avaloq/tools/ddk/sample/helloworld/validation/ExecutionEnvironmentCheckCatalog.java index c4f89baed..fd751016a 100644 --- a/com.avaloq.tools.ddk.sample.helloworld/dsl-gen/com/avaloq/tools/ddk/sample/helloworld/validation/ExecutionEnvironmentCheckCatalog.java +++ b/com.avaloq.tools.ddk.sample.helloworld/dsl-gen/com/avaloq/tools/ddk/sample/helloworld/validation/ExecutionEnvironmentCheckCatalog.java @@ -17,7 +17,7 @@ public class ExecutionEnvironmentCheckCatalog extends AbstractIssue { @Inject private ICheckConfigurationStoreService checkConfigurationStoreService; - private static final ImmutableMap issueCodeToLabelMap = ImmutableMap.builder() + private static final ImmutableMap issueCodeToLabelMap = ImmutableMap.builderWithExpectedSize(2) .put(ExecutionEnvironmentIssueCodes.FRANZNAME, "Greeting name length") .put(ExecutionEnvironmentIssueCodes.NAMELENGTH, "Greeting name length") .build() diff --git a/com.avaloq.tools.ddk.sample.helloworld/dsl-gen/com/avaloq/tools/ddk/sample/helloworld/validation/LibraryChecksCheckCatalog.java b/com.avaloq.tools.ddk.sample.helloworld/dsl-gen/com/avaloq/tools/ddk/sample/helloworld/validation/LibraryChecksCheckCatalog.java index 0b40b5358..83aca3cb1 100644 --- a/com.avaloq.tools.ddk.sample.helloworld/dsl-gen/com/avaloq/tools/ddk/sample/helloworld/validation/LibraryChecksCheckCatalog.java +++ b/com.avaloq.tools.ddk.sample.helloworld/dsl-gen/com/avaloq/tools/ddk/sample/helloworld/validation/LibraryChecksCheckCatalog.java @@ -18,7 +18,7 @@ public class LibraryChecksCheckCatalog extends AbstractIssue { @Inject private ICheckConfigurationStoreService checkConfigurationStoreService; - private static final ImmutableMap issueCodeToLabelMap = ImmutableMap.builder() + private static final ImmutableMap issueCodeToLabelMap = ImmutableMap.builderWithExpectedSize(4) .put(LibraryChecksIssueCodes.CACHE_DOESNT_WORK, "Cache doesn't work") .put(LibraryChecksIssueCodes.CACHE_INJECTION_FAILED, "Cache injection failed") .put(LibraryChecksIssueCodes.CHECK_CATALOG_IS_ACTIVE, "Check catalog is active") diff --git a/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/BugTestAwareRule.java b/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/BugTestAwareRule.java index fc61f2b06..469b1efb2 100644 --- a/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/BugTestAwareRule.java +++ b/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/BugTestAwareRule.java @@ -37,7 +37,7 @@ * @org.junit.Test * @com.avaloq.tools.ddk.test.core.BugTest(value = "BUG-42", unresolved = true) * public void testMethod() { - * org.junit.Assert.fail(); + * org.junit.Assertions.fail(); * } * } * diff --git a/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/CompoundStep.java b/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/CompoundStep.java index b82ee7384..884d311e1 100644 --- a/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/CompoundStep.java +++ b/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/CompoundStep.java @@ -130,9 +130,9 @@ public void undo() { * the {@link Throwable} of the problem(s) encountered, must not be {@code null} */ private void addUndoProblem(final MultipleTestProblems multipleTestProblems, final AbstractStep step, final Throwable throwable) { - Assert.isNotNull(multipleTestProblems, "multipleTestProblems"); - Assert.isNotNull(step, ARGUMENT_STEP); - Assert.isNotNull(throwable, ARGUMENT_THROWABLE); + Assertions.isNotNull(multipleTestProblems, "multipleTestProblems"); + Assertions.isNotNull(step, ARGUMENT_STEP); + Assertions.isNotNull(throwable, ARGUMENT_THROWABLE); if (throwable instanceof MultipleTestProblems) { MultipleTestProblems caughtMultipleTestProblems = (MultipleTestProblems) throwable; for (Throwable problem : caughtMultipleTestProblems.getProblems()) { @@ -157,8 +157,8 @@ private void addUndoProblem(final MultipleTestProblems multipleTestProblems, fin * the problem occurred, never {@code null} */ private void logError(final AbstractStep step, final Throwable throwable) { - Assert.isNotNull(step, ARGUMENT_STEP); - Assert.isNotNull(throwable, ARGUMENT_THROWABLE); + Assertions.isNotNull(step, ARGUMENT_STEP); + Assertions.isNotNull(throwable, ARGUMENT_THROWABLE); logger.error("Error in " + step.getName() + ": " + throwable.getLocalizedMessage()); } @@ -172,7 +172,7 @@ private void logError(final AbstractStep step, final Throwable throwable) { * @return the newly added {@link AbstractStep}, never {@code null} */ public T addStep(final T step) { - Assert.isNotNull(step, ARGUMENT_STEP); + Assertions.isNotNull(step, ARGUMENT_STEP); plannedSteps.add(step); return step; } @@ -184,7 +184,7 @@ public T addStep(final T step) { * the steps to add, must not be {@code null} */ public void addSteps(final List steps) { - Assert.isNotNull(steps, ARGUMENT_STEPS); + Assertions.isNotNull(steps, ARGUMENT_STEPS); for (final AbstractStep step : steps) { if (step != null) { addStep(step); diff --git a/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/IssueAwareRule.java b/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/IssueAwareRule.java index 40413f0ce..cde0592fc 100644 --- a/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/IssueAwareRule.java +++ b/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/IssueAwareRule.java @@ -37,7 +37,7 @@ * @org.junit.Test * @com.avaloq.tools.ddk.test.core.Issue(value = "ISSUE-42", fixed = false) * public void testMethod() { - * org.junit.Assert.fail(); + * org.junit.Assertions.fail(); * } * } * diff --git a/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/StepResult.java b/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/StepResult.java index 6d3bb54a8..4d60a13b5 100644 --- a/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/StepResult.java +++ b/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/StepResult.java @@ -51,7 +51,7 @@ public T getValue() { void setValue(final T value) { // currently we set the result multiple time until the postconditions succeed. Hence we cannot enforce this anymore. // XXX : think about refactoring so that we can check the following assertion again, or decide to remove it for good. - // Assert.assertFalse("Step result value must not have been set yet.", valueSet); + // Assertions.assertFalse("Step result value must not have been set yet.", valueSet); this.value = value; valueSet = true; } diff --git a/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/TestEntityAction.java b/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/TestEntityAction.java index 573073238..849e692ec 100644 --- a/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/TestEntityAction.java +++ b/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/TestEntityAction.java @@ -34,8 +34,8 @@ public class TestEntityAction { * the entity action, must not be {@code null} */ public TestEntityAction(final ITestEntity testEntity, final TestEntityOperation entityAction) { - Assert.isNotNull(testEntity, TEST_ENTITY_ARGUMENT); - Assert.isNotNull(entityAction, ENTITY_ACTION_ARGUMENT); + Assertions.isNotNull(testEntity, TEST_ENTITY_ARGUMENT); + Assertions.isNotNull(entityAction, ENTITY_ACTION_ARGUMENT); if (entityAction.equals(TestEntityOperation.DISPOSE)) { testEntity.dispose(); } diff --git a/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/TestPlan.java b/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/TestPlan.java index 60539a5ca..2028945c0 100644 --- a/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/TestPlan.java +++ b/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/TestPlan.java @@ -73,7 +73,7 @@ public static TestPlan create() { * @return the newly added {@link AbstractStep}, never {@code null} */ public T addSetupStep(final T setupStep) { - Assert.assertTrue("Must not add a setup step after adding a test step.", getCompoundTestStep().getSteps().isEmpty()); + Assertions.assertTrue("Must not add a setup step after adding a test step.", getCompoundTestStep().getSteps().isEmpty()); getCompoundSetupStep().addStep(setupStep); return setupStep; } diff --git a/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/junit/runners/ClassRunner.java b/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/junit/runners/ClassRunner.java index 705fda819..b8acd3223 100644 --- a/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/junit/runners/ClassRunner.java +++ b/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/junit/runners/ClassRunner.java @@ -186,7 +186,7 @@ protected void runChild(final FrameworkMethod method, final RunNotifier notifier ensureInitialized(); final boolean ignored = method.getAnnotation(Disabled.class) != null; if (!ignored) { - Assert.assertEquals("Method " + method.getName() + " not equal", expectedMethods.get(currentMethodIndex++), method); //$NON-NLS-1$//$NON-NLS-2$ + Assertions.assertEquals("Method " + method.getName() + " not equal", expectedMethods.get(currentMethodIndex++), method); //$NON-NLS-1$//$NON-NLS-2$ } if (ignored || testRuns == 1 && testRetries == 0 && method.getAnnotation(Retry.class) == null) { super.runChild(method, notifier); diff --git a/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/mock/ExtensionRegistryMock.java b/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/mock/ExtensionRegistryMock.java index 85b56078b..6a880e7ad 100644 --- a/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/mock/ExtensionRegistryMock.java +++ b/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/mock/ExtensionRegistryMock.java @@ -172,7 +172,7 @@ public static void assertUnMocked() { if (registrySpy != null) { try { String extensionPointId = configurationElements.keySet().iterator().next(); - Assert.fail("Extension point " + extensionPointId + " still has mocked configuration elements."); //$NON-NLS-1$ //$NON-NLS-2$ + Assertions.fail("Extension point " + extensionPointId + " still has mocked configuration elements."); //$NON-NLS-1$ //$NON-NLS-2$ } catch (NoSuchElementException e) { // shouldn't happen throw new IllegalStateException("The extension registry mock is in an unexpected state.", e); //$NON-NLS-1$ } diff --git a/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/mock/ServiceMock.java b/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/mock/ServiceMock.java index 2a330e2a3..f5c9cff81 100644 --- a/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/mock/ServiceMock.java +++ b/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/mock/ServiceMock.java @@ -11,7 +11,6 @@ package com.avaloq.tools.ddk.test.core.mock; import java.util.HashMap; -import java.util.Iterator; import java.util.Map; import org.junit.jupiter.api.Assertions; @@ -46,10 +45,8 @@ public static boolean isMocked(final Class classToCheck) { */ public static void assertAllMocksRemoved() { if (!originalServices.keySet().isEmpty()) { - Iterator> iterator = originalServices.keySet().iterator(); - while (iterator.hasNext()) { - Class clazz = iterator.next(); - Assert.fail("Service " + clazz.getName() + " is still mocked."); //$NON-NLS-1$//$NON-NLS-2$ + for (Class clazz : originalServices.keySet()) { + Assertions.fail("Service " + clazz.getName() + " is still mocked."); //$NON-NLS-1$//$NON-NLS-2$ } } } diff --git a/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/util/CoreUtilTools.java b/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/util/CoreUtilTools.java index 1635b29ad..cb5efc400 100644 --- a/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/util/CoreUtilTools.java +++ b/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/util/CoreUtilTools.java @@ -77,7 +77,7 @@ public static String randomAlphanumericString(final int count) { } String string = stringBuilder.toString(); - Assert.isNotNull(string, "string"); //$NON-NLS-1$ + Assertions.isNotNull(string, "string"); //$NON-NLS-1$ return string.toUpperCase(Locale.ENGLISH); } diff --git a/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/util/JobChangeListener.java b/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/util/JobChangeListener.java index 306baee5b..99433cb62 100644 --- a/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/util/JobChangeListener.java +++ b/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/util/JobChangeListener.java @@ -124,7 +124,7 @@ public synchronized void scheduled(final IJobChangeEvent event) { * @return {@code true} if such a job was found, {@code false} otherwise */ public synchronized boolean hasJob(final String name) { - Assert.isNotNull(name, "name"); + Assertions.isNotNull(name, "name"); if (jobNames.contains(name)) { return true; } diff --git a/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/util/JobMatcher.java b/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/util/JobMatcher.java index 9d86755c8..4c1789b21 100644 --- a/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/util/JobMatcher.java +++ b/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/util/JobMatcher.java @@ -213,7 +213,7 @@ public final void deregister() { * the expected number of jobs */ public final void assertNumberOfNewJobs(final int expected) { - Assert.assertEquals("Wrong number of jobs were scheduled", expected, newJobs.size()); + Assertions.assertEquals("Wrong number of jobs were scheduled", expected, newJobs.size()); } /** @@ -226,13 +226,13 @@ public final void assertNumberOfNewJobs(final int expected) { public final void assertNewJobsFinished() { try { List expectedJobs = Lists.newArrayList(newJobs); - Assert.assertFalse("No matching new jobs were scheduled: " + finder, expectedJobs.isEmpty()); + Assertions.assertFalse("No matching new jobs were scheduled: " + finder, expectedJobs.isEmpty()); expectedJobs.removeAll(finishedJobs); while (!expectedJobs.isEmpty()) { try { Job job = getNextJob(); if (job == null) { - Assert.fail("Expected new jobs did not finish after " + waitTimeout + " milliseconds: " + expectedJobs); + Assertions.fail("Expected new jobs did not finish after " + waitTimeout + " milliseconds: " + expectedJobs); } expectedJobs.remove(job); } catch (InterruptedException e) { @@ -260,7 +260,7 @@ public final void waitForExistingJobs() { try { Job job = getNextJob(); if (job == null) { - Assert.fail("Existing jobs did not finish after " + waitTimeout + " milliseconds: " + expectedJobs); + Assertions.fail("Existing jobs did not finish after " + waitTimeout + " milliseconds: " + expectedJobs); } expectedJobs.remove(job); } catch (InterruptedException e) { diff --git a/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/util/SimpleProgressMonitor.java b/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/util/SimpleProgressMonitor.java index e6aa103bb..e5fde6e4c 100644 --- a/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/util/SimpleProgressMonitor.java +++ b/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/util/SimpleProgressMonitor.java @@ -169,7 +169,7 @@ public void waitForTermination() { final long timeStarted = System.currentTimeMillis(); while (!isTerminated()) { long remainingWaitTime = TIMEOUT + timeStarted - System.currentTimeMillis(); - Assert.assertFalse("Progress monitor did not get done signal", remainingWaitTime <= 0); + Assertions.assertFalse("Progress monitor did not get done signal", remainingWaitTime <= 0); try { this.wait(remainingWaitTime); } catch (InterruptedException e) /* CHECKSTYLE:OFF */ { diff --git a/com.avaloq.tools.ddk.test.ui/src/com/avaloq/tools/ddk/test/ui/swtbot/CoreSwtbotTools.java b/com.avaloq.tools.ddk.test.ui/src/com/avaloq/tools/ddk/test/ui/swtbot/CoreSwtbotTools.java index 8e417236a..86b071b94 100644 --- a/com.avaloq.tools.ddk.test.ui/src/com/avaloq/tools/ddk/test/ui/swtbot/CoreSwtbotTools.java +++ b/com.avaloq.tools.ddk.test.ui/src/com/avaloq/tools/ddk/test/ui/swtbot/CoreSwtbotTools.java @@ -141,7 +141,7 @@ public static WorkbenchFocusPolicy getWorkbenchFocusPolicy() { * the {@link SwtWorkbenchBot} for which to check the focus, must not be {@code null} */ public static void enforceWorkbenchFocusPolicy(final SwtWorkbenchBot bot) { - Assert.isNotNull(bot, ARGUMENT_BOT); + Assertions.isNotNull(bot, ARGUMENT_BOT); if (bot.getFocusedWidget() == null) { if (WorkbenchFocusPolicy.WAIT == getWorkbenchFocusPolicy()) { bot.waitUntilFocused(); @@ -167,7 +167,7 @@ public void run() { * to work with, must not be {@code null} */ public static void initializeWorkbench(final SwtWorkbenchBot bot) { - Assert.isNotNull(bot, ARGUMENT_BOT); + Assertions.isNotNull(bot, ARGUMENT_BOT); // Move mouse outside client area (to prevent problems with context menus) PlatformUI.getWorkbench().getDisplay().syncExec(new Runnable() { @Override @@ -196,7 +196,7 @@ public void run() { * if {@code true}, append the name of the calling method to the prefix */ public static void captureScreenshot(final SWTBot bot, final String prefix, final boolean useCaller) { - Assert.isNotNull(bot, ARGUMENT_BOT); + Assertions.isNotNull(bot, ARGUMENT_BOT); if (prefix == null && !useCaller) { throw new IllegalArgumentException(); } @@ -221,8 +221,8 @@ public static void captureScreenshot(final SWTBot bot, final String prefix, fina * @return {@code true} if a window was found, {@code false} otherwise */ public static boolean checkOpenWindow(final SWTWorkbenchBot bot, final String windowName) { - Assert.isNotNull(bot, ARGUMENT_BOT); - Assert.isNotNull(windowName, "windowName"); + Assertions.isNotNull(bot, ARGUMENT_BOT); + Assertions.isNotNull(windowName, "windowName"); try { final SWTBotShell shell = bot.shell(windowName); shell.isActive(); @@ -241,8 +241,8 @@ public static boolean checkOpenWindow(final SWTWorkbenchBot bot, final String wi * the new perspective to open, must not be {@code null} */ public static void switchPerspective(final SWTWorkbenchBot bot, final String perspective) { - Assert.isNotNull(bot, ARGUMENT_BOT); - Assert.isNotNull(perspective, "perspective"); + Assertions.isNotNull(bot, ARGUMENT_BOT); + Assertions.isNotNull(perspective, "perspective"); // Change the perspective via the Open Perspective dialog bot.menu("Window").menu("Open Perspective").menu("Other...").click(); final SWTBotShell shell = bot.shell("Open Perspective"); @@ -291,8 +291,8 @@ public void run() { * to look for items in, must not be {@code null} */ public static void waitForTreeItem(final SWTWorkbenchBot bot, final SWTBotTree tree) { - Assert.isNotNull(bot, ARGUMENT_BOT); - Assert.isNotNull(tree, ARGUMENT_TREE); + Assertions.isNotNull(bot, ARGUMENT_BOT); + Assertions.isNotNull(tree, ARGUMENT_TREE); bot.waitUntilWidgetAppears(new WaitForTree(tree.widget)); } @@ -305,8 +305,8 @@ public static void waitForTreeItem(final SWTWorkbenchBot bot, final SWTBotTree t * the {@link SWTBotTable}, must not be {@code null} */ public static void waitForTableItem(final SWTWorkbenchBot bot, final SWTBotTable table) { - Assert.isNotNull(bot, ARGUMENT_BOT); - Assert.isNotNull(table, ARGUMENT_TABLE); + Assertions.isNotNull(bot, ARGUMENT_BOT); + Assertions.isNotNull(table, ARGUMENT_TABLE); bot.waitUntilWidgetAppears(new WaitForTable(table.widget)); } @@ -320,8 +320,8 @@ public static void waitForTableItem(final SWTWorkbenchBot bot, final SWTBotTable * @return list of tree items, never {@code null} */ public static List treeItems(final SWTWorkbenchBot bot, final SWTBotTree tree) { - Assert.isNotNull(bot, ARGUMENT_BOT); - Assert.isNotNull(tree, ARGUMENT_TREE); + Assertions.isNotNull(bot, ARGUMENT_BOT); + Assertions.isNotNull(tree, ARGUMENT_TREE); waitForTreeItem(bot, tree); return new ArrayList(Arrays.asList(tree.getAllItems())); } @@ -336,8 +336,8 @@ public static List treeItems(final SWTWorkbenchBot bot, final SW * @return list of table items, never {@code null} */ public static List tableItems(final SWTWorkbenchBot bot, final SWTBotTable table) { - Assert.isNotNull(bot, ARGUMENT_BOT); - Assert.isNotNull(table, ARGUMENT_TABLE); + Assertions.isNotNull(bot, ARGUMENT_BOT); + Assertions.isNotNull(table, ARGUMENT_TABLE); waitForTableItem(bot, table); List items = null; for (int i = 0; i < table.rowCount(); i++) { @@ -354,7 +354,7 @@ public static List tableItems(final SWTWorkbenchBot bot, final * @return clipboard text content, or {@code null} if no text data is available */ public static String getClipboardContent(final SWTWorkbenchBot bot) { - Assert.isNotNull(bot, ARGUMENT_BOT); + Assertions.isNotNull(bot, ARGUMENT_BOT); return UIThreadRunnable.syncExec(new Result() { @Override public String run() { @@ -374,8 +374,8 @@ public String run() { * @return {@code true} if expanded, {@code false} otherwise */ public static boolean waitForItem(final SWTWorkbenchBot bot, final SWTBotTreeItem item) { - Assert.isNotNull(bot, ARGUMENT_BOT); - Assert.isNotNull(item, ARGUMENT_ITEM); + Assertions.isNotNull(bot, ARGUMENT_BOT); + Assertions.isNotNull(item, ARGUMENT_ITEM); item.select(); safeBlockingExpand(bot, item); if (item.getItems().length == 0) { @@ -394,8 +394,8 @@ public static boolean waitForItem(final SWTWorkbenchBot bot, final SWTBotTreeIte * the name of the view, must not be {@code null} */ public static void openView(final SWTWorkbenchBot bot, final String view) { - Assert.isNotNull(bot, ARGUMENT_BOT); - Assert.isNotNull(view, ARGUMENT_VIEW); + Assertions.isNotNull(bot, ARGUMENT_BOT); + Assertions.isNotNull(view, ARGUMENT_VIEW); openView(bot, "Avaloq", view); } @@ -406,7 +406,7 @@ public static void openView(final SWTWorkbenchBot bot, final String view) { * the view id, must not be {@code null} */ public static void openView(final String id) { - Assert.isNotNull(id, "id"); + Assertions.isNotNull(id, "id"); PlatformUI.getWorkbench().getDisplay().syncExec(new Runnable() { @Override @@ -431,9 +431,9 @@ public void run() { * the name of the view, must not be {@code null} */ public static void openView(final SWTWorkbenchBot bot, final String category, final String view) { - Assert.isNotNull(bot, ARGUMENT_BOT); - Assert.isNotNull(category, "category"); - Assert.isNotNull(view, ARGUMENT_VIEW); + Assertions.isNotNull(bot, ARGUMENT_BOT); + Assertions.isNotNull(category, "category"); + Assertions.isNotNull(view, ARGUMENT_VIEW); bot.menu("Window").menu("Show View").menu("Other...").click(); bot.shell("Show View").activate(); final SWTBotTree tree = bot.tree(); @@ -469,9 +469,9 @@ public static void openView(final SWTWorkbenchBot bot, final String category, fi * @return the {@link SWTBotTreeItem}, never {@code null} */ public static SWTBotTreeItem findTreeItem(final SWTWorkbenchBot bot, final SWTBotTree tree, final String item) { - Assert.isNotNull(bot, ARGUMENT_BOT); - Assert.isNotNull(tree, "tree"); - Assert.isNotNull(item, ARGUMENT_ITEM); + Assertions.isNotNull(bot, ARGUMENT_BOT); + Assertions.isNotNull(tree, "tree"); + Assertions.isNotNull(item, ARGUMENT_ITEM); int itemCount = 0; boolean itemFound = false; SWTBotTreeItem botTreeItem = null; @@ -508,8 +508,8 @@ public static SWTBotTreeItem findTreeItem(final SWTWorkbenchBot bot, final SWTBo * the name of the desired page (e.g. 'Database'), must not be {@code null} */ public static void openAvaloqPreferencesSection(final SWTWorkbenchBot bot, final String section) { - Assert.isNotNull(bot, ARGUMENT_BOT); - Assert.isNotNull(section, "section"); + Assertions.isNotNull(bot, ARGUMENT_BOT); + Assertions.isNotNull(section, "section"); bot.menu("Window").menu("Preferences").click(); final SWTBotShell shell = bot.shell("Preferences"); shell.activate(); @@ -531,8 +531,8 @@ public static void openAvaloqPreferencesSection(final SWTWorkbenchBot bot, final * @return the full name of the item as string, never {@code null} */ public static String getCcomboItemText(final SWTBotCCombo ccombo, final String prefix) { - Assert.isNotNull(ccombo, "ccombo"); - Assert.isNotNull(prefix, "prefix"); + Assertions.isNotNull(ccombo, "ccombo"); + Assertions.isNotNull(prefix, "prefix"); for (String ccomboItem : ccombo.items()) { if (ccomboItem.startsWith(prefix)) { return ccomboItem; @@ -550,8 +550,8 @@ public static String getCcomboItemText(final SWTBotCCombo ccombo, final String p * node to wait for, must not be {@code null} */ public static void safeBlockingCollapse(final SWTWorkbenchBot bot, final SWTBotTreeItem node) { - Assert.isNotNull(bot, ARGUMENT_BOT); - Assert.isNotNull(node, ARGUMENT_NODE); + Assertions.isNotNull(bot, ARGUMENT_BOT); + Assertions.isNotNull(node, ARGUMENT_NODE); if (node.isExpanded()) { node.collapse(); try { @@ -584,8 +584,8 @@ public String getFailureMessage() { * node to wait for, must not be {@code null} */ public static void safeBlockingExpand(final SWTWorkbenchBot bot, final SWTBotTreeItem node) { - Assert.isNotNull(bot, ARGUMENT_BOT); - Assert.isNotNull(node, ARGUMENT_NODE); + Assertions.isNotNull(bot, ARGUMENT_BOT); + Assertions.isNotNull(node, ARGUMENT_NODE); if (!node.isExpanded()) { node.expand(); try { @@ -621,8 +621,8 @@ public String getFailureMessage() { * @return the last tree item that was expanded, or {@code null} if no item was found */ public static SWTBotTreeItem expandNode(final SWTBotTree bot, final String... nodes) { - Assert.isNotNull(bot, ARGUMENT_BOT); - Assert.isNotNull(nodes, ARGUMENT_NODES); + Assertions.isNotNull(bot, ARGUMENT_BOT); + Assertions.isNotNull(nodes, ARGUMENT_NODES); assertArgumentIsNotEmpty(nodes, ARGUMENT_NODES); new SWTBot().waitUntil(widgetIsEnabled(bot)); SWTBotTreeItem item = bot.getTreeItem(nodes[0]); @@ -650,8 +650,8 @@ public static SWTBotTreeItem expandNode(final SWTBotTree bot, final String... no * @return the last tree node that was expanded, never {@code null} */ public static SWTBotTreeItem expandNode(final SWTBotTreeItem bot, final String... nodes) { - Assert.isNotNull(bot, ARGUMENT_BOT); - Assert.isNotNull(nodes, ARGUMENT_NODES); + Assertions.isNotNull(bot, ARGUMENT_BOT); + Assertions.isNotNull(nodes, ARGUMENT_NODES); assertArgumentIsNotEmpty(nodes, ARGUMENT_NODES); SWTBotTreeItem item = bot; for (String node : nodes) { @@ -677,7 +677,7 @@ public static SWTBotTreeItem expandNode(final SWTBotTreeItem bot, final String.. * one array element is null. */ private static void assertArgumentIsNotEmpty(final Object[] array, final String name) { - Assert.isNotNull(array, name); + Assertions.isNotNull(array, name); if (array.length == 0) { throw new IllegalArgumentException("Contract for argument '" + name + "' failed: Array parameter must not be empty."); //$NON-NLS-1$ } else { diff --git a/com.avaloq.tools.ddk.test.ui/src/com/avaloq/tools/ddk/test/ui/swtbot/condition/WaitForTable.java b/com.avaloq.tools.ddk.test.ui/src/com/avaloq/tools/ddk/test/ui/swtbot/condition/WaitForTable.java index a8fb33b45..3537057d8 100644 --- a/com.avaloq.tools.ddk.test.ui/src/com/avaloq/tools/ddk/test/ui/swtbot/condition/WaitForTable.java +++ b/com.avaloq.tools.ddk.test.ui/src/com/avaloq/tools/ddk/test/ui/swtbot/condition/WaitForTable.java @@ -36,7 +36,7 @@ public class WaitForTable extends WaitForObjectCondition { */ public WaitForTable(final Table parent) { super(WidgetMatcherFactory.widgetOfType(TableItem.class)); - Assert.isNotNull(parent, "parent"); + Assertions.isNotNull(parent, "parent"); this.parent = parent; } diff --git a/com.avaloq.tools.ddk.test.ui/src/com/avaloq/tools/ddk/test/ui/swtbot/condition/WaitForTree.java b/com.avaloq.tools.ddk.test.ui/src/com/avaloq/tools/ddk/test/ui/swtbot/condition/WaitForTree.java index 47748a4ed..010968cd3 100644 --- a/com.avaloq.tools.ddk.test.ui/src/com/avaloq/tools/ddk/test/ui/swtbot/condition/WaitForTree.java +++ b/com.avaloq.tools.ddk.test.ui/src/com/avaloq/tools/ddk/test/ui/swtbot/condition/WaitForTree.java @@ -36,7 +36,7 @@ public class WaitForTree extends WaitForObjectCondition { */ public WaitForTree(final Tree parent) { super(WidgetMatcherFactory.widgetOfType(TreeItem.class)); - Assert.isNotNull(parent, "parent"); + Assertions.isNotNull(parent, "parent"); this.parent = parent; } diff --git a/com.avaloq.tools.ddk.test.ui/src/com/avaloq/tools/ddk/test/ui/swtbot/util/SwtBotToolbarButtonUtil.java b/com.avaloq.tools.ddk.test.ui/src/com/avaloq/tools/ddk/test/ui/swtbot/util/SwtBotToolbarButtonUtil.java index 9ae4c9134..9508aa14a 100644 --- a/com.avaloq.tools.ddk.test.ui/src/com/avaloq/tools/ddk/test/ui/swtbot/util/SwtBotToolbarButtonUtil.java +++ b/com.avaloq.tools.ddk.test.ui/src/com/avaloq/tools/ddk/test/ui/swtbot/util/SwtBotToolbarButtonUtil.java @@ -29,7 +29,7 @@ public final class SwtBotToolbarButtonUtil { * @return {@code true} if the toolbar button is selected, {@code false} otherwise */ public static boolean isSelected(final SWTBotToolbarButton toolbarButton) { - Assert.isNotNull(toolbarButton, "toolbarButton"); + Assertions.isNotNull(toolbarButton, "toolbarButton"); return UIThreadRunnable.syncExec(toolbarButton.display, new BoolResult() { @Override public Boolean run() { diff --git a/com.avaloq.tools.ddk.test.ui/src/com/avaloq/tools/ddk/test/ui/swtbot/util/SwtBotWizardUtil.java b/com.avaloq.tools.ddk.test.ui/src/com/avaloq/tools/ddk/test/ui/swtbot/util/SwtBotWizardUtil.java index 19b3f927b..8a4483419 100644 --- a/com.avaloq.tools.ddk.test.ui/src/com/avaloq/tools/ddk/test/ui/swtbot/util/SwtBotWizardUtil.java +++ b/com.avaloq.tools.ddk.test.ui/src/com/avaloq/tools/ddk/test/ui/swtbot/util/SwtBotWizardUtil.java @@ -47,7 +47,7 @@ public static void selectProjectFolder(final SwtWorkbenchBot bot, final String f final Tree tree = bot.widget(WidgetMatcherFactory.widgetOfType(Tree.class), comp); PlatformUI.getWorkbench().getDisplay().syncExec(() -> { SWTBotTree botTree = new SWTBotTree(tree); - Assert.assertTrue("folder was not found", selectItem(botTree, folderName)); + Assertions.assertTrue("folder was not found", selectItem(botTree, folderName)); }); } diff --git a/com.avaloq.tools.ddk.typesystem.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.typesystem.test/META-INF/MANIFEST.MF index b4eed97d4..f3f9af485 100644 --- a/com.avaloq.tools.ddk.typesystem.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.typesystem.test/META-INF/MANIFEST.MF @@ -9,6 +9,7 @@ Bundle-ActivationPolicy: lazy Fragment-Host: com.avaloq.tools.ddk.typesystem Require-Bundle: com.google.inject, com.google.guava, - org.junit + org.junit, + junit-jupiter-api Export-Package: com.avaloq.tools.ddk.typesystem.test Automatic-Module-Name: com.avaloq.tools.ddk.typesystem.test diff --git a/com.avaloq.tools.ddk.xtext.format.test/src/com/avaloq/tools/ddk/xtext/format/FormatParsingTest.xtend b/com.avaloq.tools.ddk.xtext.format.test/src/com/avaloq/tools/ddk/xtext/format/FormatParsingTest.xtend index a3e25c484..21631106d 100644 --- a/com.avaloq.tools.ddk.xtext.format.test/src/com/avaloq/tools/ddk/xtext/format/FormatParsingTest.xtend +++ b/com.avaloq.tools.ddk.xtext.format.test/src/com/avaloq/tools/ddk/xtext/format/FormatParsingTest.xtend @@ -23,8 +23,8 @@ class FormatParsingTest { val result = parseHelper.parse(''' Hello Xtext! ''') - Assert.assertNotNull(result) + Assertions.assertNotNull(result) val errors = result.eResource.errors - Assert.assertTrue('''Unexpected errors: «errors.join(", ")»''', errors.isEmpty) + Assertions.assertTrue('''Unexpected errors: «errors.join(", ")»''', errors.isEmpty) } } diff --git a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/AbstractTest.java b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/AbstractTest.java index a1e33719a..0f325eb85 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/AbstractTest.java +++ b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/AbstractTest.java @@ -332,7 +332,7 @@ protected XtextTestSource getTestSource(final String sourceFileName) { */ protected TestSource getTestSource() { TestSource testSource = getTestProjectManager().getTestSource(getTestSourceFileName()); - // Assert.assertNotNull("TestSource for this test class can be found: " + getTestSourceFileName(), testSource); + // Assertions.assertNotNull("TestSource for this test class can be found: " + getTestSourceFileName(), testSource); return testSource; } diff --git a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/AbstractXtextMarkerBasedTest.java b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/AbstractXtextMarkerBasedTest.java index ec00ec3f3..619ccd8a5 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/AbstractXtextMarkerBasedTest.java +++ b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/AbstractXtextMarkerBasedTest.java @@ -98,7 +98,7 @@ protected void afterEachTest() { protected void beforeEachTest() { localMarkerIdCounter = 0; super.beforeEachTest(); - Assert.assertFalse(INVALID_TEST_CONFIGURATION, getMarkerTagsInfo().isInvalidTestClass()); + Assertions.assertFalse(INVALID_TEST_CONFIGURATION, getMarkerTagsInfo().isInvalidTestClass()); } // -------------------------------------------------------------------------- @@ -269,7 +269,7 @@ protected String addAssertion(final AbstractModelAssertion assertion) { * @return Mark text to be inserted in the source file, never {@code null} */ protected String mark(final int id) { - Assert.assertFalse("Tag with " + id + " used to mark more than one location.", usedTags.contains(id)); //$NON-NLS-1$ //$NON-NLS-2$ + Assertions.assertFalse("Tag with " + id + " used to mark more than one location.", usedTags.contains(id)); //$NON-NLS-1$ //$NON-NLS-2$ usedTags.add(id); if (id < 1) { getMarkerTagsInfo().setTestClassInvalid(); diff --git a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/AcfContentAssistProcessorTestBuilder.java b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/AcfContentAssistProcessorTestBuilder.java index a61429fc8..9f17a572c 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/AcfContentAssistProcessorTestBuilder.java +++ b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/AcfContentAssistProcessorTestBuilder.java @@ -183,11 +183,11 @@ public BadLocationException run() { ContentAssistContext.Factory factory = get(ContentAssistContext.Factory.class); ContentAssistContext[] contexts = factory.create(sourceViewer, currentModelToParse.length(), xtextResource); for (ContentAssistContext context : contexts) { - Assert.assertTrue("matchString = '" + matchString + "', actual: '" + context.getPrefix() + "'", "".equals(context.getPrefix()) + Assertions.assertTrue("matchString = '" + matchString + "', actual: '" + context.getPrefix() + "'", "".equals(context.getPrefix()) || matchString.equals(context.getPrefix())); } } else { - Assert.fail("No content assistant for content type " + contentType); + Assertions.fail("No content assistant for content type " + contentType); } } catch (BadLocationException e) { return e; diff --git a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/formatting/AbstractFormattingTest.java b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/formatting/AbstractFormattingTest.java index 2f35b51b5..5852144e6 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/formatting/AbstractFormattingTest.java +++ b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/formatting/AbstractFormattingTest.java @@ -145,7 +145,7 @@ protected final void assertPreservedParseTreeConstructor() { */ private void assertFormattedParseTreeConstructor(final EObject model, final String expected) { String actual = getXtextTestUtil().getSerializer().serialize(model, SaveOptions.newBuilder().format().getOptions()); - Assert.assertEquals("Formatted ParseTree", expected.replaceAll(CR_LF, LF), actual.replaceAll(CR_LF, LF)); + Assertions.assertEquals("Formatted ParseTree", expected.replaceAll(CR_LF, LF), actual.replaceAll(CR_LF, LF)); } /** @@ -166,7 +166,7 @@ private void assertFormattedNodeModel(final EObject model, final String input, f ICompositeNode node = NodeModelUtils.getNode(model).getRootNode(); IFormattedRegion region = getXtextTestUtil().get(INodeModelFormatter.class).format(node, offset, length); String actual = input.substring(0, offset) + region.getFormattedText() + input.substring(length + offset); - Assert.assertEquals("Formatted NodeModel", expected.replaceAll(CR_LF, LF), actual.replaceAll(CR_LF, LF)); + Assertions.assertEquals("Formatted NodeModel", expected.replaceAll(CR_LF, LF), actual.replaceAll(CR_LF, LF)); } } diff --git a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/generator/AbstractGeneratorTest.java b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/generator/AbstractGeneratorTest.java index 182548056..e1840a10f 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/generator/AbstractGeneratorTest.java +++ b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/generator/AbstractGeneratorTest.java @@ -320,15 +320,15 @@ protected void execute(final IProgressMonitor monitor) throws CoreException, Inv IResourcesSetupUtil.createFile(resourceURI.toPlatformString(true), contents); } catch (IOException e) { LOGGER.error("failed adding file to workspace: " + outputFileName, e); //$NON-NLS-1$ - Assert.fail("Error adding file " + outputFileName + " to workspace: " + e.getMessage()); //$NON-NLS-1$ //$NON-NLS-2$ + Assertions.fail("Error adding file " + outputFileName + " to workspace: " + e.getMessage()); //$NON-NLS-1$ //$NON-NLS-2$ } } } }.run(new NullProgressMonitor()); } catch (InvocationTargetException e) { - Assert.fail("Error adding files to workspace: " + e.getMessage()); //$NON-NLS-1$ + Assertions.fail("Error adding files to workspace: " + e.getMessage()); //$NON-NLS-1$ } catch (InterruptedException e) { - Assert.fail("Error adding files to workspace: " + e.getMessage()); //$NON-NLS-1$ + Assertions.fail("Error adding files to workspace: " + e.getMessage()); //$NON-NLS-1$ } } @@ -413,10 +413,10 @@ public String getContents(final String resourceName) throws IOException { */ public void assertFileGenerated(final String projectName, final String fileName, final String expectedGeneratedContent) throws IOException, CoreException { IFile generatedFile = getFileFromProject(projectName, fileName); - Assert.assertTrue(MessageFormat.format(MESSAGE_GENERATED_FILE_MUST_EXIST, generatedFile.toString()), generatedFile.exists()); + Assertions.assertTrue(MessageFormat.format(MESSAGE_GENERATED_FILE_MUST_EXIST, generatedFile.toString()), generatedFile.exists()); String actualGeneratedContent = getContents(generatedFile); - Assert.assertEquals(MessageFormat.format(MESSAGE_GENERATED_CODE_MUST_BE_CORRECT, generatedFile.toString()), expectedGeneratedContent, actualGeneratedContent); + Assertions.assertEquals(MessageFormat.format(MESSAGE_GENERATED_CODE_MUST_BE_CORRECT, generatedFile.toString()), expectedGeneratedContent, actualGeneratedContent); } /** diff --git a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/junit/runners/XtextClassRunner.java b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/junit/runners/XtextClassRunner.java index 768cc8d45..2618b3a96 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/junit/runners/XtextClassRunner.java +++ b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/junit/runners/XtextClassRunner.java @@ -187,7 +187,7 @@ protected void runChild(final FrameworkMethod method, final RunNotifier notifier ensureInitialized(); final boolean ignored = method.getAnnotation(Disabled.class) != null; if (!ignored) { - Assert.assertEquals("Method " + method.getName() + " not equal", expectedMethods.get(currentMethodIndex++), method); //$NON-NLS-1$//$NON-NLS-2$ + Assertions.assertEquals("Method " + method.getName() + " not equal", expectedMethods.get(currentMethodIndex++), method); //$NON-NLS-1$//$NON-NLS-2$ } if (ignored || testRuns == 1 && testRetries == 0 && method.getAnnotation(Retry.class) == null) { super.runChild(method, notifier); diff --git a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/model/ModelUtil.java b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/model/ModelUtil.java index 4e7b6ac4e..121b96949 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/model/ModelUtil.java +++ b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/model/ModelUtil.java @@ -84,7 +84,7 @@ public Iterable getAllInstancesOf(final EObject context, // CHECKSTYLE:ON return Iterables.filter(getAllInstancesOf(context, type), input -> { if (input.eClass().getEStructuralFeature(feature.getFeatureID()) != feature) { - Assert.fail("Feature " + feature + " is not a feature of " + input.eClass()); + Assertions.fail("Feature " + feature + " is not a feature of " + input.eClass()); } final Object valueOfFeature = input.eGet(feature); return valueOfFeature != null && valueOfFeature.equals(value); diff --git a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/resource/AbstractResourceDescriptionManagerTest.xtend b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/resource/AbstractResourceDescriptionManagerTest.xtend index 97b07745a..798827147 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/resource/AbstractResourceDescriptionManagerTest.xtend +++ b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/resource/AbstractResourceDescriptionManagerTest.xtend @@ -193,6 +193,6 @@ abstract class AbstractResourceDescriptionManagerTest extends AbstractXtextTest */ def assertDeltaAffectedResources(Collection deltas, Collection candidates, Collection expectedUris) { val result = getResourceDescriptionManager().getAffectedResources(deltas, candidates, getResourceDescriptions()); - Assert.assertEquals("Affected URIs must be correct.", HashMultiset.create(expectedUris), HashMultiset.create(result)); + Assertions.assertEquals("Affected URIs must be correct.", HashMultiset.create(expectedUris), HashMultiset.create(result)); } } diff --git a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/scoping/AbstractScopingTest.java b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/scoping/AbstractScopingTest.java index 28e93c1e3..7bad90d29 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/scoping/AbstractScopingTest.java +++ b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/scoping/AbstractScopingTest.java @@ -240,7 +240,7 @@ protected void assertScope(final EObject context, final EReference reference, fi * for given scope, must not be {@code null} */ protected void assertScopedObjects(final EObject context, final EReference reference, final EObject... expectedObjects) { - Assert.isNotNull(expectedObjects, PARAMETER_EXPECTED_OBJECTS); + Assertions.isNotNull(expectedObjects, PARAMETER_EXPECTED_OBJECTS); assertScopedObjects(context, reference, Lists.newArrayList(expectedObjects)); } @@ -258,8 +258,8 @@ protected void assertScopedObjects(final EObject context, final EReference refer */ @SuppressWarnings("unchecked") protected void assertScopedObjects(final EObject context, final EReference reference, final Collection firstExpectedObjectCollection, final Collection... furtherExpectedObjectCollections) { - Assert.isNotNull(firstExpectedObjectCollection, "firstExpectedObjectCollection"); - Assert.isNotNull(furtherExpectedObjectCollections, "furtherExpectedObjectCollections"); + Assertions.isNotNull(firstExpectedObjectCollection, "firstExpectedObjectCollection"); + Assertions.isNotNull(furtherExpectedObjectCollections, "furtherExpectedObjectCollections"); Collection consolidatedList = Lists.newArrayList(firstExpectedObjectCollection); for (Collection expectedObjects : furtherExpectedObjectCollections) { consolidatedList.addAll(expectedObjects); @@ -281,10 +281,10 @@ protected void assertScopedObjects(final EObject context, final EReference refer * the objects expected in the scope, must not be {@code null} */ protected void assertScopedObjects(final EObject context, final EReference reference, final Collection expectedObjects) { - Assert.isNotNull(context, PARAMETER_CONTEXT); - Assert.isNotNull(reference, PARAMETER_REFERENCE); - Assert.isNotNull(expectedObjects, PARAMETER_EXPECTED_OBJECTS); - Assert.isTrue(context.eClass().getEAllReferences().contains(reference), String.format("Contract for argument '%s' failed: Parameter is not within specified range (Expected: %s, Actual: %s).", PARAMETER_CONTEXT, "The context object must contain the given reference.", "Reference not contained by the context object!")); + Assertions.isNotNull(context, PARAMETER_CONTEXT); + Assertions.isNotNull(reference, PARAMETER_REFERENCE); + Assertions.isNotNull(expectedObjects, PARAMETER_EXPECTED_OBJECTS); + Assertions.isTrue(context.eClass().getEAllReferences().contains(reference), String.format("Contract for argument '%s' failed: Parameter is not within specified range (Expected: %s, Actual: %s).", PARAMETER_CONTEXT, "The context object must contain the given reference.", "Reference not contained by the context object!")); Set expectedUriSet = Sets.newHashSet(); for (EObject object : expectedObjects) { expectedUriSet.add(EcoreUtil.getURI(object)); diff --git a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/AbstractUiTest.java b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/AbstractUiTest.java index 43683ac96..255dd1063 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/AbstractUiTest.java +++ b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/AbstractUiTest.java @@ -114,7 +114,7 @@ public SwtWorkbenchBot getBot() { * @return the editor part or null */ protected IEditorPart openEditor(final IFile file, final String editorId, final boolean activate) { - UiAssert.isNotUiThread(); + UiAssertions.isNotUiThread(); IEditorPart editor = UIThreadRunnable.syncExec(getBot().getDisplay(), new Result() { @Override public IEditorPart run() { @@ -149,7 +149,7 @@ public IEditorPart run() { * true if should save before close, false otherwise */ protected void closeEditor(final IEditorPart editor, final boolean save) { - UiAssert.isNotUiThread(); + UiAssertions.isNotUiThread(); Object editorJobs = getTestUtil().getEditorJobFamily(editor); UIThreadRunnable.syncExec(getBot().getDisplay(), new VoidResult() { @Override diff --git a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/AbstractXtextUiTest.java b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/AbstractXtextUiTest.java index 5c5e92d2f..ba214a460 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/AbstractXtextUiTest.java +++ b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/AbstractXtextUiTest.java @@ -88,7 +88,7 @@ protected void afterAllTests() { * @return {@link IEditorPart} created */ private IEditorPart openEditor(final org.eclipse.emf.common.util.URI uri, final boolean activate) { - UiAssert.isNotUiThread(); + UiAssertions.isNotUiThread(); final IEditorPart editorPart = UIThreadRunnable.syncExec(getBot().getDisplay(), new Result() { @Override public IEditorPart run() { diff --git a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/contentassist/AbstractContentAssistUiTest.java b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/contentassist/AbstractContentAssistUiTest.java index 26cb99bf7..90eadb96c 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/contentassist/AbstractContentAssistUiTest.java +++ b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/contentassist/AbstractContentAssistUiTest.java @@ -112,9 +112,9 @@ public String apply(final ICompletionProposal from) { protected void assertContentAssist(final List contentassistProposals, final int offset) { evaluateCompletionProposals(offset); Arrays.sort(getCompletionProposals(), new TemplatesFirstCompletionProposalComparator()); - Assert.assertEquals("Same length", contentassistProposals.size(), getCompletionProposals().length); + Assertions.assertEquals("Same length", contentassistProposals.size(), getCompletionProposals().length); for (int i = 0; i < contentassistProposals.size(); i++) { - Assert.assertEquals("Same displayed string", contentassistProposals.get(i), getCompletionProposals()[i].getDisplayString()); + Assertions.assertEquals("Same displayed string", contentassistProposals.get(i), getCompletionProposals()[i].getDisplayString()); } } @@ -152,7 +152,7 @@ protected void assertTemplateProposalExistsAndSuccessful(final String sourceFile @SuppressWarnings("PMD.UseObjectForClearerAPI") protected void assertTemplateProposalExistsAndSuccessful(final String sourceFileName, final String sourceContent, final String contentassistProposal, final String expectedContent, final int offset) { if (sourceContent == null) { - Assert.assertNotNull(String.format("There must be an existing test source with the file name '%s'.", sourceFileName), getTestSource(sourceFileName)); + Assertions.assertNotNull(String.format("There must be an existing test source with the file name '%s'.", sourceFileName), getTestSource(sourceFileName)); } else { createTestSource(sourceFileName, sourceContent); } @@ -169,10 +169,10 @@ protected void assertTemplateProposalExistsAndSuccessful(final String sourceFile } } - Assert.assertNotNull(String.format("Template proposal '%s' must be found.", contentassistProposal), templateProposal); + Assertions.assertNotNull(String.format("Template proposal '%s' must be found.", contentassistProposal), templateProposal); String actualContent = applyTemplateProposal(templateProposal, offset); - Assert.assertEquals("Editor content must match expected result.", expectedContent.replaceAll(CR_LF, LF), actualContent.replaceAll(CR_LF, LF)); + Assertions.assertEquals("Editor content must match expected result.", expectedContent.replaceAll(CR_LF, LF), actualContent.replaceAll(CR_LF, LF)); closeEditor(getEditor(), false); } @@ -190,7 +190,7 @@ private String applyTemplateProposal(final TemplateProposal templateProposal, fi UiThreadDispatcher.dispatchAndWait(new Runnable() { @Override public void run() { - Assert.assertNotNull(EDITOR_HAS_NO_VIEWER, getViewer()); + Assertions.assertNotNull(EDITOR_HAS_NO_VIEWER, getViewer()); templateProposal.apply(getViewer(), ' ', 0, offset); } }); @@ -211,7 +211,7 @@ protected void assertProposalsAtOffsetExist(final int offset, final String... pr evaluateCompletionProposals(offset); final List result = getCompletionProposalDisplayStrings(getCompletionProposals()); for (final String s : proposals) { - Assert.assertTrue(Messages.bind("Expected proposal \"{0}\" but found \"{1}\"", s, result), result.contains(s)); + Assertions.assertTrue(Messages.bind("Expected proposal \"{0}\" but found \"{1}\"", s, result), result.contains(s)); } } diff --git a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/folding/AbstractFoldingTest.java b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/folding/AbstractFoldingTest.java index b59607325..7eaff403b 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/folding/AbstractFoldingTest.java +++ b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/folding/AbstractFoldingTest.java @@ -83,7 +83,7 @@ public boolean apply(final Position p) { // CHECKSTYLE:ON message.append("Unmatched Expected Positions:").append(unmatchedExpectedPositions).append('\n'); message.append("Unmatched Actual Positions:").append(unmatchedActualPositions); - Assert.assertTrue(message.toString(), unmatchedExpectedPositions.isEmpty()); + Assertions.assertTrue(message.toString(), unmatchedExpectedPositions.isEmpty()); } } @@ -96,7 +96,7 @@ public void testFoldedPositions() { Collection foldingRegions = getXtextTestUtil().get(IFoldingRegionProvider.class).getFoldingRegions(getDocument()); for (DefaultFoldedPosition foldedPosition : Iterables.filter(foldingRegions, DefaultFoldedPosition.class)) { try { - Assert.assertFalse("Illegal significant region for FoldedPosition " + foldedPosition, foldedPosition.computeCaptionOffset(getDocument()) < 0); + Assertions.assertFalse("Illegal significant region for FoldedPosition " + foldedPosition, foldedPosition.computeCaptionOffset(getDocument()) < 0); /* If the above assertion fails that is probably due to an ITextRegion.EMPTY_REGION being provided for the object's significant text region. */ } catch (BadLocationException e) { fail("Bad location for FoldedPosition: " + e.getMessage()); diff --git a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/hover/AbstractHoverTest.java b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/hover/AbstractHoverTest.java index 38db49ecf..289994d4b 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/hover/AbstractHoverTest.java +++ b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/hover/AbstractHoverTest.java @@ -153,7 +153,7 @@ private EList getFeatureValues(final EObject model, final EStructuralFe */ protected void assertHover(final ENamedElement element, final String firstLine) { assertElementExistInHoverMap(element); - Assert.assertTrue("Element '" + element.toString() + "' must have first line of hover '" + firstLine + "'. " + "\n\nHoverMap contains:\n" + Assertions.assertTrue("Element '" + element.toString() + "' must have first line of hover '" + firstLine + "'. " + "\n\nHoverMap contains:\n" + getHoverMap().get(element), hasTextOnFirstLine(getHoverMap().get(element), firstLine)); } @@ -167,7 +167,7 @@ protected void assertHover(final ENamedElement element, final String firstLine) */ protected void assertHoverDoesNotContainText(final ENamedElement element, final String text) { assertElementExistInHoverMap(element); - Assert.assertFalse("Element '" + element.toString() + "' first line of hover must not have '" + text + "'. " + "\n\nHoverMap contains:\n" + Assertions.assertFalse("Element '" + element.toString() + "' first line of hover must not have '" + text + "'. " + "\n\nHoverMap contains:\n" + getHoverMap().get(element), hasTextOnFirstLine(getHoverMap().get(element), text)); } @@ -178,7 +178,7 @@ protected void assertHoverDoesNotContainText(final ENamedElement element, final * element of the model with hover, must not be {@code null} */ private void assertElementExistInHoverMap(final ENamedElement element) { - Assert.assertTrue("Element '" + element.toString() + "' must exist.", getHoverMap().containsKey(element)); + Assertions.assertTrue("Element '" + element.toString() + "' must exist.", getHoverMap().containsKey(element)); } /** diff --git a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/hyperlinking/AbstractHyperlinkHelperTest.java b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/hyperlinking/AbstractHyperlinkHelperTest.java index 7824ae87d..bf31d5071 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/hyperlinking/AbstractHyperlinkHelperTest.java +++ b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/hyperlinking/AbstractHyperlinkHelperTest.java @@ -53,7 +53,7 @@ public abstract class AbstractHyperlinkHelperTest extends AbstractXtextEditorTes * the position at which to look for a hyperlink */ protected void assertOffsetHasHyperlink(final int offset) { - Assert.assertEquals(OFFSET_MUST_BE_EQUAL, 1, getOffsetHyperlinks(offset).size()); + Assertions.assertEquals(OFFSET_MUST_BE_EQUAL, 1, getOffsetHyperlinks(offset).size()); } /** @@ -63,7 +63,7 @@ protected void assertOffsetHasHyperlink(final int offset) { * the position at which to look for hyperlinks */ protected void assertOffsetHasNoHyperlink(final int offset) { - Assert.assertEquals(OFFSET_MUST_BE_EQUAL, 0, getOffsetHyperlinks(offset).size()); + Assertions.assertEquals(OFFSET_MUST_BE_EQUAL, 0, getOffsetHyperlinks(offset).size()); } /** @@ -95,7 +95,7 @@ protected void assertNoHyperlink(final int tag) { * number of expected hyperlinks */ protected void assertHasHyperlinks(final int tag, final int numberOfHyperlinks) { - Assert.assertEquals(NUMBER_OF_HYPERLINKS_MUST_BE_EQUAL, numberOfHyperlinks, getHyperlinks(tag).size()); + Assertions.assertEquals(NUMBER_OF_HYPERLINKS_MUST_BE_EQUAL, numberOfHyperlinks, getHyperlinks(tag).size()); } /** @@ -113,7 +113,7 @@ protected void assertHasHyperlinks(final int tag, final URI target) { actualTargets.add(((XtextHyperlink) hyperlink).getURI()); } } - MatcherAssert.assertThat("The target must have items", actualTargets, CoreMatchers.hasItem(target)); + MatcherAssertions.assertThat("The target must have items", actualTargets, CoreMatchers.hasItem(target)); } /** @@ -127,7 +127,7 @@ protected void assertHasHyperlinks(final int tag, final URI target) { * number of expected hyperlinks */ protected void assertHasHyperlinks(final XtextResource resource, final int tag, final int numberOfHyperlinks) { - Assert.assertEquals(NUMBER_OF_HYPERLINKS_MUST_BE_EQUAL, numberOfHyperlinks, getHyperlinks(resource, tag).size()); + Assertions.assertEquals(NUMBER_OF_HYPERLINKS_MUST_BE_EQUAL, numberOfHyperlinks, getHyperlinks(resource, tag).size()); } /** diff --git a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/labeling/AbstractLabelingTest.java b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/labeling/AbstractLabelingTest.java index 789b1ee49..40d0f2475 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/labeling/AbstractLabelingTest.java +++ b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/labeling/AbstractLabelingTest.java @@ -106,8 +106,8 @@ private Map> getLabelMap() { // NOPMD LooseCoupling * the expected label */ protected void assertHasLabel(final Object element, final String label) { - Assert.assertTrue("Element '" + element.toString() + "' must exist.", getLabelMap().containsKey(element)); - Assert.assertTrue("Element '" + element.toString() + "' must have label '" + label + "'. LabelMap contains: " + Assertions.assertTrue("Element '" + element.toString() + "' must exist.", getLabelMap().containsKey(element)); + Assertions.assertTrue("Element '" + element.toString() + "' must have label '" + label + "'. LabelMap contains: " + getLabelMap().get(element), getLabelMap().get(element).contains(label)); } diff --git a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/outline/AbstractOutlineTest.java b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/outline/AbstractOutlineTest.java index 80177ffd7..cdd906aa9 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/outline/AbstractOutlineTest.java +++ b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/outline/AbstractOutlineTest.java @@ -101,8 +101,8 @@ protected void assertHasOutlineNode(final Object object) { if (object instanceof EClass) { key = ((EClass) object).getInstanceClass(); } - Assert.assertTrue("Outline must contain element '" + object.toString() + "'.", getOutlineMap().containsKey(key)); - Assert.assertFalse("Outline must contain element '" + object.toString() + "'.", getOutlineMap().get(key).isEmpty()); + Assertions.assertTrue("Outline must contain element '" + object.toString() + "'.", getOutlineMap().containsKey(key)); + Assertions.assertFalse("Outline must contain element '" + object.toString() + "'.", getOutlineMap().get(key).isEmpty()); } /** @@ -128,7 +128,7 @@ protected IOutlineNode assertHasOutlineNode(final String nodeName) { protected IOutlineNode assertHasOutlineNode(final String nodeName, final String nodeType) { IOutlineTreeProvider provider = getXtextTestUtil().get(IOutlineTreeProvider.class); IOutlineNode field = findNode(provider.createRoot(getDocument()), nodeName, nodeType); - Assert.assertNotNull("Outline must contain element '" + nodeName + "'.", field); + Assertions.assertNotNull("Outline must contain element '" + nodeName + "'.", field); return field; } @@ -145,7 +145,7 @@ protected IOutlineNode assertHasOutlineNode(final String nodeName, final String protected void assertHasOutlineNode(final String nodeName, final String nodeType, final String parentName) { IOutlineNode field = assertHasOutlineNode(nodeName, nodeType); IOutlineNode parent = field.getParent(); - Assert.assertEquals("The element '" + nodeName + "' doesn't belong to the '" + parentName + "' group.", parentName, parent.getText().toString()); + Assertions.assertEquals("The element '" + nodeName + "' doesn't belong to the '" + parentName + "' group.", parentName, parent.getText().toString()); } /** @@ -201,9 +201,9 @@ public T exec(final EObject state) throws Exception { // NOPMD })); } try { - Assert.assertNotNull(NLS.bind("At least one outline node represents an object of type \"{0}\"", clazz.getName()), Iterables.find(result, predicate)); + Assertions.assertNotNull(NLS.bind("At least one outline node represents an object of type \"{0}\"", clazz.getName()), Iterables.find(result, predicate)); } catch (NoSuchElementException e) { - Assert.fail(NLS.bind("Could not find an object of type \"{0}\" in outline", clazz.getName())); + Assertions.fail(NLS.bind("Could not find an object of type \"{0}\" in outline", clazz.getName())); } } @@ -218,7 +218,7 @@ protected void assertOutlineNodeTreeConsistsOf(final Object... classes) { outlineMapKeySet.removeAll(Arrays.asList(classes)); // assert that only EStructuralFeatures remain for (Object object : outlineMapKeySet) { - Assert.assertTrue("All remaining objects in outlineMap must be of type EStructuralFeature. Found: " + object, object instanceof EStructuralFeature); + Assertions.assertTrue("All remaining objects in outlineMap must be of type EStructuralFeature. Found: " + object, object instanceof EStructuralFeature); } } diff --git a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/quickfix/AbstractQuickFixTest.java b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/quickfix/AbstractQuickFixTest.java index ac63b3081..7ab261a36 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/quickfix/AbstractQuickFixTest.java +++ b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/ui/quickfix/AbstractQuickFixTest.java @@ -89,7 +89,7 @@ protected void afterEachTest() { * the code of the expected issue, may be {@code null} */ protected void assertHasIssue(final String issueCode) { - Assert.assertFalse("Issue " + issueCode + " is empty", issuesWith(issueCode).isEmpty()); + Assertions.assertFalse("Issue " + issueCode + " is empty", issuesWith(issueCode).isEmpty()); } /** @@ -99,7 +99,7 @@ protected void assertHasIssue(final String issueCode) { * the code of the issue for which a quickfix is expected to exist, may be {@code null} */ protected void assertHasQuickFix(final String issueCode) { - Assert.assertFalse("No resolutions found for issue " + issueCode, resolutionsFor(issueCode).isEmpty()); + Assertions.assertFalse("No resolutions found for issue " + issueCode, resolutionsFor(issueCode).isEmpty()); } /** @@ -111,7 +111,7 @@ protected void assertHasQuickFix(final String issueCode) { * the label of the quickfix, may be {@code null} */ protected void assertHasQuickFix(final String issueCode, final String quickfixLabel) { - Assert.assertFalse("No resolutions found for issue " + issueCode, resolutionsFor(issueCode, quickfixLabel).isEmpty()); + Assertions.assertFalse("No resolutions found for issue " + issueCode, resolutionsFor(issueCode, quickfixLabel).isEmpty()); } /** @@ -125,7 +125,7 @@ protected void assertHasQuickFix(final String issueCode, final String quickfixLa * the number of expected quickfix proposal, must not be {@code null} */ protected void assertHasQuickFix(final String issueCode, final String quickfixLabel, final int numberOfQuickfixProposal) { - Assert.assertEquals("Number of resolutions found for issue " + issueCode + Assertions.assertEquals("Number of resolutions found for issue " + issueCode + " does not match the expected number of quickfix proposal", resolutionsFor(issueCode, quickfixLabel).size(), numberOfQuickfixProposal); } @@ -159,7 +159,7 @@ protected void assertNoQuickFix(final String sourceFileName, final String source createTestSource(sourceFileName, sourceFileContent); openEditor(sourceFileName); try { - Assert.assertTrue("No resolutions expected for issue " + issueCode + " on source " + sourceFileName, resolutionsFor(issueCode, quickfixLabel).isEmpty()); + Assertions.assertTrue("No resolutions expected for issue " + issueCode + " on source " + sourceFileName, resolutionsFor(issueCode, quickfixLabel).isEmpty()); } finally { closeEditor(getEditor(), false); } @@ -193,7 +193,7 @@ public void run() { }); } waitForValidation(); - Assert.assertTrue("Resolutions for issue " + issueCode + " with quickfix " + quickfixLabel + Assertions.assertTrue("Resolutions for issue " + issueCode + " with quickfix " + quickfixLabel + "are not empty", resolutionsFor(issueCode, quickfixLabel).isEmpty()); } @@ -234,7 +234,7 @@ public Integer apply(final IssueResolution from) { * Assert that the test source has no syntax error. */ protected void assertNoSyntaxError() { - Assert.assertFalse("The source has syntax errors", Iterables.any(getTestSource().getXtextResource().getErrors(), Predicates.instanceOf(XtextSyntaxDiagnostic.class))); + Assertions.assertFalse("The source has syntax errors", Iterables.any(getTestSource().getXtextResource().getErrors(), Predicates.instanceOf(XtextSyntaxDiagnostic.class))); } /** @@ -353,7 +353,7 @@ private void assertQuickFixExistsAndSuccessful(final String issueCode, final Str private void assertQuickFixExistsAndSuccessful(final String issueCode, final String quickfixLabel, final String expectedContent, final boolean ignoreFormatting) { // Assert amount of quickfixes int resolutionCount = resolutionsFor(issueCode, quickfixLabel).size(); - Assert.assertEquals(String.format("There must be exactly one quickfix with label '%s' for issue '%s', but found '%d'.", quickfixLabel, issueCode, resolutionCount), resolutionCount, 1); + Assertions.assertEquals(String.format("There must be exactly one quickfix with label '%s' for issue '%s', but found '%d'.", quickfixLabel, issueCode, resolutionCount), resolutionCount, 1); // Apply quickfix UiThreadDispatcher.dispatchAndWait(new Runnable() { @Override @@ -365,7 +365,7 @@ public void run() { } }); waitForValidation(); - Assert.assertTrue("Resolutions for issue " + issueCode + " with quickfix " + quickfixLabel + Assertions.assertTrue("Resolutions for issue " + issueCode + " with quickfix " + quickfixLabel + "are not empty", resolutionsFor(issueCode, quickfixLabel).isEmpty()); String actualContent = getDocument().get(); assertQuickFixProducesExpectedOutput(expectedContent, actualContent, ignoreFormatting); @@ -386,7 +386,7 @@ private void assertQuickFixProducesExpectedOutput(final String expectedContent, String expected = expectedContent.replaceAll(CR_LF, LF); String actual = actualContent.replaceAll(CR_LF, LF); if (ignoreFormatting) { - MatcherAssert.assertThat(message, actual, IsEqualCompressingWhiteSpace.equalToCompressingWhiteSpace(expected)); + MatcherAssertions.assertThat(message, actual, IsEqualCompressingWhiteSpace.equalToCompressingWhiteSpace(expected)); } else { assertEquals(message, expected, actual); } diff --git a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/formatter/AbstractFormatterTest.java b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/formatter/AbstractFormatterTest.java index 75158da98..689ff5f5b 100644 --- a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/formatter/AbstractFormatterTest.java +++ b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/formatter/AbstractFormatterTest.java @@ -54,13 +54,13 @@ protected ISerializer getSerializer() { protected void assertFormattedPTC(final String expected, final String model) throws IOException { EObject m = getModel(model); String res = getSerializer().serialize(m, SaveOptions.newBuilder().format().getOptions()); - Assert.assertEquals("Serialization not equal", expected, res); + Assertions.assertEquals("Serialization not equal", expected, res); } protected void assertPreserved(final String model) throws IOException { EObject m = getModel(model); String res = getSerializer().serialize(m, SaveOptions.newBuilder().getOptions()); - Assert.assertEquals("Preserved node model", model, res); + Assertions.assertEquals("Preserved node model", model, res); } // test formatting based on the NodeModel @@ -68,7 +68,7 @@ protected void assertFormattedNM(final String expected, final String model, fina ICompositeNode node = NodeModelUtils.getNode(getModel(model)).getRootNode(); IFormattedRegion r = getXtextTestUtil().get(INodeModelFormatter.class).format(node, offset, length); String actual = model.substring(0, r.getOffset()) + r.getFormattedText() + model.substring(r.getLength() + r.getOffset()); - Assert.assertEquals("Formatting based on the NodeModel", expected, actual); + Assertions.assertEquals("Formatting based on the NodeModel", expected, actual); } } diff --git a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/formatter/FormatterTest.java b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/formatter/FormatterTest.java index 59210d112..eec24d611 100644 --- a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/formatter/FormatterTest.java +++ b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/formatter/FormatterTest.java @@ -471,7 +471,7 @@ void linewrapDefault() { m.getItems().add(d); String actual = getSerializer().serialize(m, SaveOptions.newBuilder().format().getOptions()); String expected = "test wrapminmax\n\n\nxxx yyy;"; - Assert.assertEquals("Default Linewrap", expected, actual); + Assertions.assertEquals("Default Linewrap", expected, actual); } /** diff --git a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/linking/AbstractFragmentProviderTest.java b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/linking/AbstractFragmentProviderTest.java index 184493048..cca1883d4 100644 --- a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/linking/AbstractFragmentProviderTest.java +++ b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/linking/AbstractFragmentProviderTest.java @@ -55,12 +55,12 @@ public String unescape(final String text) { void testEscape() { StringBuilder builder = new StringBuilder(); fragmentProvider.appendEscaped("foo/bar#\\", builder); - Assert.assertEquals("Fragment not properly scaped", builder.toString(), "foo\\/bar#\\\\"); + Assertions.assertEquals("Fragment not properly scaped", builder.toString(), "foo\\/bar#\\\\"); } @Test void testUnescape() { - Assert.assertEquals("Fragment not properly unscaped", "foo//bar##\\", fragmentProvider.unescape("foo\\/\\/bar##\\\\")); + Assertions.assertEquals("Fragment not properly unscaped", "foo//bar##\\", fragmentProvider.unescape("foo\\/\\/bar##\\\\")); } @org.junit.jupiter.api.Test @@ -68,7 +68,7 @@ void testUnescapeEscape() { for (String text : SPECIAL_ESCAPE_CASES) { StringBuilder builder = new StringBuilder(); fragmentProvider.appendEscaped(text, builder); - Assert.assertEquals("Escaped Characters must be equal", text, fragmentProvider.unescape(builder.toString())); + Assertions.assertEquals("Escaped Characters must be equal", text, fragmentProvider.unescape(builder.toString())); } } diff --git a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/linking/ShortFragmentProviderTest.java b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/linking/ShortFragmentProviderTest.java index 2f37a8cc1..af23d7623 100644 --- a/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/linking/ShortFragmentProviderTest.java +++ b/com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/linking/ShortFragmentProviderTest.java @@ -101,9 +101,9 @@ public void testLongFragment() { resource.getContents().add(root); String fragment = fragmentProvider.getFragment(parent, fragmentFallback); - Assert.assertEquals(FRAGMENT_MUST_BE_EQUAL, "/0*" + (reps + 1), fragment); + Assertions.assertEquals(FRAGMENT_MUST_BE_EQUAL, "/0*" + (reps + 1), fragment); - Assert.assertEquals(FRAGMENT_MUST_BE_EQUAL, parent, fragmentProvider.getEObject(resource, fragment, fragmentFallback)); + Assertions.assertEquals(FRAGMENT_MUST_BE_EQUAL, parent, fragmentProvider.getEObject(resource, fragment, fragmentFallback)); } @org.junit.jupiter.api.Test @@ -125,9 +125,9 @@ void testLongFragment2() { resource.getContents().add(root); String fragment = fragmentProvider.getFragment(parent, fragmentFallback); - Assert.assertEquals(FRAGMENT_MUST_BE_EQUAL, "/0*" + (reps + 1) + "/1", fragment); + Assertions.assertEquals(FRAGMENT_MUST_BE_EQUAL, "/0*" + (reps + 1) + "/1", fragment); - Assert.assertEquals(FRAGMENT_MUST_BE_EQUAL, parent, fragmentProvider.getEObject(resource, fragment, fragmentFallback)); + Assertions.assertEquals(FRAGMENT_MUST_BE_EQUAL, parent, fragmentProvider.getEObject(resource, fragment, fragmentFallback)); } @Override diff --git a/com.avaloq.tools.ddk.xtext.ui.test/src/com/avaloq/tools/ddk/xtext/ui/templates/ResourceNameTemplateVariableResolverTest.java b/com.avaloq.tools.ddk.xtext.ui.test/src/com/avaloq/tools/ddk/xtext/ui/templates/ResourceNameTemplateVariableResolverTest.java index 2290d8f66..ab3db5556 100644 --- a/com.avaloq.tools.ddk.xtext.ui.test/src/com/avaloq/tools/ddk/xtext/ui/templates/ResourceNameTemplateVariableResolverTest.java +++ b/com.avaloq.tools.ddk.xtext.ui.test/src/com/avaloq/tools/ddk/xtext/ui/templates/ResourceNameTemplateVariableResolverTest.java @@ -121,7 +121,7 @@ public void testResolveValues(final Object[] values, final String filename, fina final String[] actualResolvedValues = Iterables.toArray(resolver.resolveValues(variable, mockContext), String.class); // ASSERT - Assert.assertArrayEquals("Resolved values", expectedResolvedValues, actualResolvedValues); //$NON-NLS-1$ + Assertions.assertArrayEquals("Resolved values", expectedResolvedValues, actualResolvedValues); //$NON-NLS-1$ } } diff --git a/com.avaloq.tools.ddk.xtext.ui/src/com/avaloq/tools/ddk/xtext/ui/util/UiAssert.java b/com.avaloq.tools.ddk.xtext.ui/src/com/avaloq/tools/ddk/xtext/ui/util/UiAssert.java index 33fef1cbc..14bc19e1a 100644 --- a/com.avaloq.tools.ddk.xtext.ui/src/com/avaloq/tools/ddk/xtext/ui/util/UiAssert.java +++ b/com.avaloq.tools.ddk.xtext.ui/src/com/avaloq/tools/ddk/xtext/ui/util/UiAssert.java @@ -24,14 +24,14 @@ public final class UiAssert { * thread. */ public static void isNotUiThread() { - Assert.isTrue(Display.getCurrent() == null, "Current statement is invoked on the UI thread."); //$NON-NLS-1$ + Assertions.isTrue(Display.getCurrent() == null, "Current statement is invoked on the UI thread."); //$NON-NLS-1$ } /** * Ensures that the current statement is executed within the UI thread. */ public static void isUiThread() { - Assert.isTrue(Display.getCurrent() != null, "Current statement is not invoked on the UI thread."); //$NON-NLS-1$ + Assertions.isTrue(Display.getCurrent() != null, "Current statement is not invoked on the UI thread."); //$NON-NLS-1$ } /** diff --git a/com.avaloq.tools.ddk.xtext.ui/src/com/avaloq/tools/ddk/xtext/ui/util/UiThreadDispatcher.java b/com.avaloq.tools.ddk.xtext.ui/src/com/avaloq/tools/ddk/xtext/ui/util/UiThreadDispatcher.java index a453a142f..bc285b58f 100644 --- a/com.avaloq.tools.ddk.xtext.ui/src/com/avaloq/tools/ddk/xtext/ui/util/UiThreadDispatcher.java +++ b/com.avaloq.tools.ddk.xtext.ui/src/com/avaloq/tools/ddk/xtext/ui/util/UiThreadDispatcher.java @@ -62,7 +62,7 @@ public void run() { result.add(runnable.run()); } }); - Assert.isTrue(!result.isEmpty(), "Result is empty."); //$NON-NLS-1$ + Assertions.isTrue(!result.isEmpty(), "Result is empty."); //$NON-NLS-1$ return result.get(0); } diff --git a/com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/validation/ValidPreferenceStore.java b/com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/validation/ValidPreferenceStore.java index 4ee15e0dc..ba7e4f847 100644 --- a/com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/validation/ValidPreferenceStore.java +++ b/com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/validation/ValidPreferenceStore.java @@ -245,7 +245,7 @@ public void setSearchContexts(final IScopeContext[] scopes) { // NOPMD // the end) for (final IScopeContext scope : scopes) { if (scope.equals(DEFAULT_CONTEXT)) { - Assert.isTrue(false, "Do not add the default to the search contexts"); //$NON-NLS-1$ + Assertions.isTrue(false, "Do not add the default to the search contexts"); //$NON-NLS-1$ } } } From 5aaf9652769bc670935055c602d0474e0cb332ea Mon Sep 17 00:00:00 2001 From: Joao Ferreira Date: Thu, 4 Sep 2025 09:15:26 +0200 Subject: [PATCH 55/57] Roll back non-JUnit assert change --- .../tools/ddk/test/ui/swtbot/condition/WaitForTable.java | 2 +- .../tools/ddk/test/ui/swtbot/condition/WaitForTree.java | 2 +- .../src/com/avaloq/tools/ddk/xtext/ui/util/UiAssert.java | 4 ++-- .../avaloq/tools/ddk/xtext/ui/util/UiThreadDispatcher.java | 2 +- .../tools/ddk/xtext/validation/ValidPreferenceStore.java | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/com.avaloq.tools.ddk.test.ui/src/com/avaloq/tools/ddk/test/ui/swtbot/condition/WaitForTable.java b/com.avaloq.tools.ddk.test.ui/src/com/avaloq/tools/ddk/test/ui/swtbot/condition/WaitForTable.java index 3537057d8..a8fb33b45 100644 --- a/com.avaloq.tools.ddk.test.ui/src/com/avaloq/tools/ddk/test/ui/swtbot/condition/WaitForTable.java +++ b/com.avaloq.tools.ddk.test.ui/src/com/avaloq/tools/ddk/test/ui/swtbot/condition/WaitForTable.java @@ -36,7 +36,7 @@ public class WaitForTable extends WaitForObjectCondition { */ public WaitForTable(final Table parent) { super(WidgetMatcherFactory.widgetOfType(TableItem.class)); - Assertions.isNotNull(parent, "parent"); + Assert.isNotNull(parent, "parent"); this.parent = parent; } diff --git a/com.avaloq.tools.ddk.test.ui/src/com/avaloq/tools/ddk/test/ui/swtbot/condition/WaitForTree.java b/com.avaloq.tools.ddk.test.ui/src/com/avaloq/tools/ddk/test/ui/swtbot/condition/WaitForTree.java index 010968cd3..47748a4ed 100644 --- a/com.avaloq.tools.ddk.test.ui/src/com/avaloq/tools/ddk/test/ui/swtbot/condition/WaitForTree.java +++ b/com.avaloq.tools.ddk.test.ui/src/com/avaloq/tools/ddk/test/ui/swtbot/condition/WaitForTree.java @@ -36,7 +36,7 @@ public class WaitForTree extends WaitForObjectCondition { */ public WaitForTree(final Tree parent) { super(WidgetMatcherFactory.widgetOfType(TreeItem.class)); - Assertions.isNotNull(parent, "parent"); + Assert.isNotNull(parent, "parent"); this.parent = parent; } diff --git a/com.avaloq.tools.ddk.xtext.ui/src/com/avaloq/tools/ddk/xtext/ui/util/UiAssert.java b/com.avaloq.tools.ddk.xtext.ui/src/com/avaloq/tools/ddk/xtext/ui/util/UiAssert.java index 14bc19e1a..33fef1cbc 100644 --- a/com.avaloq.tools.ddk.xtext.ui/src/com/avaloq/tools/ddk/xtext/ui/util/UiAssert.java +++ b/com.avaloq.tools.ddk.xtext.ui/src/com/avaloq/tools/ddk/xtext/ui/util/UiAssert.java @@ -24,14 +24,14 @@ public final class UiAssert { * thread. */ public static void isNotUiThread() { - Assertions.isTrue(Display.getCurrent() == null, "Current statement is invoked on the UI thread."); //$NON-NLS-1$ + Assert.isTrue(Display.getCurrent() == null, "Current statement is invoked on the UI thread."); //$NON-NLS-1$ } /** * Ensures that the current statement is executed within the UI thread. */ public static void isUiThread() { - Assertions.isTrue(Display.getCurrent() != null, "Current statement is not invoked on the UI thread."); //$NON-NLS-1$ + Assert.isTrue(Display.getCurrent() != null, "Current statement is not invoked on the UI thread."); //$NON-NLS-1$ } /** diff --git a/com.avaloq.tools.ddk.xtext.ui/src/com/avaloq/tools/ddk/xtext/ui/util/UiThreadDispatcher.java b/com.avaloq.tools.ddk.xtext.ui/src/com/avaloq/tools/ddk/xtext/ui/util/UiThreadDispatcher.java index bc285b58f..a453a142f 100644 --- a/com.avaloq.tools.ddk.xtext.ui/src/com/avaloq/tools/ddk/xtext/ui/util/UiThreadDispatcher.java +++ b/com.avaloq.tools.ddk.xtext.ui/src/com/avaloq/tools/ddk/xtext/ui/util/UiThreadDispatcher.java @@ -62,7 +62,7 @@ public void run() { result.add(runnable.run()); } }); - Assertions.isTrue(!result.isEmpty(), "Result is empty."); //$NON-NLS-1$ + Assert.isTrue(!result.isEmpty(), "Result is empty."); //$NON-NLS-1$ return result.get(0); } diff --git a/com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/validation/ValidPreferenceStore.java b/com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/validation/ValidPreferenceStore.java index ba7e4f847..4ee15e0dc 100644 --- a/com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/validation/ValidPreferenceStore.java +++ b/com.avaloq.tools.ddk.xtext/src/com/avaloq/tools/ddk/xtext/validation/ValidPreferenceStore.java @@ -245,7 +245,7 @@ public void setSearchContexts(final IScopeContext[] scopes) { // NOPMD // the end) for (final IScopeContext scope : scopes) { if (scope.equals(DEFAULT_CONTEXT)) { - Assertions.isTrue(false, "Do not add the default to the search contexts"); //$NON-NLS-1$ + Assert.isTrue(false, "Do not add the default to the search contexts"); //$NON-NLS-1$ } } } From 4e2b220a1d31cd928c54616a966798b8a5473ef5 Mon Sep 17 00:00:00 2001 From: Joao Ferreira Date: Thu, 4 Sep 2025 09:17:47 +0200 Subject: [PATCH 56/57] Add missing "Assertions." imports --- .../tools/ddk/check/runtime/context/CheckContextTest.java | 1 + .../src/com/avaloq/tools/ddk/test/core/CompoundStep.java | 4 ++-- .../src/com/avaloq/tools/ddk/test/core/TestEntityAction.java | 2 +- .../com/avaloq/tools/ddk/test/core/util/CoreUtilTools.java | 2 +- .../avaloq/tools/ddk/test/core/util/JobChangeListener.java | 2 +- .../src/com/avaloq/tools/ddk/test/core/util/JobMatcher.java | 2 +- .../com/avaloq/tools/ddk/test/ui/swtbot/CoreSwtbotTools.java | 2 +- .../ddk/test/ui/swtbot/util/SwtBotToolbarButtonUtil.java | 2 +- .../tools/ddk/xtext/test/scoping/AbstractScopingTest.java | 2 +- 9 files changed, 10 insertions(+), 9 deletions(-) diff --git a/com.avaloq.tools.ddk.check.runtime.core.test/src/com/avaloq/tools/ddk/check/runtime/context/CheckContextTest.java b/com.avaloq.tools.ddk.check.runtime.core.test/src/com/avaloq/tools/ddk/check/runtime/context/CheckContextTest.java index de1811c21..2da235840 100644 --- a/com.avaloq.tools.ddk.check.runtime.core.test/src/com/avaloq/tools/ddk/check/runtime/context/CheckContextTest.java +++ b/com.avaloq.tools.ddk.check.runtime.core.test/src/com/avaloq/tools/ddk/check/runtime/context/CheckContextTest.java @@ -11,6 +11,7 @@ package com.avaloq.tools.ddk.check.runtime.context; import org.eclipse.emf.ecore.EObject; +import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Test; diff --git a/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/CompoundStep.java b/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/CompoundStep.java index 884d311e1..9eadac7e9 100644 --- a/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/CompoundStep.java +++ b/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/CompoundStep.java @@ -13,9 +13,9 @@ import java.util.List; import java.util.ListIterator; -import org.apache.logging.log4j.Logger; import org.apache.logging.log4j.LogManager; -import org.eclipse.core.runtime.Assert; +import org.apache.logging.log4j.Logger; +import org.junit.jupiter.api.Assertions; import com.google.common.collect.Lists; diff --git a/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/TestEntityAction.java b/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/TestEntityAction.java index 849e692ec..a7d6d0a01 100644 --- a/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/TestEntityAction.java +++ b/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/TestEntityAction.java @@ -10,7 +10,7 @@ *******************************************************************************/ package com.avaloq.tools.ddk.test.core; -import org.eclipse.core.runtime.Assert; +import org.junit.jupiter.api.Assertions; /** diff --git a/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/util/CoreUtilTools.java b/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/util/CoreUtilTools.java index cb5efc400..bb3928d58 100644 --- a/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/util/CoreUtilTools.java +++ b/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/util/CoreUtilTools.java @@ -15,7 +15,7 @@ import java.util.Locale; import org.apache.commons.lang.RandomStringUtils; -import org.eclipse.core.runtime.Assert; +import org.junit.jupiter.api.Assertions; /** diff --git a/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/util/JobChangeListener.java b/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/util/JobChangeListener.java index 99433cb62..bc957aaf8 100644 --- a/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/util/JobChangeListener.java +++ b/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/util/JobChangeListener.java @@ -14,11 +14,11 @@ import java.util.Map; import java.util.Set; -import org.eclipse.core.runtime.Assert; import org.eclipse.core.runtime.IStatus; import org.eclipse.core.runtime.jobs.IJobChangeEvent; import org.eclipse.core.runtime.jobs.Job; import org.eclipse.core.runtime.jobs.JobChangeAdapter; +import org.junit.jupiter.api.Assertions; import com.google.common.collect.Maps; import com.google.common.collect.Sets; diff --git a/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/util/JobMatcher.java b/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/util/JobMatcher.java index 4c1789b21..0e3d705ed 100644 --- a/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/util/JobMatcher.java +++ b/com.avaloq.tools.ddk.test.core/src/com/avaloq/tools/ddk/test/core/util/JobMatcher.java @@ -19,7 +19,7 @@ import org.eclipse.core.runtime.jobs.IJobChangeEvent; import org.eclipse.core.runtime.jobs.Job; import org.eclipse.core.runtime.jobs.JobChangeAdapter; -import org.junit.Assert; +import org.junit.jupiter.api.Assertions; import com.google.common.base.Predicate; import com.google.common.collect.ImmutableList; diff --git a/com.avaloq.tools.ddk.test.ui/src/com/avaloq/tools/ddk/test/ui/swtbot/CoreSwtbotTools.java b/com.avaloq.tools.ddk.test.ui/src/com/avaloq/tools/ddk/test/ui/swtbot/CoreSwtbotTools.java index 86b071b94..d256ee851 100644 --- a/com.avaloq.tools.ddk.test.ui/src/com/avaloq/tools/ddk/test/ui/swtbot/CoreSwtbotTools.java +++ b/com.avaloq.tools.ddk.test.ui/src/com/avaloq/tools/ddk/test/ui/swtbot/CoreSwtbotTools.java @@ -19,7 +19,6 @@ import java.util.Arrays; import java.util.List; -import org.eclipse.core.runtime.Assert; import org.eclipse.core.runtime.AssertionFailedException; import org.eclipse.emf.common.util.WrappedException; import org.eclipse.osgi.util.NLS; @@ -48,6 +47,7 @@ import org.eclipse.ui.PartInitException; import org.eclipse.ui.PlatformUI; import org.eclipse.ui.WorkbenchException; +import org.junit.jupiter.api.Assertions; import com.avaloq.tools.ddk.test.core.util.Reflect; import com.avaloq.tools.ddk.test.ui.swtbot.condition.WaitForTable; diff --git a/com.avaloq.tools.ddk.test.ui/src/com/avaloq/tools/ddk/test/ui/swtbot/util/SwtBotToolbarButtonUtil.java b/com.avaloq.tools.ddk.test.ui/src/com/avaloq/tools/ddk/test/ui/swtbot/util/SwtBotToolbarButtonUtil.java index 9508aa14a..79e64e547 100644 --- a/com.avaloq.tools.ddk.test.ui/src/com/avaloq/tools/ddk/test/ui/swtbot/util/SwtBotToolbarButtonUtil.java +++ b/com.avaloq.tools.ddk.test.ui/src/com/avaloq/tools/ddk/test/ui/swtbot/util/SwtBotToolbarButtonUtil.java @@ -10,10 +10,10 @@ *******************************************************************************/ package com.avaloq.tools.ddk.test.ui.swtbot.util; -import org.eclipse.core.runtime.Assert; import org.eclipse.swtbot.swt.finder.finders.UIThreadRunnable; import org.eclipse.swtbot.swt.finder.results.BoolResult; import org.eclipse.swtbot.swt.finder.widgets.SWTBotToolbarButton; +import org.junit.jupiter.api.Assertions; /** diff --git a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/scoping/AbstractScopingTest.java b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/scoping/AbstractScopingTest.java index 7bad90d29..b57637671 100644 --- a/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/scoping/AbstractScopingTest.java +++ b/com.avaloq.tools.ddk.xtext.test.core/src/com/avaloq/tools/ddk/xtext/test/scoping/AbstractScopingTest.java @@ -32,7 +32,6 @@ import java.util.function.Supplier; import java.util.regex.Pattern; -import org.eclipse.core.runtime.Assert; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.common.util.URI; import org.eclipse.emf.ecore.EClass; @@ -55,6 +54,7 @@ import org.eclipse.xtext.scoping.IScopeProvider; import org.eclipse.xtext.util.Triple; import org.eclipse.xtext.xbase.lib.Pair; +import org.junit.jupiter.api.Assertions; import com.avaloq.tools.ddk.caching.Regexps; import com.avaloq.tools.ddk.xtext.linking.AbstractFragmentProvider; From 13e495bceb5b69a7b635f130d698b96e36588aae Mon Sep 17 00:00:00 2001 From: Joao Ferreira Date: Thu, 4 Sep 2025 09:27:22 +0200 Subject: [PATCH 57/57] Add missing JUnit entries to MANIFEST.MF files --- .../META-INF/MANIFEST.MF | 5 +++-- com.avaloq.tools.ddk.check.ui.test/META-INF/MANIFEST.MF | 4 +++- com.avaloq.tools.ddk.typesystem.test/META-INF/MANIFEST.MF | 1 - 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/com.avaloq.tools.ddk.check.runtime.core.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.runtime.core.test/META-INF/MANIFEST.MF index b8e0ba2f7..13c24b253 100644 --- a/com.avaloq.tools.ddk.check.runtime.core.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.runtime.core.test/META-INF/MANIFEST.MF @@ -8,10 +8,11 @@ Bundle-RequiredExecutionEnvironment: JavaSE-21 Require-Bundle: org.eclipse.ui, org.eclipse.core.runtime, org.eclipse.xtext, - com.avaloq.tools.ddk.test.ui, + com.avaloq.tools.ddk.test.ui, com.avaloq.tools.ddk.check.runtime.core, org.junit.jupiter.api, - com.google.guava + com.google.guava, + junit-jupiter-api Export-Package: com.avaloq.tools.ddk.check.runtime.test.core Import-Package: org.mockito, org.mockito.stubbing diff --git a/com.avaloq.tools.ddk.check.ui.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.check.ui.test/META-INF/MANIFEST.MF index 2a927bfc5..81dda2b87 100644 --- a/com.avaloq.tools.ddk.check.ui.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.check.ui.test/META-INF/MANIFEST.MF @@ -20,7 +20,9 @@ Require-Bundle: org.junit.jupiter.api, org.eclipse.xtext.xbase.lib, org.eclipse.core.runtime, org.eclipse.ui.workbench;resolution:=optional, - org.objectweb.asm;resolution:=optional + org.objectweb.asm;resolution:=optional, + junit-jupiter-api, + org.junit Export-Package: com.avaloq.tools.ddk.check.ui.test, com.avaloq.tools.ddk.check.ui.test.util, com.avaloq.tools.ddk.check diff --git a/com.avaloq.tools.ddk.typesystem.test/META-INF/MANIFEST.MF b/com.avaloq.tools.ddk.typesystem.test/META-INF/MANIFEST.MF index f3f9af485..86e5949a8 100644 --- a/com.avaloq.tools.ddk.typesystem.test/META-INF/MANIFEST.MF +++ b/com.avaloq.tools.ddk.typesystem.test/META-INF/MANIFEST.MF @@ -9,7 +9,6 @@ Bundle-ActivationPolicy: lazy Fragment-Host: com.avaloq.tools.ddk.typesystem Require-Bundle: com.google.inject, com.google.guava, - org.junit, junit-jupiter-api Export-Package: com.avaloq.tools.ddk.typesystem.test Automatic-Module-Name: com.avaloq.tools.ddk.typesystem.test