JBoss Tools SVN: r30960 - in trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test: projects/CDIConfigTest/src/org/jboss/test605 and 1 other directories.
by jbosstools-commits@lists.jboss.org
Author: scabanovich
Date: 2011-04-28 21:31:55 -0400 (Thu, 28 Apr 2011)
New Revision: 30960
Added:
trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/projects/CDIConfigTest/src/org/jboss/test605/MethodBean3.java
trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/projects/CDIConfigTest/src/org/jboss/test605/MethodBean4.java
Modified:
trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/projects/CDIConfigTest/src/META-INF/beans.xml
trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/projects/CDIConfigTest/src/org/jboss/test605/MethodBean.java
trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/projects/CDIConfigTest/src/org/jboss/test605/MethodBean2.java
trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/src/org/jboss/tools/cdi/seam/config/core/test/SeamDefinitionsTest.java
Log:
JBIDE-3120
https://issues.jboss.org/browse/JBIDE-3120
Modified: trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/projects/CDIConfigTest/src/META-INF/beans.xml
===================================================================
--- trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/projects/CDIConfigTest/src/META-INF/beans.xml 2011-04-29 01:31:29 UTC (rev 30959)
+++ trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/projects/CDIConfigTest/src/META-INF/beans.xml 2011-04-29 01:31:55 UTC (rev 30960)
@@ -120,6 +120,17 @@
</test605:doStuff>
</test605:MethodBean>
+<test605:MethodBean3>
+ <test605:name>
+ </test605:name>
+</test605:MethodBean3>
+
+<test605:MethodBean4>
+ <test605:name>
+ <s:parameters/>
+ </test605:name>
+</test605:MethodBean4>
+
<test605:MethodBean2>
<test605:method>
<s:array>
Modified: trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/projects/CDIConfigTest/src/org/jboss/test605/MethodBean.java
===================================================================
--- trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/projects/CDIConfigTest/src/org/jboss/test605/MethodBean.java 2011-04-29 01:31:29 UTC (rev 30959)
+++ trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/projects/CDIConfigTest/src/org/jboss/test605/MethodBean.java 2011-04-29 01:31:55 UTC (rev 30960)
@@ -1,5 +1,36 @@
package org.jboss.test605;
+/**
+ * 6.5. Configuring methods
+ * It is also possible to configure methods in a similar way to configuring fields:
+<test605:MethodBean>
+ <test605:doStuff>
+ <s:Produces/>
+ </test605:doStuff>
+
+ <test605:doStuff>
+ <s:Produces/>
+ <test605:Qualifier1/>
+ <s:parameters>
+ <s:Long>
+ <test605:Qualifier2/>
+ </s:Long>
+ </s:parameters>
+ </test605:doStuff>
+
+ <test605:doStuff>
+ <s:Produces/>
+ <test605:Qualifier1/>
+ <s:parameters>
+ <s:array dimensions="2">
+ <test605:Qualifier2/>
+ <s:Long/>
+ </s:array>
+ </s:parameters>
+ </test605:doStuff>
+</test605:MethodBean>
+ *
+ */
public class MethodBean {
public int doStuff() {
Modified: trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/projects/CDIConfigTest/src/org/jboss/test605/MethodBean2.java
===================================================================
--- trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/projects/CDIConfigTest/src/org/jboss/test605/MethodBean2.java 2011-04-29 01:31:29 UTC (rev 30959)
+++ trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/projects/CDIConfigTest/src/org/jboss/test605/MethodBean2.java 2011-04-29 01:31:55 UTC (rev 30960)
@@ -1,5 +1,16 @@
package org.jboss.test605;
+/**
+ * 6.5. Configuring methods
+ * Array parameters can be represented using the <s:array> element,
+ * with a child element to represent the type of the array.
+ * E.g. int method(String[] param); could be configured via xml using the following:
+<my:method>
+ <s:array>
+ <my:MethodValueBean/>
+ </s:array>
+</my:method>
+ */
public class MethodBean2 {
public void method(String[] s) {
Added: trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/projects/CDIConfigTest/src/org/jboss/test605/MethodBean3.java
===================================================================
--- trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/projects/CDIConfigTest/src/org/jboss/test605/MethodBean3.java (rev 0)
+++ trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/projects/CDIConfigTest/src/org/jboss/test605/MethodBean3.java 2011-04-29 01:31:55 UTC (rev 30960)
@@ -0,0 +1,22 @@
+package org.jboss.test605;
+
+/**
+ * 6.5.Note
+ * If a class has a field and a method of the same name then by default the field
+ * will be resolved, unless the element has a child <parameters> element,
+ * in which case it is resolved as a method.
+ * In the next example field must be resolved.
+<test605:MethodBean3>
+ <test605:name>
+ </test605:name>
+</test605:MethodBean3>
+ *
+ */
+public class MethodBean3 {
+ String name;
+
+ String name() {
+ return "";
+ }
+
+}
Property changes on: trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/projects/CDIConfigTest/src/org/jboss/test605/MethodBean3.java
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/projects/CDIConfigTest/src/org/jboss/test605/MethodBean4.java
===================================================================
--- trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/projects/CDIConfigTest/src/org/jboss/test605/MethodBean4.java (rev 0)
+++ trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/projects/CDIConfigTest/src/org/jboss/test605/MethodBean4.java 2011-04-29 01:31:55 UTC (rev 30960)
@@ -0,0 +1,23 @@
+package org.jboss.test605;
+
+/**
+ * 6.5.Note
+ * If a class has a field and a method of the same name then by default the field
+ * will be resolved, unless the element has a child <parameters> element,
+ * in which case it is resolved as a method.
+ * In the next example method must be resolved.
+<test605:MethodBean3>
+ <test605:name>
+ <s:parameters/>
+ </test605:name>
+</test605:MethodBean3>
+ *
+ */
+public class MethodBean4 {
+ String name;
+
+ String name() {
+ return "";
+ }
+
+}
Property changes on: trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/projects/CDIConfigTest/src/org/jboss/test605/MethodBean4.java
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Modified: trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/src/org/jboss/tools/cdi/seam/config/core/test/SeamDefinitionsTest.java
===================================================================
--- trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/src/org/jboss/tools/cdi/seam/config/core/test/SeamDefinitionsTest.java 2011-04-29 01:31:29 UTC (rev 30959)
+++ trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/src/org/jboss/tools/cdi/seam/config/core/test/SeamDefinitionsTest.java 2011-04-29 01:31:55 UTC (rev 30960)
@@ -30,6 +30,7 @@
import org.jboss.tools.cdi.core.IQualifier;
import org.jboss.tools.cdi.core.IStereotype;
import org.jboss.tools.cdi.core.extension.feature.IBuildParticipantFeature;
+import org.jboss.tools.cdi.internal.core.impl.BeanField;
import org.jboss.tools.cdi.seam.config.core.CDISeamConfigConstants;
import org.jboss.tools.cdi.seam.config.core.CDISeamConfigExtension;
import org.jboss.tools.cdi.seam.config.core.ConfigDefinitionContext;
@@ -369,6 +370,27 @@
}
+ public void testResolvingBetweenFieldAndMethod() {
+ ICDIProject cdi = CDICorePlugin.getCDIProject(project, true);
+ ConfigDefinitionContext context = (ConfigDefinitionContext)getConfigExtension(cdi).getContext();
+ SeamBeansDefinition d = getBeansDefinition(context, "src/META-INF/beans.xml");
+
+ Set<SeamBeanDefinition> ds = findBeanDefinitionByTagName(d, "test605:MethodBean3");
+ assertEquals(1, ds.size());
+ SeamBeanDefinition b = ds.iterator().next();
+ SeamFieldDefinition f = b.getField("name");
+ assertNotNull(f);
+
+ ds = findBeanDefinitionByTagName(d, "test605:MethodBean4");
+ assertEquals(1, ds.size());
+ b = ds.iterator().next();
+ List<SeamMethodDefinition> ms = b.getMethods();
+ assertEquals(1, ms.size());
+ SeamMethodDefinition m = ms.get(0);
+ assertEquals("name", m.getMethod().getElementName());
+
+ }
+
/**
<test606:MyBean>
<s:parameters>
13 years, 8 months
JBoss Tools SVN: r30959 - in trunk/cdi/plugins/org.jboss.tools.cdi.seam.config.core/src/org/jboss/tools/cdi/seam/config/core: definition and 1 other directories.
by jbosstools-commits@lists.jboss.org
Author: scabanovich
Date: 2011-04-28 21:31:29 -0400 (Thu, 28 Apr 2011)
New Revision: 30959
Modified:
trunk/cdi/plugins/org.jboss.tools.cdi.seam.config.core/src/org/jboss/tools/cdi/seam/config/core/CDISeamConfigExtension.java
trunk/cdi/plugins/org.jboss.tools.cdi.seam.config.core/src/org/jboss/tools/cdi/seam/config/core/ConfigDefinitionContext.java
trunk/cdi/plugins/org.jboss.tools.cdi.seam.config.core/src/org/jboss/tools/cdi/seam/config/core/definition/SeamBeansDefinition.java
trunk/cdi/plugins/org.jboss.tools.cdi.seam.config.core/src/org/jboss/tools/cdi/seam/config/core/util/Util.java
Log:
JBIDE-3120
https://issues.jboss.org/browse/JBIDE-3120
Modified: trunk/cdi/plugins/org.jboss.tools.cdi.seam.config.core/src/org/jboss/tools/cdi/seam/config/core/CDISeamConfigExtension.java
===================================================================
--- trunk/cdi/plugins/org.jboss.tools.cdi.seam.config.core/src/org/jboss/tools/cdi/seam/config/core/CDISeamConfigExtension.java 2011-04-29 01:30:52 UTC (rev 30958)
+++ trunk/cdi/plugins/org.jboss.tools.cdi.seam.config.core/src/org/jboss/tools/cdi/seam/config/core/CDISeamConfigExtension.java 2011-04-29 01:31:29 UTC (rev 30959)
@@ -11,6 +11,8 @@
package org.jboss.tools.cdi.seam.config.core;
+import java.util.ArrayList;
+import java.util.List;
import java.util.Set;
import org.eclipse.core.resources.IFile;
@@ -75,6 +77,7 @@
}
public void buildDefinitions() {
+ List<SeamBeansDefinition> newDefinitions = new ArrayList<SeamBeansDefinition>();
Set<IPath> paths = fileSet.getAllPaths();
for (IPath p: paths) {
boolean isSeamBeans = false;
@@ -90,6 +93,7 @@
SeamDefinitionBuilder builder = new SeamDefinitionBuilder();
document.set(text);
SeamBeansDefinition def = builder.createDefinition(resource, document, project, context.getWorkingCopy());
+ newDefinitions.add(def);
if(isSeamBeans) {
context.getWorkingCopy().addSeamBeanXML(p, def);
} else {
@@ -97,6 +101,11 @@
}
}
}
+
+ for (SeamBeansDefinition def: newDefinitions) {
+ //Or, should we just build through all context?
+ def.buildTypeDefinitions(context.getWorkingCopy());
+ }
//TODO
}
Modified: trunk/cdi/plugins/org.jboss.tools.cdi.seam.config.core/src/org/jboss/tools/cdi/seam/config/core/ConfigDefinitionContext.java
===================================================================
--- trunk/cdi/plugins/org.jboss.tools.cdi.seam.config.core/src/org/jboss/tools/cdi/seam/config/core/ConfigDefinitionContext.java 2011-04-29 01:30:52 UTC (rev 30958)
+++ trunk/cdi/plugins/org.jboss.tools.cdi.seam.config.core/src/org/jboss/tools/cdi/seam/config/core/ConfigDefinitionContext.java 2011-04-29 01:31:29 UTC (rev 30959)
@@ -81,10 +81,12 @@
public void clean(IPath path) {
synchronized (beanXMLs) {
- beanXMLs.remove(path);
+ SeamBeansDefinition def = beanXMLs.remove(path);
+ if(def != null) def.clean(this);
}
synchronized (seambeanXMLs) {
- seambeanXMLs.remove(path);
+ SeamBeansDefinition def = seambeanXMLs.remove(path);
+ if(def != null) def.clean(this);
}
}
Modified: trunk/cdi/plugins/org.jboss.tools.cdi.seam.config.core/src/org/jboss/tools/cdi/seam/config/core/definition/SeamBeansDefinition.java
===================================================================
--- trunk/cdi/plugins/org.jboss.tools.cdi.seam.config.core/src/org/jboss/tools/cdi/seam/config/core/definition/SeamBeansDefinition.java 2011-04-29 01:30:52 UTC (rev 30958)
+++ trunk/cdi/plugins/org.jboss.tools.cdi.seam.config.core/src/org/jboss/tools/cdi/seam/config/core/definition/SeamBeansDefinition.java 2011-04-29 01:31:29 UTC (rev 30959)
@@ -10,11 +10,16 @@
******************************************************************************/
package org.jboss.tools.cdi.seam.config.core.definition;
+import java.util.ArrayList;
import java.util.HashMap;
import java.util.HashSet;
+import java.util.List;
import java.util.Map;
import java.util.Set;
+import org.eclipse.jdt.core.IType;
+import org.jboss.tools.cdi.internal.core.impl.definition.TypeDefinition;
+import org.jboss.tools.cdi.seam.config.core.ConfigDefinitionContext;
import org.jboss.tools.cdi.seam.config.core.scanner.SAXNode;
/**
@@ -27,6 +32,9 @@
Set<SeamBeanDefinition> beanDefinitions = new HashSet<SeamBeanDefinition>();
Set<SeamVirtualFieldDefinition> virtualFieldDefinitions = new HashSet<SeamVirtualFieldDefinition>();
+
+ List<TypeDefinition> typeDefinitions = new ArrayList<TypeDefinition>();
+ List<IType> replacedAndModified = new ArrayList<IType>();
public SeamBeansDefinition() {}
@@ -54,4 +62,31 @@
return virtualFieldDefinitions;
}
+ public List<TypeDefinition> getTypeDefinitions() {
+ return typeDefinitions;
+ }
+
+ public void buildTypeDefinitions(ConfigDefinitionContext context) {
+ for (SeamBeanDefinition def: beanDefinitions) {
+ IType type = def.getType();
+ TypeDefinition typeDef = new TypeDefinition();
+ boolean replaces = def.getReplacesLocation() != null;
+ boolean modifies = def.getModifiesLocation() != null;
+ if(replaces || modifies) {
+ //TODO veto type in root context
+ }
+ //TODO Initialize typeDef taking into account replaces and modifies
+ typeDef.setType(type, context.getRootContext());
+ //TODO merge seam definitions into typeDef and add to typeDefinitions
+ }
+ }
+
+ public void clean(ConfigDefinitionContext context) {
+ List<IType> ds = replacedAndModified;
+ replacedAndModified = new ArrayList<IType>();
+ for (IType type: ds) {
+ //TODO unveto type in root context
+ }
+ }
+
}
Modified: trunk/cdi/plugins/org.jboss.tools.cdi.seam.config.core/src/org/jboss/tools/cdi/seam/config/core/util/Util.java
===================================================================
--- trunk/cdi/plugins/org.jboss.tools.cdi.seam.config.core/src/org/jboss/tools/cdi/seam/config/core/util/Util.java 2011-04-29 01:30:52 UTC (rev 30958)
+++ trunk/cdi/plugins/org.jboss.tools.cdi.seam.config.core/src/org/jboss/tools/cdi/seam/config/core/util/Util.java 2011-04-29 01:31:29 UTC (rev 30959)
@@ -119,13 +119,13 @@
public static IMember resolveMember(IType type, SAXElement element) throws JavaModelException {
String name = element.getLocalName();
IField f = type.getField(name);
- if(f != null && f.exists()) {
+ if(f != null && f.exists() && !hasParametersOrArrayChild(element)) {
return f;
}
IMethod[] ms = type.getMethods();
for (IMethod m: ms) {
if(name.equals(m.getElementName())) {
- //do more checks
+ //that is only a preliminary resolving. Exact method will be found on loading parameters.
return m;
}
}
@@ -197,6 +197,14 @@
return false;
}
+ public static boolean hasParametersOrArrayChild(SAXElement element) {
+ List<SAXElement> cs = element.getChildElements();
+ for (SAXElement c: cs) {
+ if(isParameters(c) || isArray(c)) return true;
+ }
+ return false;
+ }
+
/**
*
* @param def
13 years, 8 months
JBoss Tools SVN: r30958 - in trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi: core/extension and 1 other directories.
by jbosstools-commits@lists.jboss.org
Author: scabanovich
Date: 2011-04-28 21:30:52 -0400 (Thu, 28 Apr 2011)
New Revision: 30958
Modified:
trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/core/IDefinitionContext.java
trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/core/extension/AbstractDefinitionContextExtension.java
trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/internal/core/impl/definition/AbstractTypeDefinition.java
trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/internal/core/impl/definition/DefinitionContext.java
Log:
JBIDE-3120
https://issues.jboss.org/browse/JBIDE-3120
Modified: trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/core/IDefinitionContext.java
===================================================================
--- trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/core/IDefinitionContext.java 2011-04-28 23:57:26 UTC (rev 30957)
+++ trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/core/IDefinitionContext.java 2011-04-29 01:30:52 UTC (rev 30958)
@@ -10,7 +10,10 @@
******************************************************************************/
package org.jboss.tools.cdi.core;
+import java.util.List;
+
import org.eclipse.core.runtime.IPath;
+import org.jboss.tools.cdi.internal.core.impl.definition.TypeDefinition;
/**
*
@@ -57,4 +60,11 @@
*/
public void clean(String typeName);
+ /**
+ * Returns list of TypeDefinition defined and stored inside this context.
+ *
+ * @return list of TypeDefinition defined and stored inside this context
+ */
+ public List<TypeDefinition> getTypeDefinitions();
+
}
Modified: trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/core/extension/AbstractDefinitionContextExtension.java
===================================================================
--- trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/core/extension/AbstractDefinitionContextExtension.java 2011-04-28 23:57:26 UTC (rev 30957)
+++ trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/core/extension/AbstractDefinitionContextExtension.java 2011-04-29 01:30:52 UTC (rev 30958)
@@ -1,11 +1,29 @@
+/*******************************************************************************
+ * 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;
+import java.util.ArrayList;
+import java.util.Collections;
+import java.util.List;
+
import org.eclipse.core.runtime.IPath;
-import org.eclipse.jdt.core.IType;
-import org.jboss.tools.cdi.core.CDIConstants;
import org.jboss.tools.cdi.core.IRootDefinitionContext;
import org.jboss.tools.cdi.internal.core.impl.definition.AnnotationDefinition;
+import org.jboss.tools.cdi.internal.core.impl.definition.TypeDefinition;
+/**
+ *
+ * @author Viacheslav Kabanovich
+ *
+ */
public abstract class AbstractDefinitionContextExtension implements IDefinitionContextExtension {
protected IRootDefinitionContext root;
@@ -69,4 +87,10 @@
}
+ private static List<TypeDefinition> EMPTY_LIST = Collections.unmodifiableList(new ArrayList<TypeDefinition>());
+
+ public List<TypeDefinition> getTypeDefinitions() {
+ return EMPTY_LIST;
+ }
+
}
Modified: trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/internal/core/impl/definition/AbstractTypeDefinition.java
===================================================================
--- trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/internal/core/impl/definition/AbstractTypeDefinition.java 2011-04-28 23:57:26 UTC (rev 30957)
+++ trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/internal/core/impl/definition/AbstractTypeDefinition.java 2011-04-29 01:30:52 UTC (rev 30958)
@@ -45,6 +45,10 @@
isVetoed = true;
}
+ public void unveto() {
+ isVetoed = false;
+ }
+
public boolean isVetoed() {
return isVetoed;
}
Modified: trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/internal/core/impl/definition/DefinitionContext.java
===================================================================
--- trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/internal/core/impl/definition/DefinitionContext.java 2011-04-28 23:57:26 UTC (rev 30957)
+++ trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/internal/core/impl/definition/DefinitionContext.java 2011-04-29 01:30:52 UTC (rev 30958)
@@ -418,6 +418,10 @@
synchronized (typeDefinitions) {
result.addAll(typeDefinitions.values());
}
+ for (IDefinitionContextExtension e: extensions) {
+ List<TypeDefinition> ds = e.getTypeDefinitions();
+ if(ds != null && !ds.isEmpty()) result.addAll(ds);
+ }
return result;
}
13 years, 8 months
JBoss Tools SVN: r30957 - in trunk/cdi/tests/org.jboss.tools.cdi.ui.test/src/org/jboss/tools/cdi/ui/test: marker and 1 other directories.
by jbosstools-commits@lists.jboss.org
Author: dazarov
Date: 2011-04-28 19:57:26 -0400 (Thu, 28 Apr 2011)
New Revision: 30957
Modified:
trunk/cdi/tests/org.jboss.tools.cdi.ui.test/src/org/jboss/tools/cdi/ui/test/CDIUIAllTests.java
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/search/CDISearchParticipantTest.java
Log:
https://issues.jboss.org/browse/JBIDE-8799
Modified: trunk/cdi/tests/org.jboss.tools.cdi.ui.test/src/org/jboss/tools/cdi/ui/test/CDIUIAllTests.java
===================================================================
--- trunk/cdi/tests/org.jboss.tools.cdi.ui.test/src/org/jboss/tools/cdi/ui/test/CDIUIAllTests.java 2011-04-28 23:52:54 UTC (rev 30956)
+++ trunk/cdi/tests/org.jboss.tools.cdi.ui.test/src/org/jboss/tools/cdi/ui/test/CDIUIAllTests.java 2011-04-28 23:57:26 UTC (rev 30957)
@@ -14,6 +14,7 @@
import junit.framework.TestSuite;
import org.eclipse.jdt.internal.core.JavaModelManager;
+import org.jboss.tools.cdi.core.test.CDICoreTestSetup;
import org.jboss.tools.cdi.ui.test.marker.CDIMarkerResolutionTest;
import org.jboss.tools.cdi.ui.test.perspective.CDIPerspectiveTest;
import org.jboss.tools.cdi.ui.test.preferences.CDIPreferencePageTest;
@@ -29,16 +30,22 @@
public static Test suite() {
// it could be done here because it is not needed to be enabled back
JavaModelManager.getIndexManager().disable();
-
- TestSuite suite = new TestSuite("CDI UI Tests");
- suite.addTestSuite(CDIMarkerResolutionTest.class);
- suite.addTestSuite(CATest.class);
- suite.addTestSuite(NewCDIWizardTest.class);
- suite.addTestSuite(CDIPreferencePageTest.class);
- suite.addTestSuite(NewCDIClassWizardFactoryTest.class);
- suite.addTestSuite(CDIPerspectiveTest.class);
+
+ TestSuite suiteAll = new TestSuite("CDI UI Tests");
+
+ TestSuite suite = new TestSuite("TCK Tests");
suite.addTestSuite(CDISearchParticipantTest.class);
+ suiteAll.addTestSuite(CDIMarkerResolutionTest.class);
+
+
+ suiteAll.addTestSuite(CDIPerspectiveTest.class);
+ suiteAll.addTestSuite(NewCDIClassWizardFactoryTest.class);
+ suiteAll.addTestSuite(CDIPreferencePageTest.class);
+ suiteAll.addTestSuite(NewCDIWizardTest.class);
+ suiteAll.addTestSuite(CATest.class);
+
+ suiteAll.addTest(new CDICoreTestSetup(suite));
- return suite;
+ return suiteAll;
}
}
\ No newline at end of file
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-04-28 23:52:54 UTC (rev 30956)
+++ trunk/cdi/tests/org.jboss.tools.cdi.ui.test/src/org/jboss/tools/cdi/ui/test/marker/CDIMarkerResolutionTest.java 2011-04-28 23:57:26 UTC (rev 30957)
@@ -16,7 +16,6 @@
import org.eclipse.core.resources.IFile;
import org.eclipse.core.resources.IMarker;
-import org.eclipse.core.resources.IProject;
import org.eclipse.core.resources.IResource;
import org.eclipse.core.resources.IncrementalProjectBuilder;
import org.eclipse.core.runtime.CoreException;
@@ -25,7 +24,6 @@
import org.eclipse.ltk.core.refactoring.Change;
import org.eclipse.ltk.core.refactoring.CompositeChange;
import org.eclipse.ltk.core.refactoring.RefactoringStatus;
-import org.eclipse.ltk.core.refactoring.RefactoringStatusEntry;
import org.eclipse.ltk.core.refactoring.TextFileChange;
import org.eclipse.ltk.core.refactoring.participants.RefactoringProcessor;
import org.eclipse.ui.IMarkerResolution;
@@ -43,11 +41,12 @@
import org.jboss.tools.cdi.ui.marker.MakeMethodBusinessMarkerResolution;
import org.jboss.tools.cdi.ui.marker.MakeMethodPublicMarkerResolution;
import org.jboss.tools.cdi.ui.marker.SelectBeanMarkerResolution;
-import org.jboss.tools.cdi.ui.marker.TestableResolutionWithRefactoringProcessor;
import org.jboss.tools.cdi.ui.marker.TestableResolutionWithDialog;
+import org.jboss.tools.cdi.ui.marker.TestableResolutionWithRefactoringProcessor;
import org.jboss.tools.common.EclipseUtil;
import org.jboss.tools.common.util.FileUtil;
import org.jboss.tools.test.util.JobUtils;
+import org.jboss.tools.test.util.ResourcesUtils;
/**
* @author Daniel Azarov
@@ -56,16 +55,16 @@
public class CDIMarkerResolutionTest extends ValidationTest {
public static final String MARKER_TYPE = "org.jboss.tools.cdi.core.cdiproblem";
- private void checkResolution(IProject project, String[] fileNames, String markerType, String idName, int id, Class<? extends IMarkerResolution> resolutionClass) throws CoreException {
- checkResolution(project, fileNames, new String[]{}, markerType, idName, id, resolutionClass);
+ private void checkResolution(String[] fileNames, String markerType, String idName, int id, Class<? extends IMarkerResolution> resolutionClass) throws CoreException {
+ checkResolution(fileNames, new String[]{}, markerType, idName, id, resolutionClass);
}
- private void checkResolution(IProject project, String[] fileNames, String[] results, String markerType, String idName, int id, Class<? extends IMarkerResolution> resolutionClass) throws CoreException {
- IFile file = project.getFile(fileNames[0]);
+ private void checkResolution(String[] fileNames, String[] results, String markerType, String idName, int id, Class<? extends IMarkerResolution> resolutionClass) throws CoreException {
+ IFile file = tckProject.getFile(fileNames[0]);
assertTrue("File - "+file.getFullPath()+" must be exist",file.exists());
- copyFiles(project, fileNames);
+ copyFiles(fileNames);
try{
IMarker[] markers = file.findMarkers(markerType, true, IResource.DEPTH_INFINITE);
@@ -77,7 +76,7 @@
if (attribute != null){
int messageId = attribute.intValue();
if(messageId == id){
- String text = (String)marker.getAttribute(IMarker.MESSAGE,"none");
+ //String text = (String)marker.getAttribute(IMarker.MESSAGE,"none");
IMarkerResolution[] resolutions = IDE.getMarkerHelpRegistry()
.getResolutions(marker);
@@ -128,13 +127,13 @@
resolution.run(marker);
}
- refresh(project);
+ refresh();
IMarker[] newMarkers = file.findMarkers(markerType, true, IResource.DEPTH_INFINITE);
assertTrue("Marker resolution did not decrease number of problems. was: "+markers.length+" now: "+newMarkers.length, newMarkers.length < markers.length);
- checkResults(project, fileNames, results);
+ checkResults(fileNames, results);
return;
}
}
@@ -144,24 +143,24 @@
}
fail("Problem marker with id: "+id+" not found");
}finally{
- restoreFiles(project, fileNames);
+ restoreFiles(fileNames);
- refresh(project);
+ refresh();
}
}
- private void refresh(IProject project) throws CoreException{
- project.refreshLocal(IResource.DEPTH_INFINITE, new NullProgressMonitor());
- JobUtils.waitForIdle();
- project.build(IncrementalProjectBuilder.INCREMENTAL_BUILD, null);
- JobUtils.waitForIdle();
+ private void refresh() throws CoreException{
+ tckProject.refreshLocal(IResource.DEPTH_INFINITE, new NullProgressMonitor());
+ JobUtils.waitForIdle(2000);
+ tckProject.build(IncrementalProjectBuilder.INCREMENTAL_BUILD, null);
+ JobUtils.waitForIdle(2000);
}
- private void copyFiles(IProject project, String[] fileNames) throws CoreException{
+ private void copyFiles(String[] fileNames) throws CoreException{
for(String fileName : fileNames){
- IFile file = project.getFile(fileName);
- IFile copyFile = project.getFile(fileName+".copy");
+ IFile file = tckProject.getFile(fileName);
+ IFile copyFile = tckProject.getFile(fileName+".copy");
if(copyFile.exists())
copyFile.delete(true, null);
@@ -182,10 +181,10 @@
}
}
- private void restoreFiles(IProject project, String[] fileNames) throws CoreException {
+ private void restoreFiles(String[] fileNames) throws CoreException {
for(String fileName : fileNames){
- IFile file = project.getFile(fileName);
- IFile copyFile = project.getFile(fileName+".copy");
+ IFile file = tckProject.getFile(fileName);
+ IFile copyFile = tckProject.getFile(fileName+".copy");
InputStream is = null;
try{
is = copyFile.getContents();
@@ -203,10 +202,10 @@
}
}
- private void checkResults(IProject project, String[] fileNames, String[] results) throws CoreException{
+ private void checkResults(String[] fileNames, String[] results) throws CoreException{
for(int i = 0; i < results.length; i++){
- IFile file = project.getFile(fileNames[i]);
- IFile resultFile = project.getFile(results[i]);
+ IFile file = tckProject.getFile(fileNames[i]);
+ IFile resultFile = tckProject.getFile(results[i]);
String fileContent = FileUtil.readStream(file);
String resultContent = FileUtil.readStream(resultFile);
@@ -217,7 +216,7 @@
}
public void testMakeProducerFieldStaticResolution() throws CoreException {
- checkResolution(tckProject,
+ checkResolution(
new String[]{
"JavaSource/org/jboss/jsr299/tck/tests/jbt/quickfixes/NonStaticProducerOfSessionBeanBroken.java"
},
@@ -232,7 +231,6 @@
public void testMakeProducerMethodBusinessResolution() throws CoreException {
checkResolution(
- tckProject,
new String[]{
"JavaSource/org/jboss/jsr299/tck/tests/jbt/quickfixes/FooProducer.java",
"JavaSource/org/jboss/jsr299/tck/tests/jbt/quickfixes/FooProducerLocal.java"
@@ -249,7 +247,6 @@
public void testAddLocalBeanResolution() throws CoreException {
checkResolution(
- tckProject,
new String[]{
"JavaSource/org/jboss/jsr299/tck/tests/jbt/quickfixes/FooProducer.java"
},
@@ -263,7 +260,7 @@
}
public void testMakeProducerMethodPublicResolution() throws CoreException {
- checkResolution(tckProject,
+ checkResolution(
new String[]{
"JavaSource/org/jboss/jsr299/tck/tests/jbt/quickfixes/FooProducerNoInterface.java"
},
@@ -277,7 +274,7 @@
}
public void testMakeObserverParamMethodBusinessResolution() throws CoreException {
- checkResolution(tckProject,
+ checkResolution(
new String[]{
"JavaSource/org/jboss/jsr299/tck/tests/jbt/quickfixes/TibetanTerrier_Broken.java",
"JavaSource/org/jboss/jsr299/tck/tests/jbt/quickfixes/Terrier.java"
@@ -293,7 +290,7 @@
}
public void testAddLocalBeanResolution2() throws CoreException {
- checkResolution(tckProject,
+ checkResolution(
new String[]{
"JavaSource/org/jboss/jsr299/tck/tests/jbt/quickfixes/TibetanTerrier_Broken.java"
},
@@ -307,7 +304,7 @@
}
public void testMakeObserverParamMethodPublicResolution() throws CoreException {
- checkResolution(tckProject,
+ checkResolution(
new String[]{
"JavaSource/org/jboss/jsr299/tck/tests/jbt/quickfixes/TibetanTerrier_BrokenNoInterface.java"
},
@@ -321,7 +318,7 @@
}
public void testMakeDisposerParamMethodBusinessResolution() throws CoreException {
- checkResolution(tckProject,
+ checkResolution(
new String[]{
"JavaSource/org/jboss/jsr299/tck/tests/jbt/quickfixes/NotBusinessMethod_Broken.java",
"JavaSource/org/jboss/jsr299/tck/tests/jbt/quickfixes/LocalInt.java"
@@ -337,7 +334,7 @@
}
public void testAddLocalBeanResolution3() throws CoreException {
- checkResolution(tckProject,
+ checkResolution(
new String[]{
"JavaSource/org/jboss/jsr299/tck/tests/jbt/quickfixes/NotBusinessMethod_Broken.java"
},
@@ -351,7 +348,7 @@
}
public void testMakeDisposerParamMethodPublicResolution() throws CoreException {
- checkResolution(tckProject,
+ checkResolution(
new String[]{
"JavaSource/org/jboss/jsr299/tck/tests/jbt/quickfixes/NotBusinessMethod_BrokenNoInterface.java"
},
@@ -365,7 +362,7 @@
}
public void testDeleteAllDisposerDuplicantsResolution() throws CoreException {
- checkResolution(tckProject,
+ checkResolution(
new String[]{
"JavaSource/org/jboss/jsr299/tck/tests/jbt/quickfixes/TimestampLogger_Broken.java"
},
@@ -379,7 +376,7 @@
}
public void testDeleteAllInjectedConstructorsResolution() throws CoreException {
- checkResolution(tckProject,
+ checkResolution(
new String[]{
"JavaSource/org/jboss/jsr299/tck/tests/jbt/quickfixes/Goose_Broken.java"
},
@@ -393,7 +390,7 @@
}
public void testSpecifyBeanWhenMultipleBeansAreEligibleForInjectedFieldResolution() throws CoreException {
- checkResolution(tckProject,
+ checkResolution(
new String[]{
"JavaSource/org/jboss/jsr299/tck/tests/jbt/quickfixes/Farm_Broken1.java",
"JavaSource/org/jboss/jsr299/tck/tests/jbt/quickfixes/Cow.java",
@@ -407,7 +404,7 @@
}
public void testSelectBeanWhenMultipleBeansAreEligibleForInjectedFieldResolution() throws CoreException {
- checkResolution(tckProject,
+ checkResolution(
new String[]{
"JavaSource/org/jboss/jsr299/tck/tests/jbt/quickfixes/Office_Broken1.java",
"JavaSource/org/jboss/jsr299/tck/tests/jbt/quickfixes/Armchair.java",
@@ -426,7 +423,7 @@
}
public void testSpecifyBeanWhenNoBeanIsEligibleForInjectedFieldResolution() throws CoreException {
- checkResolution(tckProject,
+ checkResolution(
new String[]{
"JavaSource/org/jboss/jsr299/tck/tests/jbt/quickfixes/Farm_Broken2.java",
"JavaSource/org/jboss/jsr299/tck/tests/jbt/quickfixes/Cow.java",
@@ -440,7 +437,7 @@
}
public void testSelectBeanWhenNoBeanIsEligibleForInjectedFieldResolution() throws CoreException {
- checkResolution(tckProject,
+ checkResolution(
new String[]{
"JavaSource/org/jboss/jsr299/tck/tests/jbt/quickfixes/Office_Broken2.java",
"JavaSource/org/jboss/jsr299/tck/tests/jbt/quickfixes/Armchair.java",
@@ -459,7 +456,7 @@
}
public void testSpecifyBeanWhenMultipleBeansAreEligibleForInjectedParameterResolution() throws CoreException {
- checkResolution(tckProject,
+ checkResolution(
new String[]{
"JavaSource/org/jboss/jsr299/tck/tests/jbt/quickfixes/Farm_Broken3.java",
"JavaSource/org/jboss/jsr299/tck/tests/jbt/quickfixes/Cow.java",
@@ -473,7 +470,7 @@
}
public void testSelectBeanWhenMultipleBeansAreEligibleForInjectedParameterResolution() throws CoreException {
- checkResolution(tckProject,
+ checkResolution(
new String[]{
"JavaSource/org/jboss/jsr299/tck/tests/jbt/quickfixes/Office_Broken3.java",
"JavaSource/org/jboss/jsr299/tck/tests/jbt/quickfixes/Armchair.java",
@@ -492,7 +489,7 @@
}
public void testSpecifyBeanWhenNoBeanIsEligibleForInjectedParameterResolution() throws CoreException {
- checkResolution(tckProject,
+ checkResolution(
new String[]{
"JavaSource/org/jboss/jsr299/tck/tests/jbt/quickfixes/Farm_Broken4.java",
"JavaSource/org/jboss/jsr299/tck/tests/jbt/quickfixes/Cow.java",
@@ -506,7 +503,7 @@
}
public void testSelectBeanWhenNoBeanIsEligibleForInjectedParameterResolution() throws CoreException {
- checkResolution(tckProject,
+ checkResolution(
new String[]{
"JavaSource/org/jboss/jsr299/tck/tests/jbt/quickfixes/Office_Broken4.java",
"JavaSource/org/jboss/jsr299/tck/tests/jbt/quickfixes/Armchair.java",
@@ -525,7 +522,7 @@
}
public void testAddSerializableInterfaceResolution() throws CoreException {
- checkResolution(tckProject,
+ checkResolution(
new String[]{
"JavaSource/org/jboss/jsr299/tck/tests/jbt/quickfixes/Hamina_Broken.java"
},
@@ -539,7 +536,7 @@
}
public void testMakeFieldProtectedResolution() throws CoreException {
- checkResolution(tckProject,
+ checkResolution(
new String[]{
"JavaSource/org/jboss/jsr299/tck/tests/jbt/quickfixes/Leopard_Broken.java"
},
@@ -553,7 +550,7 @@
}
public void testMakeBeanScopedDependentResolution() throws CoreException {
- checkResolution(tckProject,
+ checkResolution(
new String[]{
"JavaSource/org/jboss/jsr299/tck/tests/jbt/quickfixes/Leopard_Broken.java"
},
Modified: trunk/cdi/tests/org.jboss.tools.cdi.ui.test/src/org/jboss/tools/cdi/ui/test/search/CDISearchParticipantTest.java
===================================================================
--- trunk/cdi/tests/org.jboss.tools.cdi.ui.test/src/org/jboss/tools/cdi/ui/test/search/CDISearchParticipantTest.java 2011-04-28 23:52:54 UTC (rev 30956)
+++ trunk/cdi/tests/org.jboss.tools.cdi.ui.test/src/org/jboss/tools/cdi/ui/test/search/CDISearchParticipantTest.java 2011-04-28 23:57:26 UTC (rev 30957)
@@ -88,10 +88,14 @@
}
private void checkMatches(List<Match> matchesForCheck, List<MatchStructure> matchList) throws CoreException {
+// for(Match match : matchesForCheck){
+// System.out.println(("Match found (class - "+((CDIMatch)match).getCDIElement().getClass()+" name - "+((CDIMatch)match).getLabel()+")"));
+// }
+
for(Match match : matchesForCheck){
assertTrue("Match must be CDIMatch", match instanceof CDIMatch);
MatchStructure ms = findMatch(matchList, (CDIMatch)match);
- assertNotNull("Unexpected mutch found (class - "+((CDIMatch)match).getCDIElement().getClass()+" name - "+((CDIMatch)match).getLabel()+")", ms);
+ assertNotNull("Unexpected match found (class - "+((CDIMatch)match).getCDIElement().getClass()+" name - "+((CDIMatch)match).getLabel()+")", ms);
ms.checked = true;
}
13 years, 8 months
JBoss Tools SVN: r30956 - trunk/jst/features/org.jboss.tools.jst.test.feature.
by jbosstools-commits@lists.jboss.org
Author: akazakov
Date: 2011-04-28 19:52:54 -0400 (Thu, 28 Apr 2011)
New Revision: 30956
Modified:
trunk/jst/features/org.jboss.tools.jst.test.feature/pom.xml
Log:
https://issues.jboss.org/browse/JBIDE-8815
Modified: trunk/jst/features/org.jboss.tools.jst.test.feature/pom.xml
===================================================================
--- trunk/jst/features/org.jboss.tools.jst.test.feature/pom.xml 2011-04-28 23:32:06 UTC (rev 30955)
+++ trunk/jst/features/org.jboss.tools.jst.test.feature/pom.xml 2011-04-28 23:52:54 UTC (rev 30956)
@@ -8,6 +8,6 @@
</parent>
<groupId>org.jboss.tools.jst.test.features</groupId>
<artifactId>org.jboss.tools.jst.test.feature</artifactId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.1.0-SNAPSHOT</version>
<packaging>eclipse-feature</packaging>
</project>
\ No newline at end of file
13 years, 8 months
JBoss Tools SVN: r30955 - in branches/jbosstools-3.2.x/struts: plugins/org.jboss.tools.struts.text.ext and 3 other directories.
by jbosstools-commits@lists.jboss.org
Author: akazakov
Date: 2011-04-28 19:32:06 -0400 (Thu, 28 Apr 2011)
New Revision: 30955
Modified:
branches/jbosstools-3.2.x/struts/features/org.jboss.tools.struts.feature/feature.xml
branches/jbosstools-3.2.x/struts/features/org.jboss.tools.struts.feature/pom.xml
branches/jbosstools-3.2.x/struts/plugins/org.jboss.tools.struts.text.ext/META-INF/MANIFEST.MF
branches/jbosstools-3.2.x/struts/plugins/org.jboss.tools.struts.text.ext/pom.xml
branches/jbosstools-3.2.x/struts/plugins/org.jboss.tools.struts.ui/META-INF/MANIFEST.MF
branches/jbosstools-3.2.x/struts/plugins/org.jboss.tools.struts.ui/pom.xml
Log:
https://issues.jboss.org/browse/JBIDE-8814
Modified: branches/jbosstools-3.2.x/struts/features/org.jboss.tools.struts.feature/feature.xml
===================================================================
--- branches/jbosstools-3.2.x/struts/features/org.jboss.tools.struts.feature/feature.xml 2011-04-28 23:31:38 UTC (rev 30954)
+++ branches/jbosstools-3.2.x/struts/features/org.jboss.tools.struts.feature/feature.xml 2011-04-28 23:32:06 UTC (rev 30955)
@@ -2,7 +2,7 @@
<feature
id="org.jboss.tools.struts.feature"
label="%featureName"
- version="3.1.0.qualifier"
+ version="3.1.1.qualifier"
provider-name="%providerName"
plugin="org.jboss.tools.struts.ui">
Modified: branches/jbosstools-3.2.x/struts/features/org.jboss.tools.struts.feature/pom.xml
===================================================================
--- branches/jbosstools-3.2.x/struts/features/org.jboss.tools.struts.feature/pom.xml 2011-04-28 23:31:38 UTC (rev 30954)
+++ branches/jbosstools-3.2.x/struts/features/org.jboss.tools.struts.feature/pom.xml 2011-04-28 23:32:06 UTC (rev 30955)
@@ -8,6 +8,6 @@
</parent>
<groupId>org.jboss.tools.struts.features</groupId>
<artifactId>org.jboss.tools.struts.feature</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.1.1-SNAPSHOT</version>
<packaging>eclipse-feature</packaging>
</project>
Modified: branches/jbosstools-3.2.x/struts/plugins/org.jboss.tools.struts.text.ext/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.x/struts/plugins/org.jboss.tools.struts.text.ext/META-INF/MANIFEST.MF 2011-04-28 23:31:38 UTC (rev 30954)
+++ branches/jbosstools-3.2.x/struts/plugins/org.jboss.tools.struts.text.ext/META-INF/MANIFEST.MF 2011-04-28 23:32:06 UTC (rev 30955)
@@ -24,6 +24,6 @@
org.eclipse.jst.jsp.core,
org.jboss.tools.common
Export-Package: org.jboss.tools.struts.text.ext.hyperlink
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.1.1.qualifier
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Bundle-ActivationPolicy: lazy
Modified: branches/jbosstools-3.2.x/struts/plugins/org.jboss.tools.struts.text.ext/pom.xml
===================================================================
--- branches/jbosstools-3.2.x/struts/plugins/org.jboss.tools.struts.text.ext/pom.xml 2011-04-28 23:31:38 UTC (rev 30954)
+++ branches/jbosstools-3.2.x/struts/plugins/org.jboss.tools.struts.text.ext/pom.xml 2011-04-28 23:32:06 UTC (rev 30955)
@@ -8,6 +8,6 @@
</parent>
<groupId>org.jboss.tools.struts.plugins</groupId>
<artifactId>org.jboss.tools.struts.text.ext</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.1.1-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.x/struts/plugins/org.jboss.tools.struts.ui/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.x/struts/plugins/org.jboss.tools.struts.ui/META-INF/MANIFEST.MF 2011-04-28 23:31:38 UTC (rev 30954)
+++ branches/jbosstools-3.2.x/struts/plugins/org.jboss.tools.struts.ui/META-INF/MANIFEST.MF 2011-04-28 23:32:06 UTC (rev 30955)
@@ -61,6 +61,6 @@
org.eclipse.core.runtime,
org.eclipse.gef,
org.eclipse.core.expressions
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.1.1.qualifier
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Bundle-ActivationPolicy: lazy
Modified: branches/jbosstools-3.2.x/struts/plugins/org.jboss.tools.struts.ui/pom.xml
===================================================================
--- branches/jbosstools-3.2.x/struts/plugins/org.jboss.tools.struts.ui/pom.xml 2011-04-28 23:31:38 UTC (rev 30954)
+++ branches/jbosstools-3.2.x/struts/plugins/org.jboss.tools.struts.ui/pom.xml 2011-04-28 23:32:06 UTC (rev 30955)
@@ -8,6 +8,6 @@
</parent>
<groupId>org.jboss.tools.struts.plugins</groupId>
<artifactId>org.jboss.tools.struts.ui</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.1.1-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
13 years, 8 months
JBoss Tools SVN: r30954 - in trunk/struts: plugins/org.jboss.tools.struts and 5 other directories.
by jbosstools-commits@lists.jboss.org
Author: akazakov
Date: 2011-04-28 19:31:38 -0400 (Thu, 28 Apr 2011)
New Revision: 30954
Modified:
trunk/struts/features/org.jboss.tools.struts.feature/feature.xml
trunk/struts/features/org.jboss.tools.struts.feature/pom.xml
trunk/struts/plugins/org.jboss.tools.struts.text.ext/META-INF/MANIFEST.MF
trunk/struts/plugins/org.jboss.tools.struts.text.ext/pom.xml
trunk/struts/plugins/org.jboss.tools.struts.ui/META-INF/MANIFEST.MF
trunk/struts/plugins/org.jboss.tools.struts.ui/pom.xml
trunk/struts/plugins/org.jboss.tools.struts/META-INF/MANIFEST.MF
trunk/struts/plugins/org.jboss.tools.struts/pom.xml
Log:
https://issues.jboss.org/browse/JBIDE-8815
Modified: trunk/struts/features/org.jboss.tools.struts.feature/feature.xml
===================================================================
--- trunk/struts/features/org.jboss.tools.struts.feature/feature.xml 2011-04-28 23:25:35 UTC (rev 30953)
+++ trunk/struts/features/org.jboss.tools.struts.feature/feature.xml 2011-04-28 23:31:38 UTC (rev 30954)
@@ -2,7 +2,7 @@
<feature
id="org.jboss.tools.struts.feature"
label="%featureName"
- version="3.1.0.qualifier"
+ version="3.3.0.qualifier"
provider-name="%providerName"
plugin="org.jboss.tools.struts.ui">
Modified: trunk/struts/features/org.jboss.tools.struts.feature/pom.xml
===================================================================
--- trunk/struts/features/org.jboss.tools.struts.feature/pom.xml 2011-04-28 23:25:35 UTC (rev 30953)
+++ trunk/struts/features/org.jboss.tools.struts.feature/pom.xml 2011-04-28 23:31:38 UTC (rev 30954)
@@ -8,6 +8,6 @@
</parent>
<groupId>org.jboss.tools.struts.features</groupId>
<artifactId>org.jboss.tools.struts.feature</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
<packaging>eclipse-feature</packaging>
</project>
\ No newline at end of file
Modified: trunk/struts/plugins/org.jboss.tools.struts/META-INF/MANIFEST.MF
===================================================================
--- trunk/struts/plugins/org.jboss.tools.struts/META-INF/MANIFEST.MF 2011-04-28 23:25:35 UTC (rev 30953)
+++ trunk/struts/plugins/org.jboss.tools.struts/META-INF/MANIFEST.MF 2011-04-28 23:31:38 UTC (rev 30954)
@@ -56,6 +56,6 @@
org.apache.velocity;bundle-version="1.5.0",
org.eclipse.jface.text;visibility:=reexport,
org.eclipse.jst.jsp.ui;visibility:=reexport
-Bundle-Version: 3.2.0.qualifier
+Bundle-Version: 3.3.0.qualifier
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Bundle-ManifestVersion: 2
Modified: trunk/struts/plugins/org.jboss.tools.struts/pom.xml
===================================================================
--- trunk/struts/plugins/org.jboss.tools.struts/pom.xml 2011-04-28 23:25:35 UTC (rev 30953)
+++ trunk/struts/plugins/org.jboss.tools.struts/pom.xml 2011-04-28 23:31:38 UTC (rev 30954)
@@ -8,6 +8,6 @@
</parent>
<groupId>org.jboss.tools.struts.plugins</groupId>
<artifactId>org.jboss.tools.struts</artifactId>
- <version>3.2.0-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
\ No newline at end of file
Modified: trunk/struts/plugins/org.jboss.tools.struts.text.ext/META-INF/MANIFEST.MF
===================================================================
--- trunk/struts/plugins/org.jboss.tools.struts.text.ext/META-INF/MANIFEST.MF 2011-04-28 23:25:35 UTC (rev 30953)
+++ trunk/struts/plugins/org.jboss.tools.struts.text.ext/META-INF/MANIFEST.MF 2011-04-28 23:31:38 UTC (rev 30954)
@@ -24,6 +24,6 @@
org.eclipse.jst.jsp.core,
org.jboss.tools.common
Export-Package: org.jboss.tools.struts.text.ext.hyperlink
-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.text.ext/pom.xml
===================================================================
--- trunk/struts/plugins/org.jboss.tools.struts.text.ext/pom.xml 2011-04-28 23:25:35 UTC (rev 30953)
+++ trunk/struts/plugins/org.jboss.tools.struts.text.ext/pom.xml 2011-04-28 23:31:38 UTC (rev 30954)
@@ -8,6 +8,6 @@
</parent>
<groupId>org.jboss.tools.struts.plugins</groupId>
<artifactId>org.jboss.tools.struts.text.ext</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
\ No newline at end of file
Modified: trunk/struts/plugins/org.jboss.tools.struts.ui/META-INF/MANIFEST.MF
===================================================================
--- trunk/struts/plugins/org.jboss.tools.struts.ui/META-INF/MANIFEST.MF 2011-04-28 23:25:35 UTC (rev 30953)
+++ trunk/struts/plugins/org.jboss.tools.struts.ui/META-INF/MANIFEST.MF 2011-04-28 23:31:38 UTC (rev 30954)
@@ -61,6 +61,6 @@
org.eclipse.core.runtime,
org.eclipse.gef,
org.eclipse.core.expressions
-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.ui/pom.xml
===================================================================
--- trunk/struts/plugins/org.jboss.tools.struts.ui/pom.xml 2011-04-28 23:25:35 UTC (rev 30953)
+++ trunk/struts/plugins/org.jboss.tools.struts.ui/pom.xml 2011-04-28 23:31:38 UTC (rev 30954)
@@ -8,6 +8,6 @@
</parent>
<groupId>org.jboss.tools.struts.plugins</groupId>
<artifactId>org.jboss.tools.struts.ui</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
\ No newline at end of file
13 years, 8 months
JBoss Tools SVN: r30953 - in branches/jbosstools-3.2.x/seam: plugins/org.jboss.tools.seam.core and 5 other directories.
by jbosstools-commits@lists.jboss.org
Author: akazakov
Date: 2011-04-28 19:25:35 -0400 (Thu, 28 Apr 2011)
New Revision: 30953
Modified:
branches/jbosstools-3.2.x/seam/features/org.jboss.tools.seam.feature/feature.xml
branches/jbosstools-3.2.x/seam/features/org.jboss.tools.seam.feature/pom.xml
branches/jbosstools-3.2.x/seam/plugins/org.jboss.tools.seam.core/META-INF/MANIFEST.MF
branches/jbosstools-3.2.x/seam/plugins/org.jboss.tools.seam.core/pom.xml
branches/jbosstools-3.2.x/seam/plugins/org.jboss.tools.seam.text.ext/META-INF/MANIFEST.MF
branches/jbosstools-3.2.x/seam/plugins/org.jboss.tools.seam.text.ext/pom.xml
branches/jbosstools-3.2.x/seam/plugins/org.jboss.tools.seam.ui/META-INF/MANIFEST.MF
branches/jbosstools-3.2.x/seam/plugins/org.jboss.tools.seam.ui/pom.xml
Log:
https://issues.jboss.org/browse/JBIDE-8814
Modified: branches/jbosstools-3.2.x/seam/features/org.jboss.tools.seam.feature/feature.xml
===================================================================
--- branches/jbosstools-3.2.x/seam/features/org.jboss.tools.seam.feature/feature.xml 2011-04-28 23:25:12 UTC (rev 30952)
+++ branches/jbosstools-3.2.x/seam/features/org.jboss.tools.seam.feature/feature.xml 2011-04-28 23:25:35 UTC (rev 30953)
@@ -2,7 +2,7 @@
<feature
id="org.jboss.tools.seam.feature"
label="%featureName"
- version="3.2.0.qualifier"
+ version="3.2.1.qualifier"
provider-name="%providerName"
plugin="org.jboss.tools.seam.core">
Modified: branches/jbosstools-3.2.x/seam/features/org.jboss.tools.seam.feature/pom.xml
===================================================================
--- branches/jbosstools-3.2.x/seam/features/org.jboss.tools.seam.feature/pom.xml 2011-04-28 23:25:12 UTC (rev 30952)
+++ branches/jbosstools-3.2.x/seam/features/org.jboss.tools.seam.feature/pom.xml 2011-04-28 23:25:35 UTC (rev 30953)
@@ -8,6 +8,6 @@
</parent>
<groupId>org.jboss.tools.seam.features</groupId>
<artifactId>org.jboss.tools.seam.feature</artifactId>
- <version>3.2.0-SNAPSHOT</version>
+ <version>3.2.1-SNAPSHOT</version>
<packaging>eclipse-feature</packaging>
</project>
Modified: branches/jbosstools-3.2.x/seam/plugins/org.jboss.tools.seam.core/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.x/seam/plugins/org.jboss.tools.seam.core/META-INF/MANIFEST.MF 2011-04-28 23:25:12 UTC (rev 30952)
+++ branches/jbosstools-3.2.x/seam/plugins/org.jboss.tools.seam.core/META-INF/MANIFEST.MF 2011-04-28 23:25:35 UTC (rev 30953)
@@ -38,7 +38,7 @@
org.jboss.tools.jsf,
org.eclipse.jem.util,
org.eclipse.debug.core;bundle-version="3.4.0"
-Bundle-Version: 3.2.0.qualifier
+Bundle-Version: 3.2.1.qualifier
Export-Package:
org.jboss.tools.seam.core,
org.jboss.tools.seam.core.event,
Modified: branches/jbosstools-3.2.x/seam/plugins/org.jboss.tools.seam.core/pom.xml
===================================================================
--- branches/jbosstools-3.2.x/seam/plugins/org.jboss.tools.seam.core/pom.xml 2011-04-28 23:25:12 UTC (rev 30952)
+++ branches/jbosstools-3.2.x/seam/plugins/org.jboss.tools.seam.core/pom.xml 2011-04-28 23:25:35 UTC (rev 30953)
@@ -8,6 +8,6 @@
</parent>
<groupId>org.jboss.tools.seam.plugins</groupId>
<artifactId>org.jboss.tools.seam.core</artifactId>
- <version>3.2.0-SNAPSHOT</version>
+ <version>3.2.1-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.x/seam/plugins/org.jboss.tools.seam.text.ext/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.x/seam/plugins/org.jboss.tools.seam.text.ext/META-INF/MANIFEST.MF 2011-04-28 23:25:12 UTC (rev 30952)
+++ branches/jbosstools-3.2.x/seam/plugins/org.jboss.tools.seam.text.ext/META-INF/MANIFEST.MF 2011-04-28 23:25:35 UTC (rev 30953)
@@ -30,5 +30,5 @@
org.jboss.tools.jsf.text.ext
Export-Package: org.jboss.tools.seam.text.ext,
org.jboss.tools.seam.text.ext.hyperlink
-Bundle-Version: 3.2.0.qualifier
+Bundle-Version: 3.2.1.qualifier
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Modified: branches/jbosstools-3.2.x/seam/plugins/org.jboss.tools.seam.text.ext/pom.xml
===================================================================
--- branches/jbosstools-3.2.x/seam/plugins/org.jboss.tools.seam.text.ext/pom.xml 2011-04-28 23:25:12 UTC (rev 30952)
+++ branches/jbosstools-3.2.x/seam/plugins/org.jboss.tools.seam.text.ext/pom.xml 2011-04-28 23:25:35 UTC (rev 30953)
@@ -8,6 +8,6 @@
</parent>
<groupId>org.jboss.tools.seam.plugins</groupId>
<artifactId>org.jboss.tools.seam.text.ext</artifactId>
- <version>3.2.0-SNAPSHOT</version>
+ <version>3.2.1-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.x/seam/plugins/org.jboss.tools.seam.ui/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.x/seam/plugins/org.jboss.tools.seam.ui/META-INF/MANIFEST.MF 2011-04-28 23:25:12 UTC (rev 30952)
+++ branches/jbosstools-3.2.x/seam/plugins/org.jboss.tools.seam.ui/META-INF/MANIFEST.MF 2011-04-28 23:25:35 UTC (rev 30953)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.seam.ui;singleton:=true
-Bundle-Version: 3.2.0.qualifier
+Bundle-Version: 3.2.1.qualifier
Bundle-Activator: org.jboss.tools.seam.ui.SeamGuiPlugin
Bundle-Localization: plugin
Require-Bundle: org.eclipse.ui.ide,
Modified: branches/jbosstools-3.2.x/seam/plugins/org.jboss.tools.seam.ui/pom.xml
===================================================================
--- branches/jbosstools-3.2.x/seam/plugins/org.jboss.tools.seam.ui/pom.xml 2011-04-28 23:25:12 UTC (rev 30952)
+++ branches/jbosstools-3.2.x/seam/plugins/org.jboss.tools.seam.ui/pom.xml 2011-04-28 23:25:35 UTC (rev 30953)
@@ -8,6 +8,6 @@
</parent>
<groupId>org.jboss.tools.seam.plugins</groupId>
<artifactId>org.jboss.tools.seam.ui</artifactId>
- <version>3.2.0-SNAPSHOT</version>
+ <version>3.2.1-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
13 years, 8 months
JBoss Tools SVN: r30952 - in trunk/seam: features/org.jboss.tools.seam.test.feature and 8 other directories.
by jbosstools-commits@lists.jboss.org
Author: akazakov
Date: 2011-04-28 19:25:12 -0400 (Thu, 28 Apr 2011)
New Revision: 30952
Modified:
trunk/seam/features/org.jboss.tools.seam.feature/feature.xml
trunk/seam/features/org.jboss.tools.seam.feature/pom.xml
trunk/seam/features/org.jboss.tools.seam.test.feature/feature.xml
trunk/seam/features/org.jboss.tools.seam.test.feature/pom.xml
trunk/seam/plugins/org.jboss.tools.seam.core/META-INF/MANIFEST.MF
trunk/seam/plugins/org.jboss.tools.seam.core/pom.xml
trunk/seam/plugins/org.jboss.tools.seam.text.ext/META-INF/MANIFEST.MF
trunk/seam/plugins/org.jboss.tools.seam.text.ext/pom.xml
trunk/seam/plugins/org.jboss.tools.seam.ui/META-INF/MANIFEST.MF
trunk/seam/plugins/org.jboss.tools.seam.ui/pom.xml
trunk/seam/tests/org.jboss.tools.seam.core.test/META-INF/MANIFEST.MF
trunk/seam/tests/org.jboss.tools.seam.core.test/pom.xml
Log:
https://issues.jboss.org/browse/JBIDE-8815
Modified: trunk/seam/features/org.jboss.tools.seam.feature/feature.xml
===================================================================
--- trunk/seam/features/org.jboss.tools.seam.feature/feature.xml 2011-04-28 23:06:05 UTC (rev 30951)
+++ trunk/seam/features/org.jboss.tools.seam.feature/feature.xml 2011-04-28 23:25:12 UTC (rev 30952)
@@ -2,7 +2,7 @@
<feature
id="org.jboss.tools.seam.feature"
label="%featureName"
- version="3.2.0.qualifier"
+ version="3.3.0.qualifier"
provider-name="%providerName"
plugin="org.jboss.tools.seam.core">
Modified: trunk/seam/features/org.jboss.tools.seam.feature/pom.xml
===================================================================
--- trunk/seam/features/org.jboss.tools.seam.feature/pom.xml 2011-04-28 23:06:05 UTC (rev 30951)
+++ trunk/seam/features/org.jboss.tools.seam.feature/pom.xml 2011-04-28 23:25:12 UTC (rev 30952)
@@ -8,6 +8,6 @@
</parent>
<groupId>org.jboss.tools.seam.features</groupId>
<artifactId>org.jboss.tools.seam.feature</artifactId>
- <version>3.2.0-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
<packaging>eclipse-feature</packaging>
</project>
\ No newline at end of file
Modified: trunk/seam/features/org.jboss.tools.seam.test.feature/feature.xml
===================================================================
--- trunk/seam/features/org.jboss.tools.seam.test.feature/feature.xml 2011-04-28 23:06:05 UTC (rev 30951)
+++ trunk/seam/features/org.jboss.tools.seam.test.feature/feature.xml 2011-04-28 23:25:12 UTC (rev 30952)
@@ -2,7 +2,7 @@
<feature
id="org.jboss.tools.seam.test.feature"
label="Seam Tests Feature"
- version="3.1.0.qualifier"
+ version="3.3.0.qualifier"
provider-name="JBoss by RedHat">
<description url="http://www.example.com/description">
Modified: trunk/seam/features/org.jboss.tools.seam.test.feature/pom.xml
===================================================================
--- trunk/seam/features/org.jboss.tools.seam.test.feature/pom.xml 2011-04-28 23:06:05 UTC (rev 30951)
+++ trunk/seam/features/org.jboss.tools.seam.test.feature/pom.xml 2011-04-28 23:25:12 UTC (rev 30952)
@@ -8,6 +8,6 @@
</parent>
<groupId>org.jboss.tools.seam.features</groupId>
<artifactId>org.jboss.tools.seam.test.feature</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
<packaging>eclipse-feature</packaging>
</project>
\ No newline at end of file
Modified: trunk/seam/plugins/org.jboss.tools.seam.core/META-INF/MANIFEST.MF
===================================================================
--- trunk/seam/plugins/org.jboss.tools.seam.core/META-INF/MANIFEST.MF 2011-04-28 23:06:05 UTC (rev 30951)
+++ trunk/seam/plugins/org.jboss.tools.seam.core/META-INF/MANIFEST.MF 2011-04-28 23:25:12 UTC (rev 30952)
@@ -38,7 +38,7 @@
org.jboss.tools.jsf,
org.eclipse.jem.util,
org.eclipse.debug.core;bundle-version="3.4.0"
-Bundle-Version: 3.2.0.qualifier
+Bundle-Version: 3.3.0.qualifier
Export-Package:
org.jboss.tools.seam.core,
org.jboss.tools.seam.core.event,
Modified: trunk/seam/plugins/org.jboss.tools.seam.core/pom.xml
===================================================================
--- trunk/seam/plugins/org.jboss.tools.seam.core/pom.xml 2011-04-28 23:06:05 UTC (rev 30951)
+++ trunk/seam/plugins/org.jboss.tools.seam.core/pom.xml 2011-04-28 23:25:12 UTC (rev 30952)
@@ -8,6 +8,6 @@
</parent>
<groupId>org.jboss.tools.seam.plugins</groupId>
<artifactId>org.jboss.tools.seam.core</artifactId>
- <version>3.2.0-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
\ No newline at end of file
Modified: trunk/seam/plugins/org.jboss.tools.seam.text.ext/META-INF/MANIFEST.MF
===================================================================
--- trunk/seam/plugins/org.jboss.tools.seam.text.ext/META-INF/MANIFEST.MF 2011-04-28 23:06:05 UTC (rev 30951)
+++ trunk/seam/plugins/org.jboss.tools.seam.text.ext/META-INF/MANIFEST.MF 2011-04-28 23:25:12 UTC (rev 30952)
@@ -30,5 +30,5 @@
org.jboss.tools.jsf.text.ext
Export-Package: org.jboss.tools.seam.text.ext,
org.jboss.tools.seam.text.ext.hyperlink
-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.text.ext/pom.xml
===================================================================
--- trunk/seam/plugins/org.jboss.tools.seam.text.ext/pom.xml 2011-04-28 23:06:05 UTC (rev 30951)
+++ trunk/seam/plugins/org.jboss.tools.seam.text.ext/pom.xml 2011-04-28 23:25:12 UTC (rev 30952)
@@ -8,6 +8,6 @@
</parent>
<groupId>org.jboss.tools.seam.plugins</groupId>
<artifactId>org.jboss.tools.seam.text.ext</artifactId>
- <version>3.2.0-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
\ No newline at end of file
Modified: trunk/seam/plugins/org.jboss.tools.seam.ui/META-INF/MANIFEST.MF
===================================================================
--- trunk/seam/plugins/org.jboss.tools.seam.ui/META-INF/MANIFEST.MF 2011-04-28 23:06:05 UTC (rev 30951)
+++ trunk/seam/plugins/org.jboss.tools.seam.ui/META-INF/MANIFEST.MF 2011-04-28 23:25:12 UTC (rev 30952)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.seam.ui;singleton:=true
-Bundle-Version: 3.2.0.qualifier
+Bundle-Version: 3.3.0.qualifier
Bundle-Activator: org.jboss.tools.seam.ui.SeamGuiPlugin
Bundle-Localization: plugin
Require-Bundle: org.eclipse.ui.ide,
Modified: trunk/seam/plugins/org.jboss.tools.seam.ui/pom.xml
===================================================================
--- trunk/seam/plugins/org.jboss.tools.seam.ui/pom.xml 2011-04-28 23:06:05 UTC (rev 30951)
+++ trunk/seam/plugins/org.jboss.tools.seam.ui/pom.xml 2011-04-28 23:25:12 UTC (rev 30952)
@@ -8,6 +8,6 @@
</parent>
<groupId>org.jboss.tools.seam.plugins</groupId>
<artifactId>org.jboss.tools.seam.ui</artifactId>
- <version>3.2.0-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
\ No newline at end of file
Modified: trunk/seam/tests/org.jboss.tools.seam.core.test/META-INF/MANIFEST.MF
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam.core.test/META-INF/MANIFEST.MF 2011-04-28 23:06:05 UTC (rev 30951)
+++ trunk/seam/tests/org.jboss.tools.seam.core.test/META-INF/MANIFEST.MF 2011-04-28 23:25:12 UTC (rev 30952)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.seam.core.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.core.test,
org.jboss.tools.seam.core.test.project.facet,
Modified: trunk/seam/tests/org.jboss.tools.seam.core.test/pom.xml
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam.core.test/pom.xml 2011-04-28 23:06:05 UTC (rev 30951)
+++ trunk/seam/tests/org.jboss.tools.seam.core.test/pom.xml 2011-04-28 23:25:12 UTC (rev 30952)
@@ -8,7 +8,7 @@
</parent>
<groupId>org.jboss.tools.seam.tests</groupId>
<artifactId>org.jboss.tools.seam.core.test</artifactId>
- <version>3.2.0-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
13 years, 8 months
JBoss Tools SVN: r30951 - in branches/jbosstools-3.2.x/vpe/plugins/org.jboss.tools.vpe.xulrunner: META-INF and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: yradtsevich
Date: 2011-04-28 19:06:05 -0400 (Thu, 28 Apr 2011)
New Revision: 30951
Modified:
branches/jbosstools-3.2.x/vpe/plugins/org.jboss.tools.vpe.xulrunner/META-INF/MANIFEST.MF
branches/jbosstools-3.2.x/vpe/plugins/org.jboss.tools.vpe.xulrunner/pom.xml
Log:
https://issues.jboss.org/browse/JBIDE-8605 : Update versions of VPE plugins
- changed vpe.xulrunner version due to changes in https://issues.jboss.org/browse/JBIDE-7308 (VPE Part should not show exceptions but readable explanation why it cannot be loaded)
Modified: branches/jbosstools-3.2.x/vpe/plugins/org.jboss.tools.vpe.xulrunner/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.x/vpe/plugins/org.jboss.tools.vpe.xulrunner/META-INF/MANIFEST.MF 2011-04-28 23:01:42 UTC (rev 30950)
+++ branches/jbosstools-3.2.x/vpe/plugins/org.jboss.tools.vpe.xulrunner/META-INF/MANIFEST.MF 2011-04-28 23:06:05 UTC (rev 30951)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.vpe.xulrunner;singleton:=true
-Bundle-Version: 3.2.0.qualifier
+Bundle-Version: 3.2.1.qualifier
Bundle-Activator: org.jboss.tools.vpe.xulrunner.BrowserPlugin
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime,
Modified: branches/jbosstools-3.2.x/vpe/plugins/org.jboss.tools.vpe.xulrunner/pom.xml
===================================================================
--- branches/jbosstools-3.2.x/vpe/plugins/org.jboss.tools.vpe.xulrunner/pom.xml 2011-04-28 23:01:42 UTC (rev 30950)
+++ branches/jbosstools-3.2.x/vpe/plugins/org.jboss.tools.vpe.xulrunner/pom.xml 2011-04-28 23:06:05 UTC (rev 30951)
@@ -8,6 +8,6 @@
</parent>
<groupId>org.jboss.tools.vpe.plugins</groupId>
<artifactId>org.jboss.tools.vpe.xulrunner</artifactId>
- <version>3.2.0-SNAPSHOT</version>
+ <version>3.2.1-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
13 years, 8 months