JBoss Tools SVN: r33264 - in trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/core/extension: feature and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: scabanovich
Date: 2011-07-27 14:29:16 -0400 (Wed, 27 Jul 2011)
New Revision: 33264
Added:
trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/core/extension/feature/ICDIFeature.java
Modified:
trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/core/extension/CDIExtensionFactory.java
trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/core/extension/CDIExtensionManager.java
trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/core/extension/feature/IAmbiguousBeanResolverFeature.java
trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/core/extension/feature/IBuildParticipant2Feature.java
trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/core/extension/feature/IBuildParticipantFeature.java
trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/core/extension/feature/IProcessAnnotatedMemberFeature.java
trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/core/extension/feature/IProcessAnnotatedTypeFeature.java
trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/core/extension/feature/IValidatorFeature.java
Log:
JBIDE-9402
https://issues.jboss.org/browse/JBIDE-9402
Modified: trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/core/extension/CDIExtensionFactory.java
===================================================================
--- trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/core/extension/CDIExtensionFactory.java 2011-07-27 17:49:49 UTC (rev 33263)
+++ trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/core/extension/CDIExtensionFactory.java 2011-07-27 18:29:16 UTC (rev 33264)
@@ -21,11 +21,7 @@
import org.eclipse.core.runtime.IExtensionPoint;
import org.eclipse.core.runtime.Platform;
import org.jboss.tools.cdi.core.CDICorePlugin;
-import org.jboss.tools.cdi.core.extension.feature.IAmbiguousBeanResolverFeature;
-import org.jboss.tools.cdi.core.extension.feature.IBuildParticipantFeature;
-import org.jboss.tools.cdi.core.extension.feature.IProcessAnnotatedMemberFeature;
-import org.jboss.tools.cdi.core.extension.feature.IProcessAnnotatedTypeFeature;
-import org.jboss.tools.cdi.core.extension.feature.IValidatorFeature;
+import org.jboss.tools.cdi.core.extension.feature.ICDIFeature;
/**
* Loads Eclipse extension point 'org.jboss.tools.cdi.core.cdiextensions'
@@ -47,14 +43,6 @@
static CDIExtensionFactory factory = null;
public static String POINT_ID = "org.jboss.tools.cdi.core.cdiextensions";
- public static Class<?>[] FEATURES = {
- IBuildParticipantFeature.class,
- IProcessAnnotatedMemberFeature.class,
- IProcessAnnotatedTypeFeature.class,
- IAmbiguousBeanResolverFeature.class,
- IValidatorFeature.class
- };
-
public static CDIExtensionFactory getInstance() {
if(factory == null) {
factory = new CDIExtensionFactory();
@@ -69,10 +57,9 @@
private Map<String, Set<String>> runtimeToDesign = new HashMap<String, Set<String>>();
/**
- * Maps features to fully qualified names of implementations of ICDIExtention.
+ * Maps implementation class to its features (IAdaptable cannot be used without a way to give all features)
*/
- private Map<Class<?>, Set<String>> featureToDesign = new HashMap<Class<?>, Set<String>>();
-
+ private Map<Class<? extends ICDIExtension>, Set<Class<?>>> designToFeatures = new HashMap<Class<? extends ICDIExtension>, Set<Class<?>>>();
/**
* Maps fully qualified names of implementations of ICDIExtention to their Class objects.
*/
@@ -110,32 +97,57 @@
runtimeToDesign.put(runtime, classes);
}
classes.add(cls);
-
- for (Class<?> f: FEATURES) {
- Object adapter = adaptTo(extension, f);
- if(adapter != null) {
- classes = featureToDesign.get(f);
- if(classes == null) {
- classes = new HashSet<String>();
- featureToDesign.put(f, classes);
- }
- classes.add(cls);
+ }
+ }
+
+ public Set<Class<?>> getFeatures(ICDIExtension extension) {
+ Set<Class<?>> result = designToFeatures.get(extension.getClass());
+ if(result == null) {
+ result = new HashSet<Class<?>>();
+ getFeatures(extension.getClass(), result);
+ }
+ return result;
+ }
+
+ Map<Class<?>, Boolean> featureCheck = new HashMap<Class<?>, Boolean>();
+
+ void getFeatures(Class<?> cls, Set<Class<?>> result) {
+ if(cls == ICDIFeature.class) {
+ return;
+ }
+ if(isFeature(cls)) {
+ result.add(cls);
+ }
+ Class<?>[] is = cls.getInterfaces();
+ for (Class<?> c: is) {
+ getFeatures(c, result);
+ }
+ }
+
+ boolean isFeature(Class<?> cls) {
+ if(!cls.isInterface()) {
+ return false;
+ }
+ Boolean b = featureCheck.get(cls);
+ if(b == null) {
+ Class<?>[] is = cls.getInterfaces();
+ for (Class<?> c: is) {
+ if(c == ICDIFeature.class || isFeature(c)) {
+ b = Boolean.TRUE;
}
}
+ if(b == null) {
+ b = Boolean.FALSE;
+ }
+ featureCheck.put(cls, b);
}
+ return b.booleanValue();
}
public Set<String> getExtensionClassesByRuntime(String qualifiedName) {
return runtimeToDesign.get(qualifiedName);
}
- public Set<Class<?>> getFeatures() {
- return featureToDesign.keySet();
- }
- public Set<String> getExtensionClassesByFeature(Class<?> featureName) {
- return featureToDesign.get(featureName);
- }
-
public ICDIExtension createExtensionInstance(String qualifiedName) {
Class<? extends ICDIExtension> cls = designToClass.get(qualifiedName);
if(cls != null) {
Modified: trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/core/extension/CDIExtensionManager.java
===================================================================
--- trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/core/extension/CDIExtensionManager.java 2011-07-27 17:49:49 UTC (rev 33263)
+++ trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/core/extension/CDIExtensionManager.java 2011-07-27 18:29:16 UTC (rev 33264)
@@ -19,6 +19,7 @@
import org.jboss.tools.cdi.core.CDICoreNature;
import org.jboss.tools.cdi.core.extension.feature.IAmbiguousBeanResolverFeature;
import org.jboss.tools.cdi.core.extension.feature.IBuildParticipantFeature;
+import org.jboss.tools.cdi.core.extension.feature.ICDIFeature;
import org.jboss.tools.cdi.core.extension.feature.IProcessAnnotatedMemberFeature;
import org.jboss.tools.cdi.core.extension.feature.IProcessAnnotatedTypeFeature;
import org.jboss.tools.cdi.core.extension.feature.IValidatorFeature;
@@ -46,7 +47,7 @@
*/
Map<Class<?>, Set<ICDIExtension>> featureToExtensions = new HashMap<Class<?>, Set<ICDIExtension>>();
- FeatureStorage featureStorage = new FeatureStorage();
+ Map<Class<? extends ICDIFeature>, Set<?>> featureStorage = new HashMap<Class<? extends ICDIFeature>, Set<?>>();
public CDIExtensionManager() {
}
@@ -95,17 +96,15 @@
ICDIExtension ext = factory.createExtensionInstance(cls);
if(ext == null) continue;
instances.put(cls, ext);
- for (Class<?> feature: CDIExtensionFactory.getInstance().getFeatures()) {
- if(factory.getExtensionClassesByFeature(feature).contains(cls)) {
- Set<ICDIExtension> es = featureToExtensions.get(feature);
- if(es == null) {
- es = new HashSet<ICDIExtension>();
- featureToExtensions.put(feature, es);
- }
- es.add(ext);
+ for (Class<?> feature: CDIExtensionFactory.getInstance().getFeatures(ext)) {
+ Set<ICDIExtension> es = featureToExtensions.get(feature);
+ if(es == null) {
+ es = new HashSet<ICDIExtension>();
+ featureToExtensions.put(feature, es);
}
+ es.add(ext);
}
- featureStorage.clean();
+ featureStorage.clear();
}
}
}
@@ -128,7 +127,7 @@
}
}
if(!clss.isEmpty()) {
- featureStorage.clean();
+ featureStorage.clear();
}
}
}
@@ -140,78 +139,53 @@
}
public Set<IProcessAnnotatedMemberFeature> getProcessAnnotatedMemberFeature() {
- Set<IProcessAnnotatedMemberFeature> result = featureStorage.processAnnotatedMember;
- if(result == null) {
- featureStorage.processAnnotatedMember = result = getFeature(IProcessAnnotatedMemberFeature.class);
- }
- return result;
+ return getFeature(IProcessAnnotatedMemberFeature.class);
}
public Set<IProcessAnnotatedTypeFeature> getProcessAnnotatedTypeFeature() {
- Set<IProcessAnnotatedTypeFeature> result = featureStorage.processAnnotatedType;
- if(result == null) {
- featureStorage.processAnnotatedType = result = getFeature(IProcessAnnotatedTypeFeature.class);
- }
- return result;
+ return getFeature(IProcessAnnotatedTypeFeature.class);
}
public Set<IBuildParticipantFeature> getBuildParticipantFeature() {
- Set<IBuildParticipantFeature> result = featureStorage.buildParticipant;
- if(result == null) {
- featureStorage.buildParticipant = result = getFeature(IBuildParticipantFeature.class);
+ if(!featureStorage.containsKey(IBuildParticipantFeature.class)) {
+ Set<IBuildParticipantFeature> result = getFeature(IBuildParticipantFeature.class);
for (IBuildParticipantFeature f: result) {
f.setProject(n);
}
}
- return result;
+ return getFeature(IBuildParticipantFeature.class);
}
public Set<IAmbiguousBeanResolverFeature> getAmbiguousBeanResolverFeature() {
- Set<IAmbiguousBeanResolverFeature> result = featureStorage.ambiguousBeanResolver;
- if(result == null) {
- featureStorage.ambiguousBeanResolver = result = getFeature(IAmbiguousBeanResolverFeature.class);
- }
- return result;
+ return getFeature(IAmbiguousBeanResolverFeature.class);
}
public Set<IValidatorFeature> getValidatorFeature() {
- Set<IValidatorFeature> result = featureStorage.validator;
- if(result == null) {
- featureStorage.validator = result = getFeature(IValidatorFeature.class);
- }
- return result;
+ return getFeature(IValidatorFeature.class);
}
- private <F extends Object> Set<F> getFeature(Class<F> cls) {
- Set<F> result = new HashSet<F>();
- Set<ICDIExtension> extensions = getExtensions(cls);
- if(!extensions.isEmpty()) {
- for (ICDIExtension ext: extensions) {
- F feature = CDIExtensionFactory.adaptTo(ext, cls);
- if(feature != null) {
- result.add(feature);
+ /**
+ * Returns set of feature implementation objects by feature class.
+ *
+ * @param cls
+ * @return set of feature implementation objects by feature class
+ */
+ public <F extends ICDIFeature> Set<F> getFeature(Class<F> cls) {
+ Set<F> result = (Set<F>)featureStorage.get(cls);
+ if(result == null) {
+ result = new HashSet<F>();
+ Set<ICDIExtension> extensions = getExtensions(cls);
+ if(!extensions.isEmpty()) {
+ for (ICDIExtension ext: extensions) {
+ F feature = CDIExtensionFactory.adaptTo(ext, cls);
+ if(feature != null) {
+ result.add(feature);
+ }
}
}
+ featureStorage.put(cls, result);
}
return result;
}
- class FeatureStorage {
- Set<IBuildParticipantFeature> buildParticipant = null;
- Set<IProcessAnnotatedMemberFeature> processAnnotatedMember = null;
- Set<IProcessAnnotatedTypeFeature> processAnnotatedType = null;
- Set<IAmbiguousBeanResolverFeature> ambiguousBeanResolver = null;
- Set<IValidatorFeature> validator = null;
-
- void clean() {
- processAnnotatedMember = null;
- processAnnotatedType = null;
- buildParticipant = null;
- ambiguousBeanResolver = null;
- validator = null;
- }
-
-
- }
-
}
Modified: trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/core/extension/feature/IAmbiguousBeanResolverFeature.java
===================================================================
--- trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/core/extension/feature/IAmbiguousBeanResolverFeature.java 2011-07-27 17:49:49 UTC (rev 33263)
+++ trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/core/extension/feature/IAmbiguousBeanResolverFeature.java 2011-07-27 18:29:16 UTC (rev 33264)
@@ -19,7 +19,7 @@
* @author Viacheslav Kabanovich
*
*/
-public interface IAmbiguousBeanResolverFeature {
+public interface IAmbiguousBeanResolverFeature extends ICDIFeature {
/**
* Contributes to resolving ambiguous beans in methods ICDIProject.getBeans(boolean attemptToResolveAmbiguousDependency, ...)
Modified: trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/core/extension/feature/IBuildParticipant2Feature.java
===================================================================
--- trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/core/extension/feature/IBuildParticipant2Feature.java 2011-07-27 17:49:49 UTC (rev 33263)
+++ trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/core/extension/feature/IBuildParticipant2Feature.java 2011-07-27 18:29:16 UTC (rev 33264)
@@ -19,7 +19,7 @@
* @author Viacheslav Kabanovich
*
*/
-public interface IBuildParticipant2Feature extends IBuildParticipantFeature {
+public interface IBuildParticipant2Feature extends IBuildParticipantFeature, ICDIFeature {
/**
* Looks for artifacts in any jar entries.
Modified: trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/core/extension/feature/IBuildParticipantFeature.java
===================================================================
--- trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/core/extension/feature/IBuildParticipantFeature.java 2011-07-27 17:49:49 UTC (rev 33263)
+++ trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/core/extension/feature/IBuildParticipantFeature.java 2011-07-27 18:29:16 UTC (rev 33264)
@@ -29,7 +29,7 @@
* @author Viacheslav Kabanovich
*
*/
-public interface IBuildParticipantFeature {
+public interface IBuildParticipantFeature extends ICDIFeature {
/**
* Sets CDI project access object once per lifetime of this object.
Added: trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/core/extension/feature/ICDIFeature.java
===================================================================
--- trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/core/extension/feature/ICDIFeature.java (rev 0)
+++ trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/core/extension/feature/ICDIFeature.java 2011-07-27 18:29:16 UTC (rev 33264)
@@ -0,0 +1,21 @@
+/*******************************************************************************
+ * Copyright (c) 2011 Red Hat, Inc.
+ * Distributed under license by Red Hat, Inc. All rights reserved.
+ * This program is 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:
+ * Red Hat, Inc. - initial API and implementation
+ ******************************************************************************/
+package org.jboss.tools.cdi.core.extension.feature;
+
+/**
+ * Superinterface for CDI features to be recognized in extensions.
+ *
+ * @author Viacheslav Kabanovich
+ *
+ */
+public interface ICDIFeature {
+
+}
Property changes on: trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/core/extension/feature/ICDIFeature.java
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Modified: trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/core/extension/feature/IProcessAnnotatedMemberFeature.java
===================================================================
--- trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/core/extension/feature/IProcessAnnotatedMemberFeature.java 2011-07-27 17:49:49 UTC (rev 33263)
+++ trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/core/extension/feature/IProcessAnnotatedMemberFeature.java 2011-07-27 18:29:16 UTC (rev 33264)
@@ -27,7 +27,7 @@
* @author Viacheslav Kabanovich
*
*/
-public interface IProcessAnnotatedMemberFeature {
+public interface IProcessAnnotatedMemberFeature extends ICDIFeature {
public void processAnnotatedMember(BeanMemberDefinition memberDefinition, IRootDefinitionContext context);
Modified: trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/core/extension/feature/IProcessAnnotatedTypeFeature.java
===================================================================
--- trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/core/extension/feature/IProcessAnnotatedTypeFeature.java 2011-07-27 17:49:49 UTC (rev 33263)
+++ trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/core/extension/feature/IProcessAnnotatedTypeFeature.java 2011-07-27 18:29:16 UTC (rev 33264)
@@ -19,7 +19,7 @@
* @author Viacheslav Kabanovich
*
*/
-public interface IProcessAnnotatedTypeFeature {
+public interface IProcessAnnotatedTypeFeature extends ICDIFeature {
/**
* Method is called after CDI builder loaded type definitions and before they are
Modified: trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/core/extension/feature/IValidatorFeature.java
===================================================================
--- trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/core/extension/feature/IValidatorFeature.java 2011-07-27 17:49:49 UTC (rev 33263)
+++ trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/core/extension/feature/IValidatorFeature.java 2011-07-27 18:29:16 UTC (rev 33264)
@@ -19,7 +19,7 @@
* @author Viacheslav Kabanovich
*
*/
-public interface IValidatorFeature {
+public interface IValidatorFeature extends ICDIFeature {
/**
* Contributes to validation of resource in CDICoreValidator.validateResource(IFile)
13 years, 6 months
JBoss Tools SVN: r33263 - in trunk/maven: features and 22 other directories.
by jbosstools-commits@lists.jboss.org
Author: max.andersen(a)jboss.com
Date: 2011-07-27 13:49:49 -0400 (Wed, 27 Jul 2011)
New Revision: 33263
Modified:
trunk/maven/features/org.jboss.tools.maven.cdi.feature/pom.xml
trunk/maven/features/org.jboss.tools.maven.feature/pom.xml
trunk/maven/features/org.jboss.tools.maven.hibernate.feature/pom.xml
trunk/maven/features/org.jboss.tools.maven.jsf.feature/pom.xml
trunk/maven/features/org.jboss.tools.maven.portlet.feature/pom.xml
trunk/maven/features/org.jboss.tools.maven.project.examples.feature/pom.xml
trunk/maven/features/org.jboss.tools.maven.sdk.feature/feature.xml
trunk/maven/features/org.jboss.tools.maven.seam.feature/pom.xml
trunk/maven/features/pom.xml
trunk/maven/plugins/org.jboss.tools.maven.cdi/pom.xml
trunk/maven/plugins/org.jboss.tools.maven.core/pom.xml
trunk/maven/plugins/org.jboss.tools.maven.hibernate/pom.xml
trunk/maven/plugins/org.jboss.tools.maven.jsf/pom.xml
trunk/maven/plugins/org.jboss.tools.maven.portlet/pom.xml
trunk/maven/plugins/org.jboss.tools.maven.project.examples/META-INF/MANIFEST.MF
trunk/maven/plugins/org.jboss.tools.maven.project.examples/pom.xml
trunk/maven/plugins/org.jboss.tools.maven.seam/pom.xml
trunk/maven/plugins/org.jboss.tools.maven.ui/pom.xml
trunk/maven/plugins/pom.xml
trunk/maven/pom.xml
trunk/maven/site/pom.xml
trunk/maven/tests/org.jboss.tools.maven.ui.bot.test/META-INF/MANIFEST.MF
trunk/maven/tests/org.jboss.tools.maven.ui.bot.test/pom.xml
trunk/maven/tests/pom.xml
Log:
JBIDE-9268 aligned maven to 1.2.0
Modified: trunk/maven/features/org.jboss.tools.maven.cdi.feature/pom.xml
===================================================================
--- trunk/maven/features/org.jboss.tools.maven.cdi.feature/pom.xml 2011-07-27 17:30:08 UTC (rev 33262)
+++ trunk/maven/features/org.jboss.tools.maven.cdi.feature/pom.xml 2011-07-27 17:49:49 UTC (rev 33263)
@@ -5,10 +5,10 @@
<parent>
<groupId>org.jboss.tools.maven</groupId>
<artifactId>features</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>1.2.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.maven.features</groupId>
<artifactId>org.jboss.tools.maven.cdi.feature</artifactId>
- <version>1.2.0-SNAPSHOT</version>
+
<packaging>eclipse-feature</packaging>
</project>
\ No newline at end of file
Modified: trunk/maven/features/org.jboss.tools.maven.feature/pom.xml
===================================================================
--- trunk/maven/features/org.jboss.tools.maven.feature/pom.xml 2011-07-27 17:30:08 UTC (rev 33262)
+++ trunk/maven/features/org.jboss.tools.maven.feature/pom.xml 2011-07-27 17:49:49 UTC (rev 33263)
@@ -5,10 +5,10 @@
<parent>
<groupId>org.jboss.tools.maven</groupId>
<artifactId>features</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>1.2.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.maven.features</groupId>
<artifactId>org.jboss.tools.maven.feature</artifactId>
- <version>1.2.0-SNAPSHOT</version>
+
<packaging>eclipse-feature</packaging>
</project>
\ No newline at end of file
Modified: trunk/maven/features/org.jboss.tools.maven.hibernate.feature/pom.xml
===================================================================
--- trunk/maven/features/org.jboss.tools.maven.hibernate.feature/pom.xml 2011-07-27 17:30:08 UTC (rev 33262)
+++ trunk/maven/features/org.jboss.tools.maven.hibernate.feature/pom.xml 2011-07-27 17:49:49 UTC (rev 33263)
@@ -5,10 +5,10 @@
<parent>
<groupId>org.jboss.tools.maven</groupId>
<artifactId>features</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>1.2.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.maven.features</groupId>
<artifactId>org.jboss.tools.maven.hibernate.feature</artifactId>
- <version>1.2.0-SNAPSHOT</version>
+
<packaging>eclipse-feature</packaging>
</project>
\ No newline at end of file
Modified: trunk/maven/features/org.jboss.tools.maven.jsf.feature/pom.xml
===================================================================
--- trunk/maven/features/org.jboss.tools.maven.jsf.feature/pom.xml 2011-07-27 17:30:08 UTC (rev 33262)
+++ trunk/maven/features/org.jboss.tools.maven.jsf.feature/pom.xml 2011-07-27 17:49:49 UTC (rev 33263)
@@ -5,10 +5,10 @@
<parent>
<groupId>org.jboss.tools.maven</groupId>
<artifactId>features</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>1.2.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.maven.features</groupId>
<artifactId>org.jboss.tools.maven.jsf.feature</artifactId>
- <version>1.2.0-SNAPSHOT</version>
+
<packaging>eclipse-feature</packaging>
</project>
\ No newline at end of file
Modified: trunk/maven/features/org.jboss.tools.maven.portlet.feature/pom.xml
===================================================================
--- trunk/maven/features/org.jboss.tools.maven.portlet.feature/pom.xml 2011-07-27 17:30:08 UTC (rev 33262)
+++ trunk/maven/features/org.jboss.tools.maven.portlet.feature/pom.xml 2011-07-27 17:49:49 UTC (rev 33263)
@@ -5,10 +5,10 @@
<parent>
<groupId>org.jboss.tools.maven</groupId>
<artifactId>features</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>1.2.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.maven.features</groupId>
<artifactId>org.jboss.tools.maven.portlet.feature</artifactId>
- <version>1.2.0-SNAPSHOT</version>
+
<packaging>eclipse-feature</packaging>
</project>
\ No newline at end of file
Modified: trunk/maven/features/org.jboss.tools.maven.project.examples.feature/pom.xml
===================================================================
--- trunk/maven/features/org.jboss.tools.maven.project.examples.feature/pom.xml 2011-07-27 17:30:08 UTC (rev 33262)
+++ trunk/maven/features/org.jboss.tools.maven.project.examples.feature/pom.xml 2011-07-27 17:49:49 UTC (rev 33263)
@@ -5,10 +5,10 @@
<parent>
<groupId>org.jboss.tools.maven</groupId>
<artifactId>features</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>1.2.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.maven.features</groupId>
<artifactId>org.jboss.tools.maven.project.examples.feature</artifactId>
- <version>1.2.0-SNAPSHOT</version>
+
<packaging>eclipse-feature</packaging>
</project>
\ No newline at end of file
Modified: trunk/maven/features/org.jboss.tools.maven.sdk.feature/feature.xml
===================================================================
--- trunk/maven/features/org.jboss.tools.maven.sdk.feature/feature.xml 2011-07-27 17:30:08 UTC (rev 33262)
+++ trunk/maven/features/org.jboss.tools.maven.sdk.feature/feature.xml 2011-07-27 17:49:49 UTC (rev 33263)
@@ -2,7 +2,7 @@
<feature
id="org.jboss.tools.maven.sdk.feature"
label="%featureName"
- version="1.0.0.qualifier"
+ version="1.2.0.qualifier"
provider-name="%providerName">
<description>
Modified: trunk/maven/features/org.jboss.tools.maven.seam.feature/pom.xml
===================================================================
--- trunk/maven/features/org.jboss.tools.maven.seam.feature/pom.xml 2011-07-27 17:30:08 UTC (rev 33262)
+++ trunk/maven/features/org.jboss.tools.maven.seam.feature/pom.xml 2011-07-27 17:49:49 UTC (rev 33263)
@@ -5,10 +5,10 @@
<parent>
<groupId>org.jboss.tools.maven</groupId>
<artifactId>features</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>1.2.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.maven.features</groupId>
<artifactId>org.jboss.tools.maven.seam.feature</artifactId>
- <version>1.2.0-SNAPSHOT</version>
+
<packaging>eclipse-feature</packaging>
</project>
\ No newline at end of file
Modified: trunk/maven/features/pom.xml
===================================================================
--- trunk/maven/features/pom.xml 2011-07-27 17:30:08 UTC (rev 33262)
+++ trunk/maven/features/pom.xml 2011-07-27 17:49:49 UTC (rev 33263)
@@ -5,11 +5,11 @@
<parent>
<groupId>org.jboss.tools</groupId>
<artifactId>maven</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>1.2.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.maven</groupId>
<artifactId>features</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+
<name>maven.features</name>
<packaging>pom</packaging>
<modules>
Modified: trunk/maven/plugins/org.jboss.tools.maven.cdi/pom.xml
===================================================================
--- trunk/maven/plugins/org.jboss.tools.maven.cdi/pom.xml 2011-07-27 17:30:08 UTC (rev 33262)
+++ trunk/maven/plugins/org.jboss.tools.maven.cdi/pom.xml 2011-07-27 17:49:49 UTC (rev 33263)
@@ -5,10 +5,10 @@
<parent>
<groupId>org.jboss.tools.maven</groupId>
<artifactId>plugins</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>1.2.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.maven.plugins</groupId>
<artifactId>org.jboss.tools.maven.cdi</artifactId>
- <version>1.2.0-SNAPSHOT</version>
+
<packaging>eclipse-plugin</packaging>
</project>
\ No newline at end of file
Modified: trunk/maven/plugins/org.jboss.tools.maven.core/pom.xml
===================================================================
--- trunk/maven/plugins/org.jboss.tools.maven.core/pom.xml 2011-07-27 17:30:08 UTC (rev 33262)
+++ trunk/maven/plugins/org.jboss.tools.maven.core/pom.xml 2011-07-27 17:49:49 UTC (rev 33263)
@@ -5,10 +5,10 @@
<parent>
<groupId>org.jboss.tools.maven</groupId>
<artifactId>plugins</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>1.2.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.maven.plugins</groupId>
<artifactId>org.jboss.tools.maven.core</artifactId>
- <version>1.2.0-SNAPSHOT</version>
+
<packaging>eclipse-plugin</packaging>
</project>
\ No newline at end of file
Modified: trunk/maven/plugins/org.jboss.tools.maven.hibernate/pom.xml
===================================================================
--- trunk/maven/plugins/org.jboss.tools.maven.hibernate/pom.xml 2011-07-27 17:30:08 UTC (rev 33262)
+++ trunk/maven/plugins/org.jboss.tools.maven.hibernate/pom.xml 2011-07-27 17:49:49 UTC (rev 33263)
@@ -5,10 +5,10 @@
<parent>
<groupId>org.jboss.tools.maven</groupId>
<artifactId>plugins</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>1.2.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.maven.plugins</groupId>
<artifactId>org.jboss.tools.maven.hibernate</artifactId>
- <version>1.2.0-SNAPSHOT</version>
+
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/maven/plugins/org.jboss.tools.maven.jsf/pom.xml
===================================================================
--- trunk/maven/plugins/org.jboss.tools.maven.jsf/pom.xml 2011-07-27 17:30:08 UTC (rev 33262)
+++ trunk/maven/plugins/org.jboss.tools.maven.jsf/pom.xml 2011-07-27 17:49:49 UTC (rev 33263)
@@ -5,10 +5,10 @@
<parent>
<groupId>org.jboss.tools.maven</groupId>
<artifactId>plugins</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>1.2.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.maven.plugins</groupId>
<artifactId>org.jboss.tools.maven.jsf</artifactId>
- <version>1.2.0-SNAPSHOT</version>
+
<packaging>eclipse-plugin</packaging>
</project>
\ No newline at end of file
Modified: trunk/maven/plugins/org.jboss.tools.maven.portlet/pom.xml
===================================================================
--- trunk/maven/plugins/org.jboss.tools.maven.portlet/pom.xml 2011-07-27 17:30:08 UTC (rev 33262)
+++ trunk/maven/plugins/org.jboss.tools.maven.portlet/pom.xml 2011-07-27 17:49:49 UTC (rev 33263)
@@ -5,10 +5,10 @@
<parent>
<groupId>org.jboss.tools.maven</groupId>
<artifactId>plugins</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>1.2.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.maven.plugins</groupId>
<artifactId>org.jboss.tools.maven.portlet</artifactId>
- <version>1.2.0-SNAPSHOT</version>
+
<packaging>eclipse-plugin</packaging>
</project>
\ No newline at end of file
Modified: trunk/maven/plugins/org.jboss.tools.maven.project.examples/META-INF/MANIFEST.MF
===================================================================
--- trunk/maven/plugins/org.jboss.tools.maven.project.examples/META-INF/MANIFEST.MF 2011-07-27 17:30:08 UTC (rev 33262)
+++ trunk/maven/plugins/org.jboss.tools.maven.project.examples/META-INF/MANIFEST.MF 2011-07-27 17:49:49 UTC (rev 33263)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name
Bundle-SymbolicName: org.jboss.tools.maven.project.examples;singleton:=true
-Bundle-Version: 1.0.0.qualifier
+Bundle-Version: 1.2.0.qualifier
Bundle-Activator: org.jboss.tools.maven.project.examples.MavenProjectExamplesActivator
Bundle-Localization: plugin
Require-Bundle: org.eclipse.ui,
Modified: trunk/maven/plugins/org.jboss.tools.maven.project.examples/pom.xml
===================================================================
--- trunk/maven/plugins/org.jboss.tools.maven.project.examples/pom.xml 2011-07-27 17:30:08 UTC (rev 33262)
+++ trunk/maven/plugins/org.jboss.tools.maven.project.examples/pom.xml 2011-07-27 17:49:49 UTC (rev 33263)
@@ -5,10 +5,10 @@
<parent>
<groupId>org.jboss.tools.maven</groupId>
<artifactId>plugins</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>1.2.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.maven.plugins</groupId>
<artifactId>org.jboss.tools.maven.project.examples</artifactId>
- <version>1.0.0-SNAPSHOT</version>
+
<packaging>eclipse-plugin</packaging>
</project>
\ No newline at end of file
Modified: trunk/maven/plugins/org.jboss.tools.maven.seam/pom.xml
===================================================================
--- trunk/maven/plugins/org.jboss.tools.maven.seam/pom.xml 2011-07-27 17:30:08 UTC (rev 33262)
+++ trunk/maven/plugins/org.jboss.tools.maven.seam/pom.xml 2011-07-27 17:49:49 UTC (rev 33263)
@@ -5,10 +5,10 @@
<parent>
<groupId>org.jboss.tools.maven</groupId>
<artifactId>plugins</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>1.2.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.maven.plugins</groupId>
<artifactId>org.jboss.tools.maven.seam</artifactId>
- <version>1.2.0-SNAPSHOT</version>
+
<packaging>eclipse-plugin</packaging>
</project>
\ No newline at end of file
Modified: trunk/maven/plugins/org.jboss.tools.maven.ui/pom.xml
===================================================================
--- trunk/maven/plugins/org.jboss.tools.maven.ui/pom.xml 2011-07-27 17:30:08 UTC (rev 33262)
+++ trunk/maven/plugins/org.jboss.tools.maven.ui/pom.xml 2011-07-27 17:49:49 UTC (rev 33263)
@@ -5,10 +5,10 @@
<parent>
<groupId>org.jboss.tools.maven</groupId>
<artifactId>plugins</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>1.2.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.maven.plugins</groupId>
<artifactId>org.jboss.tools.maven.ui</artifactId>
- <version>1.2.0-SNAPSHOT</version>
+
<packaging>eclipse-plugin</packaging>
</project>
\ No newline at end of file
Modified: trunk/maven/plugins/pom.xml
===================================================================
--- trunk/maven/plugins/pom.xml 2011-07-27 17:30:08 UTC (rev 33262)
+++ trunk/maven/plugins/pom.xml 2011-07-27 17:49:49 UTC (rev 33263)
@@ -5,11 +5,11 @@
<parent>
<groupId>org.jboss.tools</groupId>
<artifactId>maven</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>1.2.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.maven</groupId>
<artifactId>plugins</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+
<name>maven.plugins</name>
<packaging>pom</packaging>
<modules>
Modified: trunk/maven/pom.xml
===================================================================
--- trunk/maven/pom.xml 2011-07-27 17:30:08 UTC (rev 33262)
+++ trunk/maven/pom.xml 2011-07-27 17:49:49 UTC (rev 33263)
@@ -10,7 +10,7 @@
</parent>
<groupId>org.jboss.tools</groupId>
<artifactId>maven</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>1.2.0-SNAPSHOT</version>
<name>maven.all</name>
<packaging>pom</packaging>
<modules>
Modified: trunk/maven/site/pom.xml
===================================================================
--- trunk/maven/site/pom.xml 2011-07-27 17:30:08 UTC (rev 33262)
+++ trunk/maven/site/pom.xml 2011-07-27 17:49:49 UTC (rev 33263)
@@ -5,11 +5,11 @@
<parent>
<groupId>org.jboss.tools</groupId>
<artifactId>maven</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>1.2.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.maven</groupId>
<artifactId>maven.site</artifactId>
<name>maven.site</name>
- <version>0.0.1-SNAPSHOT</version>
+
<packaging>eclipse-update-site</packaging>
</project>
\ No newline at end of file
Modified: trunk/maven/tests/org.jboss.tools.maven.ui.bot.test/META-INF/MANIFEST.MF
===================================================================
--- trunk/maven/tests/org.jboss.tools.maven.ui.bot.test/META-INF/MANIFEST.MF 2011-07-27 17:30:08 UTC (rev 33262)
+++ trunk/maven/tests/org.jboss.tools.maven.ui.bot.test/META-INF/MANIFEST.MF 2011-07-27 17:49:49 UTC (rev 33263)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: JBoss Maven Integration Tests
Bundle-SymbolicName: org.jboss.tools.maven.ui.bot.test;singleton:=true
-Bundle-Version: 1.0.0.qualifier
+Bundle-Version: 1.2.0.qualifier
Bundle-Activator: org.jboss.tools.maven.ui.bot.test.Activator
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime,
Modified: trunk/maven/tests/org.jboss.tools.maven.ui.bot.test/pom.xml
===================================================================
--- trunk/maven/tests/org.jboss.tools.maven.ui.bot.test/pom.xml 2011-07-27 17:30:08 UTC (rev 33262)
+++ trunk/maven/tests/org.jboss.tools.maven.ui.bot.test/pom.xml 2011-07-27 17:49:49 UTC (rev 33263)
@@ -5,11 +5,11 @@
<parent>
<groupId>org.jboss.tools.maven</groupId>
<artifactId>tests</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>1.2.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.maven.tests</groupId>
<artifactId>org.jboss.tools.maven.ui.bot.test</artifactId>
- <version>1.0.0-SNAPSHOT</version>
+
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/maven/tests/pom.xml
===================================================================
--- trunk/maven/tests/pom.xml 2011-07-27 17:30:08 UTC (rev 33262)
+++ trunk/maven/tests/pom.xml 2011-07-27 17:49:49 UTC (rev 33263)
@@ -5,11 +5,11 @@
<parent>
<groupId>org.jboss.tools</groupId>
<artifactId>maven</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>1.2.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.maven</groupId>
<artifactId>tests</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+
<name>maven.tests</name>
<packaging>pom</packaging>
<modules>
13 years, 6 months
JBoss Tools SVN: r33262 - in trunk/cdi: plugins/org.jboss.tools.cdi.ui/src/org/jboss/tools/cdi/ui/marker and 2 other directories.
by jbosstools-commits@lists.jboss.org
Author: dazarov
Date: 2011-07-27 13:30:08 -0400 (Wed, 27 Jul 2011)
New Revision: 33262
Added:
trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/quickfixes/TestDecorator2.qfxresult
trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/quickfixes/TestDecorator3.qfxresult
trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/quickfixes/TestInterceptor4.qfxresult
trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/quickfixes/TestInterceptor5.qfxresult
trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/quickfixes/TestStereotype6.java
trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/quickfixes/TestStereotype6.qfxresult
Removed:
trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/quickfixes/TestDecorator2.qfxresult
trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/quickfixes/TestDecorator3.qfxresult
trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/quickfixes/TestInterceptor4.qfxresult
trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/quickfixes/TestInterceptor5.qfxresult
Modified:
trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/internal/core/validation/CDICoreValidator.java
trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/internal/core/validation/CDIValidationErrorManager.java
trunk/cdi/plugins/org.jboss.tools.cdi.ui/src/org/jboss/tools/cdi/ui/marker/CDIProblemMarkerResolutionGenerator.java
trunk/cdi/plugins/org.jboss.tools.cdi.ui/src/org/jboss/tools/cdi/ui/marker/MarkerResolutionUtils.java
trunk/cdi/tests/org.jboss.tools.cdi.ui.test/src/org/jboss/tools/cdi/ui/test/marker/CDIMarkerResolutionTest.java
Log:
https://issues.jboss.org/browse/JBIDE-7640
Modified: trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/internal/core/validation/CDICoreValidator.java
===================================================================
--- trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/internal/core/validation/CDICoreValidator.java 2011-07-27 17:28:53 UTC (rev 33261)
+++ trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/internal/core/validation/CDICoreValidator.java 2011-07-27 17:30:08 UTC (rev 33262)
@@ -2279,7 +2279,7 @@
IAnnotationDeclaration typedDeclaration = stereotype.getAnnotationDeclaration(CDIConstants.TYPED_ANNOTATION_TYPE_NAME);
if (typedDeclaration != null) {
ITextSourceReference location = typedDeclaration;
- addError(CDIValidationMessages.STEREOTYPE_IS_ANNOTATED_TYPED, CDIPreferences.STEREOTYPE_IS_ANNOTATED_TYPED, location, resource);
+ addError(CDIValidationMessages.STEREOTYPE_IS_ANNOTATED_TYPED, CDIPreferences.STEREOTYPE_IS_ANNOTATED_TYPED, location, resource, STEREOTYPE_IS_ANNOTATED_TYPED_ID);
}
// 3. Qualifier other than @Named
Modified: trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/internal/core/validation/CDIValidationErrorManager.java
===================================================================
--- trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/internal/core/validation/CDIValidationErrorManager.java 2011-07-27 17:28:53 UTC (rev 33261)
+++ trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/internal/core/validation/CDIValidationErrorManager.java 2011-07-27 17:30:08 UTC (rev 33262)
@@ -51,6 +51,7 @@
public static final int STEREOTYPE_DECLARES_NON_EMPTY_NAME_ID = 30;
public static final int INTERCEPTOR_HAS_NAME_ID = 31;
public static final int DECORATOR_HAS_NAME_ID = 32;
+ public static final int STEREOTYPE_IS_ANNOTATED_TYPED_ID = 33;
/*
Modified: trunk/cdi/plugins/org.jboss.tools.cdi.ui/src/org/jboss/tools/cdi/ui/marker/CDIProblemMarkerResolutionGenerator.java
===================================================================
--- trunk/cdi/plugins/org.jboss.tools.cdi.ui/src/org/jboss/tools/cdi/ui/marker/CDIProblemMarkerResolutionGenerator.java 2011-07-27 17:28:53 UTC (rev 33261)
+++ trunk/cdi/plugins/org.jboss.tools.cdi.ui/src/org/jboss/tools/cdi/ui/marker/CDIProblemMarkerResolutionGenerator.java 2011-07-27 17:30:08 UTC (rev 33262)
@@ -357,6 +357,13 @@
new DeleteAnnotationMarkerResolution(ta.type, CDIConstants.NAMED_QUALIFIER_TYPE_NAME)
};
}
+ }else if(messageId == CDIValidationErrorManager.STEREOTYPE_IS_ANNOTATED_TYPED_ID){
+ TypeAndAnnotation ta = findTypeAndAnnotation(file, start, CDIConstants.TYPED_ANNOTATION_TYPE_NAME);
+ if(ta != null && ta.annotation != null && ta.type != null){
+ return new IMarkerResolution[] {
+ new DeleteAnnotationMarkerResolution(ta.type, CDIConstants.TYPED_ANNOTATION_TYPE_NAME)
+ };
+ }
}
}
return new IMarkerResolution[] {};
Modified: trunk/cdi/plugins/org.jboss.tools.cdi.ui/src/org/jboss/tools/cdi/ui/marker/MarkerResolutionUtils.java
===================================================================
--- trunk/cdi/plugins/org.jboss.tools.cdi.ui/src/org/jboss/tools/cdi/ui/marker/MarkerResolutionUtils.java 2011-07-27 17:28:53 UTC (rev 33261)
+++ trunk/cdi/plugins/org.jboss.tools.cdi.ui/src/org/jboss/tools/cdi/ui/marker/MarkerResolutionUtils.java 2011-07-27 17:30:08 UTC (rev 33262)
@@ -546,7 +546,7 @@
int numberOfSpaces = 0;
if(position < buffer.getLength()-1){
char c = buffer.getChar(position);
- while(c == ' ' && position < buffer.getLength()-1){
+ while((c == ' ' || c == '\t' || c == '\n' || c == '\r') && position < buffer.getLength()-1){
numberOfSpaces++;
position++;
c = buffer.getChar(position);
Deleted: trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/quickfixes/TestDecorator2.qfxresult
===================================================================
--- trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/quickfixes/TestDecorator2.qfxresult 2011-07-27 17:28:53 UTC (rev 33261)
+++ trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/quickfixes/TestDecorator2.qfxresult 2011-07-27 17:30:08 UTC (rev 33262)
@@ -1,15 +0,0 @@
-package org.jboss.jsr299.tck.tests.jbt.quickfixes;
-
-import javax.decorator.Decorator;
-import javax.decorator.Delegate;
-import javax.inject.Inject;
-
-@Decorator
-public class TestDecorator2 {
- @Inject @Delegate @AAnnotation String str;
-
-
- public String produce(){
- return "a";
- }
-}
Added: trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/quickfixes/TestDecorator2.qfxresult
===================================================================
--- trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/quickfixes/TestDecorator2.qfxresult (rev 0)
+++ trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/quickfixes/TestDecorator2.qfxresult 2011-07-27 17:30:08 UTC (rev 33262)
@@ -0,0 +1,14 @@
+package org.jboss.jsr299.tck.tests.jbt.quickfixes;
+
+import javax.decorator.Decorator;
+import javax.decorator.Delegate;
+import javax.inject.Inject;
+
+@Decorator
+public class TestDecorator2 {
+ @Inject @Delegate @AAnnotation String str;
+
+ public String produce(){
+ return "a";
+ }
+}
Deleted: trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/quickfixes/TestDecorator3.qfxresult
===================================================================
--- trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/quickfixes/TestDecorator3.qfxresult 2011-07-27 17:28:53 UTC (rev 33261)
+++ trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/quickfixes/TestDecorator3.qfxresult 2011-07-27 17:30:08 UTC (rev 33262)
@@ -1,16 +0,0 @@
-package org.jboss.jsr299.tck.tests.jbt.quickfixes;
-
-import javax.decorator.Decorator;
-import javax.decorator.Delegate;
-import javax.inject.Inject;
-
-@Decorator
-
-public class TestDecorator3 {
- @Inject @Delegate @AAnnotation String str;
-
-
- public String produce(){
- return str;
- }
-}
Added: trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/quickfixes/TestDecorator3.qfxresult
===================================================================
--- trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/quickfixes/TestDecorator3.qfxresult (rev 0)
+++ trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/quickfixes/TestDecorator3.qfxresult 2011-07-27 17:30:08 UTC (rev 33262)
@@ -0,0 +1,15 @@
+package org.jboss.jsr299.tck.tests.jbt.quickfixes;
+
+import javax.decorator.Decorator;
+import javax.decorator.Delegate;
+import javax.inject.Inject;
+
+@Decorator
+public class TestDecorator3 {
+ @Inject @Delegate @AAnnotation String str;
+
+
+ public String produce(){
+ return str;
+ }
+}
Deleted: trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/quickfixes/TestInterceptor4.qfxresult
===================================================================
--- trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/quickfixes/TestInterceptor4.qfxresult 2011-07-27 17:28:53 UTC (rev 33261)
+++ trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/quickfixes/TestInterceptor4.qfxresult 2011-07-27 17:30:08 UTC (rev 33262)
@@ -1,15 +0,0 @@
-package org.jboss.jsr299.tck.tests.jbt.quickfixes;
-
-import javax.interceptor.Interceptor;
-
-import org.jboss.jsr299.tck.tests.decorators.interceptor.FooBinding;
-
-@Interceptor
-@FooBinding
-public class TestInterceptor4{
-
-
- public String produce(){
- return "a";
- }
-}
Added: trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/quickfixes/TestInterceptor4.qfxresult
===================================================================
--- trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/quickfixes/TestInterceptor4.qfxresult (rev 0)
+++ trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/quickfixes/TestInterceptor4.qfxresult 2011-07-27 17:30:08 UTC (rev 33262)
@@ -0,0 +1,14 @@
+package org.jboss.jsr299.tck.tests.jbt.quickfixes;
+
+import javax.interceptor.Interceptor;
+
+import org.jboss.jsr299.tck.tests.decorators.interceptor.FooBinding;
+
+@Interceptor
+@FooBinding
+public class TestInterceptor4{
+
+ public String produce(){
+ return "a";
+ }
+}
Deleted: trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/quickfixes/TestInterceptor5.qfxresult
===================================================================
--- trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/quickfixes/TestInterceptor5.qfxresult 2011-07-27 17:28:53 UTC (rev 33261)
+++ trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/quickfixes/TestInterceptor5.qfxresult 2011-07-27 17:30:08 UTC (rev 33262)
@@ -1,16 +0,0 @@
-package org.jboss.jsr299.tck.tests.jbt.quickfixes;
-
-import javax.interceptor.Interceptor;
-
-import org.jboss.jsr299.tck.tests.decorators.interceptor.FooBinding;
-
-@Interceptor
-@FooBinding
-
-public class TestInterceptor5{
-
-
- public String produce(){
- return "a";
- }
-}
Added: trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/quickfixes/TestInterceptor5.qfxresult
===================================================================
--- trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/quickfixes/TestInterceptor5.qfxresult (rev 0)
+++ trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/quickfixes/TestInterceptor5.qfxresult 2011-07-27 17:30:08 UTC (rev 33262)
@@ -0,0 +1,15 @@
+package org.jboss.jsr299.tck.tests.jbt.quickfixes;
+
+import javax.interceptor.Interceptor;
+
+import org.jboss.jsr299.tck.tests.decorators.interceptor.FooBinding;
+
+@Interceptor
+@FooBinding
+public class TestInterceptor5{
+
+
+ public String produce(){
+ return "a";
+ }
+}
Added: trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/quickfixes/TestStereotype6.java
===================================================================
--- trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/quickfixes/TestStereotype6.java (rev 0)
+++ trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/quickfixes/TestStereotype6.java 2011-07-27 17:30:08 UTC (rev 33262)
@@ -0,0 +1,23 @@
+package org.jboss.jsr299.tck.tests.jbt.quickfixes;
+
+import java.lang.annotation.Target;
+
+import javax.enterprise.context.ApplicationScoped;
+import javax.enterprise.inject.Stereotype;
+import javax.enterprise.inject.Typed;
+import javax.inject.Named;
+import static java.lang.annotation.RetentionPolicy.RUNTIME;
+import java.lang.annotation.Retention;
+import static java.lang.annotation.ElementType.TYPE;
+import static java.lang.annotation.ElementType.METHOD;
+import static java.lang.annotation.ElementType.FIELD;
+
+@Retention(RUNTIME)
+@Stereotype
+@Target({TYPE, METHOD, FIELD})
+@ApplicationScoped
+@Named
+@Typed
+public @interface TestStereotype6 {
+
+}
Property changes on: trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/quickfixes/TestStereotype6.java
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/quickfixes/TestStereotype6.qfxresult
===================================================================
--- trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/quickfixes/TestStereotype6.qfxresult (rev 0)
+++ trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/quickfixes/TestStereotype6.qfxresult 2011-07-27 17:30:08 UTC (rev 33262)
@@ -0,0 +1,21 @@
+package org.jboss.jsr299.tck.tests.jbt.quickfixes;
+
+import java.lang.annotation.Target;
+
+import javax.enterprise.context.ApplicationScoped;
+import javax.enterprise.inject.Stereotype;
+import javax.inject.Named;
+import static java.lang.annotation.RetentionPolicy.RUNTIME;
+import java.lang.annotation.Retention;
+import static java.lang.annotation.ElementType.TYPE;
+import static java.lang.annotation.ElementType.METHOD;
+import static java.lang.annotation.ElementType.FIELD;
+
+@Retention(RUNTIME)
+@Stereotype
+@Target({TYPE, METHOD, FIELD})
+@ApplicationScoped
+@Named
+public @interface TestStereotype6 {
+
+}
Modified: trunk/cdi/tests/org.jboss.tools.cdi.ui.test/src/org/jboss/tools/cdi/ui/test/marker/CDIMarkerResolutionTest.java
===================================================================
--- trunk/cdi/tests/org.jboss.tools.cdi.ui.test/src/org/jboss/tools/cdi/ui/test/marker/CDIMarkerResolutionTest.java 2011-07-27 17:28:53 UTC (rev 33261)
+++ trunk/cdi/tests/org.jboss.tools.cdi.ui.test/src/org/jboss/tools/cdi/ui/test/marker/CDIMarkerResolutionTest.java 2011-07-27 17:30:08 UTC (rev 33262)
@@ -786,4 +786,18 @@
DeleteAnnotationMarkerResolution.class);
}
+ public void testTypedInStereotypeResolution() throws CoreException{
+ checkResolution(tckProject,
+ new String[]{
+ "JavaSource/org/jboss/jsr299/tck/tests/jbt/quickfixes/TestStereotype6.java"
+ },
+ new String[]{
+ "JavaSource/org/jboss/jsr299/tck/tests/jbt/quickfixes/TestStereotype6.qfxresult"
+ },
+ CDICoreValidator.PROBLEM_TYPE,
+ CDIValidationErrorManager.MESSAGE_ID_ATTRIBUTE_NAME,
+ CDIValidationErrorManager.STEREOTYPE_IS_ANNOTATED_TYPED_ID,
+ DeleteAnnotationMarkerResolution.class);
+ }
+
}
\ No newline at end of file
13 years, 6 months
JBoss Tools SVN: r33261 - trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/core.
by jbosstools-commits@lists.jboss.org
Author: scabanovich
Date: 2011-07-27 13:28:53 -0400 (Wed, 27 Jul 2011)
New Revision: 33261
Modified:
trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/core/CDICoreBuilder.java
Log:
JBIDE-9412
https://issues.jboss.org/browse/JBIDE-9412
Modified: trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/core/CDICoreBuilder.java
===================================================================
--- trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/core/CDICoreBuilder.java 2011-07-27 17:28:01 UTC (rev 33260)
+++ trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/core/CDICoreBuilder.java 2011-07-27 17:28:53 UTC (rev 33261)
@@ -158,7 +158,8 @@
//2. Update class path. Removed paths will be cached to be applied to working copy of context.
n.getClassPath().setSrcs(getResourceVisitor().srcs);
newJars = n.getClassPath().process();
-
+ }
+ if(isClassPathUpdated || buildParticipants == null) {
//3. Install extensions. That should be done before constructing working copy of context.
buildParticipants = n.getExtensionManager().getBuildParticipantFeature();
buildParticipants2 = new HashSet<IBuildParticipant2Feature>();
13 years, 6 months
JBoss Tools SVN: r33260 - trunk/common/plugins/org.jboss.tools.common.model/src/org/jboss/tools/common/model/filesystems/impl.
by jbosstools-commits@lists.jboss.org
Author: scabanovich
Date: 2011-07-27 13:28:01 -0400 (Wed, 27 Jul 2011)
New Revision: 33260
Modified:
trunk/common/plugins/org.jboss.tools.common.model/src/org/jboss/tools/common/model/filesystems/impl/Libs.java
Log:
JBIDE-9412
https://issues.jboss.org/browse/JBIDE-9412
Modified: trunk/common/plugins/org.jboss.tools.common.model/src/org/jboss/tools/common/model/filesystems/impl/Libs.java
===================================================================
--- trunk/common/plugins/org.jboss.tools.common.model/src/org/jboss/tools/common/model/filesystems/impl/Libs.java 2011-07-27 17:27:40 UTC (rev 33259)
+++ trunk/common/plugins/org.jboss.tools.common.model/src/org/jboss/tools/common/model/filesystems/impl/Libs.java 2011-07-27 17:28:01 UTC (rev 33260)
@@ -270,12 +270,12 @@
private Map<String, String> pathToName = new HashMap<String, String>();
private Map<String, String> nameToPath = new HashMap<String, String>();
- public void put(String path, String name) {
+ public synchronized void put(String path, String name) {
pathToName.put(path, name);
nameToPath.put(name, path);
}
- public void removePath(String path) {
+ public synchronized void removePath(String path) {
String name = pathToName.remove(path);
if(name != null) {
nameToPath.remove(name);
@@ -294,7 +294,7 @@
return nameToPath.containsKey(name);
}
- public Set<String> getPaths() {
+ public synchronized Set<String> getPaths() {
return new HashSet<String>(pathToName.keySet());
}
}
13 years, 6 months
JBoss Tools SVN: r33259 - in trunk/seam: features and 71 other directories.
by jbosstools-commits@lists.jboss.org
Author: max.andersen(a)jboss.com
Date: 2011-07-27 13:27:40 -0400 (Wed, 27 Jul 2011)
New Revision: 33259
Modified:
trunk/seam/features/org.jboss.tools.seam.feature/pom.xml
trunk/seam/features/org.jboss.tools.seam.test.feature/pom.xml
trunk/seam/features/pom.xml
trunk/seam/plugins/org.jboss.tools.seam.base.test/META-INF/MANIFEST.MF
trunk/seam/plugins/org.jboss.tools.seam.base.test/pom.xml
trunk/seam/plugins/org.jboss.tools.seam.core/pom.xml
trunk/seam/plugins/org.jboss.tools.seam.doc.user/META-INF/MANIFEST.MF
trunk/seam/plugins/org.jboss.tools.seam.doc.user/pom.xml
trunk/seam/plugins/org.jboss.tools.seam.pages.xml/META-INF/MANIFEST.MF
trunk/seam/plugins/org.jboss.tools.seam.pages.xml/pom.xml
trunk/seam/plugins/org.jboss.tools.seam.text.ext/pom.xml
trunk/seam/plugins/org.jboss.tools.seam.ui.pages/pom.xml
trunk/seam/plugins/org.jboss.tools.seam.ui/pom.xml
trunk/seam/plugins/org.jboss.tools.seam.xml.ui/META-INF/MANIFEST.MF
trunk/seam/plugins/org.jboss.tools.seam.xml.ui/pom.xml
trunk/seam/plugins/org.jboss.tools.seam.xml/META-INF/MANIFEST.MF
trunk/seam/plugins/org.jboss.tools.seam.xml/pom.xml
trunk/seam/plugins/pom.xml
trunk/seam/pom.xml
trunk/seam/site/pom.xml
trunk/seam/tests/org.jboss.tools.seam.core.test/pom.xml
trunk/seam/tests/org.jboss.tools.seam.pages.xml.test/META-INF/MANIFEST.MF
trunk/seam/tests/org.jboss.tools.seam.pages.xml.test/pom.xml
trunk/seam/tests/org.jboss.tools.seam.ui.bot.test/META-INF/MANIFEST.MF
trunk/seam/tests/org.jboss.tools.seam.ui.bot.test/pom.xml
trunk/seam/tests/org.jboss.tools.seam.ui.test/pom.xml
trunk/seam/tests/org.jboss.tools.seam.xml.test/META-INF/MANIFEST.MF
trunk/seam/tests/org.jboss.tools.seam.xml.test/pom.xml
trunk/seam/tests/org.jboss.tools.seam121EAP.core.test/META-INF/MANIFEST.MF
trunk/seam/tests/org.jboss.tools.seam121EAP.core.test/pom.xml
trunk/seam/tests/org.jboss.tools.seam121EAP.ui.test/META-INF/MANIFEST.MF
trunk/seam/tests/org.jboss.tools.seam121EAP.ui.test/pom.xml
trunk/seam/tests/org.jboss.tools.seam201GA.core.test/META-INF/MANIFEST.MF
trunk/seam/tests/org.jboss.tools.seam201GA.core.test/pom.xml
trunk/seam/tests/org.jboss.tools.seam201GA.ui.test/META-INF/MANIFEST.MF
trunk/seam/tests/org.jboss.tools.seam201GA.ui.test/pom.xml
trunk/seam/tests/org.jboss.tools.seam202SP1.core.test/META-INF/MANIFEST.MF
trunk/seam/tests/org.jboss.tools.seam202SP1.core.test/pom.xml
trunk/seam/tests/org.jboss.tools.seam202SP1.ui.test/META-INF/MANIFEST.MF
trunk/seam/tests/org.jboss.tools.seam202SP1.ui.test/pom.xml
trunk/seam/tests/org.jboss.tools.seam203CR1.core.test/META-INF/MANIFEST.MF
trunk/seam/tests/org.jboss.tools.seam203CR1.core.test/pom.xml
trunk/seam/tests/org.jboss.tools.seam203CR1.ui.test/META-INF/MANIFEST.MF
trunk/seam/tests/org.jboss.tools.seam203CR1.ui.test/pom.xml
trunk/seam/tests/org.jboss.tools.seam211GA.core.test/META-INF/MANIFEST.MF
trunk/seam/tests/org.jboss.tools.seam211GA.core.test/pom.xml
trunk/seam/tests/org.jboss.tools.seam211GA.ui.test/META-INF/MANIFEST.MF
trunk/seam/tests/org.jboss.tools.seam211GA.ui.test/pom.xml
trunk/seam/tests/org.jboss.tools.seam212GA.core.test/META-INF/MANIFEST.MF
trunk/seam/tests/org.jboss.tools.seam212GA.core.test/pom.xml
trunk/seam/tests/org.jboss.tools.seam212GA.ui.test/META-INF/MANIFEST.MF
trunk/seam/tests/org.jboss.tools.seam212GA.ui.test/pom.xml
trunk/seam/tests/org.jboss.tools.seam220CR1.core.test/META-INF/MANIFEST.MF
trunk/seam/tests/org.jboss.tools.seam220CR1.core.test/pom.xml
trunk/seam/tests/org.jboss.tools.seam220CR1.ui.test/META-INF/MANIFEST.MF
trunk/seam/tests/org.jboss.tools.seam220CR1.ui.test/pom.xml
trunk/seam/tests/org.jboss.tools.seam220GA.core.test/META-INF/MANIFEST.MF
trunk/seam/tests/org.jboss.tools.seam220GA.core.test/pom.xml
trunk/seam/tests/org.jboss.tools.seam220GA.ui.test/META-INF/MANIFEST.MF
trunk/seam/tests/org.jboss.tools.seam220GA.ui.test/pom.xml
trunk/seam/tests/org.jboss.tools.seam221CR1.core.test/META-INF/MANIFEST.MF
trunk/seam/tests/org.jboss.tools.seam221CR1.core.test/pom.xml
trunk/seam/tests/org.jboss.tools.seam221CR1.ui.test/META-INF/MANIFEST.MF
trunk/seam/tests/org.jboss.tools.seam221CR1.ui.test/pom.xml
trunk/seam/tests/org.jboss.tools.seam221CR2.core.test/META-INF/MANIFEST.MF
trunk/seam/tests/org.jboss.tools.seam221CR2.core.test/pom.xml
trunk/seam/tests/org.jboss.tools.seam221CR2.ui.test/META-INF/MANIFEST.MF
trunk/seam/tests/org.jboss.tools.seam221CR2.ui.test/pom.xml
trunk/seam/tests/org.jboss.tools.seamfp.core.test/META-INF/MANIFEST.MF
trunk/seam/tests/org.jboss.tools.seamfp.core.test/pom.xml
trunk/seam/tests/org.jboss.tools.seamfp.ui.test/META-INF/MANIFEST.MF
trunk/seam/tests/org.jboss.tools.seamfp.ui.test/pom.xml
trunk/seam/tests/pom.xml
Log:
JBIDE-9268 aligned seam to 3.3.0
Modified: trunk/seam/features/org.jboss.tools.seam.feature/pom.xml
===================================================================
--- trunk/seam/features/org.jboss.tools.seam.feature/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
+++ trunk/seam/features/org.jboss.tools.seam.feature/pom.xml 2011-07-27 17:27:40 UTC (rev 33259)
@@ -4,10 +4,10 @@
<parent>
<groupId>org.jboss.tools.seam</groupId>
<artifactId>features</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.seam.features</groupId>
<artifactId>org.jboss.tools.seam.feature</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+
<packaging>eclipse-feature</packaging>
</project>
Modified: trunk/seam/features/org.jboss.tools.seam.test.feature/pom.xml
===================================================================
--- trunk/seam/features/org.jboss.tools.seam.test.feature/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
+++ trunk/seam/features/org.jboss.tools.seam.test.feature/pom.xml 2011-07-27 17:27:40 UTC (rev 33259)
@@ -4,10 +4,10 @@
<parent>
<groupId>org.jboss.tools.seam</groupId>
<artifactId>features</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.seam.features</groupId>
<artifactId>org.jboss.tools.seam.test.feature</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+
<packaging>eclipse-feature</packaging>
</project>
Modified: trunk/seam/features/pom.xml
===================================================================
--- trunk/seam/features/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
+++ trunk/seam/features/pom.xml 2011-07-27 17:27:40 UTC (rev 33259)
@@ -4,11 +4,11 @@
<parent>
<groupId>org.jboss.tools</groupId>
<artifactId>seam</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.seam</groupId>
<artifactId>features</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+
<packaging>pom</packaging>
<name>seam.features</name>
<modules>
Modified: trunk/seam/plugins/org.jboss.tools.seam.base.test/META-INF/MANIFEST.MF
===================================================================
--- trunk/seam/plugins/org.jboss.tools.seam.base.test/META-INF/MANIFEST.MF 2011-07-27 16:52:19 UTC (rev 33258)
+++ trunk/seam/plugins/org.jboss.tools.seam.base.test/META-INF/MANIFEST.MF 2011-07-27 17:27:40 UTC (rev 33259)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: Seam Tests Base Classes
Bundle-SymbolicName: org.jboss.tools.seam.base.test
-Bundle-Version: 1.0.0.qualifier
+Bundle-Version: 3.3.0.qualifier
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
Require-Bundle: org.eclipse.core.resources;bundle-version="3.7.100",
org.eclipse.core.runtime;bundle-version="3.7.0",
Modified: trunk/seam/plugins/org.jboss.tools.seam.base.test/pom.xml
===================================================================
--- trunk/seam/plugins/org.jboss.tools.seam.base.test/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
+++ trunk/seam/plugins/org.jboss.tools.seam.base.test/pom.xml 2011-07-27 17:27:40 UTC (rev 33259)
@@ -4,10 +4,10 @@
<parent>
<groupId>org.jboss.tools.seam</groupId>
<artifactId>plugins</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.seam.plugins</groupId>
<artifactId>org.jboss.tools.seam.base.test</artifactId>
- <version>1.0.0-SNAPSHOT</version>
+
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/seam/plugins/org.jboss.tools.seam.core/pom.xml
===================================================================
--- trunk/seam/plugins/org.jboss.tools.seam.core/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
+++ trunk/seam/plugins/org.jboss.tools.seam.core/pom.xml 2011-07-27 17:27:40 UTC (rev 33259)
@@ -4,10 +4,10 @@
<parent>
<groupId>org.jboss.tools.seam</groupId>
<artifactId>plugins</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.seam.plugins</groupId>
<artifactId>org.jboss.tools.seam.core</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/seam/plugins/org.jboss.tools.seam.doc.user/META-INF/MANIFEST.MF
===================================================================
--- trunk/seam/plugins/org.jboss.tools.seam.doc.user/META-INF/MANIFEST.MF 2011-07-27 16:52:19 UTC (rev 33258)
+++ trunk/seam/plugins/org.jboss.tools.seam.doc.user/META-INF/MANIFEST.MF 2011-07-27 17:27:40 UTC (rev 33259)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.seam.doc.user;singleton:=true
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.3.0.qualifier
Require-Bundle: org.eclipse.help
Bundle-Vendor: %Bundle-Vendor.0
Bundle-Localization: plugin
Modified: trunk/seam/plugins/org.jboss.tools.seam.doc.user/pom.xml
===================================================================
--- trunk/seam/plugins/org.jboss.tools.seam.doc.user/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
+++ trunk/seam/plugins/org.jboss.tools.seam.doc.user/pom.xml 2011-07-27 17:27:40 UTC (rev 33259)
@@ -4,10 +4,10 @@
<parent>
<groupId>org.jboss.tools.seam</groupId>
<artifactId>plugins</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.seam.plugins</groupId>
<artifactId>org.jboss.tools.seam.doc.user</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/seam/plugins/org.jboss.tools.seam.pages.xml/META-INF/MANIFEST.MF
===================================================================
--- trunk/seam/plugins/org.jboss.tools.seam.pages.xml/META-INF/MANIFEST.MF 2011-07-27 16:52:19 UTC (rev 33258)
+++ trunk/seam/plugins/org.jboss.tools.seam.pages.xml/META-INF/MANIFEST.MF 2011-07-27 17:27:40 UTC (rev 33259)
@@ -12,7 +12,7 @@
org.eclipse.ltk.core.refactoring;bundle-version="3.5.200",
org.eclipse.jst.jsp.ui;bundle-version="1.1.600",
org.eclipse.jface.text;bundle-version="3.7.0"
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.3.0.qualifier
Export-Package: org.jboss.tools.seam.pages.xml,
org.jboss.tools.seam.pages.xml.model,
org.jboss.tools.seam.pages.xml.model.handlers,
Modified: trunk/seam/plugins/org.jboss.tools.seam.pages.xml/pom.xml
===================================================================
--- trunk/seam/plugins/org.jboss.tools.seam.pages.xml/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
+++ trunk/seam/plugins/org.jboss.tools.seam.pages.xml/pom.xml 2011-07-27 17:27:40 UTC (rev 33259)
@@ -4,10 +4,10 @@
<parent>
<groupId>org.jboss.tools.seam</groupId>
<artifactId>plugins</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.seam.plugins</groupId>
<artifactId>org.jboss.tools.seam.pages.xml</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/seam/plugins/org.jboss.tools.seam.text.ext/pom.xml
===================================================================
--- trunk/seam/plugins/org.jboss.tools.seam.text.ext/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
+++ trunk/seam/plugins/org.jboss.tools.seam.text.ext/pom.xml 2011-07-27 17:27:40 UTC (rev 33259)
@@ -4,10 +4,10 @@
<parent>
<groupId>org.jboss.tools.seam</groupId>
<artifactId>plugins</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.seam.plugins</groupId>
<artifactId>org.jboss.tools.seam.text.ext</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/seam/plugins/org.jboss.tools.seam.ui/pom.xml
===================================================================
--- trunk/seam/plugins/org.jboss.tools.seam.ui/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
+++ trunk/seam/plugins/org.jboss.tools.seam.ui/pom.xml 2011-07-27 17:27:40 UTC (rev 33259)
@@ -4,10 +4,10 @@
<parent>
<groupId>org.jboss.tools.seam</groupId>
<artifactId>plugins</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.seam.plugins</groupId>
<artifactId>org.jboss.tools.seam.ui</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/seam/plugins/org.jboss.tools.seam.ui.pages/pom.xml
===================================================================
--- trunk/seam/plugins/org.jboss.tools.seam.ui.pages/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
+++ trunk/seam/plugins/org.jboss.tools.seam.ui.pages/pom.xml 2011-07-27 17:27:40 UTC (rev 33259)
@@ -4,10 +4,10 @@
<parent>
<groupId>org.jboss.tools.seam</groupId>
<artifactId>plugins</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.seam.plugins</groupId>
<artifactId>org.jboss.tools.seam.ui.pages</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/seam/plugins/org.jboss.tools.seam.xml/META-INF/MANIFEST.MF
===================================================================
--- trunk/seam/plugins/org.jboss.tools.seam.xml/META-INF/MANIFEST.MF 2011-07-27 16:52:19 UTC (rev 33258)
+++ trunk/seam/plugins/org.jboss.tools.seam.xml/META-INF/MANIFEST.MF 2011-07-27 17:27:40 UTC (rev 33259)
@@ -28,5 +28,5 @@
org.eclipse.core.resources;bundle-version="3.7.100",
org.eclipse.core.runtime;bundle-version="3.7.0",
org.eclipse.wst.web;bundle-version="1.1.500"
-Bundle-Version: 3.2.0.qualifier
+Bundle-Version: 3.3.0.qualifier
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Modified: trunk/seam/plugins/org.jboss.tools.seam.xml/pom.xml
===================================================================
--- trunk/seam/plugins/org.jboss.tools.seam.xml/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
+++ trunk/seam/plugins/org.jboss.tools.seam.xml/pom.xml 2011-07-27 17:27:40 UTC (rev 33259)
@@ -4,10 +4,10 @@
<parent>
<groupId>org.jboss.tools.seam</groupId>
<artifactId>plugins</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.seam.plugins</groupId>
<artifactId>org.jboss.tools.seam.xml</artifactId>
- <version>3.2.0-SNAPSHOT</version>
+
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/seam/plugins/org.jboss.tools.seam.xml.ui/META-INF/MANIFEST.MF
===================================================================
--- trunk/seam/plugins/org.jboss.tools.seam.xml.ui/META-INF/MANIFEST.MF 2011-07-27 16:52:19 UTC (rev 33258)
+++ trunk/seam/plugins/org.jboss.tools.seam.xml.ui/META-INF/MANIFEST.MF 2011-07-27 17:27:40 UTC (rev 33259)
@@ -34,5 +34,5 @@
org.jboss.tools.jst.web,
org.jboss.tools.jst.web.ui,
org.jboss.tools.seam.xml
-Bundle-Version: 3.2.0.qualifier
+Bundle-Version: 3.3.0.qualifier
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Modified: trunk/seam/plugins/org.jboss.tools.seam.xml.ui/pom.xml
===================================================================
--- trunk/seam/plugins/org.jboss.tools.seam.xml.ui/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
+++ trunk/seam/plugins/org.jboss.tools.seam.xml.ui/pom.xml 2011-07-27 17:27:40 UTC (rev 33259)
@@ -4,10 +4,10 @@
<parent>
<groupId>org.jboss.tools.seam</groupId>
<artifactId>plugins</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.seam.plugins</groupId>
<artifactId>org.jboss.tools.seam.xml.ui</artifactId>
- <version>3.2.0-SNAPSHOT</version>
+
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/seam/plugins/pom.xml
===================================================================
--- trunk/seam/plugins/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
+++ trunk/seam/plugins/pom.xml 2011-07-27 17:27:40 UTC (rev 33259)
@@ -4,12 +4,12 @@
<parent>
<groupId>org.jboss.tools</groupId>
<artifactId>seam</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.seam</groupId>
<artifactId>plugins</artifactId>
<name>seam.plugins</name>
- <version>0.0.1-SNAPSHOT</version>
+
<packaging>pom</packaging>
<modules>
<module>org.jboss.tools.seam.core</module>
Modified: trunk/seam/pom.xml
===================================================================
--- trunk/seam/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
+++ trunk/seam/pom.xml 2011-07-27 17:27:40 UTC (rev 33259)
@@ -12,7 +12,7 @@
<groupId>org.jboss.tools</groupId>
<artifactId>seam</artifactId>
<name>seam.all</name>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
<packaging>pom</packaging>
<modules>
<module>features</module>
Modified: trunk/seam/site/pom.xml
===================================================================
--- trunk/seam/site/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
+++ trunk/seam/site/pom.xml 2011-07-27 17:27:40 UTC (rev 33259)
@@ -4,11 +4,11 @@
<parent>
<groupId>org.jboss.tools</groupId>
<artifactId>seam</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.seam</groupId>
<artifactId>seam.site</artifactId>
<name>seam.site</name>
- <version>0.0.1-SNAPSHOT</version>
+
<packaging>eclipse-update-site</packaging>
</project>
Modified: trunk/seam/tests/org.jboss.tools.seam.core.test/pom.xml
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam.core.test/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
+++ trunk/seam/tests/org.jboss.tools.seam.core.test/pom.xml 2011-07-27 17:27:40 UTC (rev 33259)
@@ -4,11 +4,11 @@
<parent>
<groupId>org.jboss.tools.seam</groupId>
<artifactId>tests</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.seam.tests</groupId>
<artifactId>org.jboss.tools.seam.core.test</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/seam/tests/org.jboss.tools.seam.pages.xml.test/META-INF/MANIFEST.MF
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam.pages.xml.test/META-INF/MANIFEST.MF 2011-07-27 16:52:19 UTC (rev 33258)
+++ trunk/seam/tests/org.jboss.tools.seam.pages.xml.test/META-INF/MANIFEST.MF 2011-07-27 17:27:40 UTC (rev 33259)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.seam.pages.xml.test;singleton:=true
-Bundle-Version: 3.2.0.qualifier
+Bundle-Version: 3.3.0.qualifier
Bundle-Vendor: %Bundle-Vendor.0
Export-Package: org.jboss.tools.seam.pages.xml.test
Require-Bundle:
Modified: trunk/seam/tests/org.jboss.tools.seam.pages.xml.test/pom.xml
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam.pages.xml.test/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
+++ trunk/seam/tests/org.jboss.tools.seam.pages.xml.test/pom.xml 2011-07-27 17:27:40 UTC (rev 33259)
@@ -4,11 +4,11 @@
<parent>
<groupId>org.jboss.tools.seam</groupId>
<artifactId>tests</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.seam.tests</groupId>
<artifactId>org.jboss.tools.seam.pages.xml.test</artifactId>
- <version>3.2.0-SNAPSHOT</version>
+
<packaging>eclipse-test-plugin</packaging>
<properties>
<emma.filter>org.jboss.tools.seam*</emma.filter>
Modified: trunk/seam/tests/org.jboss.tools.seam.ui.bot.test/META-INF/MANIFEST.MF
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam.ui.bot.test/META-INF/MANIFEST.MF 2011-07-27 16:52:19 UTC (rev 33258)
+++ trunk/seam/tests/org.jboss.tools.seam.ui.bot.test/META-INF/MANIFEST.MF 2011-07-27 17:27:40 UTC (rev 33259)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: Seam UI SWTBot Tests
Bundle-SymbolicName: org.jboss.tools.seam.ui.bot.test;singleton:=true
-Bundle-Version: 3.2.0.qualifier
+Bundle-Version: 3.3.0.qualifier
Bundle-Activator: org.jboss.tools.seam.ui.bot.test.Activator
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime,
Modified: trunk/seam/tests/org.jboss.tools.seam.ui.bot.test/pom.xml
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam.ui.bot.test/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
+++ trunk/seam/tests/org.jboss.tools.seam.ui.bot.test/pom.xml 2011-07-27 17:27:40 UTC (rev 33259)
@@ -4,11 +4,11 @@
<parent>
<groupId>org.jboss.tools.seam</groupId>
<artifactId>tests</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.seam.tests</groupId>
<artifactId>org.jboss.tools.seam.ui.bot.test</artifactId>
- <version>3.2.0-SNAPSHOT</version>
+
<packaging>eclipse-test-plugin</packaging>
<build>
<plugins>
Modified: trunk/seam/tests/org.jboss.tools.seam.ui.test/pom.xml
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam.ui.test/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
+++ trunk/seam/tests/org.jboss.tools.seam.ui.test/pom.xml 2011-07-27 17:27:40 UTC (rev 33259)
@@ -4,11 +4,11 @@
<parent>
<groupId>org.jboss.tools.seam</groupId>
<artifactId>tests</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.seam.tests</groupId>
<artifactId>org.jboss.tools.seam.ui.test</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/seam/tests/org.jboss.tools.seam.xml.test/META-INF/MANIFEST.MF
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam.xml.test/META-INF/MANIFEST.MF 2011-07-27 16:52:19 UTC (rev 33258)
+++ trunk/seam/tests/org.jboss.tools.seam.xml.test/META-INF/MANIFEST.MF 2011-07-27 17:27:40 UTC (rev 33259)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: Seam XML Tests
Bundle-SymbolicName: org.jboss.tools.seam.xml.test;singleton:=true
-Bundle-Version: 3.2.0.qualifier
+Bundle-Version: 3.3.0.qualifier
Require-Bundle: org.eclipse.core.runtime,
org.junit,
org.jboss.tools.seam.xml,
Modified: trunk/seam/tests/org.jboss.tools.seam.xml.test/pom.xml
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam.xml.test/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
+++ trunk/seam/tests/org.jboss.tools.seam.xml.test/pom.xml 2011-07-27 17:27:40 UTC (rev 33259)
@@ -4,11 +4,11 @@
<parent>
<groupId>org.jboss.tools.seam</groupId>
<artifactId>tests</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.seam.tests</groupId>
<artifactId>org.jboss.tools.seam.xml.test</artifactId>
- <version>3.2.0-SNAPSHOT</version>
+
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/seam/tests/org.jboss.tools.seam121EAP.core.test/META-INF/MANIFEST.MF
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam121EAP.core.test/META-INF/MANIFEST.MF 2011-07-27 16:52:19 UTC (rev 33258)
+++ trunk/seam/tests/org.jboss.tools.seam121EAP.core.test/META-INF/MANIFEST.MF 2011-07-27 17:27:40 UTC (rev 33259)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.seam121EAP.core.test;singleton:=true
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.3.0.qualifier
Bundle-Vendor: %Bundle-Vendor.0
Export-Package: org.jboss.tools.seam.core.test.project.facet
Require-Bundle:
Modified: trunk/seam/tests/org.jboss.tools.seam121EAP.core.test/pom.xml
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam121EAP.core.test/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
+++ trunk/seam/tests/org.jboss.tools.seam121EAP.core.test/pom.xml 2011-07-27 17:27:40 UTC (rev 33259)
@@ -4,11 +4,11 @@
<parent>
<groupId>org.jboss.tools.seam</groupId>
<artifactId>tests</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.seam.tests</groupId>
<artifactId>org.jboss.tools.seam121EAP.core.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/seam/tests/org.jboss.tools.seam121EAP.ui.test/META-INF/MANIFEST.MF
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam121EAP.ui.test/META-INF/MANIFEST.MF 2011-07-27 16:52:19 UTC (rev 33258)
+++ trunk/seam/tests/org.jboss.tools.seam121EAP.ui.test/META-INF/MANIFEST.MF 2011-07-27 17:27:40 UTC (rev 33259)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.seam121EAP.ui.test
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.3.0.qualifier
Bundle-Vendor: %Bundle-Vendor.0
Require-Bundle: org.junit,
org.jboss.tools.seam.base.test;bundle-version="1.0.0"
Modified: trunk/seam/tests/org.jboss.tools.seam121EAP.ui.test/pom.xml
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam121EAP.ui.test/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
+++ trunk/seam/tests/org.jboss.tools.seam121EAP.ui.test/pom.xml 2011-07-27 17:27:40 UTC (rev 33259)
@@ -4,11 +4,11 @@
<parent>
<groupId>org.jboss.tools.seam</groupId>
<artifactId>tests</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.seam.tests</groupId>
<artifactId>org.jboss.tools.seam121EAP.ui.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/seam/tests/org.jboss.tools.seam201GA.core.test/META-INF/MANIFEST.MF
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam201GA.core.test/META-INF/MANIFEST.MF 2011-07-27 16:52:19 UTC (rev 33258)
+++ trunk/seam/tests/org.jboss.tools.seam201GA.core.test/META-INF/MANIFEST.MF 2011-07-27 17:27:40 UTC (rev 33259)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.seam201GA.core.test;singleton:=true
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.3.0.qualifier
Bundle-Vendor: %Bundle-Vendor.0
Export-Package: org.jboss.tools.seam.core.test.project.facet
Require-Bundle:
Modified: trunk/seam/tests/org.jboss.tools.seam201GA.core.test/pom.xml
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam201GA.core.test/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
+++ trunk/seam/tests/org.jboss.tools.seam201GA.core.test/pom.xml 2011-07-27 17:27:40 UTC (rev 33259)
@@ -4,11 +4,11 @@
<parent>
<groupId>org.jboss.tools.seam</groupId>
<artifactId>tests</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.seam.tests</groupId>
<artifactId>org.jboss.tools.seam201GA.core.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/seam/tests/org.jboss.tools.seam201GA.ui.test/META-INF/MANIFEST.MF
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam201GA.ui.test/META-INF/MANIFEST.MF 2011-07-27 16:52:19 UTC (rev 33258)
+++ trunk/seam/tests/org.jboss.tools.seam201GA.ui.test/META-INF/MANIFEST.MF 2011-07-27 17:27:40 UTC (rev 33259)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.seam201GA.ui.test
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.3.0.qualifier
Bundle-Vendor: %Bundle-Vendor.0
Require-Bundle: org.junit,
org.jboss.tools.seam.base.test;bundle-version="1.0.0"
Modified: trunk/seam/tests/org.jboss.tools.seam201GA.ui.test/pom.xml
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam201GA.ui.test/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
+++ trunk/seam/tests/org.jboss.tools.seam201GA.ui.test/pom.xml 2011-07-27 17:27:40 UTC (rev 33259)
@@ -4,11 +4,11 @@
<parent>
<groupId>org.jboss.tools.seam</groupId>
<artifactId>tests</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.seam.tests</groupId>
<artifactId>org.jboss.tools.seam201GA.ui.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/seam/tests/org.jboss.tools.seam202SP1.core.test/META-INF/MANIFEST.MF
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam202SP1.core.test/META-INF/MANIFEST.MF 2011-07-27 16:52:19 UTC (rev 33258)
+++ trunk/seam/tests/org.jboss.tools.seam202SP1.core.test/META-INF/MANIFEST.MF 2011-07-27 17:27:40 UTC (rev 33259)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.seam202SP1.core.test;singleton:=true
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.3.0.qualifier
Bundle-Vendor: %Bundle-Vendor.0
Export-Package: org.jboss.tools.seam.core.test.project.facet
Require-Bundle:
Modified: trunk/seam/tests/org.jboss.tools.seam202SP1.core.test/pom.xml
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam202SP1.core.test/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
+++ trunk/seam/tests/org.jboss.tools.seam202SP1.core.test/pom.xml 2011-07-27 17:27:40 UTC (rev 33259)
@@ -4,11 +4,11 @@
<parent>
<groupId>org.jboss.tools.seam</groupId>
<artifactId>tests</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.seam.tests</groupId>
<artifactId>org.jboss.tools.seam202SP1.core.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/seam/tests/org.jboss.tools.seam202SP1.ui.test/META-INF/MANIFEST.MF
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam202SP1.ui.test/META-INF/MANIFEST.MF 2011-07-27 16:52:19 UTC (rev 33258)
+++ trunk/seam/tests/org.jboss.tools.seam202SP1.ui.test/META-INF/MANIFEST.MF 2011-07-27 17:27:40 UTC (rev 33259)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.seam202SP1.ui.test
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.3.0.qualifier
Bundle-Vendor: %Bundle-Vendor.0
Require-Bundle: org.junit,
org.jboss.tools.seam.base.test;bundle-version="1.0.0"
Modified: trunk/seam/tests/org.jboss.tools.seam202SP1.ui.test/pom.xml
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam202SP1.ui.test/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
+++ trunk/seam/tests/org.jboss.tools.seam202SP1.ui.test/pom.xml 2011-07-27 17:27:40 UTC (rev 33259)
@@ -4,11 +4,11 @@
<parent>
<groupId>org.jboss.tools.seam</groupId>
<artifactId>tests</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.seam.tests</groupId>
<artifactId>org.jboss.tools.seam202SP1.ui.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/seam/tests/org.jboss.tools.seam203CR1.core.test/META-INF/MANIFEST.MF
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam203CR1.core.test/META-INF/MANIFEST.MF 2011-07-27 16:52:19 UTC (rev 33258)
+++ trunk/seam/tests/org.jboss.tools.seam203CR1.core.test/META-INF/MANIFEST.MF 2011-07-27 17:27:40 UTC (rev 33259)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.seam203CR1.core.test;singleton:=true
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.3.0.qualifier
Bundle-Vendor: %Bundle-Vendor.0
Export-Package: org.jboss.tools.seam.core.test.project.facet
Require-Bundle:
Modified: trunk/seam/tests/org.jboss.tools.seam203CR1.core.test/pom.xml
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam203CR1.core.test/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
+++ trunk/seam/tests/org.jboss.tools.seam203CR1.core.test/pom.xml 2011-07-27 17:27:40 UTC (rev 33259)
@@ -4,11 +4,11 @@
<parent>
<groupId>org.jboss.tools.seam</groupId>
<artifactId>tests</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.seam.tests</groupId>
<artifactId>org.jboss.tools.seam203CR1.core.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/seam/tests/org.jboss.tools.seam203CR1.ui.test/META-INF/MANIFEST.MF
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam203CR1.ui.test/META-INF/MANIFEST.MF 2011-07-27 16:52:19 UTC (rev 33258)
+++ trunk/seam/tests/org.jboss.tools.seam203CR1.ui.test/META-INF/MANIFEST.MF 2011-07-27 17:27:40 UTC (rev 33259)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.seam203CR1.ui.test
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.3.0.qualifier
Bundle-Vendor: %Bundle-Vendor.0
Require-Bundle: org.junit,
org.jboss.tools.seam.base.test;bundle-version="1.0.0"
Modified: trunk/seam/tests/org.jboss.tools.seam203CR1.ui.test/pom.xml
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam203CR1.ui.test/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
+++ trunk/seam/tests/org.jboss.tools.seam203CR1.ui.test/pom.xml 2011-07-27 17:27:40 UTC (rev 33259)
@@ -4,11 +4,11 @@
<parent>
<groupId>org.jboss.tools.seam</groupId>
<artifactId>tests</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.seam.tests</groupId>
<artifactId>org.jboss.tools.seam203CR1.ui.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/seam/tests/org.jboss.tools.seam211GA.core.test/META-INF/MANIFEST.MF
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam211GA.core.test/META-INF/MANIFEST.MF 2011-07-27 16:52:19 UTC (rev 33258)
+++ trunk/seam/tests/org.jboss.tools.seam211GA.core.test/META-INF/MANIFEST.MF 2011-07-27 17:27:40 UTC (rev 33259)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.seam211GA.core.test;singleton:=true
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.3.0.qualifier
Bundle-Vendor: %Bundle-Vendor.0
Export-Package: org.jboss.tools.seam.core.test.project.facet
Require-Bundle:
Modified: trunk/seam/tests/org.jboss.tools.seam211GA.core.test/pom.xml
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam211GA.core.test/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
+++ trunk/seam/tests/org.jboss.tools.seam211GA.core.test/pom.xml 2011-07-27 17:27:40 UTC (rev 33259)
@@ -4,11 +4,11 @@
<parent>
<groupId>org.jboss.tools.seam</groupId>
<artifactId>tests</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.seam.tests</groupId>
<artifactId>org.jboss.tools.seam211GA.core.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/seam/tests/org.jboss.tools.seam211GA.ui.test/META-INF/MANIFEST.MF
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam211GA.ui.test/META-INF/MANIFEST.MF 2011-07-27 16:52:19 UTC (rev 33258)
+++ trunk/seam/tests/org.jboss.tools.seam211GA.ui.test/META-INF/MANIFEST.MF 2011-07-27 17:27:40 UTC (rev 33259)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.seam211GA.ui.test
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.3.0.qualifier
Bundle-Vendor: %Bundle-Vendor.0
Require-Bundle: org.junit,
org.jboss.tools.seam.base.test;bundle-version="1.0.0"
Modified: trunk/seam/tests/org.jboss.tools.seam211GA.ui.test/pom.xml
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam211GA.ui.test/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
+++ trunk/seam/tests/org.jboss.tools.seam211GA.ui.test/pom.xml 2011-07-27 17:27:40 UTC (rev 33259)
@@ -4,11 +4,11 @@
<parent>
<groupId>org.jboss.tools.seam</groupId>
<artifactId>tests</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.seam.tests</groupId>
<artifactId>org.jboss.tools.seam211GA.ui.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/seam/tests/org.jboss.tools.seam212GA.core.test/META-INF/MANIFEST.MF
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam212GA.core.test/META-INF/MANIFEST.MF 2011-07-27 16:52:19 UTC (rev 33258)
+++ trunk/seam/tests/org.jboss.tools.seam212GA.core.test/META-INF/MANIFEST.MF 2011-07-27 17:27:40 UTC (rev 33259)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.seam212GA.core.test;singleton:=true
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.3.0.qualifier
Bundle-Vendor: %Bundle-Vendor.0
Export-Package: org.jboss.tools.seam.core.test.project.facet
Require-Bundle:
Modified: trunk/seam/tests/org.jboss.tools.seam212GA.core.test/pom.xml
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam212GA.core.test/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
+++ trunk/seam/tests/org.jboss.tools.seam212GA.core.test/pom.xml 2011-07-27 17:27:40 UTC (rev 33259)
@@ -4,11 +4,11 @@
<parent>
<groupId>org.jboss.tools.seam</groupId>
<artifactId>tests</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.seam.tests</groupId>
<artifactId>org.jboss.tools.seam212GA.core.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/seam/tests/org.jboss.tools.seam212GA.ui.test/META-INF/MANIFEST.MF
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam212GA.ui.test/META-INF/MANIFEST.MF 2011-07-27 16:52:19 UTC (rev 33258)
+++ trunk/seam/tests/org.jboss.tools.seam212GA.ui.test/META-INF/MANIFEST.MF 2011-07-27 17:27:40 UTC (rev 33259)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.seam212GA.ui.test
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.3.0.qualifier
Bundle-Vendor: %Bundle-Vendor.0
Require-Bundle: org.junit,
org.jboss.tools.seam.base.test;bundle-version="1.0.0"
Modified: trunk/seam/tests/org.jboss.tools.seam212GA.ui.test/pom.xml
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam212GA.ui.test/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
+++ trunk/seam/tests/org.jboss.tools.seam212GA.ui.test/pom.xml 2011-07-27 17:27:40 UTC (rev 33259)
@@ -4,11 +4,11 @@
<parent>
<groupId>org.jboss.tools.seam</groupId>
<artifactId>tests</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.seam.tests</groupId>
<artifactId>org.jboss.tools.seam212GA.ui.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/seam/tests/org.jboss.tools.seam220CR1.core.test/META-INF/MANIFEST.MF
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam220CR1.core.test/META-INF/MANIFEST.MF 2011-07-27 16:52:19 UTC (rev 33258)
+++ trunk/seam/tests/org.jboss.tools.seam220CR1.core.test/META-INF/MANIFEST.MF 2011-07-27 17:27:40 UTC (rev 33259)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.seam220CR1.core.test;singleton:=true
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.3.0.qualifier
Bundle-Vendor: %Bundle-Vendor.0
Export-Package: org.jboss.tools.seam.core.test.project.facet
Require-Bundle:
Modified: trunk/seam/tests/org.jboss.tools.seam220CR1.core.test/pom.xml
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam220CR1.core.test/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
+++ trunk/seam/tests/org.jboss.tools.seam220CR1.core.test/pom.xml 2011-07-27 17:27:40 UTC (rev 33259)
@@ -4,11 +4,11 @@
<parent>
<groupId>org.jboss.tools.seam</groupId>
<artifactId>tests</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.seam.tests</groupId>
<artifactId>org.jboss.tools.seam220CR1.core.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/seam/tests/org.jboss.tools.seam220CR1.ui.test/META-INF/MANIFEST.MF
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam220CR1.ui.test/META-INF/MANIFEST.MF 2011-07-27 16:52:19 UTC (rev 33258)
+++ trunk/seam/tests/org.jboss.tools.seam220CR1.ui.test/META-INF/MANIFEST.MF 2011-07-27 17:27:40 UTC (rev 33259)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.seam220CR1.ui.test
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.3.0.qualifier
Bundle-Vendor: %Bundle-Vendor.0
Require-Bundle: org.junit,
org.jboss.tools.seam.base.test;bundle-version="1.0.0"
Modified: trunk/seam/tests/org.jboss.tools.seam220CR1.ui.test/pom.xml
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam220CR1.ui.test/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
+++ trunk/seam/tests/org.jboss.tools.seam220CR1.ui.test/pom.xml 2011-07-27 17:27:40 UTC (rev 33259)
@@ -4,11 +4,11 @@
<parent>
<groupId>org.jboss.tools.seam</groupId>
<artifactId>tests</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.seam.tests</groupId>
<artifactId>org.jboss.tools.seam220CR1.ui.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/seam/tests/org.jboss.tools.seam220GA.core.test/META-INF/MANIFEST.MF
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam220GA.core.test/META-INF/MANIFEST.MF 2011-07-27 16:52:19 UTC (rev 33258)
+++ trunk/seam/tests/org.jboss.tools.seam220GA.core.test/META-INF/MANIFEST.MF 2011-07-27 17:27:40 UTC (rev 33259)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.seam220GA.core.test;singleton:=true
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.3.0.qualifier
Bundle-Vendor: %Bundle-Vendor.0
Export-Package: org.jboss.tools.seam.core.test.project.facet
Require-Bundle:
Modified: trunk/seam/tests/org.jboss.tools.seam220GA.core.test/pom.xml
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam220GA.core.test/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
+++ trunk/seam/tests/org.jboss.tools.seam220GA.core.test/pom.xml 2011-07-27 17:27:40 UTC (rev 33259)
@@ -4,11 +4,11 @@
<parent>
<groupId>org.jboss.tools.seam</groupId>
<artifactId>tests</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.seam.tests</groupId>
<artifactId>org.jboss.tools.seam220GA.core.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/seam/tests/org.jboss.tools.seam220GA.ui.test/META-INF/MANIFEST.MF
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam220GA.ui.test/META-INF/MANIFEST.MF 2011-07-27 16:52:19 UTC (rev 33258)
+++ trunk/seam/tests/org.jboss.tools.seam220GA.ui.test/META-INF/MANIFEST.MF 2011-07-27 17:27:40 UTC (rev 33259)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.seam220GA.ui.test
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.3.0.qualifier
Bundle-Vendor: %Bundle-Vendor.0
Require-Bundle: org.junit,
org.jboss.tools.seam.base.test;bundle-version="1.0.0"
Modified: trunk/seam/tests/org.jboss.tools.seam220GA.ui.test/pom.xml
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam220GA.ui.test/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
+++ trunk/seam/tests/org.jboss.tools.seam220GA.ui.test/pom.xml 2011-07-27 17:27:40 UTC (rev 33259)
@@ -4,11 +4,11 @@
<parent>
<groupId>org.jboss.tools.seam</groupId>
<artifactId>tests</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.seam.tests</groupId>
<artifactId>org.jboss.tools.seam220GA.ui.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/seam/tests/org.jboss.tools.seam221CR1.core.test/META-INF/MANIFEST.MF
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam221CR1.core.test/META-INF/MANIFEST.MF 2011-07-27 16:52:19 UTC (rev 33258)
+++ trunk/seam/tests/org.jboss.tools.seam221CR1.core.test/META-INF/MANIFEST.MF 2011-07-27 17:27:40 UTC (rev 33259)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.seam221CR1.core.test;singleton:=true
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.3.0.qualifier
Bundle-Vendor: %Bundle-Vendor.0
Export-Package: org.jboss.tools.seam.core.test.project.facet
Require-Bundle:
Modified: trunk/seam/tests/org.jboss.tools.seam221CR1.core.test/pom.xml
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam221CR1.core.test/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
+++ trunk/seam/tests/org.jboss.tools.seam221CR1.core.test/pom.xml 2011-07-27 17:27:40 UTC (rev 33259)
@@ -4,11 +4,11 @@
<parent>
<groupId>org.jboss.tools.seam</groupId>
<artifactId>tests</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.seam.tests</groupId>
<artifactId>org.jboss.tools.seam221CR1.core.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/seam/tests/org.jboss.tools.seam221CR1.ui.test/META-INF/MANIFEST.MF
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam221CR1.ui.test/META-INF/MANIFEST.MF 2011-07-27 16:52:19 UTC (rev 33258)
+++ trunk/seam/tests/org.jboss.tools.seam221CR1.ui.test/META-INF/MANIFEST.MF 2011-07-27 17:27:40 UTC (rev 33259)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.seam221CR1.ui.test
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.3.0.qualifier
Bundle-Vendor: %Bundle-Vendor.0
Require-Bundle: org.junit,
org.jboss.tools.seam.base.test;bundle-version="1.0.0"
Modified: trunk/seam/tests/org.jboss.tools.seam221CR1.ui.test/pom.xml
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam221CR1.ui.test/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
+++ trunk/seam/tests/org.jboss.tools.seam221CR1.ui.test/pom.xml 2011-07-27 17:27:40 UTC (rev 33259)
@@ -4,11 +4,11 @@
<parent>
<groupId>org.jboss.tools.seam</groupId>
<artifactId>tests</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.seam.tests</groupId>
<artifactId>org.jboss.tools.seam221CR1.ui.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/seam/tests/org.jboss.tools.seam221CR2.core.test/META-INF/MANIFEST.MF
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam221CR2.core.test/META-INF/MANIFEST.MF 2011-07-27 16:52:19 UTC (rev 33258)
+++ trunk/seam/tests/org.jboss.tools.seam221CR2.core.test/META-INF/MANIFEST.MF 2011-07-27 17:27:40 UTC (rev 33259)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.seam221CR2.core.test;singleton:=true
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.3.0.qualifier
Bundle-Vendor: %Bundle-Vendor.0
Export-Package: org.jboss.tools.seam.core.test.project.facet
Require-Bundle:
Modified: trunk/seam/tests/org.jboss.tools.seam221CR2.core.test/pom.xml
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam221CR2.core.test/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
+++ trunk/seam/tests/org.jboss.tools.seam221CR2.core.test/pom.xml 2011-07-27 17:27:40 UTC (rev 33259)
@@ -4,11 +4,11 @@
<parent>
<groupId>org.jboss.tools.seam</groupId>
<artifactId>tests</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.seam.tests</groupId>
<artifactId>org.jboss.tools.seam221CR2.core.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/seam/tests/org.jboss.tools.seam221CR2.ui.test/META-INF/MANIFEST.MF
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam221CR2.ui.test/META-INF/MANIFEST.MF 2011-07-27 16:52:19 UTC (rev 33258)
+++ trunk/seam/tests/org.jboss.tools.seam221CR2.ui.test/META-INF/MANIFEST.MF 2011-07-27 17:27:40 UTC (rev 33259)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.seam221CR2.ui.test
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.3.0.qualifier
Bundle-Vendor: %Bundle-Vendor.0
Require-Bundle: org.junit,
org.jboss.tools.seam.base.test;bundle-version="1.0.0"
Modified: trunk/seam/tests/org.jboss.tools.seam221CR2.ui.test/pom.xml
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam221CR2.ui.test/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
+++ trunk/seam/tests/org.jboss.tools.seam221CR2.ui.test/pom.xml 2011-07-27 17:27:40 UTC (rev 33259)
@@ -4,11 +4,11 @@
<parent>
<groupId>org.jboss.tools.seam</groupId>
<artifactId>tests</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.seam.tests</groupId>
<artifactId>org.jboss.tools.seam221CR2.ui.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/seam/tests/org.jboss.tools.seamfp.core.test/META-INF/MANIFEST.MF
===================================================================
--- trunk/seam/tests/org.jboss.tools.seamfp.core.test/META-INF/MANIFEST.MF 2011-07-27 16:52:19 UTC (rev 33258)
+++ trunk/seam/tests/org.jboss.tools.seamfp.core.test/META-INF/MANIFEST.MF 2011-07-27 17:27:40 UTC (rev 33259)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.seamfp.core.test;singleton:=true
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.3.0.qualifier
Bundle-Vendor: %Bundle-Vendor.0
Export-Package: org.jboss.tools.seam.core.test.project.facet
Require-Bundle:
Modified: trunk/seam/tests/org.jboss.tools.seamfp.core.test/pom.xml
===================================================================
--- trunk/seam/tests/org.jboss.tools.seamfp.core.test/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
+++ trunk/seam/tests/org.jboss.tools.seamfp.core.test/pom.xml 2011-07-27 17:27:40 UTC (rev 33259)
@@ -4,11 +4,11 @@
<parent>
<groupId>org.jboss.tools.seam</groupId>
<artifactId>tests</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.seam.tests</groupId>
<artifactId>org.jboss.tools.seamfp.core.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/seam/tests/org.jboss.tools.seamfp.ui.test/META-INF/MANIFEST.MF
===================================================================
--- trunk/seam/tests/org.jboss.tools.seamfp.ui.test/META-INF/MANIFEST.MF 2011-07-27 16:52:19 UTC (rev 33258)
+++ trunk/seam/tests/org.jboss.tools.seamfp.ui.test/META-INF/MANIFEST.MF 2011-07-27 17:27:40 UTC (rev 33259)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.seamfp.ui.test
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.3.0.qualifier
Bundle-Vendor: %Bundle-Vendor.0
Require-Bundle: org.junit,
org.jboss.tools.seam.base.test;bundle-version="1.0.0"
Modified: trunk/seam/tests/org.jboss.tools.seamfp.ui.test/pom.xml
===================================================================
--- trunk/seam/tests/org.jboss.tools.seamfp.ui.test/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
+++ trunk/seam/tests/org.jboss.tools.seamfp.ui.test/pom.xml 2011-07-27 17:27:40 UTC (rev 33259)
@@ -4,11 +4,11 @@
<parent>
<groupId>org.jboss.tools.seam</groupId>
<artifactId>tests</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.seam.tests</groupId>
<artifactId>org.jboss.tools.seamfp.ui.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/seam/tests/pom.xml
===================================================================
--- trunk/seam/tests/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
+++ trunk/seam/tests/pom.xml 2011-07-27 17:27:40 UTC (rev 33259)
@@ -4,12 +4,12 @@
<parent>
<groupId>org.jboss.tools</groupId>
<artifactId>seam</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.seam</groupId>
<artifactId>tests</artifactId>
<name>seam.tests</name>
- <version>0.0.1-SNAPSHOT</version>
+
<packaging>pom</packaging>
<modules>
<module>org.jboss.tools.seam.core.test</module>
13 years, 6 months
JBoss Tools SVN: r33258 - in trunk/jsf: features and 51 other directories.
by jbosstools-commits@lists.jboss.org
Author: max.andersen(a)jboss.com
Date: 2011-07-27 12:52:19 -0400 (Wed, 27 Jul 2011)
New Revision: 33258
Modified:
trunk/jsf/features/org.jboss.tools.jsf.feature/pom.xml
trunk/jsf/features/org.jboss.tools.richfaces.feature/pom.xml
trunk/jsf/features/pom.xml
trunk/jsf/plugins/org.jboss.tools.jsf.doc.user/META-INF/MANIFEST.MF
trunk/jsf/plugins/org.jboss.tools.jsf.doc.user/pom.xml
trunk/jsf/plugins/org.jboss.tools.jsf.text.ext.facelets/pom.xml
trunk/jsf/plugins/org.jboss.tools.jsf.text.ext.richfaces/pom.xml
trunk/jsf/plugins/org.jboss.tools.jsf.text.ext/pom.xml
trunk/jsf/plugins/org.jboss.tools.jsf.ui/pom.xml
trunk/jsf/plugins/org.jboss.tools.jsf.verification/META-INF/MANIFEST.MF
trunk/jsf/plugins/org.jboss.tools.jsf.verification/pom.xml
trunk/jsf/plugins/org.jboss.tools.jsf.vpe.ajax4jsf/META-INF/MANIFEST.MF
trunk/jsf/plugins/org.jboss.tools.jsf.vpe.ajax4jsf/pom.xml
trunk/jsf/plugins/org.jboss.tools.jsf.vpe.facelets/META-INF/MANIFEST.MF
trunk/jsf/plugins/org.jboss.tools.jsf.vpe.facelets/pom.xml
trunk/jsf/plugins/org.jboss.tools.jsf.vpe.jbpm/META-INF/MANIFEST.MF
trunk/jsf/plugins/org.jboss.tools.jsf.vpe.jbpm/pom.xml
trunk/jsf/plugins/org.jboss.tools.jsf.vpe.jsf/pom.xml
trunk/jsf/plugins/org.jboss.tools.jsf.vpe.jstl/META-INF/MANIFEST.MF
trunk/jsf/plugins/org.jboss.tools.jsf.vpe.jstl/pom.xml
trunk/jsf/plugins/org.jboss.tools.jsf.vpe.myfaces/META-INF/MANIFEST.MF
trunk/jsf/plugins/org.jboss.tools.jsf.vpe.myfaces/pom.xml
trunk/jsf/plugins/org.jboss.tools.jsf.vpe.richfaces/pom.xml
trunk/jsf/plugins/org.jboss.tools.jsf.vpe.seam/META-INF/MANIFEST.MF
trunk/jsf/plugins/org.jboss.tools.jsf.vpe.seam/pom.xml
trunk/jsf/plugins/org.jboss.tools.jsf/pom.xml
trunk/jsf/plugins/pom.xml
trunk/jsf/pom.xml
trunk/jsf/site/pom.xml
trunk/jsf/tests/org.jboss.tools.jsf.test/pom.xml
trunk/jsf/tests/org.jboss.tools.jsf.text.ext.test/pom.xml
trunk/jsf/tests/org.jboss.tools.jsf.ui.bot.test/META-INF/MANIFEST.MF
trunk/jsf/tests/org.jboss.tools.jsf.ui.bot.test/pom.xml
trunk/jsf/tests/org.jboss.tools.jsf.ui.test/pom.xml
trunk/jsf/tests/org.jboss.tools.jsf.verification.test/META-INF/MANIFEST.MF
trunk/jsf/tests/org.jboss.tools.jsf.verification.test/pom.xml
trunk/jsf/tests/org.jboss.tools.jsf.vpe.ajax4jsf.test/META-INF/MANIFEST.MF
trunk/jsf/tests/org.jboss.tools.jsf.vpe.ajax4jsf.test/pom.xml
trunk/jsf/tests/org.jboss.tools.jsf.vpe.facelets.test/META-INF/MANIFEST.MF
trunk/jsf/tests/org.jboss.tools.jsf.vpe.facelets.test/pom.xml
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jbpm.test/META-INF/MANIFEST.MF
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jbpm.test/pom.xml
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/META-INF/MANIFEST.MF
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/pom.xml
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jstl.test/META-INF/MANIFEST.MF
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jstl.test/pom.xml
trunk/jsf/tests/org.jboss.tools.jsf.vpe.myfaces.test/META-INF/MANIFEST.MF
trunk/jsf/tests/org.jboss.tools.jsf.vpe.myfaces.test/pom.xml
trunk/jsf/tests/org.jboss.tools.jsf.vpe.richfaces.test/META-INF/MANIFEST.MF
trunk/jsf/tests/org.jboss.tools.jsf.vpe.richfaces.test/pom.xml
trunk/jsf/tests/org.jboss.tools.jsf.vpe.seam.test/META-INF/MANIFEST.MF
trunk/jsf/tests/org.jboss.tools.jsf.vpe.seam.test/pom.xml
trunk/jsf/tests/pom.xml
Log:
JBIDE-9268 aligned jsf to 3.3.0
Modified: trunk/jsf/features/org.jboss.tools.jsf.feature/pom.xml
===================================================================
--- trunk/jsf/features/org.jboss.tools.jsf.feature/pom.xml 2011-07-27 16:42:37 UTC (rev 33257)
+++ trunk/jsf/features/org.jboss.tools.jsf.feature/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
@@ -4,10 +4,10 @@
<parent>
<groupId>org.jboss.tools.jsf</groupId>
<artifactId>features</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.jsf.features</groupId>
<artifactId>org.jboss.tools.jsf.feature</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+
<packaging>eclipse-feature</packaging>
</project>
Modified: trunk/jsf/features/org.jboss.tools.richfaces.feature/pom.xml
===================================================================
--- trunk/jsf/features/org.jboss.tools.richfaces.feature/pom.xml 2011-07-27 16:42:37 UTC (rev 33257)
+++ trunk/jsf/features/org.jboss.tools.richfaces.feature/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
@@ -4,10 +4,10 @@
<parent>
<groupId>org.jboss.tools.jsf</groupId>
<artifactId>features</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.jsf.features</groupId>
<artifactId>org.jboss.tools.richfaces.feature</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+
<packaging>eclipse-feature</packaging>
</project>
Modified: trunk/jsf/features/pom.xml
===================================================================
--- trunk/jsf/features/pom.xml 2011-07-27 16:42:37 UTC (rev 33257)
+++ trunk/jsf/features/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
@@ -4,12 +4,12 @@
<parent>
<groupId>org.jboss.tools</groupId>
<artifactId>jsf</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.jsf</groupId>
<artifactId>features</artifactId>
<name>jsf.features</name>
- <version>0.0.1-SNAPSHOT</version>
+
<packaging>pom</packaging>
<modules>
<module>org.jboss.tools.jsf.feature</module>
Modified: trunk/jsf/plugins/org.jboss.tools.jsf/pom.xml
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf/pom.xml 2011-07-27 16:42:37 UTC (rev 33257)
+++ trunk/jsf/plugins/org.jboss.tools.jsf/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
@@ -4,10 +4,10 @@
<parent>
<groupId>org.jboss.tools.jsf</groupId>
<artifactId>plugins</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.jsf.plugins</groupId>
<artifactId>org.jboss.tools.jsf</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/jsf/plugins/org.jboss.tools.jsf.doc.user/META-INF/MANIFEST.MF
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf.doc.user/META-INF/MANIFEST.MF 2011-07-27 16:42:37 UTC (rev 33257)
+++ trunk/jsf/plugins/org.jboss.tools.jsf.doc.user/META-INF/MANIFEST.MF 2011-07-27 16:52:19 UTC (rev 33258)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.jsf.doc.user;singleton:=true
-Bundle-Version: 3.2.0.qualifier
+Bundle-Version: 3.3.0.qualifier
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime,
org.eclipse.help
Modified: trunk/jsf/plugins/org.jboss.tools.jsf.doc.user/pom.xml
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf.doc.user/pom.xml 2011-07-27 16:42:37 UTC (rev 33257)
+++ trunk/jsf/plugins/org.jboss.tools.jsf.doc.user/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
@@ -4,10 +4,10 @@
<parent>
<groupId>org.jboss.tools.jsf</groupId>
<artifactId>plugins</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.jsf.plugins</groupId>
<artifactId>org.jboss.tools.jsf.doc.user</artifactId>
- <version>3.2.0-SNAPSHOT</version>
+
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/jsf/plugins/org.jboss.tools.jsf.text.ext/pom.xml
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf.text.ext/pom.xml 2011-07-27 16:42:37 UTC (rev 33257)
+++ trunk/jsf/plugins/org.jboss.tools.jsf.text.ext/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
@@ -4,10 +4,10 @@
<parent>
<groupId>org.jboss.tools.jsf</groupId>
<artifactId>plugins</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.jsf.plugins</groupId>
<artifactId>org.jboss.tools.jsf.text.ext</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/jsf/plugins/org.jboss.tools.jsf.text.ext.facelets/pom.xml
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf.text.ext.facelets/pom.xml 2011-07-27 16:42:37 UTC (rev 33257)
+++ trunk/jsf/plugins/org.jboss.tools.jsf.text.ext.facelets/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
@@ -4,10 +4,10 @@
<parent>
<groupId>org.jboss.tools.jsf</groupId>
<artifactId>plugins</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.jsf.plugins</groupId>
<artifactId>org.jboss.tools.jsf.text.ext.facelets</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/jsf/plugins/org.jboss.tools.jsf.text.ext.richfaces/pom.xml
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf.text.ext.richfaces/pom.xml 2011-07-27 16:42:37 UTC (rev 33257)
+++ trunk/jsf/plugins/org.jboss.tools.jsf.text.ext.richfaces/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
@@ -4,10 +4,10 @@
<parent>
<groupId>org.jboss.tools.jsf</groupId>
<artifactId>plugins</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.jsf.plugins</groupId>
<artifactId>org.jboss.tools.jsf.text.ext.richfaces</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/jsf/plugins/org.jboss.tools.jsf.ui/pom.xml
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf.ui/pom.xml 2011-07-27 16:42:37 UTC (rev 33257)
+++ trunk/jsf/plugins/org.jboss.tools.jsf.ui/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
@@ -4,10 +4,10 @@
<parent>
<groupId>org.jboss.tools.jsf</groupId>
<artifactId>plugins</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.jsf.plugins</groupId>
<artifactId>org.jboss.tools.jsf.ui</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/jsf/plugins/org.jboss.tools.jsf.verification/META-INF/MANIFEST.MF
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf.verification/META-INF/MANIFEST.MF 2011-07-27 16:42:37 UTC (rev 33257)
+++ trunk/jsf/plugins/org.jboss.tools.jsf.verification/META-INF/MANIFEST.MF 2011-07-27 16:52:19 UTC (rev 33258)
@@ -6,7 +6,7 @@
Bundle-Localization: plugin
Require-Bundle: org.jboss.tools.common.verification,
org.jboss.tools.jsf
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.3.0.qualifier
Export-Package: org.jboss.tools.jsf.verification.vrules,
org.jboss.tools.jsf.verification.vrules.toview
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
Modified: trunk/jsf/plugins/org.jboss.tools.jsf.verification/pom.xml
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf.verification/pom.xml 2011-07-27 16:42:37 UTC (rev 33257)
+++ trunk/jsf/plugins/org.jboss.tools.jsf.verification/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
@@ -4,10 +4,10 @@
<parent>
<groupId>org.jboss.tools.jsf</groupId>
<artifactId>plugins</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.jsf.plugins</groupId>
<artifactId>org.jboss.tools.jsf.verification</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/jsf/plugins/org.jboss.tools.jsf.vpe.ajax4jsf/META-INF/MANIFEST.MF
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf.vpe.ajax4jsf/META-INF/MANIFEST.MF 2011-07-27 16:42:37 UTC (rev 33257)
+++ trunk/jsf/plugins/org.jboss.tools.jsf.vpe.ajax4jsf/META-INF/MANIFEST.MF 2011-07-27 16:52:19 UTC (rev 33258)
@@ -3,7 +3,7 @@
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.jsf.vpe.ajax4jsf;singleton:=true
Bundle-Activator: org.jboss.tools.jsf.vpe.ajax4jsf.Activator
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.3.0.qualifier
Bundle-Localization: plugin
Require-Bundle: org.jboss.tools.vpe,
org.eclipse.ui;bundle-version="3.7.0",
Modified: trunk/jsf/plugins/org.jboss.tools.jsf.vpe.ajax4jsf/pom.xml
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf.vpe.ajax4jsf/pom.xml 2011-07-27 16:42:37 UTC (rev 33257)
+++ trunk/jsf/plugins/org.jboss.tools.jsf.vpe.ajax4jsf/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
@@ -4,10 +4,10 @@
<parent>
<groupId>org.jboss.tools.jsf</groupId>
<artifactId>plugins</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.jsf.plugins</groupId>
<artifactId>org.jboss.tools.jsf.vpe.ajax4jsf</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/jsf/plugins/org.jboss.tools.jsf.vpe.facelets/META-INF/MANIFEST.MF
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf.vpe.facelets/META-INF/MANIFEST.MF 2011-07-27 16:42:37 UTC (rev 33257)
+++ trunk/jsf/plugins/org.jboss.tools.jsf.vpe.facelets/META-INF/MANIFEST.MF 2011-07-27 16:52:19 UTC (rev 33258)
@@ -17,5 +17,5 @@
org.eclipse.jface.text;bundle-version="3.7.0"
Export-Package: org.jboss.tools.jsf.vpe.facelets,
org.jboss.tools.jsf.vpe.facelets.template
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.3.0.qualifier
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
Modified: trunk/jsf/plugins/org.jboss.tools.jsf.vpe.facelets/pom.xml
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf.vpe.facelets/pom.xml 2011-07-27 16:42:37 UTC (rev 33257)
+++ trunk/jsf/plugins/org.jboss.tools.jsf.vpe.facelets/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
@@ -4,10 +4,10 @@
<parent>
<groupId>org.jboss.tools.jsf</groupId>
<artifactId>plugins</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.jsf.plugins</groupId>
<artifactId>org.jboss.tools.jsf.vpe.facelets</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/jsf/plugins/org.jboss.tools.jsf.vpe.jbpm/META-INF/MANIFEST.MF
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf.vpe.jbpm/META-INF/MANIFEST.MF 2011-07-27 16:42:37 UTC (rev 33257)
+++ trunk/jsf/plugins/org.jboss.tools.jsf.vpe.jbpm/META-INF/MANIFEST.MF 2011-07-27 16:52:19 UTC (rev 33258)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: org.jboss.tools.jsf.vpe.jbpm;singleton:=true
-Bundle-Version: 1.0.0.qualifier
+Bundle-Version: 3.3.0.qualifier
Bundle-Activator: org.jboss.tools.jsf.vpe.jbpm.JBPMTemplatePlugin
Require-Bundle: org.eclipse.ui;bundle-version="3.7.0",
org.eclipse.core.runtime;bundle-version="3.7.0",
Modified: trunk/jsf/plugins/org.jboss.tools.jsf.vpe.jbpm/pom.xml
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf.vpe.jbpm/pom.xml 2011-07-27 16:42:37 UTC (rev 33257)
+++ trunk/jsf/plugins/org.jboss.tools.jsf.vpe.jbpm/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
@@ -4,10 +4,10 @@
<parent>
<groupId>org.jboss.tools.jsf</groupId>
<artifactId>plugins</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.jsf.plugins</groupId>
<artifactId>org.jboss.tools.jsf.vpe.jbpm</artifactId>
- <version>1.0.0-SNAPSHOT</version>
+
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/jsf/plugins/org.jboss.tools.jsf.vpe.jsf/pom.xml
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf.vpe.jsf/pom.xml 2011-07-27 16:42:37 UTC (rev 33257)
+++ trunk/jsf/plugins/org.jboss.tools.jsf.vpe.jsf/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
@@ -4,10 +4,10 @@
<parent>
<groupId>org.jboss.tools.jsf</groupId>
<artifactId>plugins</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.jsf.plugins</groupId>
<artifactId>org.jboss.tools.jsf.vpe.jsf</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/jsf/plugins/org.jboss.tools.jsf.vpe.jstl/META-INF/MANIFEST.MF
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf.vpe.jstl/META-INF/MANIFEST.MF 2011-07-27 16:42:37 UTC (rev 33257)
+++ trunk/jsf/plugins/org.jboss.tools.jsf.vpe.jstl/META-INF/MANIFEST.MF 2011-07-27 16:52:19 UTC (rev 33258)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: org.jboss.tools.jsf.vpe.jstl;singleton:=true
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.3.0.qualifier
Bundle-Activator: org.jboss.tools.jsf.vpe.jstl.JstlTemplatePlugin
Bundle-Vendor: %providerName
Require-Bundle: org.eclipse.ui;bundle-version="3.7.0",
Modified: trunk/jsf/plugins/org.jboss.tools.jsf.vpe.jstl/pom.xml
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf.vpe.jstl/pom.xml 2011-07-27 16:42:37 UTC (rev 33257)
+++ trunk/jsf/plugins/org.jboss.tools.jsf.vpe.jstl/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
@@ -4,10 +4,10 @@
<parent>
<groupId>org.jboss.tools.jsf</groupId>
<artifactId>plugins</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.jsf.plugins</groupId>
<artifactId>org.jboss.tools.jsf.vpe.jstl</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/jsf/plugins/org.jboss.tools.jsf.vpe.myfaces/META-INF/MANIFEST.MF
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf.vpe.myfaces/META-INF/MANIFEST.MF 2011-07-27 16:42:37 UTC (rev 33257)
+++ trunk/jsf/plugins/org.jboss.tools.jsf.vpe.myfaces/META-INF/MANIFEST.MF 2011-07-27 16:52:19 UTC (rev 33258)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.jsf.vpe.myfaces;singleton:=true
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.3.0.qualifier
Bundle-Activator: org.jboss.tools.jsf.vpe.myfaces.MyFacesTemplatesPlugin
Bundle-Vendor: %Bundle-Vendor.0
Require-Bundle: org.eclipse.ui;bundle-version="3.7.0",
Modified: trunk/jsf/plugins/org.jboss.tools.jsf.vpe.myfaces/pom.xml
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf.vpe.myfaces/pom.xml 2011-07-27 16:42:37 UTC (rev 33257)
+++ trunk/jsf/plugins/org.jboss.tools.jsf.vpe.myfaces/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
@@ -4,10 +4,10 @@
<parent>
<groupId>org.jboss.tools.jsf</groupId>
<artifactId>plugins</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.jsf.plugins</groupId>
<artifactId>org.jboss.tools.jsf.vpe.myfaces</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/jsf/plugins/org.jboss.tools.jsf.vpe.richfaces/pom.xml
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf.vpe.richfaces/pom.xml 2011-07-27 16:42:37 UTC (rev 33257)
+++ trunk/jsf/plugins/org.jboss.tools.jsf.vpe.richfaces/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
@@ -4,10 +4,10 @@
<parent>
<groupId>org.jboss.tools.jsf</groupId>
<artifactId>plugins</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.jsf.plugins</groupId>
<artifactId>org.jboss.tools.jsf.vpe.richfaces</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/jsf/plugins/org.jboss.tools.jsf.vpe.seam/META-INF/MANIFEST.MF
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf.vpe.seam/META-INF/MANIFEST.MF 2011-07-27 16:42:37 UTC (rev 33257)
+++ trunk/jsf/plugins/org.jboss.tools.jsf.vpe.seam/META-INF/MANIFEST.MF 2011-07-27 16:52:19 UTC (rev 33258)
@@ -3,7 +3,7 @@
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.jsf.vpe.seam;singleton:=true
Bundle-Activator: org.jboss.tools.jsf.vpe.seam.SeamTemplatesActivator
-Bundle-Version: 3.2.0.qualifier
+Bundle-Version: 3.3.0.qualifier
Bundle-Localization: plugin
Require-Bundle: org.eclipse.ui;bundle-version="3.7.0",
org.eclipse.core.runtime;bundle-version="3.7.0",
Modified: trunk/jsf/plugins/org.jboss.tools.jsf.vpe.seam/pom.xml
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf.vpe.seam/pom.xml 2011-07-27 16:42:37 UTC (rev 33257)
+++ trunk/jsf/plugins/org.jboss.tools.jsf.vpe.seam/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
@@ -4,10 +4,10 @@
<parent>
<groupId>org.jboss.tools.jsf</groupId>
<artifactId>plugins</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.jsf.plugins</groupId>
<artifactId>org.jboss.tools.jsf.vpe.seam</artifactId>
- <version>3.2.0-SNAPSHOT</version>
+
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/jsf/plugins/pom.xml
===================================================================
--- trunk/jsf/plugins/pom.xml 2011-07-27 16:42:37 UTC (rev 33257)
+++ trunk/jsf/plugins/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
@@ -4,12 +4,12 @@
<parent>
<groupId>org.jboss.tools</groupId>
<artifactId>jsf</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.jsf</groupId>
<artifactId>plugins</artifactId>
<name>jsf.plugins</name>
- <version>0.0.1-SNAPSHOT</version>
+
<packaging>pom</packaging>
<modules>
<module>org.jboss.tools.jsf</module>
Modified: trunk/jsf/pom.xml
===================================================================
--- trunk/jsf/pom.xml 2011-07-27 16:42:37 UTC (rev 33257)
+++ trunk/jsf/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
@@ -10,7 +10,7 @@
<groupId>org.jboss.tools</groupId>
<artifactId>jsf</artifactId>
<name>jsf.all</name>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
<packaging>pom</packaging>
<modules>
<module>features</module>
Modified: trunk/jsf/site/pom.xml
===================================================================
--- trunk/jsf/site/pom.xml 2011-07-27 16:42:37 UTC (rev 33257)
+++ trunk/jsf/site/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
@@ -4,11 +4,11 @@
<parent>
<groupId>org.jboss.tools</groupId>
<artifactId>jsf</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.jsf</groupId>
<artifactId>jsf.site</artifactId>
<name>jsf.site</name>
- <version>0.0.1-SNAPSHOT</version>
+
<packaging>eclipse-update-site</packaging>
</project>
Modified: trunk/jsf/tests/org.jboss.tools.jsf.test/pom.xml
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.test/pom.xml 2011-07-27 16:42:37 UTC (rev 33257)
+++ trunk/jsf/tests/org.jboss.tools.jsf.test/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
@@ -4,11 +4,11 @@
<parent>
<groupId>org.jboss.tools.jsf</groupId>
<artifactId>tests</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.jsf.tests</groupId>
<artifactId>org.jboss.tools.jsf.test</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/jsf/tests/org.jboss.tools.jsf.text.ext.test/pom.xml
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.text.ext.test/pom.xml 2011-07-27 16:42:37 UTC (rev 33257)
+++ trunk/jsf/tests/org.jboss.tools.jsf.text.ext.test/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
@@ -5,11 +5,11 @@
<parent>
<groupId>org.jboss.tools.jsf</groupId>
<artifactId>tests</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.jsf.tests</groupId>
<artifactId>org.jboss.tools.jsf.text.ext.test</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/jsf/tests/org.jboss.tools.jsf.ui.bot.test/META-INF/MANIFEST.MF
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.ui.bot.test/META-INF/MANIFEST.MF 2011-07-27 16:42:37 UTC (rev 33257)
+++ trunk/jsf/tests/org.jboss.tools.jsf.ui.bot.test/META-INF/MANIFEST.MF 2011-07-27 16:52:19 UTC (rev 33258)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: JSF UI SWTBot Tests
Bundle-SymbolicName: org.jboss.tools.jsf.ui.bot.test
-Bundle-Version: 3.2.0.qualifier
+Bundle-Version: 3.3.0.qualifier
Bundle-Activator: org.jboss.tools.jsf.ui.bot.test.Activator
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime,
Modified: trunk/jsf/tests/org.jboss.tools.jsf.ui.bot.test/pom.xml
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.ui.bot.test/pom.xml 2011-07-27 16:42:37 UTC (rev 33257)
+++ trunk/jsf/tests/org.jboss.tools.jsf.ui.bot.test/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
@@ -4,10 +4,10 @@
<parent>
<groupId>org.jboss.tools.jsf</groupId>
<artifactId>tests</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.jsf.tests</groupId>
<artifactId>org.jboss.tools.jsf.ui.bot.test</artifactId>
- <version>3.2.0-SNAPSHOT</version>
+
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/jsf/tests/org.jboss.tools.jsf.ui.test/pom.xml
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.ui.test/pom.xml 2011-07-27 16:42:37 UTC (rev 33257)
+++ trunk/jsf/tests/org.jboss.tools.jsf.ui.test/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
@@ -4,11 +4,11 @@
<parent>
<groupId>org.jboss.tools.jsf</groupId>
<artifactId>tests</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.jsf.tests</groupId>
<artifactId>org.jboss.tools.jsf.ui.test</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/jsf/tests/org.jboss.tools.jsf.verification.test/META-INF/MANIFEST.MF
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.verification.test/META-INF/MANIFEST.MF 2011-07-27 16:42:37 UTC (rev 33257)
+++ trunk/jsf/tests/org.jboss.tools.jsf.verification.test/META-INF/MANIFEST.MF 2011-07-27 16:52:19 UTC (rev 33258)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.jsf.verification.test;singleton:=true
-Bundle-Version: 3.2.0.qualifier
+Bundle-Version: 3.3.0.qualifier
Bundle-Vendor: %Bundle-Vendor.0
Export-Package: org.jboss.tools.jsf.verification.test
Require-Bundle:
Modified: trunk/jsf/tests/org.jboss.tools.jsf.verification.test/pom.xml
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.verification.test/pom.xml 2011-07-27 16:42:37 UTC (rev 33257)
+++ trunk/jsf/tests/org.jboss.tools.jsf.verification.test/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
@@ -4,11 +4,11 @@
<parent>
<groupId>org.jboss.tools.jsf</groupId>
<artifactId>tests</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.jsf.tests</groupId>
<artifactId>org.jboss.tools.jsf.verification.test</artifactId>
- <version>3.2.0-SNAPSHOT</version>
+
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/jsf/tests/org.jboss.tools.jsf.vpe.ajax4jsf.test/META-INF/MANIFEST.MF
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.ajax4jsf.test/META-INF/MANIFEST.MF 2011-07-27 16:42:37 UTC (rev 33257)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.ajax4jsf.test/META-INF/MANIFEST.MF 2011-07-27 16:52:19 UTC (rev 33258)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.jsf.vpe.ajax4jsf.test;singleton:=true
-Bundle-Version: 3.2.0.qualifier
+Bundle-Version: 3.3.0.qualifier
Bundle-Activator: org.jboss.tools.jsf.vpe.ajax4jsf.test.Ajax4JsfTestPlugin
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime,
Modified: trunk/jsf/tests/org.jboss.tools.jsf.vpe.ajax4jsf.test/pom.xml
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.ajax4jsf.test/pom.xml 2011-07-27 16:42:37 UTC (rev 33257)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.ajax4jsf.test/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
@@ -4,11 +4,11 @@
<parent>
<groupId>org.jboss.tools.jsf</groupId>
<artifactId>tests</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.jsf.tests</groupId>
<artifactId>org.jboss.tools.jsf.vpe.ajax4jsf.test</artifactId>
- <version>3.2.0-SNAPSHOT</version>
+
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/jsf/tests/org.jboss.tools.jsf.vpe.facelets.test/META-INF/MANIFEST.MF
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.facelets.test/META-INF/MANIFEST.MF 2011-07-27 16:42:37 UTC (rev 33257)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.facelets.test/META-INF/MANIFEST.MF 2011-07-27 16:52:19 UTC (rev 33258)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.jsf.vpe.facelets.test;singleton:=true
-Bundle-Version: 3.2.0.qualifier
+Bundle-Version: 3.3.0.qualifier
Bundle-Activator: org.jboss.tools.jsf.vpe.facelets.test.FaceletsTestPlugin
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime,
Modified: trunk/jsf/tests/org.jboss.tools.jsf.vpe.facelets.test/pom.xml
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.facelets.test/pom.xml 2011-07-27 16:42:37 UTC (rev 33257)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.facelets.test/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
@@ -5,11 +5,11 @@
<parent>
<groupId>org.jboss.tools.jsf</groupId>
<artifactId>tests</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.jsf.tests</groupId>
<artifactId>org.jboss.tools.jsf.vpe.facelets.test</artifactId>
- <version>3.2.0-SNAPSHOT</version>
+
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jbpm.test/META-INF/MANIFEST.MF
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jbpm.test/META-INF/MANIFEST.MF 2011-07-27 16:42:37 UTC (rev 33257)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jbpm.test/META-INF/MANIFEST.MF 2011-07-27 16:52:19 UTC (rev 33258)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.jsf.vpe.jbpm.test;singleton:=true
-Bundle-Version: 1.2.0.qualifier
+Bundle-Version: 3.3.0.qualifier
Bundle-Activator: org.jboss.tools.jsf.vpe.jbpm.test.JBPMTestPlugin
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime,
Modified: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jbpm.test/pom.xml
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jbpm.test/pom.xml 2011-07-27 16:42:37 UTC (rev 33257)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jbpm.test/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
@@ -5,11 +5,11 @@
<parent>
<groupId>org.jboss.tools.jsf</groupId>
<artifactId>tests</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.jsf.tests</groupId>
<artifactId>org.jboss.tools.jsf.vpe.jbpm.test</artifactId>
- <version>1.2.0-SNAPSHOT</version>
+
<packaging>eclipse-test-plugin</packaging>
<properties>
<emma.filter>org.jboss.tools.jsf.vpe.jbpm*</emma.filter>
Modified: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/META-INF/MANIFEST.MF
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/META-INF/MANIFEST.MF 2011-07-27 16:42:37 UTC (rev 33257)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/META-INF/MANIFEST.MF 2011-07-27 16:52:19 UTC (rev 33258)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.jsf.vpe.jsf.test;singleton:=true
-Bundle-Version: 3.2.0.qualifier
+Bundle-Version: 3.3.0.qualifier
Bundle-Activator: org.jboss.tools.jsf.vpe.jsf.test.JsfTestPlugin
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime,
Modified: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/pom.xml
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/pom.xml 2011-07-27 16:42:37 UTC (rev 33257)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
@@ -5,11 +5,11 @@
<parent>
<groupId>org.jboss.tools.jsf</groupId>
<artifactId>tests</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.jsf.tests</groupId>
<artifactId>org.jboss.tools.jsf.vpe.jsf.test</artifactId>
- <version>3.2.0-SNAPSHOT</version>
+
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jstl.test/META-INF/MANIFEST.MF
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jstl.test/META-INF/MANIFEST.MF 2011-07-27 16:42:37 UTC (rev 33257)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jstl.test/META-INF/MANIFEST.MF 2011-07-27 16:52:19 UTC (rev 33258)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %PluginName
Bundle-SymbolicName: org.jboss.tools.jsf.vpe.jstl.test;singleton:=true
-Bundle-Version: 3.2.0.qualifier
+Bundle-Version: 3.3.0.qualifier
Bundle-Activator: org.jboss.tools.jsf.vpe.jstl.test.JstlTestPlugin
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime,
Modified: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jstl.test/pom.xml
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jstl.test/pom.xml 2011-07-27 16:42:37 UTC (rev 33257)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jstl.test/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
@@ -5,11 +5,11 @@
<parent>
<groupId>org.jboss.tools.jsf</groupId>
<artifactId>tests</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.jsf.tests</groupId>
<artifactId>org.jboss.tools.jsf.vpe.jstl.test</artifactId>
- <version>3.2.0-SNAPSHOT</version>
+
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/jsf/tests/org.jboss.tools.jsf.vpe.myfaces.test/META-INF/MANIFEST.MF
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.myfaces.test/META-INF/MANIFEST.MF 2011-07-27 16:42:37 UTC (rev 33257)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.myfaces.test/META-INF/MANIFEST.MF 2011-07-27 16:52:19 UTC (rev 33258)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.jsf.vpe.myfaces.test;singleton:=true
-Bundle-Version: 3.2.0.qualifier
+Bundle-Version: 3.3.0.qualifier
Bundle-Activator: org.jboss.tools.jsf.vpe.myfaces.test.MyFacesTestPlugin
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime,
Modified: trunk/jsf/tests/org.jboss.tools.jsf.vpe.myfaces.test/pom.xml
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.myfaces.test/pom.xml 2011-07-27 16:42:37 UTC (rev 33257)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.myfaces.test/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
@@ -5,11 +5,11 @@
<parent>
<groupId>org.jboss.tools.jsf</groupId>
<artifactId>tests</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.jsf.tests</groupId>
<artifactId>org.jboss.tools.jsf.vpe.myfaces.test</artifactId>
- <version>3.2.0-SNAPSHOT</version>
+
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/jsf/tests/org.jboss.tools.jsf.vpe.richfaces.test/META-INF/MANIFEST.MF
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.richfaces.test/META-INF/MANIFEST.MF 2011-07-27 16:42:37 UTC (rev 33257)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.richfaces.test/META-INF/MANIFEST.MF 2011-07-27 16:52:19 UTC (rev 33258)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.jsf.vpe.richfaces.test;singleton:=true
-Bundle-Version: 3.2.0.qualifier
+Bundle-Version: 3.3.0.qualifier
Bundle-Activator: org.jboss.tools.jsf.vpe.richfaces.test.RichFacesTestPlugin
Require-Bundle: org.eclipse.ui,
org.jboss.tools.vpe,
Modified: trunk/jsf/tests/org.jboss.tools.jsf.vpe.richfaces.test/pom.xml
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.richfaces.test/pom.xml 2011-07-27 16:42:37 UTC (rev 33257)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.richfaces.test/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
@@ -5,11 +5,11 @@
<parent>
<groupId>org.jboss.tools.jsf</groupId>
<artifactId>tests</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.jsf.tests</groupId>
<artifactId>org.jboss.tools.jsf.vpe.richfaces.test</artifactId>
- <version>3.2.0-SNAPSHOT</version>
+
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/jsf/tests/org.jboss.tools.jsf.vpe.seam.test/META-INF/MANIFEST.MF
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.seam.test/META-INF/MANIFEST.MF 2011-07-27 16:42:37 UTC (rev 33257)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.seam.test/META-INF/MANIFEST.MF 2011-07-27 16:52:19 UTC (rev 33258)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.jsf.vpe.seam.test;singleton:=true
-Bundle-Version: 3.2.0.qualifier
+Bundle-Version: 3.3.0.qualifier
Bundle-Activator: org.jboss.tools.jsf.vpe.seam.test.SeamTestPlugin
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime,
Modified: trunk/jsf/tests/org.jboss.tools.jsf.vpe.seam.test/pom.xml
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.seam.test/pom.xml 2011-07-27 16:42:37 UTC (rev 33257)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.seam.test/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
@@ -5,11 +5,11 @@
<parent>
<groupId>org.jboss.tools.jsf</groupId>
<artifactId>tests</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.jsf.tests</groupId>
<artifactId>org.jboss.tools.jsf.vpe.seam.test</artifactId>
- <version>3.2.0-SNAPSHOT</version>
+
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/jsf/tests/pom.xml
===================================================================
--- trunk/jsf/tests/pom.xml 2011-07-27 16:42:37 UTC (rev 33257)
+++ trunk/jsf/tests/pom.xml 2011-07-27 16:52:19 UTC (rev 33258)
@@ -4,12 +4,12 @@
<parent>
<groupId>org.jboss.tools</groupId>
<artifactId>jsf</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.jsf</groupId>
<artifactId>tests</artifactId>
<name>jsf.tests</name>
- <version>0.0.1-SNAPSHOT</version>
+
<packaging>pom</packaging>
<modules>
<module>org.jboss.tools.jsf.test</module>
13 years, 6 months
JBoss Tools SVN: r33257 - in trunk/jst: features and 33 other directories.
by jbosstools-commits@lists.jboss.org
Author: max.andersen(a)jboss.com
Date: 2011-07-27 12:42:37 -0400 (Wed, 27 Jul 2011)
New Revision: 33257
Modified:
trunk/jst/features/org.jboss.tools.jst.feature/pom.xml
trunk/jst/features/org.jboss.tools.jst.test.feature/feature.xml
trunk/jst/features/org.jboss.tools.jst.test.feature/pom.xml
trunk/jst/features/org.jboss.tools.jst.web.tiles.feature/pom.xml
trunk/jst/features/pom.xml
trunk/jst/plugins/org.jboss.tools.jst.css/pom.xml
trunk/jst/plugins/org.jboss.tools.jst.firstrun/META-INF/MANIFEST.MF
trunk/jst/plugins/org.jboss.tools.jst.firstrun/pom.xml
trunk/jst/plugins/org.jboss.tools.jst.jsp.base.test/META-INF/MANIFEST.MF
trunk/jst/plugins/org.jboss.tools.jst.jsp.base.test/pom.xml
trunk/jst/plugins/org.jboss.tools.jst.jsp/pom.xml
trunk/jst/plugins/org.jboss.tools.jst.text.ext/pom.xml
trunk/jst/plugins/org.jboss.tools.jst.web.kb/pom.xml
trunk/jst/plugins/org.jboss.tools.jst.web.tiles.ui/pom.xml
trunk/jst/plugins/org.jboss.tools.jst.web.tiles/META-INF/MANIFEST.MF
trunk/jst/plugins/org.jboss.tools.jst.web.tiles/pom.xml
trunk/jst/plugins/org.jboss.tools.jst.web.ui/pom.xml
trunk/jst/plugins/org.jboss.tools.jst.web.verification/META-INF/MANIFEST.MF
trunk/jst/plugins/org.jboss.tools.jst.web.verification/pom.xml
trunk/jst/plugins/org.jboss.tools.jst.web/pom.xml
trunk/jst/plugins/pom.xml
trunk/jst/pom.xml
trunk/jst/site/pom.xml
trunk/jst/tests/org.jboss.tools.jst.css.test/META-INF/MANIFEST.MF
trunk/jst/tests/org.jboss.tools.jst.css.test/pom.xml
trunk/jst/tests/org.jboss.tools.jst.jsp.test/pom.xml
trunk/jst/tests/org.jboss.tools.jst.text.ext.test/pom.xml
trunk/jst/tests/org.jboss.tools.jst.ui.bot.test/META-INF/MANIFEST.MF
trunk/jst/tests/org.jboss.tools.jst.ui.bot.test/pom.xml
trunk/jst/tests/org.jboss.tools.jst.ui.firstrun.bot.test/META-INF/MANIFEST.MF
trunk/jst/tests/org.jboss.tools.jst.ui.firstrun.bot.test/pom.xml
trunk/jst/tests/org.jboss.tools.jst.web.kb.test/pom.xml
trunk/jst/tests/org.jboss.tools.jst.web.test/pom.xml
trunk/jst/tests/org.jboss.tools.jst.web.ui.test/META-INF/MANIFEST.MF
trunk/jst/tests/org.jboss.tools.jst.web.ui.test/pom.xml
trunk/jst/tests/pom.xml
Log:
JBIDE-9268 aligned jst to 3.3.0
Modified: trunk/jst/features/org.jboss.tools.jst.feature/pom.xml
===================================================================
--- trunk/jst/features/org.jboss.tools.jst.feature/pom.xml 2011-07-27 16:36:29 UTC (rev 33256)
+++ trunk/jst/features/org.jboss.tools.jst.feature/pom.xml 2011-07-27 16:42:37 UTC (rev 33257)
@@ -4,10 +4,10 @@
<parent>
<groupId>org.jboss.tools.jst</groupId>
<artifactId>features</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.jst.features</groupId>
<artifactId>org.jboss.tools.jst.feature</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+
<packaging>eclipse-feature</packaging>
</project>
Modified: trunk/jst/features/org.jboss.tools.jst.test.feature/feature.xml
===================================================================
--- trunk/jst/features/org.jboss.tools.jst.test.feature/feature.xml 2011-07-27 16:36:29 UTC (rev 33256)
+++ trunk/jst/features/org.jboss.tools.jst.test.feature/feature.xml 2011-07-27 16:42:37 UTC (rev 33257)
@@ -2,7 +2,7 @@
<feature
id="org.jboss.tools.jst.test.feature"
label="JST Test Feature"
- version="1.1.0.qualifier"
+ version="3.3.0.qualifier"
provider-name="JBoss by RedHat">
<description url="http://www.example.com/description">
Modified: trunk/jst/features/org.jboss.tools.jst.test.feature/pom.xml
===================================================================
--- trunk/jst/features/org.jboss.tools.jst.test.feature/pom.xml 2011-07-27 16:36:29 UTC (rev 33256)
+++ trunk/jst/features/org.jboss.tools.jst.test.feature/pom.xml 2011-07-27 16:42:37 UTC (rev 33257)
@@ -4,10 +4,10 @@
<parent>
<groupId>org.jboss.tools.jst</groupId>
<artifactId>features</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.jst.features</groupId>
<artifactId>org.jboss.tools.jst.test.feature</artifactId>
- <version>1.1.0-SNAPSHOT</version>
+
<packaging>eclipse-feature</packaging>
</project>
Modified: trunk/jst/features/org.jboss.tools.jst.web.tiles.feature/pom.xml
===================================================================
--- trunk/jst/features/org.jboss.tools.jst.web.tiles.feature/pom.xml 2011-07-27 16:36:29 UTC (rev 33256)
+++ trunk/jst/features/org.jboss.tools.jst.web.tiles.feature/pom.xml 2011-07-27 16:42:37 UTC (rev 33257)
@@ -4,10 +4,10 @@
<parent>
<groupId>org.jboss.tools.jst</groupId>
<artifactId>features</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.jst.features</groupId>
<artifactId>org.jboss.tools.jst.web.tiles.feature</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+
<packaging>eclipse-feature</packaging>
</project>
Modified: trunk/jst/features/pom.xml
===================================================================
--- trunk/jst/features/pom.xml 2011-07-27 16:36:29 UTC (rev 33256)
+++ trunk/jst/features/pom.xml 2011-07-27 16:42:37 UTC (rev 33257)
@@ -4,11 +4,11 @@
<groupId>org.jboss.tools.jst</groupId>
<artifactId>features</artifactId>
<name>jst.features</name>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
<parent>
<groupId>org.jboss.tools</groupId>
<artifactId>jst</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<packaging>pom</packaging>
<modules>
Modified: trunk/jst/plugins/org.jboss.tools.jst.css/pom.xml
===================================================================
--- trunk/jst/plugins/org.jboss.tools.jst.css/pom.xml 2011-07-27 16:36:29 UTC (rev 33256)
+++ trunk/jst/plugins/org.jboss.tools.jst.css/pom.xml 2011-07-27 16:42:37 UTC (rev 33257)
@@ -4,10 +4,10 @@
<parent>
<groupId>org.jboss.tools.jst</groupId>
<artifactId>plugins</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.jst.plugins</groupId>
<artifactId>org.jboss.tools.jst.css</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/jst/plugins/org.jboss.tools.jst.firstrun/META-INF/MANIFEST.MF
===================================================================
--- trunk/jst/plugins/org.jboss.tools.jst.firstrun/META-INF/MANIFEST.MF 2011-07-27 16:36:29 UTC (rev 33256)
+++ trunk/jst/plugins/org.jboss.tools.jst.firstrun/META-INF/MANIFEST.MF 2011-07-27 16:42:37 UTC (rev 33257)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.jst.firstrun;singleton:=true
-Bundle-Version: 3.2.0.qualifier
+Bundle-Version: 3.3.0.qualifier
Bundle-Vendor: %Bundle-Vendor.0
Require-Bundle: org.eclipse.ui.workbench;bundle-version="3.7.0",
org.eclipse.wst.server.core;bundle-version="1.1.302",
Modified: trunk/jst/plugins/org.jboss.tools.jst.firstrun/pom.xml
===================================================================
--- trunk/jst/plugins/org.jboss.tools.jst.firstrun/pom.xml 2011-07-27 16:36:29 UTC (rev 33256)
+++ trunk/jst/plugins/org.jboss.tools.jst.firstrun/pom.xml 2011-07-27 16:42:37 UTC (rev 33257)
@@ -4,10 +4,10 @@
<parent>
<groupId>org.jboss.tools.jst</groupId>
<artifactId>plugins</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.jst.plugins</groupId>
<artifactId>org.jboss.tools.jst.firstrun</artifactId>
- <version>3.2.0-SNAPSHOT</version>
+
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/jst/plugins/org.jboss.tools.jst.jsp/pom.xml
===================================================================
--- trunk/jst/plugins/org.jboss.tools.jst.jsp/pom.xml 2011-07-27 16:36:29 UTC (rev 33256)
+++ trunk/jst/plugins/org.jboss.tools.jst.jsp/pom.xml 2011-07-27 16:42:37 UTC (rev 33257)
@@ -4,10 +4,10 @@
<parent>
<groupId>org.jboss.tools.jst</groupId>
<artifactId>plugins</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.jst.plugins</groupId>
<artifactId>org.jboss.tools.jst.jsp</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/jst/plugins/org.jboss.tools.jst.jsp.base.test/META-INF/MANIFEST.MF
===================================================================
--- trunk/jst/plugins/org.jboss.tools.jst.jsp.base.test/META-INF/MANIFEST.MF 2011-07-27 16:36:29 UTC (rev 33256)
+++ trunk/jst/plugins/org.jboss.tools.jst.jsp.base.test/META-INF/MANIFEST.MF 2011-07-27 16:42:37 UTC (rev 33257)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: Base Classes for JSP Editor Related Tests
Bundle-SymbolicName: org.jboss.tools.jst.jsp.base.test
-Bundle-Version: 1.1.0.qualifier
+Bundle-Version: 3.3.0.qualifier
Require-Bundle: org.eclipse.core.runtime;bundle-version="3.7.0",
org.eclipse.jface;bundle-version="3.7.0",
org.eclipse.core.resources;bundle-version="3.7.100",
Modified: trunk/jst/plugins/org.jboss.tools.jst.jsp.base.test/pom.xml
===================================================================
--- trunk/jst/plugins/org.jboss.tools.jst.jsp.base.test/pom.xml 2011-07-27 16:36:29 UTC (rev 33256)
+++ trunk/jst/plugins/org.jboss.tools.jst.jsp.base.test/pom.xml 2011-07-27 16:42:37 UTC (rev 33257)
@@ -4,10 +4,10 @@
<parent>
<groupId>org.jboss.tools.jst</groupId>
<artifactId>plugins</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.jst.plugins</groupId>
<artifactId>org.jboss.tools.jst.base.test</artifactId>
- <version>1.1.0-SNAPSHOT</version>
+
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/jst/plugins/org.jboss.tools.jst.text.ext/pom.xml
===================================================================
--- trunk/jst/plugins/org.jboss.tools.jst.text.ext/pom.xml 2011-07-27 16:36:29 UTC (rev 33256)
+++ trunk/jst/plugins/org.jboss.tools.jst.text.ext/pom.xml 2011-07-27 16:42:37 UTC (rev 33257)
@@ -4,10 +4,10 @@
<parent>
<groupId>org.jboss.tools.jst</groupId>
<artifactId>plugins</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.jst.plugins</groupId>
<artifactId>org.jboss.tools.jst.text.ext</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/jst/plugins/org.jboss.tools.jst.web/pom.xml
===================================================================
--- trunk/jst/plugins/org.jboss.tools.jst.web/pom.xml 2011-07-27 16:36:29 UTC (rev 33256)
+++ trunk/jst/plugins/org.jboss.tools.jst.web/pom.xml 2011-07-27 16:42:37 UTC (rev 33257)
@@ -4,10 +4,10 @@
<parent>
<groupId>org.jboss.tools.jst</groupId>
<artifactId>plugins</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.jst.plugins</groupId>
<artifactId>org.jboss.tools.jst.web</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/jst/plugins/org.jboss.tools.jst.web.kb/pom.xml
===================================================================
--- trunk/jst/plugins/org.jboss.tools.jst.web.kb/pom.xml 2011-07-27 16:36:29 UTC (rev 33256)
+++ trunk/jst/plugins/org.jboss.tools.jst.web.kb/pom.xml 2011-07-27 16:42:37 UTC (rev 33257)
@@ -4,10 +4,10 @@
<parent>
<groupId>org.jboss.tools.jst</groupId>
<artifactId>plugins</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.jst.tests</groupId>
<artifactId>org.jboss.tools.jst.web.kb</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/jst/plugins/org.jboss.tools.jst.web.tiles/META-INF/MANIFEST.MF
===================================================================
--- trunk/jst/plugins/org.jboss.tools.jst.web.tiles/META-INF/MANIFEST.MF 2011-07-27 16:36:29 UTC (rev 33256)
+++ trunk/jst/plugins/org.jboss.tools.jst.web.tiles/META-INF/MANIFEST.MF 2011-07-27 16:42:37 UTC (rev 33257)
@@ -24,5 +24,5 @@
org.eclipse.ltk.ui.refactoring;bundle-version="3.5.100",
org.eclipse.core.resources;bundle-version="3.7.100",
org.eclipse.core.runtime;bundle-version="3.7.0"
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.3.0.qualifier
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Modified: trunk/jst/plugins/org.jboss.tools.jst.web.tiles/pom.xml
===================================================================
--- trunk/jst/plugins/org.jboss.tools.jst.web.tiles/pom.xml 2011-07-27 16:36:29 UTC (rev 33256)
+++ trunk/jst/plugins/org.jboss.tools.jst.web.tiles/pom.xml 2011-07-27 16:42:37 UTC (rev 33257)
@@ -4,10 +4,10 @@
<parent>
<groupId>org.jboss.tools.jst</groupId>
<artifactId>plugins</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.jst.plugins</groupId>
<artifactId>org.jboss.tools.jst.web.tiles</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/jst/plugins/org.jboss.tools.jst.web.tiles.ui/pom.xml
===================================================================
--- trunk/jst/plugins/org.jboss.tools.jst.web.tiles.ui/pom.xml 2011-07-27 16:36:29 UTC (rev 33256)
+++ trunk/jst/plugins/org.jboss.tools.jst.web.tiles.ui/pom.xml 2011-07-27 16:42:37 UTC (rev 33257)
@@ -4,10 +4,10 @@
<parent>
<groupId>org.jboss.tools.jst</groupId>
<artifactId>plugins</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.jst.plugins</groupId>
<artifactId>org.jboss.tools.jst.web.tiles.ui</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/jst/plugins/org.jboss.tools.jst.web.ui/pom.xml
===================================================================
--- trunk/jst/plugins/org.jboss.tools.jst.web.ui/pom.xml 2011-07-27 16:36:29 UTC (rev 33256)
+++ trunk/jst/plugins/org.jboss.tools.jst.web.ui/pom.xml 2011-07-27 16:42:37 UTC (rev 33257)
@@ -4,10 +4,10 @@
<parent>
<groupId>org.jboss.tools.jst</groupId>
<artifactId>plugins</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.jst.plugins</groupId>
<artifactId>org.jboss.tools.jst.web.ui</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/jst/plugins/org.jboss.tools.jst.web.verification/META-INF/MANIFEST.MF
===================================================================
--- trunk/jst/plugins/org.jboss.tools.jst.web.verification/META-INF/MANIFEST.MF 2011-07-27 16:36:29 UTC (rev 33256)
+++ trunk/jst/plugins/org.jboss.tools.jst.web.verification/META-INF/MANIFEST.MF 2011-07-27 16:42:37 UTC (rev 33257)
@@ -13,6 +13,6 @@
org.jboss.tools.common.model,
org.jboss.tools.common.verification,
org.jboss.tools.jst.web
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.3.0.qualifier
Bundle-ActivationPolicy: lazy
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Modified: trunk/jst/plugins/org.jboss.tools.jst.web.verification/pom.xml
===================================================================
--- trunk/jst/plugins/org.jboss.tools.jst.web.verification/pom.xml 2011-07-27 16:36:29 UTC (rev 33256)
+++ trunk/jst/plugins/org.jboss.tools.jst.web.verification/pom.xml 2011-07-27 16:42:37 UTC (rev 33257)
@@ -4,10 +4,10 @@
<parent>
<groupId>org.jboss.tools.jst</groupId>
<artifactId>plugins</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.jst.plugins</groupId>
<artifactId>org.jboss.tools.jst.web.verification</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/jst/plugins/pom.xml
===================================================================
--- trunk/jst/plugins/pom.xml 2011-07-27 16:36:29 UTC (rev 33256)
+++ trunk/jst/plugins/pom.xml 2011-07-27 16:42:37 UTC (rev 33257)
@@ -4,11 +4,11 @@
<groupId>org.jboss.tools.jst</groupId>
<artifactId>plugins</artifactId>
<name>jst.plugins</name>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
<parent>
<groupId>org.jboss.tools</groupId>
<artifactId>jst</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<packaging>pom</packaging>
<modules>
Modified: trunk/jst/pom.xml
===================================================================
--- trunk/jst/pom.xml 2011-07-27 16:36:29 UTC (rev 33256)
+++ trunk/jst/pom.xml 2011-07-27 16:42:37 UTC (rev 33257)
@@ -4,7 +4,7 @@
<groupId>org.jboss.tools</groupId>
<artifactId>jst</artifactId>
<name>jst.all</name>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
<parent>
<groupId>org.jboss.tools</groupId>
<artifactId>org.jboss.tools.parent.pom</artifactId>
Modified: trunk/jst/site/pom.xml
===================================================================
--- trunk/jst/site/pom.xml 2011-07-27 16:36:29 UTC (rev 33256)
+++ trunk/jst/site/pom.xml 2011-07-27 16:42:37 UTC (rev 33257)
@@ -4,11 +4,11 @@
<parent>
<groupId>org.jboss.tools</groupId>
<artifactId>jst</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.jst</groupId>
<artifactId>jst.site</artifactId>
<name>jst.site</name>
- <version>0.0.1-SNAPSHOT</version>
+
<packaging>eclipse-update-site</packaging>
</project>
Modified: trunk/jst/tests/org.jboss.tools.jst.css.test/META-INF/MANIFEST.MF
===================================================================
--- trunk/jst/tests/org.jboss.tools.jst.css.test/META-INF/MANIFEST.MF 2011-07-27 16:36:29 UTC (rev 33256)
+++ trunk/jst/tests/org.jboss.tools.jst.css.test/META-INF/MANIFEST.MF 2011-07-27 16:42:37 UTC (rev 33257)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.jst.css.test;singleton:=true
-Bundle-Version: 3.2.0.qualifier
+Bundle-Version: 3.3.0.qualifier
Bundle-Activator: org.jboss.tools.jst.css.test.CSSTestPlugin
Require-Bundle: org.eclipse.core.runtime,
org.junit,
Modified: trunk/jst/tests/org.jboss.tools.jst.css.test/pom.xml
===================================================================
--- trunk/jst/tests/org.jboss.tools.jst.css.test/pom.xml 2011-07-27 16:36:29 UTC (rev 33256)
+++ trunk/jst/tests/org.jboss.tools.jst.css.test/pom.xml 2011-07-27 16:42:37 UTC (rev 33257)
@@ -4,11 +4,11 @@
<parent>
<groupId>org.jboss.tools.jst</groupId>
<artifactId>tests</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.jst.tests</groupId>
<artifactId>org.jboss.tools.jst.css.test</artifactId>
- <version>3.2.0-SNAPSHOT</version>
+
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/jst/tests/org.jboss.tools.jst.jsp.test/pom.xml
===================================================================
--- trunk/jst/tests/org.jboss.tools.jst.jsp.test/pom.xml 2011-07-27 16:36:29 UTC (rev 33256)
+++ trunk/jst/tests/org.jboss.tools.jst.jsp.test/pom.xml 2011-07-27 16:42:37 UTC (rev 33257)
@@ -4,11 +4,11 @@
<parent>
<groupId>org.jboss.tools.jst</groupId>
<artifactId>tests</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.jst.tests</groupId>
<artifactId>org.jboss.tools.jst.jsp.test</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/jst/tests/org.jboss.tools.jst.text.ext.test/pom.xml
===================================================================
--- trunk/jst/tests/org.jboss.tools.jst.text.ext.test/pom.xml 2011-07-27 16:36:29 UTC (rev 33256)
+++ trunk/jst/tests/org.jboss.tools.jst.text.ext.test/pom.xml 2011-07-27 16:42:37 UTC (rev 33257)
@@ -4,11 +4,11 @@
<parent>
<groupId>org.jboss.tools.jst</groupId>
<artifactId>tests</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.jst.tests</groupId>
<artifactId>org.jboss.tools.jst.text.ext.test</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/jst/tests/org.jboss.tools.jst.ui.bot.test/META-INF/MANIFEST.MF
===================================================================
--- trunk/jst/tests/org.jboss.tools.jst.ui.bot.test/META-INF/MANIFEST.MF 2011-07-27 16:36:29 UTC (rev 33256)
+++ trunk/jst/tests/org.jboss.tools.jst.ui.bot.test/META-INF/MANIFEST.MF 2011-07-27 16:42:37 UTC (rev 33257)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: JST UI SWTBot Tests
Bundle-SymbolicName: org.jboss.tools.jst.ui.bot.test;singleton:=true
-Bundle-Version: 3.2.0.qualifier
+Bundle-Version: 3.3.0.qualifier
Bundle-Activator: org.jboss.tools.ui.bot.test.Activator
Require-Bundle: org.eclipse.core.runtime,
org.eclipse.swtbot.eclipse.finder;bundle-version="2.0.0",
Modified: trunk/jst/tests/org.jboss.tools.jst.ui.bot.test/pom.xml
===================================================================
--- trunk/jst/tests/org.jboss.tools.jst.ui.bot.test/pom.xml 2011-07-27 16:36:29 UTC (rev 33256)
+++ trunk/jst/tests/org.jboss.tools.jst.ui.bot.test/pom.xml 2011-07-27 16:42:37 UTC (rev 33257)
@@ -4,11 +4,11 @@
<parent>
<groupId>org.jboss.tools.jst</groupId>
<artifactId>tests</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.jst.tests</groupId>
<artifactId>org.jboss.tools.jst.ui.bot.test</artifactId>
- <version>3.2.0-SNAPSHOT</version>
+
<packaging>eclipse-plugin</packaging>
<properties>
<emma.filter>org.jboss.tools.jst*</emma.filter>
Modified: trunk/jst/tests/org.jboss.tools.jst.ui.firstrun.bot.test/META-INF/MANIFEST.MF
===================================================================
--- trunk/jst/tests/org.jboss.tools.jst.ui.firstrun.bot.test/META-INF/MANIFEST.MF 2011-07-27 16:36:29 UTC (rev 33256)
+++ trunk/jst/tests/org.jboss.tools.jst.ui.firstrun.bot.test/META-INF/MANIFEST.MF 2011-07-27 16:42:37 UTC (rev 33257)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %BundleName
Bundle-SymbolicName: org.jboss.tools.jst.ui.firstrun.bot.test;singleton:=true
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.3.0.qualifier
Bundle-Activator: org.jboss.tools.ui.runtime.bot.test.Activator
Bundle-Vendor: %BundleVendor
Require-Bundle: org.eclipse.core.runtime,
Modified: trunk/jst/tests/org.jboss.tools.jst.ui.firstrun.bot.test/pom.xml
===================================================================
--- trunk/jst/tests/org.jboss.tools.jst.ui.firstrun.bot.test/pom.xml 2011-07-27 16:36:29 UTC (rev 33256)
+++ trunk/jst/tests/org.jboss.tools.jst.ui.firstrun.bot.test/pom.xml 2011-07-27 16:42:37 UTC (rev 33257)
@@ -4,11 +4,11 @@
<parent>
<groupId>org.jboss.tools.jst</groupId>
<artifactId>tests</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.jst.tests</groupId>
<artifactId>org.jboss.tools.jst.ui.firstrun.bot.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+
<packaging>eclipse-plugin</packaging>
<properties>
Modified: trunk/jst/tests/org.jboss.tools.jst.web.kb.test/pom.xml
===================================================================
--- trunk/jst/tests/org.jboss.tools.jst.web.kb.test/pom.xml 2011-07-27 16:36:29 UTC (rev 33256)
+++ trunk/jst/tests/org.jboss.tools.jst.web.kb.test/pom.xml 2011-07-27 16:42:37 UTC (rev 33257)
@@ -4,11 +4,11 @@
<parent>
<groupId>org.jboss.tools.jst</groupId>
<artifactId>tests</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.jst.tests</groupId>
<artifactId>org.jboss.tools.jst.web.kb.test</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/jst/tests/org.jboss.tools.jst.web.test/pom.xml
===================================================================
--- trunk/jst/tests/org.jboss.tools.jst.web.test/pom.xml 2011-07-27 16:36:29 UTC (rev 33256)
+++ trunk/jst/tests/org.jboss.tools.jst.web.test/pom.xml 2011-07-27 16:42:37 UTC (rev 33257)
@@ -4,11 +4,11 @@
<parent>
<groupId>org.jboss.tools.jst</groupId>
<artifactId>tests</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.jst.tests</groupId>
<artifactId>org.jboss.tools.jst.web.test</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+
<packaging>eclipse-test-plugin</packaging>
<properties>
<emma.filter>org.jboss.tools.jst.web*</emma.filter>
Modified: trunk/jst/tests/org.jboss.tools.jst.web.ui.test/META-INF/MANIFEST.MF
===================================================================
--- trunk/jst/tests/org.jboss.tools.jst.web.ui.test/META-INF/MANIFEST.MF 2011-07-27 16:36:29 UTC (rev 33256)
+++ trunk/jst/tests/org.jboss.tools.jst.web.ui.test/META-INF/MANIFEST.MF 2011-07-27 16:42:37 UTC (rev 33257)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.jst.web.ui.test
-Bundle-Version: 3.2.0.qualifier
+Bundle-Version: 3.3.0.qualifier
Bundle-Vendor: %Bundle-Vendor.0
Require-Bundle: org.jboss.tools.jst.web.ui,
org.eclipse.ui,
Modified: trunk/jst/tests/org.jboss.tools.jst.web.ui.test/pom.xml
===================================================================
--- trunk/jst/tests/org.jboss.tools.jst.web.ui.test/pom.xml 2011-07-27 16:36:29 UTC (rev 33256)
+++ trunk/jst/tests/org.jboss.tools.jst.web.ui.test/pom.xml 2011-07-27 16:42:37 UTC (rev 33257)
@@ -4,11 +4,11 @@
<parent>
<groupId>org.jboss.tools.jst</groupId>
<artifactId>tests</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.jst.tests</groupId>
<artifactId>org.jboss.tools.jst.web.ui.test</artifactId>
- <version>3.2.0-SNAPSHOT</version>
+
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/jst/tests/pom.xml
===================================================================
--- trunk/jst/tests/pom.xml 2011-07-27 16:36:29 UTC (rev 33256)
+++ trunk/jst/tests/pom.xml 2011-07-27 16:42:37 UTC (rev 33257)
@@ -4,11 +4,11 @@
<groupId>org.jboss.tools.jst</groupId>
<artifactId>tests</artifactId>
<name>jst.tests</name>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
<parent>
<groupId>org.jboss.tools</groupId>
<artifactId>jst</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<packaging>pom</packaging>
<modules>
13 years, 6 months
JBoss Tools SVN: r33256 - in trunk/esb: features and 22 other directories.
by jbosstools-commits@lists.jboss.org
Author: max.andersen(a)jboss.com
Date: 2011-07-27 12:36:29 -0400 (Wed, 27 Jul 2011)
New Revision: 33256
Modified:
trunk/esb/features/org.jboss.tools.esb.feature/feature.xml
trunk/esb/features/org.jboss.tools.esb.feature/pom.xml
trunk/esb/features/org.jboss.tools.esb.test.feature/feature.xml
trunk/esb/features/org.jboss.tools.esb.test.feature/pom.xml
trunk/esb/features/pom.xml
trunk/esb/plugins/org.jboss.tools.esb.core/pom.xml
trunk/esb/plugins/org.jboss.tools.esb.project.core/META-INF/MANIFEST.MF
trunk/esb/plugins/org.jboss.tools.esb.project.core/pom.xml
trunk/esb/plugins/org.jboss.tools.esb.project.ui/META-INF/MANIFEST.MF
trunk/esb/plugins/org.jboss.tools.esb.project.ui/pom.xml
trunk/esb/plugins/org.jboss.tools.esb.ui/META-INF/MANIFEST.MF
trunk/esb/plugins/org.jboss.tools.esb.ui/pom.xml
trunk/esb/plugins/org.jboss.tools.esb.validator/META-INF/MANIFEST.MF
trunk/esb/plugins/org.jboss.tools.esb.validator/pom.xml
trunk/esb/plugins/pom.xml
trunk/esb/pom.xml
trunk/esb/site/pom.xml
trunk/esb/tests/org.jboss.tools.esb.core.test/META-INF/MANIFEST.MF
trunk/esb/tests/org.jboss.tools.esb.core.test/pom.xml
trunk/esb/tests/org.jboss.tools.esb.project.core.test/META-INF/MANIFEST.MF
trunk/esb/tests/org.jboss.tools.esb.project.core.test/pom.xml
trunk/esb/tests/org.jboss.tools.esb.ui.bot.test/META-INF/MANIFEST.MF
trunk/esb/tests/org.jboss.tools.esb.ui.bot.test/pom.xml
trunk/esb/tests/org.jboss.tools.esb.validator.test/META-INF/MANIFEST.MF
trunk/esb/tests/org.jboss.tools.esb.validator.test/pom.xml
trunk/esb/tests/pom.xml
Log:
JBIDE-9268 aligned esb to 1.5.0
Modified: trunk/esb/features/org.jboss.tools.esb.feature/feature.xml
===================================================================
--- trunk/esb/features/org.jboss.tools.esb.feature/feature.xml 2011-07-27 16:30:27 UTC (rev 33255)
+++ trunk/esb/features/org.jboss.tools.esb.feature/feature.xml 2011-07-27 16:36:29 UTC (rev 33256)
@@ -2,7 +2,7 @@
<feature
id="org.jboss.tools.esb.feature"
label="%featureName"
- version="1.3.0.qualifier"
+ version="1.5.0.qualifier"
provider-name="%providerName"
plugin="org.jboss.tools.esb.ui">
Modified: trunk/esb/features/org.jboss.tools.esb.feature/pom.xml
===================================================================
--- trunk/esb/features/org.jboss.tools.esb.feature/pom.xml 2011-07-27 16:30:27 UTC (rev 33255)
+++ trunk/esb/features/org.jboss.tools.esb.feature/pom.xml 2011-07-27 16:36:29 UTC (rev 33256)
@@ -5,10 +5,10 @@
<parent>
<groupId>org.jboss.tools.esb</groupId>
<artifactId>features</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>1.5.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.esb.features</groupId>
<artifactId>org.jboss.tools.esb.feature</artifactId>
- <version>1.3.0-SNAPSHOT</version>
+
<packaging>eclipse-feature</packaging>
</project>
\ No newline at end of file
Modified: trunk/esb/features/org.jboss.tools.esb.test.feature/feature.xml
===================================================================
--- trunk/esb/features/org.jboss.tools.esb.test.feature/feature.xml 2011-07-27 16:30:27 UTC (rev 33255)
+++ trunk/esb/features/org.jboss.tools.esb.test.feature/feature.xml 2011-07-27 16:36:29 UTC (rev 33256)
@@ -2,7 +2,7 @@
<feature
id="org.jboss.tools.esb.test.feature"
label="ESB Tests Plugin"
- version="1.3.0.qualifier"
+ version="1.5.0.qualifier"
provider-name="JBoss by RedHat">
<description url="http://www.example.com/description">
Modified: trunk/esb/features/org.jboss.tools.esb.test.feature/pom.xml
===================================================================
--- trunk/esb/features/org.jboss.tools.esb.test.feature/pom.xml 2011-07-27 16:30:27 UTC (rev 33255)
+++ trunk/esb/features/org.jboss.tools.esb.test.feature/pom.xml 2011-07-27 16:36:29 UTC (rev 33256)
@@ -5,10 +5,10 @@
<parent>
<groupId>org.jboss.tools.esb</groupId>
<artifactId>features</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>1.5.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.esb.features</groupId>
<artifactId>org.jboss.tools.esb.test.feature</artifactId>
- <version>1.3.0-SNAPSHOT</version>
+
<packaging>eclipse-feature</packaging>
</project>
\ No newline at end of file
Modified: trunk/esb/features/pom.xml
===================================================================
--- trunk/esb/features/pom.xml 2011-07-27 16:30:27 UTC (rev 33255)
+++ trunk/esb/features/pom.xml 2011-07-27 16:36:29 UTC (rev 33256)
@@ -5,11 +5,11 @@
<parent>
<groupId>org.jboss.tools</groupId>
<artifactId>esb</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>1.5.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.esb</groupId>
<artifactId>features</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+
<name>esb.features</name>
<packaging>pom</packaging>
<modules>
Modified: trunk/esb/plugins/org.jboss.tools.esb.core/pom.xml
===================================================================
--- trunk/esb/plugins/org.jboss.tools.esb.core/pom.xml 2011-07-27 16:30:27 UTC (rev 33255)
+++ trunk/esb/plugins/org.jboss.tools.esb.core/pom.xml 2011-07-27 16:36:29 UTC (rev 33256)
@@ -5,10 +5,10 @@
<parent>
<groupId>org.jboss.tools.esb</groupId>
<artifactId>plugins</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>1.5.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.esb.plugins</groupId>
<artifactId>org.jboss.tools.esb.core</artifactId>
- <version>1.5.0-SNAPSHOT</version>
+
<packaging>eclipse-plugin</packaging>
</project>
\ No newline at end of file
Modified: trunk/esb/plugins/org.jboss.tools.esb.project.core/META-INF/MANIFEST.MF
===================================================================
--- trunk/esb/plugins/org.jboss.tools.esb.project.core/META-INF/MANIFEST.MF 2011-07-27 16:30:27 UTC (rev 33255)
+++ trunk/esb/plugins/org.jboss.tools.esb.project.core/META-INF/MANIFEST.MF 2011-07-27 16:36:29 UTC (rev 33256)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: org.jboss.tools.esb.project.core;singleton:=true
-Bundle-Version: 1.4.0.qualifier
+Bundle-Version: 1.5.0.qualifier
Bundle-Localization: plugin
Bundle-Activator: org.jboss.tools.esb.core.ESBProjectCorePlugin
Require-Bundle: org.eclipse.ui,
Modified: trunk/esb/plugins/org.jboss.tools.esb.project.core/pom.xml
===================================================================
--- trunk/esb/plugins/org.jboss.tools.esb.project.core/pom.xml 2011-07-27 16:30:27 UTC (rev 33255)
+++ trunk/esb/plugins/org.jboss.tools.esb.project.core/pom.xml 2011-07-27 16:36:29 UTC (rev 33256)
@@ -5,10 +5,10 @@
<parent>
<groupId>org.jboss.tools.esb</groupId>
<artifactId>plugins</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>1.5.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.esb.plugins</groupId>
<artifactId>org.jboss.tools.esb.project.core</artifactId>
- <version>1.4.0-SNAPSHOT</version>
+
<packaging>eclipse-plugin</packaging>
</project>
\ No newline at end of file
Modified: trunk/esb/plugins/org.jboss.tools.esb.project.ui/META-INF/MANIFEST.MF
===================================================================
--- trunk/esb/plugins/org.jboss.tools.esb.project.ui/META-INF/MANIFEST.MF 2011-07-27 16:30:27 UTC (rev 33255)
+++ trunk/esb/plugins/org.jboss.tools.esb.project.ui/META-INF/MANIFEST.MF 2011-07-27 16:36:29 UTC (rev 33256)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.esb.project.ui;singleton:=true
-Bundle-Version: 1.4.0.qualifier
+Bundle-Version: 1.5.0.qualifier
Bundle-Activator: org.jboss.tools.esb.project.ui.ESBProjectPlugin
Bundle-Localization: plugin
Require-Bundle: org.eclipse.ui,
Modified: trunk/esb/plugins/org.jboss.tools.esb.project.ui/pom.xml
===================================================================
--- trunk/esb/plugins/org.jboss.tools.esb.project.ui/pom.xml 2011-07-27 16:30:27 UTC (rev 33255)
+++ trunk/esb/plugins/org.jboss.tools.esb.project.ui/pom.xml 2011-07-27 16:36:29 UTC (rev 33256)
@@ -5,10 +5,10 @@
<parent>
<groupId>org.jboss.tools.esb</groupId>
<artifactId>plugins</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>1.5.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.esb.plugins</groupId>
<artifactId>org.jboss.tools.esb.project.ui</artifactId>
- <version>1.4.0-SNAPSHOT</version>
+
<packaging>eclipse-plugin</packaging>
</project>
\ No newline at end of file
Modified: trunk/esb/plugins/org.jboss.tools.esb.ui/META-INF/MANIFEST.MF
===================================================================
--- trunk/esb/plugins/org.jboss.tools.esb.ui/META-INF/MANIFEST.MF 2011-07-27 16:30:27 UTC (rev 33255)
+++ trunk/esb/plugins/org.jboss.tools.esb.ui/META-INF/MANIFEST.MF 2011-07-27 16:36:29 UTC (rev 33256)
@@ -36,5 +36,5 @@
org.jboss.tools.common.model.ui,
org.jboss.tools.common.text.xml,
org.jboss.tools.esb.core
-Bundle-Version: 1.4.0.qualifier
+Bundle-Version: 1.5.0.qualifier
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Modified: trunk/esb/plugins/org.jboss.tools.esb.ui/pom.xml
===================================================================
--- trunk/esb/plugins/org.jboss.tools.esb.ui/pom.xml 2011-07-27 16:30:27 UTC (rev 33255)
+++ trunk/esb/plugins/org.jboss.tools.esb.ui/pom.xml 2011-07-27 16:36:29 UTC (rev 33256)
@@ -5,10 +5,10 @@
<parent>
<groupId>org.jboss.tools.esb</groupId>
<artifactId>plugins</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>1.5.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.esb.plugins</groupId>
<artifactId>org.jboss.tools.esb.ui</artifactId>
- <version>1.4.0-SNAPSHOT</version>
+
<packaging>eclipse-plugin</packaging>
</project>
\ No newline at end of file
Modified: trunk/esb/plugins/org.jboss.tools.esb.validator/META-INF/MANIFEST.MF
===================================================================
--- trunk/esb/plugins/org.jboss.tools.esb.validator/META-INF/MANIFEST.MF 2011-07-27 16:30:27 UTC (rev 33255)
+++ trunk/esb/plugins/org.jboss.tools.esb.validator/META-INF/MANIFEST.MF 2011-07-27 16:36:29 UTC (rev 33256)
@@ -15,5 +15,5 @@
org.jboss.tools.esb.project.core,
org.eclipse.wst.validation,
org.eclipse.jdt.ui
-Bundle-Version: 1.4.0.qualifier
+Bundle-Version: 1.5.0.qualifier
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Modified: trunk/esb/plugins/org.jboss.tools.esb.validator/pom.xml
===================================================================
--- trunk/esb/plugins/org.jboss.tools.esb.validator/pom.xml 2011-07-27 16:30:27 UTC (rev 33255)
+++ trunk/esb/plugins/org.jboss.tools.esb.validator/pom.xml 2011-07-27 16:36:29 UTC (rev 33256)
@@ -5,10 +5,10 @@
<parent>
<groupId>org.jboss.tools.esb</groupId>
<artifactId>plugins</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>1.5.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.esb.plugins</groupId>
<artifactId>org.jboss.tools.esb.validator</artifactId>
- <version>1.4.0-SNAPSHOT</version>
+
<packaging>eclipse-plugin</packaging>
</project>
\ No newline at end of file
Modified: trunk/esb/plugins/pom.xml
===================================================================
--- trunk/esb/plugins/pom.xml 2011-07-27 16:30:27 UTC (rev 33255)
+++ trunk/esb/plugins/pom.xml 2011-07-27 16:36:29 UTC (rev 33256)
@@ -5,11 +5,11 @@
<parent>
<groupId>org.jboss.tools</groupId>
<artifactId>esb</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>1.5.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.esb</groupId>
<artifactId>plugins</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+
<name>esb.plugins</name>
<packaging>pom</packaging>
<modules>
Modified: trunk/esb/pom.xml
===================================================================
--- trunk/esb/pom.xml 2011-07-27 16:30:27 UTC (rev 33255)
+++ trunk/esb/pom.xml 2011-07-27 16:36:29 UTC (rev 33256)
@@ -10,7 +10,7 @@
</parent>
<groupId>org.jboss.tools</groupId>
<artifactId>esb</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>1.5.0-SNAPSHOT</version>
<name>esb.all</name>
<packaging>pom</packaging>
<modules>
Modified: trunk/esb/site/pom.xml
===================================================================
--- trunk/esb/site/pom.xml 2011-07-27 16:30:27 UTC (rev 33255)
+++ trunk/esb/site/pom.xml 2011-07-27 16:36:29 UTC (rev 33256)
@@ -5,11 +5,11 @@
<parent>
<groupId>org.jboss.tools</groupId>
<artifactId>esb</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>1.5.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.esb</groupId>
<artifactId>esb.site</artifactId>
<name>esb.site</name>
- <version>0.0.1-SNAPSHOT</version>
+
<packaging>eclipse-update-site</packaging>
</project>
\ No newline at end of file
Modified: trunk/esb/tests/org.jboss.tools.esb.core.test/META-INF/MANIFEST.MF
===================================================================
--- trunk/esb/tests/org.jboss.tools.esb.core.test/META-INF/MANIFEST.MF 2011-07-27 16:30:27 UTC (rev 33255)
+++ trunk/esb/tests/org.jboss.tools.esb.core.test/META-INF/MANIFEST.MF 2011-07-27 16:36:29 UTC (rev 33256)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.esb.core.test;singleton:=true
-Bundle-Version: 1.4.0.qualifier
+Bundle-Version: 1.5.0.qualifier
Bundle-Vendor: %Bundle-Vendor.0
Export-Package: org.jboss.tools.esb.core.test
Require-Bundle:
Modified: trunk/esb/tests/org.jboss.tools.esb.core.test/pom.xml
===================================================================
--- trunk/esb/tests/org.jboss.tools.esb.core.test/pom.xml 2011-07-27 16:30:27 UTC (rev 33255)
+++ trunk/esb/tests/org.jboss.tools.esb.core.test/pom.xml 2011-07-27 16:36:29 UTC (rev 33256)
@@ -5,11 +5,11 @@
<parent>
<groupId>org.jboss.tools.esb</groupId>
<artifactId>tests</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>1.5.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.esb.tests</groupId>
<artifactId>org.jboss.tools.esb.core.test</artifactId>
- <version>1.4.0-SNAPSHOT</version>
+
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/esb/tests/org.jboss.tools.esb.project.core.test/META-INF/MANIFEST.MF
===================================================================
--- trunk/esb/tests/org.jboss.tools.esb.project.core.test/META-INF/MANIFEST.MF 2011-07-27 16:30:27 UTC (rev 33255)
+++ trunk/esb/tests/org.jboss.tools.esb.project.core.test/META-INF/MANIFEST.MF 2011-07-27 16:36:29 UTC (rev 33256)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.esb.project.core.test
-Bundle-Version: 1.4.0.qualifier
+Bundle-Version: 1.5.0.qualifier
Bundle-Localization: plugin
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Require-Bundle: org.junit,
Modified: trunk/esb/tests/org.jboss.tools.esb.project.core.test/pom.xml
===================================================================
--- trunk/esb/tests/org.jboss.tools.esb.project.core.test/pom.xml 2011-07-27 16:30:27 UTC (rev 33255)
+++ trunk/esb/tests/org.jboss.tools.esb.project.core.test/pom.xml 2011-07-27 16:36:29 UTC (rev 33256)
@@ -5,11 +5,11 @@
<parent>
<groupId>org.jboss.tools.esb</groupId>
<artifactId>tests</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>1.5.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.esb.tests</groupId>
<artifactId>org.jboss.tools.esb.project.core.test</artifactId>
- <version>1.4.0-SNAPSHOT</version>
+
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/esb/tests/org.jboss.tools.esb.ui.bot.test/META-INF/MANIFEST.MF
===================================================================
--- trunk/esb/tests/org.jboss.tools.esb.ui.bot.test/META-INF/MANIFEST.MF 2011-07-27 16:30:27 UTC (rev 33255)
+++ trunk/esb/tests/org.jboss.tools.esb.ui.bot.test/META-INF/MANIFEST.MF 2011-07-27 16:36:29 UTC (rev 33256)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: ESB SWTBot Tests
Bundle-SymbolicName: org.jboss.tools.esb.ui.bot.test
-Bundle-Version: 1.0.0.qualifier
+Bundle-Version: 1.5.0.qualifier
Bundle-Activator: org.jboss.tools.esb.ui.bot.tests.Activator
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime,
Modified: trunk/esb/tests/org.jboss.tools.esb.ui.bot.test/pom.xml
===================================================================
--- trunk/esb/tests/org.jboss.tools.esb.ui.bot.test/pom.xml 2011-07-27 16:30:27 UTC (rev 33255)
+++ trunk/esb/tests/org.jboss.tools.esb.ui.bot.test/pom.xml 2011-07-27 16:36:29 UTC (rev 33256)
@@ -5,10 +5,10 @@
<parent>
<groupId>org.jboss.tools.esb</groupId>
<artifactId>tests</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>1.5.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools</groupId>
<artifactId>org.jboss.tools.esb.ui.bot.test</artifactId>
- <version>1.0.0-SNAPSHOT</version>
+
<packaging>eclipse-test-plugin</packaging>
</project>
\ No newline at end of file
Modified: trunk/esb/tests/org.jboss.tools.esb.validator.test/META-INF/MANIFEST.MF
===================================================================
--- trunk/esb/tests/org.jboss.tools.esb.validator.test/META-INF/MANIFEST.MF 2011-07-27 16:30:27 UTC (rev 33255)
+++ trunk/esb/tests/org.jboss.tools.esb.validator.test/META-INF/MANIFEST.MF 2011-07-27 16:36:29 UTC (rev 33256)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: Contexts and Dependency Injection Test
Bundle-SymbolicName: org.jboss.tools.esb.validator.test
-Bundle-Version: 1.4.0.qualifier
+Bundle-Version: 1.5.0.qualifier
Bundle-Vendor: JBoss by Red Hat
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Require-Bundle: org.jboss.tools.esb.core,
Modified: trunk/esb/tests/org.jboss.tools.esb.validator.test/pom.xml
===================================================================
--- trunk/esb/tests/org.jboss.tools.esb.validator.test/pom.xml 2011-07-27 16:30:27 UTC (rev 33255)
+++ trunk/esb/tests/org.jboss.tools.esb.validator.test/pom.xml 2011-07-27 16:36:29 UTC (rev 33256)
@@ -5,11 +5,11 @@
<parent>
<groupId>org.jboss.tools.esb</groupId>
<artifactId>tests</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>1.5.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.esb.tests</groupId>
<artifactId>org.jboss.tools.esb.validator.test</artifactId>
- <version>1.4.0-SNAPSHOT</version>
+
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/esb/tests/pom.xml
===================================================================
--- trunk/esb/tests/pom.xml 2011-07-27 16:30:27 UTC (rev 33255)
+++ trunk/esb/tests/pom.xml 2011-07-27 16:36:29 UTC (rev 33256)
@@ -5,11 +5,11 @@
<parent>
<groupId>org.jboss.tools</groupId>
<artifactId>esb</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>1.5.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.esb</groupId>
<artifactId>tests</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+
<name>esb.tests</name>
<packaging>pom</packaging>
<modules>
13 years, 6 months
JBoss Tools SVN: r33255 - in trunk/struts: features and 19 other directories.
by jbosstools-commits@lists.jboss.org
Author: max.andersen(a)jboss.com
Date: 2011-07-27 12:30:27 -0400 (Wed, 27 Jul 2011)
New Revision: 33255
Modified:
trunk/struts/features/org.jboss.tools.struts.feature/pom.xml
trunk/struts/features/pom.xml
trunk/struts/plugins/org.jboss.tools.struts.text.ext/pom.xml
trunk/struts/plugins/org.jboss.tools.struts.ui/pom.xml
trunk/struts/plugins/org.jboss.tools.struts.validator.ui/META-INF/MANIFEST.MF
trunk/struts/plugins/org.jboss.tools.struts.validator.ui/pom.xml
trunk/struts/plugins/org.jboss.tools.struts.verification/META-INF/MANIFEST.MF
trunk/struts/plugins/org.jboss.tools.struts.verification/pom.xml
trunk/struts/plugins/org.jboss.tools.struts.vpe.struts/META-INF/MANIFEST.MF
trunk/struts/plugins/org.jboss.tools.struts.vpe.struts/pom.xml
trunk/struts/plugins/org.jboss.tools.struts/pom.xml
trunk/struts/plugins/pom.xml
trunk/struts/pom.xml
trunk/struts/site/pom.xml
trunk/struts/tests/org.jboss.tools.struts.text.ext.test/META-INF/MANIFEST.MF
trunk/struts/tests/org.jboss.tools.struts.text.ext.test/pom.xml
trunk/struts/tests/org.jboss.tools.struts.ui.bot.test/META-INF/MANIFEST.MF
trunk/struts/tests/org.jboss.tools.struts.ui.bot.test/pom.xml
trunk/struts/tests/org.jboss.tools.struts.vpe.struts.test/META-INF/MANIFEST.MF
trunk/struts/tests/org.jboss.tools.struts.vpe.struts.test/pom.xml
trunk/struts/tests/pom.xml
Log:
JBIDE-9268 aligned struts to 3.3.0
Modified: trunk/struts/features/org.jboss.tools.struts.feature/pom.xml
===================================================================
--- trunk/struts/features/org.jboss.tools.struts.feature/pom.xml 2011-07-27 16:25:46 UTC (rev 33254)
+++ trunk/struts/features/org.jboss.tools.struts.feature/pom.xml 2011-07-27 16:30:27 UTC (rev 33255)
@@ -4,10 +4,10 @@
<parent>
<groupId>org.jboss.tools.struts</groupId>
<artifactId>features</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.struts.features</groupId>
<artifactId>org.jboss.tools.struts.feature</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+
<packaging>eclipse-feature</packaging>
</project>
Modified: trunk/struts/features/pom.xml
===================================================================
--- trunk/struts/features/pom.xml 2011-07-27 16:25:46 UTC (rev 33254)
+++ trunk/struts/features/pom.xml 2011-07-27 16:30:27 UTC (rev 33255)
@@ -4,12 +4,12 @@
<parent>
<groupId>org.jboss.tools</groupId>
<artifactId>struts</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.struts</groupId>
<artifactId>features</artifactId>
<name>struts.features</name>
- <version>0.0.1-SNAPSHOT</version>
+
<packaging>pom</packaging>
<modules>
<module>org.jboss.tools.struts.feature</module>
Modified: trunk/struts/plugins/org.jboss.tools.struts/pom.xml
===================================================================
--- trunk/struts/plugins/org.jboss.tools.struts/pom.xml 2011-07-27 16:25:46 UTC (rev 33254)
+++ trunk/struts/plugins/org.jboss.tools.struts/pom.xml 2011-07-27 16:30:27 UTC (rev 33255)
@@ -4,10 +4,10 @@
<parent>
<groupId>org.jboss.tools.struts</groupId>
<artifactId>plugins</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.struts.plugins</groupId>
<artifactId>org.jboss.tools.struts</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/struts/plugins/org.jboss.tools.struts.text.ext/pom.xml
===================================================================
--- trunk/struts/plugins/org.jboss.tools.struts.text.ext/pom.xml 2011-07-27 16:25:46 UTC (rev 33254)
+++ trunk/struts/plugins/org.jboss.tools.struts.text.ext/pom.xml 2011-07-27 16:30:27 UTC (rev 33255)
@@ -4,10 +4,10 @@
<parent>
<groupId>org.jboss.tools.struts</groupId>
<artifactId>plugins</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.struts.plugins</groupId>
<artifactId>org.jboss.tools.struts.text.ext</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/struts/plugins/org.jboss.tools.struts.ui/pom.xml
===================================================================
--- trunk/struts/plugins/org.jboss.tools.struts.ui/pom.xml 2011-07-27 16:25:46 UTC (rev 33254)
+++ trunk/struts/plugins/org.jboss.tools.struts.ui/pom.xml 2011-07-27 16:30:27 UTC (rev 33255)
@@ -4,10 +4,10 @@
<parent>
<groupId>org.jboss.tools.struts</groupId>
<artifactId>plugins</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.struts.plugins</groupId>
<artifactId>org.jboss.tools.struts.ui</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/struts/plugins/org.jboss.tools.struts.validator.ui/META-INF/MANIFEST.MF
===================================================================
--- trunk/struts/plugins/org.jboss.tools.struts.validator.ui/META-INF/MANIFEST.MF 2011-07-27 16:25:46 UTC (rev 33254)
+++ trunk/struts/plugins/org.jboss.tools.struts.validator.ui/META-INF/MANIFEST.MF 2011-07-27 16:30:27 UTC (rev 33255)
@@ -26,6 +26,6 @@
org.eclipse.wst.xml.ui;bundle-version="1.1.200",
org.eclipse.core.resources;bundle-version="3.7.100",
org.eclipse.core.runtime;bundle-version="3.7.0"
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.3.0.qualifier
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Bundle-ActivationPolicy: lazy
Modified: trunk/struts/plugins/org.jboss.tools.struts.validator.ui/pom.xml
===================================================================
--- trunk/struts/plugins/org.jboss.tools.struts.validator.ui/pom.xml 2011-07-27 16:25:46 UTC (rev 33254)
+++ trunk/struts/plugins/org.jboss.tools.struts.validator.ui/pom.xml 2011-07-27 16:30:27 UTC (rev 33255)
@@ -4,10 +4,10 @@
<parent>
<groupId>org.jboss.tools.struts</groupId>
<artifactId>plugins</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.struts.plugins</groupId>
<artifactId>org.jboss.tools.struts.validator.ui</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/struts/plugins/org.jboss.tools.struts.verification/META-INF/MANIFEST.MF
===================================================================
--- trunk/struts/plugins/org.jboss.tools.struts.verification/META-INF/MANIFEST.MF 2011-07-27 16:25:46 UTC (rev 33254)
+++ trunk/struts/plugins/org.jboss.tools.struts.verification/META-INF/MANIFEST.MF 2011-07-27 16:30:27 UTC (rev 33255)
@@ -14,7 +14,7 @@
org.jboss.tools.struts,
org.eclipse.ui;bundle-version="3.7.0",
org.jboss.tools.jst.web.verification
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.3.0.qualifier
Bundle-Activator: org.jboss.tools.struts.verification.StrutsVerificationPlugin
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Bundle-ActivationPolicy: lazy
Modified: trunk/struts/plugins/org.jboss.tools.struts.verification/pom.xml
===================================================================
--- trunk/struts/plugins/org.jboss.tools.struts.verification/pom.xml 2011-07-27 16:25:46 UTC (rev 33254)
+++ trunk/struts/plugins/org.jboss.tools.struts.verification/pom.xml 2011-07-27 16:30:27 UTC (rev 33255)
@@ -4,10 +4,10 @@
<parent>
<groupId>org.jboss.tools.struts</groupId>
<artifactId>plugins</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.struts.plugins</groupId>
<artifactId>org.jboss.tools.struts.verification</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/struts/plugins/org.jboss.tools.struts.vpe.struts/META-INF/MANIFEST.MF
===================================================================
--- trunk/struts/plugins/org.jboss.tools.struts.vpe.struts/META-INF/MANIFEST.MF 2011-07-27 16:25:46 UTC (rev 33254)
+++ trunk/struts/plugins/org.jboss.tools.struts.vpe.struts/META-INF/MANIFEST.MF 2011-07-27 16:30:27 UTC (rev 33255)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %bundleName
Bundle-SymbolicName: org.jboss.tools.struts.vpe.struts;singleton:=true
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.3.0.qualifier
Require-Bundle: org.eclipse.ui;bundle-version="3.7.0",
org.eclipse.core.runtime;bundle-version="3.7.0",
org.jboss.tools.vpe
Modified: trunk/struts/plugins/org.jboss.tools.struts.vpe.struts/pom.xml
===================================================================
--- trunk/struts/plugins/org.jboss.tools.struts.vpe.struts/pom.xml 2011-07-27 16:25:46 UTC (rev 33254)
+++ trunk/struts/plugins/org.jboss.tools.struts.vpe.struts/pom.xml 2011-07-27 16:30:27 UTC (rev 33255)
@@ -4,10 +4,10 @@
<parent>
<groupId>org.jboss.tools.struts</groupId>
<artifactId>plugins</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.struts.plugins</groupId>
<artifactId>org.jboss.tools.struts.vpe.struts</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/struts/plugins/pom.xml
===================================================================
--- trunk/struts/plugins/pom.xml 2011-07-27 16:25:46 UTC (rev 33254)
+++ trunk/struts/plugins/pom.xml 2011-07-27 16:30:27 UTC (rev 33255)
@@ -4,12 +4,12 @@
<parent>
<groupId>org.jboss.tools</groupId>
<artifactId>struts</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.struts</groupId>
<artifactId>plugins</artifactId>
<name>struts.plugins</name>
- <version>0.0.1-SNAPSHOT</version>
+
<packaging>pom</packaging>
<modules>
<module>org.jboss.tools.struts</module>
Modified: trunk/struts/pom.xml
===================================================================
--- trunk/struts/pom.xml 2011-07-27 16:25:46 UTC (rev 33254)
+++ trunk/struts/pom.xml 2011-07-27 16:30:27 UTC (rev 33255)
@@ -10,7 +10,7 @@
<groupId>org.jboss.tools</groupId>
<artifactId>struts</artifactId>
<name>struts.all</name>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
<packaging>pom</packaging>
<modules>
<module>features</module>
Modified: trunk/struts/site/pom.xml
===================================================================
--- trunk/struts/site/pom.xml 2011-07-27 16:25:46 UTC (rev 33254)
+++ trunk/struts/site/pom.xml 2011-07-27 16:30:27 UTC (rev 33255)
@@ -4,11 +4,11 @@
<parent>
<groupId>org.jboss.tools</groupId>
<artifactId>struts</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.struts</groupId>
<artifactId>struts.site</artifactId>
<name>struts.site</name>
- <version>0.0.1-SNAPSHOT</version>
+
<packaging>eclipse-update-site</packaging>
</project>
Modified: trunk/struts/tests/org.jboss.tools.struts.text.ext.test/META-INF/MANIFEST.MF
===================================================================
--- trunk/struts/tests/org.jboss.tools.struts.text.ext.test/META-INF/MANIFEST.MF 2011-07-27 16:25:46 UTC (rev 33254)
+++ trunk/struts/tests/org.jboss.tools.struts.text.ext.test/META-INF/MANIFEST.MF 2011-07-27 16:30:27 UTC (rev 33255)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.struts.text.ext.test;singleton:=true
-Bundle-Version: 3.2.0.qualifier
+Bundle-Version: 3.3.0.qualifier
Require-Bundle: org.junit,
org.jboss.tools.common.model.ui,
org.jboss.tools.tests,
Modified: trunk/struts/tests/org.jboss.tools.struts.text.ext.test/pom.xml
===================================================================
--- trunk/struts/tests/org.jboss.tools.struts.text.ext.test/pom.xml 2011-07-27 16:25:46 UTC (rev 33254)
+++ trunk/struts/tests/org.jboss.tools.struts.text.ext.test/pom.xml 2011-07-27 16:30:27 UTC (rev 33255)
@@ -4,11 +4,11 @@
<parent>
<groupId>org.jboss.tools.struts</groupId>
<artifactId>tests</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.struts.tests</groupId>
<artifactId>org.jboss.tools.struts.text.ext.test</artifactId>
- <version>3.2.0-SNAPSHOT</version>
+
<packaging>eclipse-test-plugin</packaging>
<properties>
<emma.filter>org.jboss.tools*</emma.filter>
Modified: trunk/struts/tests/org.jboss.tools.struts.ui.bot.test/META-INF/MANIFEST.MF
===================================================================
--- trunk/struts/tests/org.jboss.tools.struts.ui.bot.test/META-INF/MANIFEST.MF 2011-07-27 16:25:46 UTC (rev 33254)
+++ trunk/struts/tests/org.jboss.tools.struts.ui.bot.test/META-INF/MANIFEST.MF 2011-07-27 16:30:27 UTC (rev 33255)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: Struts UI SWTBot Tests
Bundle-SymbolicName: org.jboss.tools.struts.ui.bot.test
-Bundle-Version: 3.2.0.qualifier
+Bundle-Version: 3.3.0.qualifier
Bundle-Activator: org.jboss.tools.struts.ui.bot.test.Activator
Require-Bundle: org.apache.log4j;bundle-version="1.2.13",
org.eclipse.core.runtime,
Modified: trunk/struts/tests/org.jboss.tools.struts.ui.bot.test/pom.xml
===================================================================
--- trunk/struts/tests/org.jboss.tools.struts.ui.bot.test/pom.xml 2011-07-27 16:25:46 UTC (rev 33254)
+++ trunk/struts/tests/org.jboss.tools.struts.ui.bot.test/pom.xml 2011-07-27 16:30:27 UTC (rev 33255)
@@ -4,11 +4,11 @@
<parent>
<groupId>org.jboss.tools.struts</groupId>
<artifactId>tests</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.struts.tests</groupId>
<artifactId>org.jboss.tools.struts.ui.bot.test</artifactId>
- <version>3.2.0-SNAPSHOT</version>
+
<packaging>eclipse-test-plugin</packaging>
<build>
<plugins>
Modified: trunk/struts/tests/org.jboss.tools.struts.vpe.struts.test/META-INF/MANIFEST.MF
===================================================================
--- trunk/struts/tests/org.jboss.tools.struts.vpe.struts.test/META-INF/MANIFEST.MF 2011-07-27 16:25:46 UTC (rev 33254)
+++ trunk/struts/tests/org.jboss.tools.struts.vpe.struts.test/META-INF/MANIFEST.MF 2011-07-27 16:30:27 UTC (rev 33255)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.struts.vpe.struts.test;singleton:=true
-Bundle-Version: 3.2.0.qualifier
+Bundle-Version: 3.3.0.qualifier
Bundle-Activator: org.jboss.tools.struts.vpe.struts.test.StrutsTestPlugin
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime,
Modified: trunk/struts/tests/org.jboss.tools.struts.vpe.struts.test/pom.xml
===================================================================
--- trunk/struts/tests/org.jboss.tools.struts.vpe.struts.test/pom.xml 2011-07-27 16:25:46 UTC (rev 33254)
+++ trunk/struts/tests/org.jboss.tools.struts.vpe.struts.test/pom.xml 2011-07-27 16:30:27 UTC (rev 33255)
@@ -4,11 +4,11 @@
<parent>
<groupId>org.jboss.tools.struts</groupId>
<artifactId>tests</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.struts.tests</groupId>
<artifactId>org.jboss.tools.struts.vpe.struts.test</artifactId>
- <version>3.2.0-SNAPSHOT</version>
+
<packaging>eclipse-test-plugin</packaging>
<properties>
<emma.filter>org.jboss.tools*</emma.filter>
Modified: trunk/struts/tests/pom.xml
===================================================================
--- trunk/struts/tests/pom.xml 2011-07-27 16:25:46 UTC (rev 33254)
+++ trunk/struts/tests/pom.xml 2011-07-27 16:30:27 UTC (rev 33255)
@@ -4,12 +4,12 @@
<parent>
<groupId>org.jboss.tools</groupId>
<artifactId>struts</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.struts</groupId>
<artifactId>tests</artifactId>
<name>struts.tests</name>
- <version>0.0.1-SNAPSHOT</version>
+
<packaging>pom</packaging>
<modules>
<module>org.jboss.tools.struts.text.ext.test</module>
13 years, 6 months