From 03e55e8edfb10c0d47917cb0ef236c5e43ad5d9b Mon Sep 17 00:00:00 2001 From: Ernesto Posse Date: Wed, 7 Feb 2024 17:06:25 -0500 Subject: [PATCH 1/3] Fixed incorrect EOL in two xtend generated files --- .../xtend/typesystem/emf/EmfListType.java | 41 ++++++++++++++++++- .../ast/AbstractExtensionDefinition.java | 28 ++++++++++++- 2 files changed, 67 insertions(+), 2 deletions(-) diff --git a/patches/xtend/plugins/org.eclipse.xtend.typesystem.emf/src/org/eclipse/xtend/typesystem/emf/EmfListType.java b/patches/xtend/plugins/org.eclipse.xtend.typesystem.emf/src/org/eclipse/xtend/typesystem/emf/EmfListType.java index 5883f52b9..0d38b2871 100644 --- a/patches/xtend/plugins/org.eclipse.xtend.typesystem.emf/src/org/eclipse/xtend/typesystem/emf/EmfListType.java +++ b/patches/xtend/plugins/org.eclipse.xtend.typesystem.emf/src/org/eclipse/xtend/typesystem/emf/EmfListType.java @@ -1 +1,40 @@ -/******************************************************************************* * Copyright (c) 2005, 2009 committers of openArchitectureWare and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * committers of openArchitectureWare - initial API and implementation * QNX Software Systems - EmfListType rejects lists of data types *******************************************************************************/ package org.eclipse.xtend.typesystem.emf; import java.util.Collection; import org.eclipse.emf.common.util.BasicEList; import org.eclipse.emf.common.util.EList; import org.eclipse.internal.xtend.type.baseimpl.types.ListTypeImpl; import org.eclipse.xtend.expression.TypeSystem; import org.eclipse.xtend.typesystem.Type; public class EmfListType extends ListTypeImpl { public EmfListType(final Type innerType, final TypeSystem ts, final String name) { super(innerType, ts, name); } @SuppressWarnings({"unchecked","rawtypes"}) @Override public Object convert(Object src, Class targetType) { if (src instanceof EList) return src; if (src instanceof Collection) { return new BasicEList((Collection)src); } return super.convert(src, targetType); } } \ No newline at end of file +/******************************************************************************* + * Copyright (c) 2005, 2009 committers of openArchitectureWare and others. + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v1.0 + * which accompanies this distribution, and is available at + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * committers of openArchitectureWare - initial API and implementation + * QNX Software Systems - EmfListType rejects lists of data types + *******************************************************************************/ +package org.eclipse.xtend.typesystem.emf; + +import java.util.Collection; + +import org.eclipse.emf.common.util.BasicEList; +import org.eclipse.emf.common.util.EList; +import org.eclipse.internal.xtend.type.baseimpl.types.ListTypeImpl; +import org.eclipse.xtend.expression.TypeSystem; +import org.eclipse.xtend.typesystem.Type; + +public class EmfListType extends ListTypeImpl { + + public EmfListType(final Type innerType, final TypeSystem ts, final String name) { + super(innerType, ts, name); + } + + @SuppressWarnings({"unchecked","rawtypes"}) + @Override + public Object convert(Object src, Class targetType) { + if (src instanceof EList) + return src; + + if (src instanceof Collection) { + return new BasicEList((Collection)src); + } + + return super.convert(src, targetType); + } +} diff --git a/patches/xtend/plugins/org.eclipse.xtend/src/org/eclipse/internal/xtend/xtend/ast/AbstractExtensionDefinition.java b/patches/xtend/plugins/org.eclipse.xtend/src/org/eclipse/internal/xtend/xtend/ast/AbstractExtensionDefinition.java index 4e6ab881f..eda9897e5 100644 --- a/patches/xtend/plugins/org.eclipse.xtend/src/org/eclipse/internal/xtend/xtend/ast/AbstractExtensionDefinition.java +++ b/patches/xtend/plugins/org.eclipse.xtend/src/org/eclipse/internal/xtend/xtend/ast/AbstractExtensionDefinition.java @@ -1 +1,27 @@ -/******************************************************************************* * Copyright (c) 2005, 2009 committers of openArchitectureWare and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * committers of openArchitectureWare - initial API and implementation *******************************************************************************/ package org.eclipse.internal.xtend.xtend.ast; import java.util.List; import org.eclipse.internal.xtend.expression.ast.DeclaredParameter; import org.eclipse.internal.xtend.expression.ast.Expression; import org.eclipse.internal.xtend.expression.ast.Identifier; public abstract class AbstractExtensionDefinition extends AbstractExtension{ public AbstractExtensionDefinition(final Identifier name, final Identifier returnType, final List formalParameters, final boolean cached, final boolean isPrivate) { super(name, returnType, formalParameters, cached, isPrivate); } abstract public Expression getExpression(); } \ No newline at end of file +/******************************************************************************* + * Copyright (c) 2005, 2009 committers of openArchitectureWare and others. + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v1.0 + * which accompanies this distribution, and is available at + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * committers of openArchitectureWare - initial API and implementation + *******************************************************************************/ +package org.eclipse.internal.xtend.xtend.ast; + +import java.util.List; + +import org.eclipse.internal.xtend.expression.ast.DeclaredParameter; +import org.eclipse.internal.xtend.expression.ast.Expression; +import org.eclipse.internal.xtend.expression.ast.Identifier; + +public abstract class AbstractExtensionDefinition extends AbstractExtension{ + + public AbstractExtensionDefinition(final Identifier name, final Identifier returnType, final List formalParameters, + final boolean cached, final boolean isPrivate) { + super(name, returnType, formalParameters, cached, isPrivate); + } + + abstract public Expression getExpression(); +} From e147d902cb9b8ee418674e3938aaadead01abfc5 Mon Sep 17 00:00:00 2001 From: Ernesto Posse Date: Wed, 7 Feb 2024 17:17:24 -0500 Subject: [PATCH 2/3] Issue #490: update pom file versions to 3.0.0 Signed-off-by: Ernesto Posse --- bundles/pom.xml | 4 ++-- ddk/pom.xml | 4 ++-- features/pom.xml | 4 ++-- papyrus-patch/v4.4.0/pom.xml | 4 ++-- papyrus-patch/v4.4.0/site-papyrus-patch/pom.xml | 4 ++-- papyrus-patch/v4.8.0/pom.xml | 2 +- papyrus-patch/v4.8.0/site-papyrus-patch/pom.xml | 4 ++-- papyrus-patch/v6.5.0/nebula/features/pom.xml | 4 ++-- papyrus-patch/v6.5.0/nebula/plugins/pom.xml | 4 ++-- papyrus-patch/v6.5.0/nebula/pom.xml | 4 ++-- papyrus-patch/v6.5.0/papyrus/features/pom.xml | 4 ++-- papyrus-patch/v6.5.0/papyrus/plugins/pom.xml | 4 ++-- papyrus-patch/v6.5.0/papyrus/plugins/uml/pom.xml | 4 ++-- papyrus-patch/v6.5.0/papyrus/pom.xml | 4 ++-- papyrus-patch/v6.5.0/pom.xml | 2 +- papyrus-patch/v6.5.0/site-papyrus-patch/pom.xml | 4 ++-- patches/apache/ant/features/pom.xml | 4 ++-- patches/apache/ant/plugins/org.apache.ant/pom.xml | 2 +- patches/apache/ant/plugins/pom.xml | 4 ++-- patches/apache/ant/pom.xml | 4 ++-- patches/apache/freemarker/features/pom.xml | 4 ++-- patches/apache/freemarker/plugins/org.freemarker/pom.xml | 2 +- patches/apache/freemarker/plugins/pom.xml | 4 ++-- patches/apache/freemarker/pom.xml | 4 ++-- patches/apache/httpcomponents/httpclient/features/pom.xml | 4 ++-- .../plugins/org.apache.httpcomponents.httpclient/pom.xml | 2 +- patches/apache/httpcomponents/httpclient/plugins/pom.xml | 4 ++-- patches/apache/httpcomponents/httpclient/pom.xml | 4 ++-- patches/apache/httpcomponents/pom.xml | 4 ++-- patches/apache/pom.xml | 4 ++-- patches/apache/xmlgraphics/features/pom.xml | 4 ++-- patches/apache/xmlgraphics/plugins/pom.xml | 4 ++-- patches/apache/xmlgraphics/pom.xml | 4 ++-- patches/ecf/features/pom.xml | 4 ++-- patches/ecf/plugins/pom.xml | 4 ++-- patches/ecf/pom.xml | 4 ++-- patches/eclipse/features/org.eclipse.e4.rcp/pom.xml | 2 +- patches/eclipse/features/org.eclipse.e4.rcp/xpom.xml | 2 +- .../eclipse/features/org.eclipse.platform-feature/pom.xml | 2 +- patches/eclipse/features/org.eclipse.rcp/pom.xml | 2 +- patches/eclipse/features/pom.xml | 4 ++-- patches/eclipse/plugins/pom.xml | 4 ++-- patches/eclipse/pom.xml | 4 ++-- .../gmf/features/org.eclipse.gmf.runtime-feature/pom.xml | 2 +- .../features/org.eclipse.gmf.runtime.sdk-feature/pom.xml | 2 +- .../org.eclipse.gmf.runtime.thirdparty-feature/pom.xml | 2 +- .../pom.xml | 2 +- patches/gmf/features/org.eclipse.gmf.source-feature/pom.xml | 2 +- patches/gmf/features/pom.xml | 4 ++-- patches/gmf/plugins/pom.xml | 4 ++-- patches/gmf/pom.xml | 6 +++--- .../mwe2/features/org.eclipse.emf.mwe.core-feature/pom.xml | 2 +- .../org.eclipse.emf.mwe2.language.sdk-feature/pom.xml | 2 +- .../features/org.eclipse.emf.mwe2.launcher-feature/pom.xml | 2 +- .../org.eclipse.emf.mwe2.runtime.sdk-feature/pom.xml | 2 +- patches/mwe2/features/pom.xml | 4 ++-- patches/mwe2/plugins/pom.xml | 4 ++-- patches/mwe2/pom.xml | 4 ++-- patches/nebula/features/pom.xml | 4 ++-- patches/nebula/plugins/pom.xml | 4 ++-- patches/nebula/pom.xml | 4 ++-- patches/ocl/examples/pom.xml | 4 ++-- patches/ocl/features/pom.xml | 4 ++-- patches/ocl/plugins/org.eclipse.ocl.pivot/pom.xml | 2 +- patches/ocl/plugins/pom.xml | 4 ++-- patches/ocl/pom.xml | 6 +++--- .../pom.xml | 4 ++-- patches/ocl/releng/pom.xml | 4 ++-- patches/papyrus.compare/features/pom.xml | 4 ++-- patches/papyrus.compare/plugins/pom.xml | 4 ++-- patches/papyrus.compare/pom.xml | 4 ++-- patches/papyrus/features/pom.xml | 4 ++-- patches/papyrus/plugins/infra/architecture/pom.xml | 4 ++-- .../org.eclipse.papyrus.infra.gmfdiag.css3.xtext/pom.xml | 2 +- patches/papyrus/plugins/infra/gmfdiag/css/pom.xml | 4 ++-- patches/papyrus/plugins/infra/gmfdiag/pom.xml | 4 ++-- patches/papyrus/plugins/infra/pom.xml | 4 ++-- patches/papyrus/plugins/pom.xml | 4 ++-- .../plugins/uml/alf/org.eclipse.papyrus.uml.alf/pom.xml | 2 +- patches/papyrus/plugins/uml/alf/pom.xml | 4 ++-- patches/papyrus/plugins/uml/pom.xml | 4 ++-- patches/papyrus/plugins/uml/properties/pom.xml | 4 ++-- patches/papyrus/plugins/uml/textedit/pom.xml | 4 ++-- patches/papyrus/pom.xml | 4 ++-- patches/pom.xml | 4 ++-- patches/xpand/features/org.eclipse.xpand-feature/pom.xml | 2 +- patches/xpand/features/pom.xml | 4 ++-- patches/xpand/plugins/pom.xml | 4 ++-- patches/xpand/pom.xml | 4 ++-- .../com.zeligsoft.dds4ccm.xpand.nodeploy.parent/pom.xml | 2 +- patches/xtend/features/org.eclipse.xtend-feature/pom.xml | 2 +- .../features/org.eclipse.xtend.dependencies-feature/pom.xml | 2 +- .../org.eclipse.xtend.typesystem.emf-feature/pom.xml | 2 +- .../org.eclipse.xtend.typesystem.uml2-feature/pom.xml | 2 +- .../org.eclipse.xtend.typesystem.xsd-feature/pom.xml | 2 +- patches/xtend/features/pom.xml | 4 ++-- patches/xtend/plugins/pom.xml | 4 ++-- patches/xtend/pom.xml | 4 ++-- .../com.zeligsoft.dds4ccm.xtend.nodeploy.parent/pom.xml | 2 +- .../xtend2/features/org.eclipse.xtend.sdk.feature/pom.xml | 2 +- patches/xtend2/features/pom.xml | 4 ++-- patches/xtend2/plugins/org.eclipse.xtend.ide/pom.xml | 2 +- patches/xtend2/plugins/pom.xml | 4 ++-- patches/xtend2/pom.xml | 4 ++-- .../com.zeligsoft.dds4ccm.xtend2.nodeploy.parent/pom.xml | 2 +- .../xtext/features/com.zeligsoft.xtext.ui.feature/pom.xml | 2 +- patches/xtext/features/org.eclipse.xtext.ui.feature/pom.xml | 2 +- .../xtext/features/org.eclipse.xtext.xbase.feature/pom.xml | 2 +- patches/xtext/features/pom.xml | 4 ++-- .../org.eclipse.xtext.common.types.shared.jdt38/pom.xml | 2 +- patches/xtext/plugins/org.eclipse.xtext.logging/pom.xml | 2 +- patches/xtext/plugins/pom.xml | 4 ++-- patches/xtext/pom.xml | 4 ++-- .../com.zeligsoft.dds4ccm.xtext.nodeploy.parent/pom.xml | 2 +- pom.xml | 4 ++-- releng/com.zeligsoft.ddk.update/pom.xml | 4 ++-- releng/com.zeligsoft.dds4ccm.configuration/pom.xml | 4 ++-- releng/com.zeligsoft.dds4ccm.update.atcd/pom.xml | 4 ++-- releng/com.zeligsoft.dds4ccm.update.axcioma/pom.xml | 4 ++-- releng/com.zeligsoft.papyrus-cx.axcioma.rcp.product/pom.xml | 2 +- .../pom.xml | 4 ++-- releng/pom.xml | 4 ++-- 122 files changed, 207 insertions(+), 207 deletions(-) diff --git a/bundles/pom.xml b/bundles/pom.xml index 02b58e775..6647730ba 100644 --- a/bundles/pom.xml +++ b/bundles/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.bundles - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.root - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/ddk/pom.xml b/ddk/pom.xml index c8ed6acf4..4dfe84adc 100644 --- a/ddk/pom.xml +++ b/ddk/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.ddk.bundles - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.root - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/features/pom.xml b/features/pom.xml index b9ff6cbb6..737ce38a4 100644 --- a/features/pom.xml +++ b/features/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.features - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.root - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/papyrus-patch/v4.4.0/pom.xml b/papyrus-patch/v4.4.0/pom.xml index e956e3bbd..ce322e5a5 100644 --- a/papyrus-patch/v4.4.0/pom.xml +++ b/papyrus-patch/v4.4.0/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.papyrus-patch-v440 - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.root - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT ../.. diff --git a/papyrus-patch/v4.4.0/site-papyrus-patch/pom.xml b/papyrus-patch/v4.4.0/site-papyrus-patch/pom.xml index 4786a36d5..762b586ac 100644 --- a/papyrus-patch/v4.4.0/site-papyrus-patch/pom.xml +++ b/papyrus-patch/v4.4.0/site-papyrus-patch/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.papyrus-patch-site-v440 - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT eclipse-update-site com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.papyrus-patch-v440 - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/papyrus-patch/v4.8.0/pom.xml b/papyrus-patch/v4.8.0/pom.xml index ba2ee7b8a..bce9461a9 100644 --- a/papyrus-patch/v4.8.0/pom.xml +++ b/papyrus-patch/v4.8.0/pom.xml @@ -4,7 +4,7 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.papyrus-patch-v480 - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom diff --git a/papyrus-patch/v4.8.0/site-papyrus-patch/pom.xml b/papyrus-patch/v4.8.0/site-papyrus-patch/pom.xml index 28a5e8973..a638c55ee 100644 --- a/papyrus-patch/v4.8.0/site-papyrus-patch/pom.xml +++ b/papyrus-patch/v4.8.0/site-papyrus-patch/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.papyrus-patch-site-v480 - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT eclipse-update-site com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.papyrus-patch-v480 - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/papyrus-patch/v6.5.0/nebula/features/pom.xml b/papyrus-patch/v6.5.0/nebula/features/pom.xml index 2ae0feebd..42ee348e1 100644 --- a/papyrus-patch/v6.5.0/nebula/features/pom.xml +++ b/papyrus-patch/v6.5.0/nebula/features/pom.xml @@ -4,12 +4,12 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.papyrus-patch-v650.nebula.features - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.papyrus-patch-v650.nebula - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/papyrus-patch/v6.5.0/nebula/plugins/pom.xml b/papyrus-patch/v6.5.0/nebula/plugins/pom.xml index 70b9bceaa..e41d9cd8a 100644 --- a/papyrus-patch/v6.5.0/nebula/plugins/pom.xml +++ b/papyrus-patch/v6.5.0/nebula/plugins/pom.xml @@ -4,12 +4,12 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.papyrus-patch-v650.nebula.plugins - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.papyrus-patch-v650.nebula - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/papyrus-patch/v6.5.0/nebula/pom.xml b/papyrus-patch/v6.5.0/nebula/pom.xml index 125ade582..b4ce4d7c9 100644 --- a/papyrus-patch/v6.5.0/nebula/pom.xml +++ b/papyrus-patch/v6.5.0/nebula/pom.xml @@ -4,12 +4,12 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.papyrus-patch-v650.nebula - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.papyrus-patch-v650 - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/papyrus-patch/v6.5.0/papyrus/features/pom.xml b/papyrus-patch/v6.5.0/papyrus/features/pom.xml index 96ae9f594..aeb04e9f6 100644 --- a/papyrus-patch/v6.5.0/papyrus/features/pom.xml +++ b/papyrus-patch/v6.5.0/papyrus/features/pom.xml @@ -4,12 +4,12 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.papyrus-patch-v650.papyrus.features - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.papyrus-patch-v650.papyrus - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/papyrus-patch/v6.5.0/papyrus/plugins/pom.xml b/papyrus-patch/v6.5.0/papyrus/plugins/pom.xml index fb209cf86..b5aea8753 100644 --- a/papyrus-patch/v6.5.0/papyrus/plugins/pom.xml +++ b/papyrus-patch/v6.5.0/papyrus/plugins/pom.xml @@ -4,12 +4,12 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.papyrus-patch-v650.papyrus.plugins - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.papyrus-patch-v650.papyrus - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/papyrus-patch/v6.5.0/papyrus/plugins/uml/pom.xml b/papyrus-patch/v6.5.0/papyrus/plugins/uml/pom.xml index ba3ffd64e..3278a247b 100644 --- a/papyrus-patch/v6.5.0/papyrus/plugins/uml/pom.xml +++ b/papyrus-patch/v6.5.0/papyrus/plugins/uml/pom.xml @@ -4,12 +4,12 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.papyrus-patch-v650.papyrus.plugins.uml - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.papyrus-patch-v650.papyrus.plugins - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/papyrus-patch/v6.5.0/papyrus/pom.xml b/papyrus-patch/v6.5.0/papyrus/pom.xml index eaddfaa7f..ce87acd14 100644 --- a/papyrus-patch/v6.5.0/papyrus/pom.xml +++ b/papyrus-patch/v6.5.0/papyrus/pom.xml @@ -4,12 +4,12 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.papyrus-patch-v650.papyrus - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.papyrus-patch-v650 - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/papyrus-patch/v6.5.0/pom.xml b/papyrus-patch/v6.5.0/pom.xml index ee4687139..23613e7e9 100644 --- a/papyrus-patch/v6.5.0/pom.xml +++ b/papyrus-patch/v6.5.0/pom.xml @@ -4,7 +4,7 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.papyrus-patch-v650 - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom diff --git a/papyrus-patch/v6.5.0/site-papyrus-patch/pom.xml b/papyrus-patch/v6.5.0/site-papyrus-patch/pom.xml index 2eeefb457..bae53d75f 100644 --- a/papyrus-patch/v6.5.0/site-papyrus-patch/pom.xml +++ b/papyrus-patch/v6.5.0/site-papyrus-patch/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.papyrus-patch-site-v650 - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT eclipse-update-site com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.papyrus-patch-v650 - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/patches/apache/ant/features/pom.xml b/patches/apache/ant/features/pom.xml index 1aef21c1d..ad031d342 100644 --- a/patches/apache/ant/features/pom.xml +++ b/patches/apache/ant/features/pom.xml @@ -4,12 +4,12 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.apache.ant.features - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.apache.ant - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/patches/apache/ant/plugins/org.apache.ant/pom.xml b/patches/apache/ant/plugins/org.apache.ant/pom.xml index d467bff65..29780ff8a 100644 --- a/patches/apache/ant/plugins/org.apache.ant/pom.xml +++ b/patches/apache/ant/plugins/org.apache.ant/pom.xml @@ -4,7 +4,7 @@ com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.apache.ant.plugins - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT com.zeligsoft.dds4ccm org.apache.ant diff --git a/patches/apache/ant/plugins/pom.xml b/patches/apache/ant/plugins/pom.xml index af4549bd8..590e79be0 100644 --- a/patches/apache/ant/plugins/pom.xml +++ b/patches/apache/ant/plugins/pom.xml @@ -4,12 +4,12 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.apache.ant.plugins - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.apache.ant - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/patches/apache/ant/pom.xml b/patches/apache/ant/pom.xml index 9c3a6b8a0..bcf2098f3 100644 --- a/patches/apache/ant/pom.xml +++ b/patches/apache/ant/pom.xml @@ -4,12 +4,12 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.apache.ant - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.apache - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/patches/apache/freemarker/features/pom.xml b/patches/apache/freemarker/features/pom.xml index 40e1bd8ef..f81af21bf 100644 --- a/patches/apache/freemarker/features/pom.xml +++ b/patches/apache/freemarker/features/pom.xml @@ -4,12 +4,12 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.apache.freemarker.features - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.apache.freemarker - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/patches/apache/freemarker/plugins/org.freemarker/pom.xml b/patches/apache/freemarker/plugins/org.freemarker/pom.xml index bb4d618eb..041a074bc 100644 --- a/patches/apache/freemarker/plugins/org.freemarker/pom.xml +++ b/patches/apache/freemarker/plugins/org.freemarker/pom.xml @@ -7,7 +7,7 @@ com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.apache.freemarker.plugins - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT org.freemarker 2.3.22-SNAPSHOT diff --git a/patches/apache/freemarker/plugins/pom.xml b/patches/apache/freemarker/plugins/pom.xml index 1c124ce0a..6f406519d 100644 --- a/patches/apache/freemarker/plugins/pom.xml +++ b/patches/apache/freemarker/plugins/pom.xml @@ -4,12 +4,12 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.apache.freemarker.plugins - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.apache.freemarker - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/patches/apache/freemarker/pom.xml b/patches/apache/freemarker/pom.xml index e66103500..face9e278 100644 --- a/patches/apache/freemarker/pom.xml +++ b/patches/apache/freemarker/pom.xml @@ -4,12 +4,12 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.apache.freemarker - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.apache - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/patches/apache/httpcomponents/httpclient/features/pom.xml b/patches/apache/httpcomponents/httpclient/features/pom.xml index 56e853a18..e81f5cf80 100644 --- a/patches/apache/httpcomponents/httpclient/features/pom.xml +++ b/patches/apache/httpcomponents/httpclient/features/pom.xml @@ -4,12 +4,12 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.apache.httpcomponents.httpclient.features - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.apache.httpcomponents.httpclient - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/patches/apache/httpcomponents/httpclient/plugins/org.apache.httpcomponents.httpclient/pom.xml b/patches/apache/httpcomponents/httpclient/plugins/org.apache.httpcomponents.httpclient/pom.xml index 06feeb8b3..915c96273 100644 --- a/patches/apache/httpcomponents/httpclient/plugins/org.apache.httpcomponents.httpclient/pom.xml +++ b/patches/apache/httpcomponents/httpclient/plugins/org.apache.httpcomponents.httpclient/pom.xml @@ -7,7 +7,7 @@ com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.apache.httpcomponents.httpclient.plugins - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT org.apache.httpcomponents.httpclient 4.5.14-SNAPSHOT diff --git a/patches/apache/httpcomponents/httpclient/plugins/pom.xml b/patches/apache/httpcomponents/httpclient/plugins/pom.xml index 2bc3d5160..060314d37 100644 --- a/patches/apache/httpcomponents/httpclient/plugins/pom.xml +++ b/patches/apache/httpcomponents/httpclient/plugins/pom.xml @@ -4,12 +4,12 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.apache.httpcomponents.httpclient.plugins - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.apache.httpcomponents.httpclient - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/patches/apache/httpcomponents/httpclient/pom.xml b/patches/apache/httpcomponents/httpclient/pom.xml index 9aaf4c32b..d76d0f4e5 100644 --- a/patches/apache/httpcomponents/httpclient/pom.xml +++ b/patches/apache/httpcomponents/httpclient/pom.xml @@ -4,12 +4,12 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.apache.httpcomponents.httpclient - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.apache.httpcomponents - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/patches/apache/httpcomponents/pom.xml b/patches/apache/httpcomponents/pom.xml index 621e82d90..1c5083b21 100644 --- a/patches/apache/httpcomponents/pom.xml +++ b/patches/apache/httpcomponents/pom.xml @@ -4,12 +4,12 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.apache.httpcomponents - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.apache - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/patches/apache/pom.xml b/patches/apache/pom.xml index 884e3f6a1..5b7af0530 100644 --- a/patches/apache/pom.xml +++ b/patches/apache/pom.xml @@ -4,12 +4,12 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.apache - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/patches/apache/xmlgraphics/features/pom.xml b/patches/apache/xmlgraphics/features/pom.xml index 7bc4e0c5f..64e00c732 100644 --- a/patches/apache/xmlgraphics/features/pom.xml +++ b/patches/apache/xmlgraphics/features/pom.xml @@ -4,12 +4,12 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.apache.xmlgraphics.features - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.apache.xmlgraphics - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/patches/apache/xmlgraphics/plugins/pom.xml b/patches/apache/xmlgraphics/plugins/pom.xml index a3f351736..422b48e87 100644 --- a/patches/apache/xmlgraphics/plugins/pom.xml +++ b/patches/apache/xmlgraphics/plugins/pom.xml @@ -4,12 +4,12 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.apache.xmlgraphics.plugins - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.apache.xmlgraphics - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/patches/apache/xmlgraphics/pom.xml b/patches/apache/xmlgraphics/pom.xml index b7b48e8eb..fbb08e2a3 100644 --- a/patches/apache/xmlgraphics/pom.xml +++ b/patches/apache/xmlgraphics/pom.xml @@ -4,12 +4,12 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.apache.xmlgraphics - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.apache - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/patches/ecf/features/pom.xml b/patches/ecf/features/pom.xml index 7d3816707..41c6b4861 100644 --- a/patches/ecf/features/pom.xml +++ b/patches/ecf/features/pom.xml @@ -4,12 +4,12 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.ecf.features - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.ecf - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/patches/ecf/plugins/pom.xml b/patches/ecf/plugins/pom.xml index 27f5e27f1..95ce7722f 100644 --- a/patches/ecf/plugins/pom.xml +++ b/patches/ecf/plugins/pom.xml @@ -4,12 +4,12 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.ecf.plugins - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.ecf - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/patches/ecf/pom.xml b/patches/ecf/pom.xml index c03159c5a..73646d769 100644 --- a/patches/ecf/pom.xml +++ b/patches/ecf/pom.xml @@ -4,12 +4,12 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.ecf - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/patches/eclipse/features/org.eclipse.e4.rcp/pom.xml b/patches/eclipse/features/org.eclipse.e4.rcp/pom.xml index 5962cf776..9e44851df 100644 --- a/patches/eclipse/features/org.eclipse.e4.rcp/pom.xml +++ b/patches/eclipse/features/org.eclipse.e4.rcp/pom.xml @@ -10,6 +10,6 @@ com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.eclipse.features - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/patches/eclipse/features/org.eclipse.e4.rcp/xpom.xml b/patches/eclipse/features/org.eclipse.e4.rcp/xpom.xml index a6728863e..c9375a0fe 100644 --- a/patches/eclipse/features/org.eclipse.e4.rcp/xpom.xml +++ b/patches/eclipse/features/org.eclipse.e4.rcp/xpom.xml @@ -8,6 +8,6 @@ com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.e4.features - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/patches/eclipse/features/org.eclipse.platform-feature/pom.xml b/patches/eclipse/features/org.eclipse.platform-feature/pom.xml index 9852ae4c0..834539e70 100644 --- a/patches/eclipse/features/org.eclipse.platform-feature/pom.xml +++ b/patches/eclipse/features/org.eclipse.platform-feature/pom.xml @@ -20,7 +20,7 @@ com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.eclipse.features - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT org.eclipse.platform.feature diff --git a/patches/eclipse/features/org.eclipse.rcp/pom.xml b/patches/eclipse/features/org.eclipse.rcp/pom.xml index bced08fc0..120c63f15 100644 --- a/patches/eclipse/features/org.eclipse.rcp/pom.xml +++ b/patches/eclipse/features/org.eclipse.rcp/pom.xml @@ -17,7 +17,7 @@ com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.eclipse.features - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/patches/eclipse/features/pom.xml b/patches/eclipse/features/pom.xml index 615872062..421c44072 100644 --- a/patches/eclipse/features/pom.xml +++ b/patches/eclipse/features/pom.xml @@ -4,12 +4,12 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.eclipse.features - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.eclipse - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/patches/eclipse/plugins/pom.xml b/patches/eclipse/plugins/pom.xml index b797075dc..d1cb48150 100644 --- a/patches/eclipse/plugins/pom.xml +++ b/patches/eclipse/plugins/pom.xml @@ -4,12 +4,12 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.eclipse.plugins - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.eclipse - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/patches/eclipse/pom.xml b/patches/eclipse/pom.xml index 652c4f919..01311daf7 100644 --- a/patches/eclipse/pom.xml +++ b/patches/eclipse/pom.xml @@ -4,12 +4,12 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.eclipse - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/patches/gmf/features/org.eclipse.gmf.runtime-feature/pom.xml b/patches/gmf/features/org.eclipse.gmf.runtime-feature/pom.xml index 1f0d14e26..aaf166eea 100644 --- a/patches/gmf/features/org.eclipse.gmf.runtime-feature/pom.xml +++ b/patches/gmf/features/org.eclipse.gmf.runtime-feature/pom.xml @@ -8,6 +8,6 @@ com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.gmf.features - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/patches/gmf/features/org.eclipse.gmf.runtime.sdk-feature/pom.xml b/patches/gmf/features/org.eclipse.gmf.runtime.sdk-feature/pom.xml index 82940c3b6..738c73736 100644 --- a/patches/gmf/features/org.eclipse.gmf.runtime.sdk-feature/pom.xml +++ b/patches/gmf/features/org.eclipse.gmf.runtime.sdk-feature/pom.xml @@ -8,6 +8,6 @@ com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.gmf.features - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/patches/gmf/features/org.eclipse.gmf.runtime.thirdparty-feature/pom.xml b/patches/gmf/features/org.eclipse.gmf.runtime.thirdparty-feature/pom.xml index 62c1c04b4..9a56ded87 100644 --- a/patches/gmf/features/org.eclipse.gmf.runtime.thirdparty-feature/pom.xml +++ b/patches/gmf/features/org.eclipse.gmf.runtime.thirdparty-feature/pom.xml @@ -8,6 +8,6 @@ com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.gmf.features - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/patches/gmf/features/org.eclipse.gmf.runtime.thirdparty.source-feature/pom.xml b/patches/gmf/features/org.eclipse.gmf.runtime.thirdparty.source-feature/pom.xml index c2bf924a4..8ba799ef5 100644 --- a/patches/gmf/features/org.eclipse.gmf.runtime.thirdparty.source-feature/pom.xml +++ b/patches/gmf/features/org.eclipse.gmf.runtime.thirdparty.source-feature/pom.xml @@ -8,6 +8,6 @@ com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.gmf.features - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/patches/gmf/features/org.eclipse.gmf.source-feature/pom.xml b/patches/gmf/features/org.eclipse.gmf.source-feature/pom.xml index 875664e6d..e35c7c729 100644 --- a/patches/gmf/features/org.eclipse.gmf.source-feature/pom.xml +++ b/patches/gmf/features/org.eclipse.gmf.source-feature/pom.xml @@ -8,6 +8,6 @@ com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.gmf.features - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/patches/gmf/features/pom.xml b/patches/gmf/features/pom.xml index c2f2b6f9b..95606dd3c 100644 --- a/patches/gmf/features/pom.xml +++ b/patches/gmf/features/pom.xml @@ -4,12 +4,12 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.gmf.features - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.gmf - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/patches/gmf/plugins/pom.xml b/patches/gmf/plugins/pom.xml index db4c6109d..3e586e510 100644 --- a/patches/gmf/plugins/pom.xml +++ b/patches/gmf/plugins/pom.xml @@ -4,12 +4,12 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.gmf.plugins - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.gmf - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/patches/gmf/pom.xml b/patches/gmf/pom.xml index 36f2f9206..f0c4d9fa7 100644 --- a/patches/gmf/pom.xml +++ b/patches/gmf/pom.xml @@ -4,12 +4,12 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.gmf - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT @@ -33,7 +33,7 @@ com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.gmf.releng.targetdefinition - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT release-1.16 diff --git a/patches/mwe2/features/org.eclipse.emf.mwe.core-feature/pom.xml b/patches/mwe2/features/org.eclipse.emf.mwe.core-feature/pom.xml index 9c44facfa..32ca5b631 100644 --- a/patches/mwe2/features/org.eclipse.emf.mwe.core-feature/pom.xml +++ b/patches/mwe2/features/org.eclipse.emf.mwe.core-feature/pom.xml @@ -3,7 +3,7 @@ com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.mwe2.features - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT eclipse-feature org.eclipse.emf.mwe2.feature diff --git a/patches/mwe2/features/org.eclipse.emf.mwe2.language.sdk-feature/pom.xml b/patches/mwe2/features/org.eclipse.emf.mwe2.language.sdk-feature/pom.xml index abd7b35ab..6b9224998 100644 --- a/patches/mwe2/features/org.eclipse.emf.mwe2.language.sdk-feature/pom.xml +++ b/patches/mwe2/features/org.eclipse.emf.mwe2.language.sdk-feature/pom.xml @@ -3,7 +3,7 @@ com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.mwe2.features - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT eclipse-feature org.eclipse.emf.mwe2.feature diff --git a/patches/mwe2/features/org.eclipse.emf.mwe2.launcher-feature/pom.xml b/patches/mwe2/features/org.eclipse.emf.mwe2.launcher-feature/pom.xml index 63207a02e..0e6856152 100644 --- a/patches/mwe2/features/org.eclipse.emf.mwe2.launcher-feature/pom.xml +++ b/patches/mwe2/features/org.eclipse.emf.mwe2.launcher-feature/pom.xml @@ -5,7 +5,7 @@ com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.mwe2.features - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT eclipse-feature org.eclipse.emf.mwe2.feature diff --git a/patches/mwe2/features/org.eclipse.emf.mwe2.runtime.sdk-feature/pom.xml b/patches/mwe2/features/org.eclipse.emf.mwe2.runtime.sdk-feature/pom.xml index 218a250bd..eeaa277ef 100644 --- a/patches/mwe2/features/org.eclipse.emf.mwe2.runtime.sdk-feature/pom.xml +++ b/patches/mwe2/features/org.eclipse.emf.mwe2.runtime.sdk-feature/pom.xml @@ -3,7 +3,7 @@ com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.mwe2.features - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT eclipse-feature org.eclipse.emf.mwe2.feature diff --git a/patches/mwe2/features/pom.xml b/patches/mwe2/features/pom.xml index 8eb51896b..c981f776b 100644 --- a/patches/mwe2/features/pom.xml +++ b/patches/mwe2/features/pom.xml @@ -4,12 +4,12 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.mwe2.features - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.mwe2 - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/patches/mwe2/plugins/pom.xml b/patches/mwe2/plugins/pom.xml index 57c785148..6cbe63af1 100644 --- a/patches/mwe2/plugins/pom.xml +++ b/patches/mwe2/plugins/pom.xml @@ -4,12 +4,12 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.mwe2.plugins - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.mwe2 - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/patches/mwe2/pom.xml b/patches/mwe2/pom.xml index b35974263..0dfb4923c 100644 --- a/patches/mwe2/pom.xml +++ b/patches/mwe2/pom.xml @@ -4,12 +4,12 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.mwe2 - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/patches/nebula/features/pom.xml b/patches/nebula/features/pom.xml index 0fbe0d9fe..fc628106a 100644 --- a/patches/nebula/features/pom.xml +++ b/patches/nebula/features/pom.xml @@ -4,12 +4,12 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.nebula.features - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.nebula - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/patches/nebula/plugins/pom.xml b/patches/nebula/plugins/pom.xml index 6297887de..1d1135e54 100644 --- a/patches/nebula/plugins/pom.xml +++ b/patches/nebula/plugins/pom.xml @@ -4,12 +4,12 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.nebula.plugins - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.nebula - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/patches/nebula/pom.xml b/patches/nebula/pom.xml index 87953d25d..757293628 100644 --- a/patches/nebula/pom.xml +++ b/patches/nebula/pom.xml @@ -4,12 +4,12 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.nebula - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/patches/ocl/examples/pom.xml b/patches/ocl/examples/pom.xml index 5667c837d..87e8e41a6 100644 --- a/patches/ocl/examples/pom.xml +++ b/patches/ocl/examples/pom.xml @@ -4,12 +4,12 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.ocl.examples - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.ocl - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/patches/ocl/features/pom.xml b/patches/ocl/features/pom.xml index c43733020..e678c9ac8 100644 --- a/patches/ocl/features/pom.xml +++ b/patches/ocl/features/pom.xml @@ -4,12 +4,12 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.ocl.features - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.ocl - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/patches/ocl/plugins/org.eclipse.ocl.pivot/pom.xml b/patches/ocl/plugins/org.eclipse.ocl.pivot/pom.xml index 032c0b790..bf905826f 100644 --- a/patches/ocl/plugins/org.eclipse.ocl.pivot/pom.xml +++ b/patches/ocl/plugins/org.eclipse.ocl.pivot/pom.xml @@ -10,7 +10,7 @@ com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.ocl.plugins - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/patches/ocl/plugins/pom.xml b/patches/ocl/plugins/pom.xml index d90d77e8d..86d124cbe 100644 --- a/patches/ocl/plugins/pom.xml +++ b/patches/ocl/plugins/pom.xml @@ -4,12 +4,12 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.ocl.plugins - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.ocl - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/patches/ocl/pom.xml b/patches/ocl/pom.xml index bfd855811..0e4b8b115 100644 --- a/patches/ocl/pom.xml +++ b/patches/ocl/pom.xml @@ -4,12 +4,12 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.ocl - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT @@ -43,7 +43,7 @@ com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.ocl.releng.targetdefinition - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT release-6.18 diff --git a/patches/ocl/releng/com.zeligsoft.dds4ccm.patches.ocl.releng.targetdefinition/pom.xml b/patches/ocl/releng/com.zeligsoft.dds4ccm.patches.ocl.releng.targetdefinition/pom.xml index da5c0ad00..777f05806 100644 --- a/patches/ocl/releng/com.zeligsoft.dds4ccm.patches.ocl.releng.targetdefinition/pom.xml +++ b/patches/ocl/releng/com.zeligsoft.dds4ccm.patches.ocl.releng.targetdefinition/pom.xml @@ -4,11 +4,11 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.ocl.releng.targetdefinition - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT eclipse-target-definition com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.ocl.releng - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/patches/ocl/releng/pom.xml b/patches/ocl/releng/pom.xml index 444cd60a2..7a05be453 100644 --- a/patches/ocl/releng/pom.xml +++ b/patches/ocl/releng/pom.xml @@ -4,12 +4,12 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.ocl.releng - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.ocl - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/patches/papyrus.compare/features/pom.xml b/patches/papyrus.compare/features/pom.xml index ff5a708b5..00439a99a 100644 --- a/patches/papyrus.compare/features/pom.xml +++ b/patches/papyrus.compare/features/pom.xml @@ -4,12 +4,12 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.papyrus.compare.features - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.papyrus.compare - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/patches/papyrus.compare/plugins/pom.xml b/patches/papyrus.compare/plugins/pom.xml index 0ccdcf296..eed8ed198 100644 --- a/patches/papyrus.compare/plugins/pom.xml +++ b/patches/papyrus.compare/plugins/pom.xml @@ -4,12 +4,12 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.papyrus.compare.plugins - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.papyrus.compare - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/patches/papyrus.compare/pom.xml b/patches/papyrus.compare/pom.xml index 07673aa65..76127b6d5 100644 --- a/patches/papyrus.compare/pom.xml +++ b/patches/papyrus.compare/pom.xml @@ -4,12 +4,12 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.papyrus.compare - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/patches/papyrus/features/pom.xml b/patches/papyrus/features/pom.xml index bdd846490..5c53cb318 100644 --- a/patches/papyrus/features/pom.xml +++ b/patches/papyrus/features/pom.xml @@ -4,12 +4,12 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.papyrus.features - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.papyrus - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/patches/papyrus/plugins/infra/architecture/pom.xml b/patches/papyrus/plugins/infra/architecture/pom.xml index 37fa55434..81b83143f 100644 --- a/patches/papyrus/plugins/infra/architecture/pom.xml +++ b/patches/papyrus/plugins/infra/architecture/pom.xml @@ -4,12 +4,12 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.papyrus.plugins.infra.architecture - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.papyrus.plugins.infra - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/patches/papyrus/plugins/infra/gmfdiag/css/org.eclipse.papyrus.infra.gmfdiag.css3.xtext/pom.xml b/patches/papyrus/plugins/infra/gmfdiag/css/org.eclipse.papyrus.infra.gmfdiag.css3.xtext/pom.xml index 9a1494837..a8adf5202 100644 --- a/patches/papyrus/plugins/infra/gmfdiag/css/org.eclipse.papyrus.infra.gmfdiag.css3.xtext/pom.xml +++ b/patches/papyrus/plugins/infra/gmfdiag/css/org.eclipse.papyrus.infra.gmfdiag.css3.xtext/pom.xml @@ -4,7 +4,7 @@ com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.papyrus.plugins.infra.gmfdiag.css - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT org.eclipse.papyrus.infra.gmfdiag.css3.xtext 4.0.1-SNAPSHOT diff --git a/patches/papyrus/plugins/infra/gmfdiag/css/pom.xml b/patches/papyrus/plugins/infra/gmfdiag/css/pom.xml index 10ab1d246..75a493347 100644 --- a/patches/papyrus/plugins/infra/gmfdiag/css/pom.xml +++ b/patches/papyrus/plugins/infra/gmfdiag/css/pom.xml @@ -4,12 +4,12 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.papyrus.plugins.infra.gmfdiag.css - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.papyrus.plugins.infra.gmfdiag - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/patches/papyrus/plugins/infra/gmfdiag/pom.xml b/patches/papyrus/plugins/infra/gmfdiag/pom.xml index 16cbd39a9..bc5af83f9 100644 --- a/patches/papyrus/plugins/infra/gmfdiag/pom.xml +++ b/patches/papyrus/plugins/infra/gmfdiag/pom.xml @@ -4,12 +4,12 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.papyrus.plugins.infra.gmfdiag - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.papyrus.plugins.infra - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/patches/papyrus/plugins/infra/pom.xml b/patches/papyrus/plugins/infra/pom.xml index 99720651d..03aefe456 100644 --- a/patches/papyrus/plugins/infra/pom.xml +++ b/patches/papyrus/plugins/infra/pom.xml @@ -4,12 +4,12 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.papyrus.plugins.infra - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.papyrus.plugins - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/patches/papyrus/plugins/pom.xml b/patches/papyrus/plugins/pom.xml index ff5ba786f..a3ffea7c9 100644 --- a/patches/papyrus/plugins/pom.xml +++ b/patches/papyrus/plugins/pom.xml @@ -4,12 +4,12 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.papyrus.plugins - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.papyrus - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/patches/papyrus/plugins/uml/alf/org.eclipse.papyrus.uml.alf/pom.xml b/patches/papyrus/plugins/uml/alf/org.eclipse.papyrus.uml.alf/pom.xml index 8b1e67716..b202f0e4d 100644 --- a/patches/papyrus/plugins/uml/alf/org.eclipse.papyrus.uml.alf/pom.xml +++ b/patches/papyrus/plugins/uml/alf/org.eclipse.papyrus.uml.alf/pom.xml @@ -6,7 +6,7 @@ com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.papyrus.plugins.uml.alf - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT org.eclipse.papyrus.uml.alf 4.0.1-SNAPSHOT diff --git a/patches/papyrus/plugins/uml/alf/pom.xml b/patches/papyrus/plugins/uml/alf/pom.xml index 366a7912d..ba292fca8 100644 --- a/patches/papyrus/plugins/uml/alf/pom.xml +++ b/patches/papyrus/plugins/uml/alf/pom.xml @@ -4,12 +4,12 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.papyrus.plugins.uml.alf - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.papyrus.plugins.uml - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/patches/papyrus/plugins/uml/pom.xml b/patches/papyrus/plugins/uml/pom.xml index e88d2bb00..e837f2a3f 100644 --- a/patches/papyrus/plugins/uml/pom.xml +++ b/patches/papyrus/plugins/uml/pom.xml @@ -4,12 +4,12 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.papyrus.plugins.uml - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.papyrus.plugins - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/patches/papyrus/plugins/uml/properties/pom.xml b/patches/papyrus/plugins/uml/properties/pom.xml index b093cdda5..5fb2ab4ad 100644 --- a/patches/papyrus/plugins/uml/properties/pom.xml +++ b/patches/papyrus/plugins/uml/properties/pom.xml @@ -4,12 +4,12 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.papyrus.plugins.uml.properties - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.papyrus.plugins.uml - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/patches/papyrus/plugins/uml/textedit/pom.xml b/patches/papyrus/plugins/uml/textedit/pom.xml index 436965faf..93353b8b1 100644 --- a/patches/papyrus/plugins/uml/textedit/pom.xml +++ b/patches/papyrus/plugins/uml/textedit/pom.xml @@ -4,12 +4,12 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.papyrus.plugins.uml.textedit - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.papyrus.plugins.uml - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/patches/papyrus/pom.xml b/patches/papyrus/pom.xml index 6d35641b3..0fc355b51 100644 --- a/patches/papyrus/pom.xml +++ b/patches/papyrus/pom.xml @@ -4,12 +4,12 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.papyrus - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/patches/pom.xml b/patches/pom.xml index 9eb40632c..e971da93d 100644 --- a/patches/pom.xml +++ b/patches/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.root - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/patches/xpand/features/org.eclipse.xpand-feature/pom.xml b/patches/xpand/features/org.eclipse.xpand-feature/pom.xml index 846d891c6..a876dadfc 100644 --- a/patches/xpand/features/org.eclipse.xpand-feature/pom.xml +++ b/patches/xpand/features/org.eclipse.xpand-feature/pom.xml @@ -4,7 +4,7 @@ com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.xpand.nodeploy.parent - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT ../../releng/com.zeligsoft.dds4ccm.xpand.nodeploy.parent eclipse-feature diff --git a/patches/xpand/features/pom.xml b/patches/xpand/features/pom.xml index e16c99b48..3baa130e2 100644 --- a/patches/xpand/features/pom.xml +++ b/patches/xpand/features/pom.xml @@ -4,12 +4,12 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.xpand.features - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.xpand - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/patches/xpand/plugins/pom.xml b/patches/xpand/plugins/pom.xml index 074902eb1..72ec04be6 100644 --- a/patches/xpand/plugins/pom.xml +++ b/patches/xpand/plugins/pom.xml @@ -4,12 +4,12 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.xpand.plugins - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.xpand - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/patches/xpand/pom.xml b/patches/xpand/pom.xml index 60fe827b8..373e8c973 100644 --- a/patches/xpand/pom.xml +++ b/patches/xpand/pom.xml @@ -4,12 +4,12 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.xpand - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/patches/xpand/releng/com.zeligsoft.dds4ccm.xpand.nodeploy.parent/pom.xml b/patches/xpand/releng/com.zeligsoft.dds4ccm.xpand.nodeploy.parent/pom.xml index 8572ecca1..f9ec9c3f6 100644 --- a/patches/xpand/releng/com.zeligsoft.dds4ccm.xpand.nodeploy.parent/pom.xml +++ b/patches/xpand/releng/com.zeligsoft.dds4ccm.xpand.nodeploy.parent/pom.xml @@ -4,7 +4,7 @@ com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.xpand - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT ../.. com.zeligsoft.dds4ccm.xpand.nodeploy.parent diff --git a/patches/xtend/features/org.eclipse.xtend-feature/pom.xml b/patches/xtend/features/org.eclipse.xtend-feature/pom.xml index 3d40801f6..336c18d4c 100644 --- a/patches/xtend/features/org.eclipse.xtend-feature/pom.xml +++ b/patches/xtend/features/org.eclipse.xtend-feature/pom.xml @@ -4,7 +4,7 @@ com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.xtend.nodeploy.parent - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT ../../releng/com.zeligsoft.dds4ccm.xtend.nodeploy.parent eclipse-feature diff --git a/patches/xtend/features/org.eclipse.xtend.dependencies-feature/pom.xml b/patches/xtend/features/org.eclipse.xtend.dependencies-feature/pom.xml index 148107739..ebbee8ada 100644 --- a/patches/xtend/features/org.eclipse.xtend.dependencies-feature/pom.xml +++ b/patches/xtend/features/org.eclipse.xtend.dependencies-feature/pom.xml @@ -4,7 +4,7 @@ com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.xtend.nodeploy.parent - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT ../../releng/com.zeligsoft.dds4ccm.xtend.nodeploy.parent eclipse-feature diff --git a/patches/xtend/features/org.eclipse.xtend.typesystem.emf-feature/pom.xml b/patches/xtend/features/org.eclipse.xtend.typesystem.emf-feature/pom.xml index 6b3505b79..bc28412e5 100644 --- a/patches/xtend/features/org.eclipse.xtend.typesystem.emf-feature/pom.xml +++ b/patches/xtend/features/org.eclipse.xtend.typesystem.emf-feature/pom.xml @@ -4,7 +4,7 @@ com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.xtend.nodeploy.parent - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT ../../releng/com.zeligsoft.dds4ccm.xtend.nodeploy.parent eclipse-feature diff --git a/patches/xtend/features/org.eclipse.xtend.typesystem.uml2-feature/pom.xml b/patches/xtend/features/org.eclipse.xtend.typesystem.uml2-feature/pom.xml index f5988b072..041cb1425 100644 --- a/patches/xtend/features/org.eclipse.xtend.typesystem.uml2-feature/pom.xml +++ b/patches/xtend/features/org.eclipse.xtend.typesystem.uml2-feature/pom.xml @@ -4,7 +4,7 @@ com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.xtend.nodeploy.parent - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT ../../releng/com.zeligsoft.dds4ccm.xtend.nodeploy.parent eclipse-feature diff --git a/patches/xtend/features/org.eclipse.xtend.typesystem.xsd-feature/pom.xml b/patches/xtend/features/org.eclipse.xtend.typesystem.xsd-feature/pom.xml index 615bb0220..3f2cb3529 100644 --- a/patches/xtend/features/org.eclipse.xtend.typesystem.xsd-feature/pom.xml +++ b/patches/xtend/features/org.eclipse.xtend.typesystem.xsd-feature/pom.xml @@ -4,7 +4,7 @@ com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.xtend.nodeploy.parent - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT ../../releng/com.zeligsoft.dds4ccm.xtend.nodeploy.parent eclipse-feature diff --git a/patches/xtend/features/pom.xml b/patches/xtend/features/pom.xml index cd63c4506..630bdbe82 100644 --- a/patches/xtend/features/pom.xml +++ b/patches/xtend/features/pom.xml @@ -4,12 +4,12 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.xtend.features - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.xtend - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/patches/xtend/plugins/pom.xml b/patches/xtend/plugins/pom.xml index 86edb61e8..3e1ce42b6 100644 --- a/patches/xtend/plugins/pom.xml +++ b/patches/xtend/plugins/pom.xml @@ -4,12 +4,12 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.xtend.plugins - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.xtend - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/patches/xtend/pom.xml b/patches/xtend/pom.xml index 4fab2c566..8c74a4aaa 100644 --- a/patches/xtend/pom.xml +++ b/patches/xtend/pom.xml @@ -4,12 +4,12 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.xtend - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/patches/xtend/releng/com.zeligsoft.dds4ccm.xtend.nodeploy.parent/pom.xml b/patches/xtend/releng/com.zeligsoft.dds4ccm.xtend.nodeploy.parent/pom.xml index 368f89ccb..79d12a11e 100644 --- a/patches/xtend/releng/com.zeligsoft.dds4ccm.xtend.nodeploy.parent/pom.xml +++ b/patches/xtend/releng/com.zeligsoft.dds4ccm.xtend.nodeploy.parent/pom.xml @@ -4,7 +4,7 @@ com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.xtend - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT ../.. com.zeligsoft.dds4ccm.xtend.nodeploy.parent diff --git a/patches/xtend2/features/org.eclipse.xtend.sdk.feature/pom.xml b/patches/xtend2/features/org.eclipse.xtend.sdk.feature/pom.xml index 353821d52..d55b76938 100644 --- a/patches/xtend2/features/org.eclipse.xtend.sdk.feature/pom.xml +++ b/patches/xtend2/features/org.eclipse.xtend.sdk.feature/pom.xml @@ -4,7 +4,7 @@ com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.xtend2.nodeploy.parent - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT ../../releng/com.zeligsoft.dds4ccm.xtend2.nodeploy.parent eclipse-feature diff --git a/patches/xtend2/features/pom.xml b/patches/xtend2/features/pom.xml index 886a04b5c..2f803e69d 100644 --- a/patches/xtend2/features/pom.xml +++ b/patches/xtend2/features/pom.xml @@ -4,12 +4,12 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.xtend2.features - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.xtend2 - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/patches/xtend2/plugins/org.eclipse.xtend.ide/pom.xml b/patches/xtend2/plugins/org.eclipse.xtend.ide/pom.xml index 579d94ba2..4c1086193 100644 --- a/patches/xtend2/plugins/org.eclipse.xtend.ide/pom.xml +++ b/patches/xtend2/plugins/org.eclipse.xtend.ide/pom.xml @@ -5,7 +5,7 @@ com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.xtend2.plugins - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT org.eclipse.xtend org.eclipse.xtend.ide diff --git a/patches/xtend2/plugins/pom.xml b/patches/xtend2/plugins/pom.xml index b0a0da88e..9084ed751 100644 --- a/patches/xtend2/plugins/pom.xml +++ b/patches/xtend2/plugins/pom.xml @@ -4,12 +4,12 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.xtend2.plugins - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.xtend2 - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/patches/xtend2/pom.xml b/patches/xtend2/pom.xml index 6a8acd2f0..510b3627b 100644 --- a/patches/xtend2/pom.xml +++ b/patches/xtend2/pom.xml @@ -4,12 +4,12 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.xtend2 - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/patches/xtend2/releng/com.zeligsoft.dds4ccm.xtend2.nodeploy.parent/pom.xml b/patches/xtend2/releng/com.zeligsoft.dds4ccm.xtend2.nodeploy.parent/pom.xml index a35b5802c..c8145eb1c 100644 --- a/patches/xtend2/releng/com.zeligsoft.dds4ccm.xtend2.nodeploy.parent/pom.xml +++ b/patches/xtend2/releng/com.zeligsoft.dds4ccm.xtend2.nodeploy.parent/pom.xml @@ -4,7 +4,7 @@ com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.xtend2 - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT ../.. com.zeligsoft.dds4ccm.xtend2.nodeploy.parent diff --git a/patches/xtext/features/com.zeligsoft.xtext.ui.feature/pom.xml b/patches/xtext/features/com.zeligsoft.xtext.ui.feature/pom.xml index b2dd4640d..c9de5410d 100644 --- a/patches/xtext/features/com.zeligsoft.xtext.ui.feature/pom.xml +++ b/patches/xtext/features/com.zeligsoft.xtext.ui.feature/pom.xml @@ -4,7 +4,7 @@ com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.xtext.nodeploy.parent - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT ../../releng/com.zeligsoft.dds4ccm.xtext.nodeploy.parent eclipse-feature diff --git a/patches/xtext/features/org.eclipse.xtext.ui.feature/pom.xml b/patches/xtext/features/org.eclipse.xtext.ui.feature/pom.xml index b2dd4640d..c9de5410d 100644 --- a/patches/xtext/features/org.eclipse.xtext.ui.feature/pom.xml +++ b/patches/xtext/features/org.eclipse.xtext.ui.feature/pom.xml @@ -4,7 +4,7 @@ com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.xtext.nodeploy.parent - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT ../../releng/com.zeligsoft.dds4ccm.xtext.nodeploy.parent eclipse-feature diff --git a/patches/xtext/features/org.eclipse.xtext.xbase.feature/pom.xml b/patches/xtext/features/org.eclipse.xtext.xbase.feature/pom.xml index 67e300fa6..8e8137e50 100644 --- a/patches/xtext/features/org.eclipse.xtext.xbase.feature/pom.xml +++ b/patches/xtext/features/org.eclipse.xtext.xbase.feature/pom.xml @@ -4,7 +4,7 @@ com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.xtext.nodeploy.parent - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT ../../releng/com.zeligsoft.dds4ccm.xtext.nodeploy.parent eclipse-feature diff --git a/patches/xtext/features/pom.xml b/patches/xtext/features/pom.xml index 04586018e..e5a2304d0 100644 --- a/patches/xtext/features/pom.xml +++ b/patches/xtext/features/pom.xml @@ -4,12 +4,12 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.xtext.features - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.xtext - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/patches/xtext/plugins/org.eclipse.xtext.common.types.shared.jdt38/pom.xml b/patches/xtext/plugins/org.eclipse.xtext.common.types.shared.jdt38/pom.xml index 0bd042b8a..c03df3530 100644 --- a/patches/xtext/plugins/org.eclipse.xtext.common.types.shared.jdt38/pom.xml +++ b/patches/xtext/plugins/org.eclipse.xtext.common.types.shared.jdt38/pom.xml @@ -4,7 +4,7 @@ com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.xtext.nodeploy.parent - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT ../../releng/com.zeligsoft.dds4ccm.xtext.nodeploy.parent eclipse-plugin diff --git a/patches/xtext/plugins/org.eclipse.xtext.logging/pom.xml b/patches/xtext/plugins/org.eclipse.xtext.logging/pom.xml index 8bb0e6669..053807476 100644 --- a/patches/xtext/plugins/org.eclipse.xtext.logging/pom.xml +++ b/patches/xtext/plugins/org.eclipse.xtext.logging/pom.xml @@ -4,7 +4,7 @@ com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.xtext.nodeploy.parent - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT ../../releng/com.zeligsoft.dds4ccm.xtext.nodeploy.parent eclipse-plugin diff --git a/patches/xtext/plugins/pom.xml b/patches/xtext/plugins/pom.xml index 20d05a4ee..74acc8f2f 100644 --- a/patches/xtext/plugins/pom.xml +++ b/patches/xtext/plugins/pom.xml @@ -4,12 +4,12 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.xtext.plugins - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.xtext - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/patches/xtext/pom.xml b/patches/xtext/pom.xml index 7ae8b32ad..1b27590c6 100644 --- a/patches/xtext/pom.xml +++ b/patches/xtext/pom.xml @@ -4,12 +4,12 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.xtext - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/patches/xtext/releng/com.zeligsoft.dds4ccm.xtext.nodeploy.parent/pom.xml b/patches/xtext/releng/com.zeligsoft.dds4ccm.xtext.nodeploy.parent/pom.xml index 3357df4b3..503f46403 100644 --- a/patches/xtext/releng/com.zeligsoft.dds4ccm.xtext.nodeploy.parent/pom.xml +++ b/patches/xtext/releng/com.zeligsoft.dds4ccm.xtext.nodeploy.parent/pom.xml @@ -4,7 +4,7 @@ com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.patches.xtext - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT ../.. com.zeligsoft.dds4ccm.xtext.nodeploy.parent diff --git a/pom.xml b/pom.xml index 680575cc1..59743ae09 100644 --- a/pom.xml +++ b/pom.xml @@ -4,12 +4,12 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.root - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.configuration - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT ./releng/com.zeligsoft.dds4ccm.configuration diff --git a/releng/com.zeligsoft.ddk.update/pom.xml b/releng/com.zeligsoft.ddk.update/pom.xml index 7dcbcaa1b..66455372d 100644 --- a/releng/com.zeligsoft.ddk.update/pom.xml +++ b/releng/com.zeligsoft.ddk.update/pom.xml @@ -5,10 +5,10 @@ com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.releng - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT com.zeligsoft.ddk.update - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT eclipse-repository diff --git a/releng/com.zeligsoft.dds4ccm.configuration/pom.xml b/releng/com.zeligsoft.dds4ccm.configuration/pom.xml index b11c917b8..7b14de581 100644 --- a/releng/com.zeligsoft.dds4ccm.configuration/pom.xml +++ b/releng/com.zeligsoft.dds4ccm.configuration/pom.xml @@ -2,7 +2,7 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.configuration - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom @@ -155,7 +155,7 @@ com.zeligsoft.dds4ccm com.zeligsoft.papyrus-cx.axcioma.targetdefinition - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/releng/com.zeligsoft.dds4ccm.update.atcd/pom.xml b/releng/com.zeligsoft.dds4ccm.update.atcd/pom.xml index 74a302969..581fc76d5 100644 --- a/releng/com.zeligsoft.dds4ccm.update.atcd/pom.xml +++ b/releng/com.zeligsoft.dds4ccm.update.atcd/pom.xml @@ -5,10 +5,10 @@ com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.releng - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT com.zeligsoft.dds4ccm.update.atcd - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT eclipse-repository diff --git a/releng/com.zeligsoft.dds4ccm.update.axcioma/pom.xml b/releng/com.zeligsoft.dds4ccm.update.axcioma/pom.xml index 17b9665ea..df388bfe6 100644 --- a/releng/com.zeligsoft.dds4ccm.update.axcioma/pom.xml +++ b/releng/com.zeligsoft.dds4ccm.update.axcioma/pom.xml @@ -5,10 +5,10 @@ com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.releng - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT com.zeligsoft.dds4ccm.update.axcioma - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT eclipse-repository diff --git a/releng/com.zeligsoft.papyrus-cx.axcioma.rcp.product/pom.xml b/releng/com.zeligsoft.papyrus-cx.axcioma.rcp.product/pom.xml index 2a6ccd82a..be731826d 100644 --- a/releng/com.zeligsoft.papyrus-cx.axcioma.rcp.product/pom.xml +++ b/releng/com.zeligsoft.papyrus-cx.axcioma.rcp.product/pom.xml @@ -6,7 +6,7 @@ com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.releng - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT eclipse-repository diff --git a/releng/com.zeligsoft.papyrus-cx.axcioma.targetdefinition/pom.xml b/releng/com.zeligsoft.papyrus-cx.axcioma.targetdefinition/pom.xml index 7b79df7f9..4f5000f5d 100644 --- a/releng/com.zeligsoft.papyrus-cx.axcioma.targetdefinition/pom.xml +++ b/releng/com.zeligsoft.papyrus-cx.axcioma.targetdefinition/pom.xml @@ -4,11 +4,11 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.papyrus-cx.axcioma.targetdefinition - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT eclipse-target-definition com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.releng - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT diff --git a/releng/pom.xml b/releng/pom.xml index 9adb1335c..8b8b6e559 100644 --- a/releng/pom.xml +++ b/releng/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.releng - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT pom com.zeligsoft.dds4ccm com.zeligsoft.dds4ccm.root - 2.6.0-SNAPSHOT + 3.0.0-SNAPSHOT From f23a3dddebabc0d7fcaacb40432fd2f5559a88d0 Mon Sep 17 00:00:00 2001 From: Ernesto Posse Date: Wed, 7 Feb 2024 17:48:41 -0500 Subject: [PATCH 3/3] Issue #490: updated version to 3.0.0 in the product, sites, features, categories and RPM specs Signed-off-by: Ernesto Posse --- features/com.zeligsoft.xtext.feature/feature.xml | 2 +- .../v4.4.0/feature-com.zeligsoft.papyruspatch/category.xml | 2 +- .../v4.4.0/feature-com.zeligsoft.papyruspatch/feature.xml | 2 +- papyrus-patch/v4.4.0/site-papyrus-patch/site.xml | 2 +- .../feature.xml | 2 +- .../feature.xml | 2 +- papyrus-patch/v4.8.0/site-papyrus-patch/site.xml | 4 ++-- .../feature.xml | 2 +- .../feature.xml | 2 +- .../feature.xml | 2 +- papyrus-patch/v6.5.0/site-papyrus-patch/site.xml | 7 ++++--- .../com.zeligsoft.xtext.runtime.patch.feature/feature.xml | 2 +- .../com.zeligsoft.xtext.ui.patch.feature/feature.xml | 2 +- .../com.zeligsoft.xtext.xbase.patch.feature/feature.xml | 2 +- .../rpm_build/zeligsoftCX_atcd.spec | 2 +- .../rpm_build/zeligsoftCX_axcioma.spec | 2 +- .../feature.xml | 2 +- .../papyrus-cx-axcioma.product | 2 +- .../rpm_build/papyrus-cx-axcioma.spec | 2 +- .../META-INF/MANIFEST.MF | 2 +- releng/com.zeligsoft.papyrus-cx.axcioma.rcp/about.mappings | 2 +- .../com.zeligsoft.papyrus-cx.axcioma.rcp/about.properties | 2 +- .../com.zeligsoft.papyrus-cx.axcioma.rcp/plugin.properties | 2 +- releng/com.zeligsoft.papyrus-cx.axcioma.rcp/plugin.xml | 2 +- 24 files changed, 28 insertions(+), 27 deletions(-) diff --git a/features/com.zeligsoft.xtext.feature/feature.xml b/features/com.zeligsoft.xtext.feature/feature.xml index e2c40d2f8..71c5b31db 100644 --- a/features/com.zeligsoft.xtext.feature/feature.xml +++ b/features/com.zeligsoft.xtext.feature/feature.xml @@ -2,7 +2,7 @@ diff --git a/papyrus-patch/v4.4.0/feature-com.zeligsoft.papyruspatch/category.xml b/papyrus-patch/v4.4.0/feature-com.zeligsoft.papyruspatch/category.xml index 5b8609944..8dd08f68f 100644 --- a/papyrus-patch/v4.4.0/feature-com.zeligsoft.papyruspatch/category.xml +++ b/papyrus-patch/v4.4.0/feature-com.zeligsoft.papyruspatch/category.xml @@ -1,6 +1,6 @@ - + diff --git a/papyrus-patch/v4.4.0/feature-com.zeligsoft.papyruspatch/feature.xml b/papyrus-patch/v4.4.0/feature-com.zeligsoft.papyruspatch/feature.xml index 9d2323838..43d34cf13 100644 --- a/papyrus-patch/v4.4.0/feature-com.zeligsoft.papyruspatch/feature.xml +++ b/papyrus-patch/v4.4.0/feature-com.zeligsoft.papyruspatch/feature.xml @@ -2,7 +2,7 @@ diff --git a/papyrus-patch/v4.4.0/site-papyrus-patch/site.xml b/papyrus-patch/v4.4.0/site-papyrus-patch/site.xml index 10719beaf..5c24171bb 100644 --- a/papyrus-patch/v4.4.0/site-papyrus-patch/site.xml +++ b/papyrus-patch/v4.4.0/site-papyrus-patch/site.xml @@ -8,7 +8,7 @@ - + diff --git a/papyrus-patch/v4.8.0/com.zeligsoft.papyrus.uml.properties.patch.feature/feature.xml b/papyrus-patch/v4.8.0/com.zeligsoft.papyrus.uml.properties.patch.feature/feature.xml index 0e9fd46d8..049e72ecf 100644 --- a/papyrus-patch/v4.8.0/com.zeligsoft.papyrus.uml.properties.patch.feature/feature.xml +++ b/papyrus-patch/v4.8.0/com.zeligsoft.papyrus.uml.properties.patch.feature/feature.xml @@ -2,7 +2,7 @@ diff --git a/papyrus-patch/v4.8.0/com.zeligsoft.papyrus.views.modelexplorer.patch.feature/feature.xml b/papyrus-patch/v4.8.0/com.zeligsoft.papyrus.views.modelexplorer.patch.feature/feature.xml index d46009172..63f1b97b6 100644 --- a/papyrus-patch/v4.8.0/com.zeligsoft.papyrus.views.modelexplorer.patch.feature/feature.xml +++ b/papyrus-patch/v4.8.0/com.zeligsoft.papyrus.views.modelexplorer.patch.feature/feature.xml @@ -2,7 +2,7 @@ diff --git a/papyrus-patch/v4.8.0/site-papyrus-patch/site.xml b/papyrus-patch/v4.8.0/site-papyrus-patch/site.xml index 37d9d06ac..d864802aa 100644 --- a/papyrus-patch/v4.8.0/site-papyrus-patch/site.xml +++ b/papyrus-patch/v4.8.0/site-papyrus-patch/site.xml @@ -1,9 +1,9 @@ - + - + diff --git a/papyrus-patch/v6.5.0/papyrus/features/com.zeligsoft.papyrus.infra.nattable.patch.feature/feature.xml b/papyrus-patch/v6.5.0/papyrus/features/com.zeligsoft.papyrus.infra.nattable.patch.feature/feature.xml index 864276e93..d7b928df6 100644 --- a/papyrus-patch/v6.5.0/papyrus/features/com.zeligsoft.papyrus.infra.nattable.patch.feature/feature.xml +++ b/papyrus-patch/v6.5.0/papyrus/features/com.zeligsoft.papyrus.infra.nattable.patch.feature/feature.xml @@ -2,7 +2,7 @@ diff --git a/papyrus-patch/v6.5.0/papyrus/features/com.zeligsoft.papyrus.uml.nattable.patch.feature/feature.xml b/papyrus-patch/v6.5.0/papyrus/features/com.zeligsoft.papyrus.uml.nattable.patch.feature/feature.xml index 79c3d22c8..c4bec0db3 100644 --- a/papyrus-patch/v6.5.0/papyrus/features/com.zeligsoft.papyrus.uml.nattable.patch.feature/feature.xml +++ b/papyrus-patch/v6.5.0/papyrus/features/com.zeligsoft.papyrus.uml.nattable.patch.feature/feature.xml @@ -2,7 +2,7 @@ diff --git a/papyrus-patch/v6.5.0/papyrus/features/com.zeligsoft.papyrus.uml.properties.patch.feature/feature.xml b/papyrus-patch/v6.5.0/papyrus/features/com.zeligsoft.papyrus.uml.properties.patch.feature/feature.xml index b90d8b0bd..96c9e075f 100644 --- a/papyrus-patch/v6.5.0/papyrus/features/com.zeligsoft.papyrus.uml.properties.patch.feature/feature.xml +++ b/papyrus-patch/v6.5.0/papyrus/features/com.zeligsoft.papyrus.uml.properties.patch.feature/feature.xml @@ -2,7 +2,7 @@ diff --git a/papyrus-patch/v6.5.0/site-papyrus-patch/site.xml b/papyrus-patch/v6.5.0/site-papyrus-patch/site.xml index 613726c10..b04611dcf 100644 --- a/papyrus-patch/v6.5.0/site-papyrus-patch/site.xml +++ b/papyrus-patch/v6.5.0/site-papyrus-patch/site.xml @@ -1,12 +1,12 @@ - + - + - + @@ -15,3 +15,4 @@ +^ \ No newline at end of file diff --git a/patches/xtext/features/com.zeligsoft.xtext.runtime.patch.feature/feature.xml b/patches/xtext/features/com.zeligsoft.xtext.runtime.patch.feature/feature.xml index d4f47e0d9..a73ad94e8 100644 --- a/patches/xtext/features/com.zeligsoft.xtext.runtime.patch.feature/feature.xml +++ b/patches/xtext/features/com.zeligsoft.xtext.runtime.patch.feature/feature.xml @@ -2,7 +2,7 @@ diff --git a/patches/xtext/features/com.zeligsoft.xtext.ui.patch.feature/feature.xml b/patches/xtext/features/com.zeligsoft.xtext.ui.patch.feature/feature.xml index 2cbf54bf2..56d9cdc90 100644 --- a/patches/xtext/features/com.zeligsoft.xtext.ui.patch.feature/feature.xml +++ b/patches/xtext/features/com.zeligsoft.xtext.ui.patch.feature/feature.xml @@ -2,7 +2,7 @@ diff --git a/patches/xtext/features/com.zeligsoft.xtext.xbase.patch.feature/feature.xml b/patches/xtext/features/com.zeligsoft.xtext.xbase.patch.feature/feature.xml index fb88d1721..d5026f1b6 100644 --- a/patches/xtext/features/com.zeligsoft.xtext.xbase.patch.feature/feature.xml +++ b/patches/xtext/features/com.zeligsoft.xtext.xbase.patch.feature/feature.xml @@ -2,7 +2,7 @@ diff --git a/releng/com.zeligsoft.dds4ccm.update.atcd/rpm_build/zeligsoftCX_atcd.spec b/releng/com.zeligsoft.dds4ccm.update.atcd/rpm_build/zeligsoftCX_atcd.spec index f1bf818d4..80695bd9d 100644 --- a/releng/com.zeligsoft.dds4ccm.update.atcd/rpm_build/zeligsoftCX_atcd.spec +++ b/releng/com.zeligsoft.dds4ccm.update.atcd/rpm_build/zeligsoftCX_atcd.spec @@ -1,5 +1,5 @@ %define ifdef() %if %{expand:%%{?%{1}:1}%%{!?%{1}:0}} -%define ver 2.6.0 +%define ver 3.0.0 %define _defaultRel 0.%(date "+%y%m%d%H%M") %define _rpmdir %{_projectdir}/rpm_build/ %define _targetdir %{_projectdir}/target diff --git a/releng/com.zeligsoft.dds4ccm.update.axcioma/rpm_build/zeligsoftCX_axcioma.spec b/releng/com.zeligsoft.dds4ccm.update.axcioma/rpm_build/zeligsoftCX_axcioma.spec index ea1f18f34..566909540 100644 --- a/releng/com.zeligsoft.dds4ccm.update.axcioma/rpm_build/zeligsoftCX_axcioma.spec +++ b/releng/com.zeligsoft.dds4ccm.update.axcioma/rpm_build/zeligsoftCX_axcioma.spec @@ -1,5 +1,5 @@ %define ifdef() %if %{expand:%%{?%{1}:1}%%{!?%{1}:0}} -%define ver 2.6.0 +%define ver 3.0.0 %define _defaultRel 0.%(date "+%y%m%d%H%M") %define _rpmdir %{_projectdir}/rpm_build/ %define _targetdir %{_projectdir}/target diff --git a/releng/com.zeligsoft.papyrus-cx.axcioma.rcp.feature/feature.xml b/releng/com.zeligsoft.papyrus-cx.axcioma.rcp.feature/feature.xml index f03e79e21..08a11a1c7 100644 --- a/releng/com.zeligsoft.papyrus-cx.axcioma.rcp.feature/feature.xml +++ b/releng/com.zeligsoft.papyrus-cx.axcioma.rcp.feature/feature.xml @@ -2,7 +2,7 @@ diff --git a/releng/com.zeligsoft.papyrus-cx.axcioma.rcp.product/papyrus-cx-axcioma.product b/releng/com.zeligsoft.papyrus-cx.axcioma.rcp.product/papyrus-cx-axcioma.product index fea2a2e33..16b10b2db 100644 --- a/releng/com.zeligsoft.papyrus-cx.axcioma.rcp.product/papyrus-cx-axcioma.product +++ b/releng/com.zeligsoft.papyrus-cx.axcioma.rcp.product/papyrus-cx-axcioma.product @@ -1,7 +1,7 @@ - + diff --git a/releng/com.zeligsoft.papyrus-cx.axcioma.rcp.product/rpm_build/papyrus-cx-axcioma.spec b/releng/com.zeligsoft.papyrus-cx.axcioma.rcp.product/rpm_build/papyrus-cx-axcioma.spec index 5899579a9..af5f8d102 100644 --- a/releng/com.zeligsoft.papyrus-cx.axcioma.rcp.product/rpm_build/papyrus-cx-axcioma.spec +++ b/releng/com.zeligsoft.papyrus-cx.axcioma.rcp.product/rpm_build/papyrus-cx-axcioma.spec @@ -1,5 +1,5 @@ %define ifdef() %if %{expand:%%{?%{1}:1}%%{!?%{1}:0}} -%define _default_version 2.6.0 +%define _default_version 3.0.0 %define _default_release 0.%(date "+%Y%m%d%H%M") %define _rpmdir %{_projectdir}/rpm_build/ %define _targetdir %{_projectdir}/target/ diff --git a/releng/com.zeligsoft.papyrus-cx.axcioma.rcp/META-INF/MANIFEST.MF b/releng/com.zeligsoft.papyrus-cx.axcioma.rcp/META-INF/MANIFEST.MF index 08274d3de..836780231 100644 --- a/releng/com.zeligsoft.papyrus-cx.axcioma.rcp/META-INF/MANIFEST.MF +++ b/releng/com.zeligsoft.papyrus-cx.axcioma.rcp/META-INF/MANIFEST.MF @@ -2,6 +2,6 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: %pluginName Bundle-SymbolicName: com.zeligsoft.papyrus-cx.axcioma.rcp;singleton:=true -Bundle-Version: 2.6.0.qualifier +Bundle-Version: 3.0.0.qualifier Bundle-Vendor: %providerName Automatic-Module-Name: com.zeligsoft.papyruscx.rcp diff --git a/releng/com.zeligsoft.papyrus-cx.axcioma.rcp/about.mappings b/releng/com.zeligsoft.papyrus-cx.axcioma.rcp/about.mappings index 80c9a8e59..509e7518b 100644 --- a/releng/com.zeligsoft.papyrus-cx.axcioma.rcp/about.mappings +++ b/releng/com.zeligsoft.papyrus-cx.axcioma.rcp/about.mappings @@ -5,4 +5,4 @@ #0=@eclipse.simultaneous.release.build@ #1=@eclipse.simultaneous.release.name@ -1=2.6.0 +1=3.0.0 diff --git a/releng/com.zeligsoft.papyrus-cx.axcioma.rcp/about.properties b/releng/com.zeligsoft.papyrus-cx.axcioma.rcp/about.properties index ea2b1e7d9..d8d97a964 100644 --- a/releng/com.zeligsoft.papyrus-cx.axcioma.rcp/about.properties +++ b/releng/com.zeligsoft.papyrus-cx.axcioma.rcp/about.properties @@ -6,7 +6,7 @@ blurb=Papyrus CX for AXCIOMA\n\ \n\ -Version: 2.6.0\n\ +Version: 3.0.0\n\ \n\ Copyright (c) 2022 Zeligsoft/Lumenix, and others.\n\ \n\ diff --git a/releng/com.zeligsoft.papyrus-cx.axcioma.rcp/plugin.properties b/releng/com.zeligsoft.papyrus-cx.axcioma.rcp/plugin.properties index bf360808a..7fa6b0a4b 100644 --- a/releng/com.zeligsoft.papyrus-cx.axcioma.rcp/plugin.properties +++ b/releng/com.zeligsoft.papyrus-cx.axcioma.rcp/plugin.properties @@ -2,7 +2,7 @@ pluginName = Papyrus CX for AXCIOMA (RCP) providerName = Zeligsoft (2009) Limited aboutText=Papyrus CX for AXCIOMA\n\ \n\ -Version: 2.6.0\n\ +Version: 3.0.0\n\ \n\ Copyright (c) 2022 Zeligsoft/Lumenix, and others.\n\ \n\ diff --git a/releng/com.zeligsoft.papyrus-cx.axcioma.rcp/plugin.xml b/releng/com.zeligsoft.papyrus-cx.axcioma.rcp/plugin.xml index 0f4bfd4d1..e8de4dab4 100644 --- a/releng/com.zeligsoft.papyrus-cx.axcioma.rcp/plugin.xml +++ b/releng/com.zeligsoft.papyrus-cx.axcioma.rcp/plugin.xml @@ -50,7 +50,7 @@ + value="Papyrus CX for AXCIOMA Version: 3.0.0 (c) Copyright Zeligsoft/Lumenix 2022. All rights reserved. This product includes software developed by the Apache Software Foundation http://www.apache.org/">