JBoss Tools SVN: r23305 - trunk/jst/tests/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/config.
by jbosstools-commits@lists.jboss.org
Author: lzoubek(a)redhat.com
Date: 2010-07-08 04:31:34 -0400 (Thu, 08 Jul 2010)
New Revision: 23305
Modified:
trunk/jst/tests/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/config/TestConfigurator.java
Log:
SWTBot ext: load default config by defalt
Modified: trunk/jst/tests/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/config/TestConfigurator.java
===================================================================
--- trunk/jst/tests/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/config/TestConfigurator.java 2010-07-08 07:22:06 UTC (rev 23304)
+++ trunk/jst/tests/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/config/TestConfigurator.java 2010-07-08 08:31:34 UTC (rev 23305)
@@ -80,8 +80,14 @@
} catch (Exception ex) {
ex.printStackTrace();
}
+ // load default config by default
+ try {
+ currentConfig = new TestConfiguration("default", "");
+ } catch (Exception e) {
+ // TODO Auto-generated catch block
+ e.printStackTrace();
+ }
-
}
/**
* returns null when given Server annotation does not match global test
15 years, 9 months
JBoss Tools SVN: r23304 - in trunk/jsf/plugins: org.jboss.tools.jsf.vpe.jstl/src/org/jboss/tools/jsf/vpe/jstl and 1 other directories.
by jbosstools-commits@lists.jboss.org
Author: dvinnichek
Date: 2010-07-08 03:22:06 -0400 (Thu, 08 Jul 2010)
New Revision: 23304
Modified:
trunk/jsf/plugins/org.jboss.tools.jsf.vpe.jbpm/src/org/jboss/tools/jsf/vpe/jbpm/template/JBPMDataForm.java
trunk/jsf/plugins/org.jboss.tools.jsf.vpe.jstl/src/org/jboss/tools/jsf/vpe/jstl/ComponentUtil.java
trunk/jsf/plugins/org.jboss.tools.jsf.vpe.jstl/src/org/jboss/tools/jsf/vpe/jstl/template/JstlUrlTemplate.java
trunk/jsf/plugins/org.jboss.tools.jsf.vpe.jstl/src/org/jboss/tools/jsf/vpe/jstl/template/JstlXOutTemplate.java
Log:
fix templates for jbpm and jstl according to JBIDE-6542
Modified: trunk/jsf/plugins/org.jboss.tools.jsf.vpe.jbpm/src/org/jboss/tools/jsf/vpe/jbpm/template/JBPMDataForm.java
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf.vpe.jbpm/src/org/jboss/tools/jsf/vpe/jbpm/template/JBPMDataForm.java 2010-07-08 04:26:04 UTC (rev 23303)
+++ trunk/jsf/plugins/org.jboss.tools.jsf.vpe.jbpm/src/org/jboss/tools/jsf/vpe/jbpm/template/JBPMDataForm.java 2010-07-08 07:22:06 UTC (rev 23304)
@@ -17,6 +17,7 @@
import org.jboss.tools.vpe.editor.template.VpeAbstractTemplate;
import org.jboss.tools.vpe.editor.template.VpeChildrenInfo;
import org.jboss.tools.vpe.editor.template.VpeCreationData;
+import org.jboss.tools.vpe.editor.util.Constants;
import org.jboss.tools.vpe.editor.util.HTML;
import org.mozilla.interfaces.nsIDOMDocument;
import org.mozilla.interfaces.nsIDOMElement;
@@ -40,11 +41,10 @@
nsIDOMDocument visualDocument) {
nsIDOMElement element = visualDocument.createElement(HTML.TAG_TABLE);
Element sourceElement = (Element) sourceNode;
- element
- .setAttribute(
- HTML.ATTR_STYLE,
- computeBaseTableStyleValue()
- + (sourceElement.getAttribute(HTML.ATTR_STYLE) == null ? "" : sourceElement.getAttribute(HTML.ATTR_STYLE))); //$NON-NLS-1$
+ element.setAttribute(HTML.ATTR_STYLE,
+ computeBaseTableStyleValue() +
+ (sourceElement.hasAttribute(HTML.ATTR_STYLE) ?
+ sourceElement.getAttribute(HTML.ATTR_STYLE) : Constants.EMPTY));
VpeCreationData creationData = new VpeCreationData(element);
VpeChildrenInfo childrenInfo = new VpeChildrenInfo(element);
NodeList children = sourceNode.getChildNodes();
Modified: trunk/jsf/plugins/org.jboss.tools.jsf.vpe.jstl/src/org/jboss/tools/jsf/vpe/jstl/ComponentUtil.java
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf.vpe.jstl/src/org/jboss/tools/jsf/vpe/jstl/ComponentUtil.java 2010-07-08 04:26:04 UTC (rev 23303)
+++ trunk/jsf/plugins/org.jboss.tools.jsf.vpe.jstl/src/org/jboss/tools/jsf/vpe/jstl/ComponentUtil.java 2010-07-08 07:22:06 UTC (rev 23304)
@@ -31,11 +31,7 @@
* @return the attribute
*/
public static String getAttribute(Element sourceElement, String attributeName) {
- String attribute = sourceElement.getAttribute(attributeName);
- if (attribute == null) {
- attribute = Constants.EMPTY;
- }
- return attribute;
+ return getAttribute(sourceElement, attributeName, Constants.EMPTY);
}
/**
@@ -48,11 +44,8 @@
* @return the attribute
*/
public static String getAttribute(Element sourceElement, String attributeName, String defaultValue) {
- String attribute = sourceElement.getAttribute(attributeName);
- if (attribute == null) {
- attribute = defaultValue;
- }
- return attribute;
+ return sourceElement.hasAttribute(attributeName) ?
+ sourceElement.getAttribute(attributeName) : defaultValue;
}
/**
@@ -64,10 +57,7 @@
* @return the attribute
*/
public static String getAttribute(nsIDOMElement sourceElement, String attributeName) {
- String attribute = sourceElement.getAttribute(attributeName);
- if (attribute == null) {
- attribute = Constants.EMPTY;
- }
- return attribute;
+ return sourceElement.hasAttribute(attributeName) ?
+ sourceElement.getAttribute(attributeName) : Constants.EMPTY;
}
}
\ No newline at end of file
Modified: trunk/jsf/plugins/org.jboss.tools.jsf.vpe.jstl/src/org/jboss/tools/jsf/vpe/jstl/template/JstlUrlTemplate.java
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf.vpe.jstl/src/org/jboss/tools/jsf/vpe/jstl/template/JstlUrlTemplate.java 2010-07-08 04:26:04 UTC (rev 23303)
+++ trunk/jsf/plugins/org.jboss.tools.jsf.vpe.jstl/src/org/jboss/tools/jsf/vpe/jstl/template/JstlUrlTemplate.java 2010-07-08 07:22:06 UTC (rev 23304)
@@ -35,14 +35,18 @@
public VpeCreationData create(VpePageContext pageContext, Node sourceNode,
nsIDOMDocument visualDocument) {
- Element sourceElement = (Element) sourceNode;
- String value = sourceElement.getAttribute(HTML.ATTR_VALUE);
- nsIDOMElement span = VisualDomUtil.createBorderlessContainer(visualDocument);
- nsIDOMText urlText = visualDocument.createTextNode(value);
- span.appendChild(urlText);
- VpeCreationData creationData = new VpeCreationData(span);
-
- return creationData;
+
+ Element sourceElement = (Element) sourceNode;
+ nsIDOMElement span = VisualDomUtil.createBorderlessContainer(visualDocument);
+
+ if (sourceElement.hasAttribute(HTML.ATTR_VALUE)) {
+ String value = sourceElement.getAttribute(HTML.ATTR_VALUE);
+ nsIDOMText urlText = visualDocument.createTextNode(value);
+ span.appendChild(urlText);
+ }
+
+ VpeCreationData creationData = new VpeCreationData(span);
+ return creationData;
}
}
Modified: trunk/jsf/plugins/org.jboss.tools.jsf.vpe.jstl/src/org/jboss/tools/jsf/vpe/jstl/template/JstlXOutTemplate.java
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf.vpe.jstl/src/org/jboss/tools/jsf/vpe/jstl/template/JstlXOutTemplate.java 2010-07-08 04:26:04 UTC (rev 23303)
+++ trunk/jsf/plugins/org.jboss.tools.jsf.vpe.jstl/src/org/jboss/tools/jsf/vpe/jstl/template/JstlXOutTemplate.java 2010-07-08 07:22:06 UTC (rev 23304)
@@ -14,7 +14,6 @@
import org.jboss.tools.vpe.editor.context.VpePageContext;
import org.jboss.tools.vpe.editor.template.VpeAbstractTemplate;
import org.jboss.tools.vpe.editor.template.VpeCreationData;
-import org.jboss.tools.vpe.editor.util.HTML;
import org.jboss.tools.vpe.editor.util.VisualDomUtil;
import org.mozilla.interfaces.nsIDOMDocument;
import org.mozilla.interfaces.nsIDOMElement;
@@ -36,15 +35,19 @@
public VpeCreationData create(VpePageContext pageContext, Node sourceNode,
nsIDOMDocument visualDocument) {
- Element sourceElement = (Element) sourceNode;
- String select = sourceElement.getAttribute(Jstl.ATTR_SELECT);
- nsIDOMElement span = VisualDomUtil
- .createBorderlessContainer(visualDocument);
- nsIDOMText text = visualDocument.createTextNode(select);
- span.appendChild(text);
- VpeCreationData creationData = new VpeCreationData(span);
-
- return creationData;
+
+ Element sourceElement = (Element) sourceNode;
+ nsIDOMElement span = VisualDomUtil
+ .createBorderlessContainer(visualDocument);
+
+ if (sourceElement.hasAttribute(Jstl.ATTR_SELECT)) {
+ String select = sourceElement.getAttribute(Jstl.ATTR_SELECT);
+ nsIDOMText text = visualDocument.createTextNode(select);
+ span.appendChild(text);
+ }
+
+ VpeCreationData creationData = new VpeCreationData(span);
+ return creationData;
}
}
15 years, 9 months
JBoss Tools SVN: r23303 - in branches/jbosstools-3.2.0.M1: esb/plugins/org.jboss.tools.esb.validator and 5 other directories.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-07-08 00:26:04 -0400 (Thu, 08 Jul 2010)
New Revision: 23303
Modified:
branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.model/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/esb/plugins/org.jboss.tools.esb.validator/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/esb/plugins/org.jboss.tools.esb.validator/pom.xml
branches/jbosstools-3.2.0.M1/esb/tests/org.jboss.tools.esb.validator.test/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/esb/tests/org.jboss.tools.esb.validator.test/pom.xml
branches/jbosstools-3.2.0.M1/ws/tests/org.jboss.tools.ws.creation.core.test/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/ws/tests/org.jboss.tools.ws.creation.core.test/pom.xml
Log:
fix versions
Modified: branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.model/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.model/META-INF/MANIFEST.MF 2010-07-08 04:13:28 UTC (rev 23302)
+++ branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.model/META-INF/MANIFEST.MF 2010-07-08 04:26:04 UTC (rev 23303)
@@ -79,6 +79,7 @@
org.eclipse.ltk.ui.refactoring,
org.eclipse.wst.common.uriresolver,
org.eclipse.wst.common.modulecore,
+ org.eclipse.jem.util,
org.eclipse.wst.common.emfworkbench.integration,
org.eclipse.core.resources;visibility:=reexport,
org.eclipse.core.runtime;visibility:=reexport
Modified: branches/jbosstools-3.2.0.M1/esb/plugins/org.jboss.tools.esb.validator/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/esb/plugins/org.jboss.tools.esb.validator/META-INF/MANIFEST.MF 2010-07-08 04:13:28 UTC (rev 23302)
+++ branches/jbosstools-3.2.0.M1/esb/plugins/org.jboss.tools.esb.validator/META-INF/MANIFEST.MF 2010-07-08 04:26:04 UTC (rev 23303)
@@ -16,5 +16,5 @@
org.jboss.tools.esb.project.core,
org.eclipse.wst.validation,
org.eclipse.jdt.ui
-Bundle-Version: 2.0.0
+Bundle-Version: 2.0.0.qualifier
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Modified: branches/jbosstools-3.2.0.M1/esb/plugins/org.jboss.tools.esb.validator/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/esb/plugins/org.jboss.tools.esb.validator/pom.xml 2010-07-08 04:13:28 UTC (rev 23302)
+++ branches/jbosstools-3.2.0.M1/esb/plugins/org.jboss.tools.esb.validator/pom.xml 2010-07-08 04:26:04 UTC (rev 23303)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools</groupId>
<artifactId>org.jboss.tools.esb.validator</artifactId>
- <version>2.0.0</version>
+ <version>2.0.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/esb/tests/org.jboss.tools.esb.validator.test/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/esb/tests/org.jboss.tools.esb.validator.test/META-INF/MANIFEST.MF 2010-07-08 04:13:28 UTC (rev 23302)
+++ branches/jbosstools-3.2.0.M1/esb/tests/org.jboss.tools.esb.validator.test/META-INF/MANIFEST.MF 2010-07-08 04:26:04 UTC (rev 23303)
@@ -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.0.0
+Bundle-Version: 1.0.0.qualifier
Bundle-Vendor: JBoss by Red Hat
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Require-Bundle: org.jboss.tools.esb.core,
Modified: branches/jbosstools-3.2.0.M1/esb/tests/org.jboss.tools.esb.validator.test/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/esb/tests/org.jboss.tools.esb.validator.test/pom.xml 2010-07-08 04:13:28 UTC (rev 23302)
+++ branches/jbosstools-3.2.0.M1/esb/tests/org.jboss.tools.esb.validator.test/pom.xml 2010-07-08 04:26:04 UTC (rev 23303)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools</groupId>
<artifactId>org.jboss.tools.esb.validator.test</artifactId>
- <version>1.0.0</version>
+ <version>1.0.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/ws/tests/org.jboss.tools.ws.creation.core.test/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/ws/tests/org.jboss.tools.ws.creation.core.test/META-INF/MANIFEST.MF 2010-07-08 04:13:28 UTC (rev 23302)
+++ branches/jbosstools-3.2.0.M1/ws/tests/org.jboss.tools.ws.creation.core.test/META-INF/MANIFEST.MF 2010-07-08 04:26:04 UTC (rev 23303)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.ws.creation.core.test
-Bundle-Version: 1.0.0
+Bundle-Version: 1.0.0.qualifier
Bundle-Activator: org.jboss.tools.ws.creation.core.test.Activator
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime,
Modified: branches/jbosstools-3.2.0.M1/ws/tests/org.jboss.tools.ws.creation.core.test/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/ws/tests/org.jboss.tools.ws.creation.core.test/pom.xml 2010-07-08 04:13:28 UTC (rev 23302)
+++ branches/jbosstools-3.2.0.M1/ws/tests/org.jboss.tools.ws.creation.core.test/pom.xml 2010-07-08 04:26:04 UTC (rev 23303)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.ws.tests</groupId>
<artifactId>org.jboss.tools.ws.creation.core.test</artifactId>
- <version>1.0.0</version>
+ <version>1.0.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
15 years, 9 months
JBoss Tools SVN: r23301 - trunk/build.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-07-07 23:57:20 -0400 (Wed, 07 Jul 2010)
New Revision: 23301
Modified:
trunk/build/publish.sh
Log:
add timestamps
Modified: trunk/build/publish.sh
===================================================================
--- trunk/build/publish.sh 2010-07-08 03:41:29 UTC (rev 23300)
+++ trunk/build/publish.sh 2010-07-08 03:57:20 UTC (rev 23301)
@@ -69,10 +69,14 @@
if [[ $ec != "0" ]]; then
echo "" >> ${el}; echo -n "ERR" >> ${el}; echo "ORS FOUND: "$ec >> ${el};
fi
+
+date
rsync -arzq ${WORKSPACE}/site/${JOB_NAME}/*LOG.txt $DESTINATION/${JOB_NAME}/
+date
# publish to download.jboss.org, unless errors found - avoid destroying last-good update site
if [[ $ec == "0" ]] && [[ $fc == "0" ]]; then
+date
if [[ -d ${WORKSPACE}/site/${JOB_NAME} ]]; then
rsync -arzq --delete ${WORKSPACE}/site/${JOB_NAME} $DESTINATION/
fi
@@ -81,4 +85,4 @@
rsync -arzq --delete ${WORKSPACE}/site/${SNAPNAME} $DESTINATION/
fi
fi
-
+date
15 years, 9 months
JBoss Tools SVN: r23300 - in trunk: esb/plugins/org.jboss.tools.esb.validator and 11 other directories.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-07-07 23:41:29 -0400 (Wed, 07 Jul 2010)
New Revision: 23300
Added:
trunk/build/util/checkPOMvsManifest.sh
Modified:
trunk/esb/plugins/org.jboss.tools.esb.validator/META-INF/MANIFEST.MF
trunk/esb/plugins/org.jboss.tools.esb.validator/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/jsf/tests/org.jboss.tools.jsf.vpe.myfaces.test/
trunk/jsf/tests/org.jboss.tools.jsf.vpe.seam.test/
trunk/maven/features/org.jboss.tools.maven.cdi.feature/feature.xml
trunk/maven/features/org.jboss.tools.maven.hibernate.feature/feature.xml
trunk/maven/features/org.jboss.tools.maven.jsf.feature/feature.xml
trunk/maven/features/org.jboss.tools.maven.portlet.feature/feature.xml
trunk/ws/tests/org.jboss.tools.ws.creation.core.test/META-INF/MANIFEST.MF
trunk/ws/tests/org.jboss.tools.ws.creation.core.test/pom.xml
Log:
fix manifest/pom versions
Added: trunk/build/util/checkPOMvsManifest.sh
===================================================================
--- trunk/build/util/checkPOMvsManifest.sh (rev 0)
+++ trunk/build/util/checkPOMvsManifest.sh 2010-07-08 03:41:29 UTC (rev 23300)
@@ -0,0 +1,44 @@
+#!/bin/bash
+
+if [[ $1 ]] && [[ -d $1 ]]; then
+ basedir=$1
+else
+ basedir=.
+fi
+
+files=$(find . -maxdepth 5 -type f -name MANIFEST.MF | egrep -v "target|sdk")" "$(find . -maxdepth 4 -type f -name "feature.xml" | egrep -v "target|sdk")
+for f in $files; do
+ d=${f/META-INF\/MANIFEST.MF/}; #assume plugin
+ if [[ $d == $f ]]; then #else feature
+ d=${f/feature.xml/}
+ artVersionLine=$(cat $f | egrep "version=\"[0-9]\.[0-9]\.[0-9]\.qualifier" | egrep "[0-9]\.[0-9]\.[0-9]")
+ artVersion=${artVersionLine##*version=\"}
+ artVersion=${artVersion%%.qualifier*}
+ artVersionLine=" "$(cat $f | egrep "version=\"[0-9]\.[0-9]\.[0-9]\.qualifier" | egrep "[0-9]\.[0-9]\.[0-9]")
+ else
+ artVersionLine=$(cat $f | egrep "Bundle-Version: " | egrep "[0-9]\.[0-9]\.[0-9]")
+ artVersion=${artVersionLine##*: }
+ artVersion=${artVersion%%.qualifier}
+ artVersionLine=" "$artVersionLine
+ fi
+ if [[ -f $d/pom.xml ]]; then
+ pomVersionLine=$(cat $d/pom.xml | sed "s/\t//" | egrep ".0-SNAPSHOT" | egrep "[0-9]\.[0-9]\.[0-9]")
+ pomVersion=${pomVersionLine#*<version>}
+ pomVersion=${pomVersion%-SNAPSHOT*}
+ pomVersionLine=" "$pomVersionLine
+
+ if [[ $artVersion != $pomVersion ]]; then
+ echo "[ERROR] $d"
+ echo "[ERROR] Artifact version [$artVersion] != pom version [$pomVersion]" | egrep "[0-9]\.[0-9]\.[0-9]";
+ echo "[ERROR] $artVersionLine"
+ echo "[ERROR] $pomVersionLine"
+ echo ""
+ else
+ #echo "[INFO] [$artVersion] = [$pomVersion] $d "
+ true
+ fi
+ else
+ echo "[WARNING] $d contains no pom.xml"
+ fi
+done
+
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 2010-07-08 03:28:42 UTC (rev 23299)
+++ trunk/esb/plugins/org.jboss.tools.esb.validator/META-INF/MANIFEST.MF 2010-07-08 03:41:29 UTC (rev 23300)
@@ -16,5 +16,5 @@
org.jboss.tools.esb.project.core,
org.eclipse.wst.validation,
org.eclipse.jdt.ui
-Bundle-Version: 2.0.0
+Bundle-Version: 2.0.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 2010-07-08 03:28:42 UTC (rev 23299)
+++ trunk/esb/plugins/org.jboss.tools.esb.validator/pom.xml 2010-07-08 03:41:29 UTC (rev 23300)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools</groupId>
<artifactId>org.jboss.tools.esb.validator</artifactId>
- <version>2.0.0</version>
+ <version>2.0.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
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 2010-07-08 03:28:42 UTC (rev 23299)
+++ trunk/esb/tests/org.jboss.tools.esb.validator.test/META-INF/MANIFEST.MF 2010-07-08 03:41:29 UTC (rev 23300)
@@ -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.0.0
+Bundle-Version: 1.0.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 2010-07-08 03:28:42 UTC (rev 23299)
+++ trunk/esb/tests/org.jboss.tools.esb.validator.test/pom.xml 2010-07-08 03:41:29 UTC (rev 23300)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools</groupId>
<artifactId>org.jboss.tools.esb.validator.test</artifactId>
- <version>1.0.0</version>
+ <version>1.0.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
</project>
Property changes on: trunk/jsf/tests/org.jboss.tools.jsf.vpe.myfaces.test
___________________________________________________________________
Name: svn:ignore
- bin
target
build
d
+ bin
target
build
d
*test.jar
Property changes on: trunk/jsf/tests/org.jboss.tools.jsf.vpe.seam.test
___________________________________________________________________
Name: svn:ignore
- bin
target
build
d
+ bin
target
build
d
*test.jar
Modified: trunk/maven/features/org.jboss.tools.maven.cdi.feature/feature.xml
===================================================================
--- trunk/maven/features/org.jboss.tools.maven.cdi.feature/feature.xml 2010-07-08 03:28:42 UTC (rev 23299)
+++ trunk/maven/features/org.jboss.tools.maven.cdi.feature/feature.xml 2010-07-08 03:41:29 UTC (rev 23300)
@@ -1,33 +1,33 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<feature
- id="org.jboss.tools.maven.cdi.feature"
- label="%featureName"
- version="1.0.0.qualifier"
- provider-name="%providerName"
- plugin="org.jboss.tools.maven.cdi">
-
- <description>
- %description
- </description>
-
- <copyright>
- %copyright
- </copyright>
-
- <license url="%licenseURL">
- %license
- </license>
-
- <requires>
- <import feature="org.maven.ide.eclipse.feature" version="0.10.0" match="greaterOrEqual"/>
- <import feature="org.maven.ide.eclipse.wtp.feature" version="0.10.0" match="greaterOrEqual"/>
- </requires>
-
- <plugin
- id="org.jboss.tools.maven.cdi"
- download-size="0"
- install-size="0"
- version="0.0.0"
- unpack="false"/>
-
-</feature>
+<?xml version="1.0" encoding="UTF-8"?>
+<feature
+ id="org.jboss.tools.maven.cdi.feature"
+ label="%featureName"
+ version="1.0.0.qualifier"
+ provider-name="%providerName"
+ plugin="org.jboss.tools.maven.cdi">
+
+ <description>
+ %description
+ </description>
+
+ <copyright>
+ %copyright
+ </copyright>
+
+ <license url="%licenseURL">
+ %license
+ </license>
+
+ <requires>
+ <import feature="org.maven.ide.eclipse.feature" version="0.10.0" match="greaterOrEqual"/>
+ <import feature="org.maven.ide.eclipse.wtp.feature" version="0.10.0" match="greaterOrEqual"/>
+ </requires>
+
+ <plugin
+ id="org.jboss.tools.maven.cdi"
+ download-size="0"
+ install-size="0"
+ version="0.0.0"
+ unpack="false"/>
+
+</feature>
Modified: trunk/maven/features/org.jboss.tools.maven.hibernate.feature/feature.xml
===================================================================
--- trunk/maven/features/org.jboss.tools.maven.hibernate.feature/feature.xml 2010-07-08 03:28:42 UTC (rev 23299)
+++ trunk/maven/features/org.jboss.tools.maven.hibernate.feature/feature.xml 2010-07-08 03:41:29 UTC (rev 23300)
@@ -1,33 +1,33 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<feature
- id="org.jboss.tools.maven.hibernate.feature"
- label="%featureName"
- version="1.0.0.qualifier"
- provider-name="%providerName"
- plugin="org.jboss.tools.maven.hibernate">
-
- <description>
- %description
- </description>
-
- <copyright>
- %copyright
- </copyright>
-
- <license url="%licenseURL">
- %license
- </license>
-
- <requires>
- <import feature="org.maven.ide.eclipse.feature" version="0.10.0" match="greaterOrEqual"/>
- <import feature="org.maven.ide.eclipse.wtp.feature" version="0.10.0" match="greaterOrEqual"/>
- </requires>
-
- <plugin
- id="org.jboss.tools.maven.hibernate"
- download-size="0"
- install-size="0"
- version="0.0.0"
- unpack="false"/>
-
-</feature>
+<?xml version="1.0" encoding="UTF-8"?>
+<feature
+ id="org.jboss.tools.maven.hibernate.feature"
+ label="%featureName"
+ version="1.0.0.qualifier"
+ provider-name="%providerName"
+ plugin="org.jboss.tools.maven.hibernate">
+
+ <description>
+ %description
+ </description>
+
+ <copyright>
+ %copyright
+ </copyright>
+
+ <license url="%licenseURL">
+ %license
+ </license>
+
+ <requires>
+ <import feature="org.maven.ide.eclipse.feature" version="0.10.0" match="greaterOrEqual"/>
+ <import feature="org.maven.ide.eclipse.wtp.feature" version="0.10.0" match="greaterOrEqual"/>
+ </requires>
+
+ <plugin
+ id="org.jboss.tools.maven.hibernate"
+ download-size="0"
+ install-size="0"
+ version="0.0.0"
+ unpack="false"/>
+
+</feature>
Modified: trunk/maven/features/org.jboss.tools.maven.jsf.feature/feature.xml
===================================================================
--- trunk/maven/features/org.jboss.tools.maven.jsf.feature/feature.xml 2010-07-08 03:28:42 UTC (rev 23299)
+++ trunk/maven/features/org.jboss.tools.maven.jsf.feature/feature.xml 2010-07-08 03:41:29 UTC (rev 23300)
@@ -1,33 +1,33 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<feature
- id="org.jboss.tools.maven.jsf.feature"
- label="%featureName"
- version="1.0.0.qualifier"
- provider-name="%providerName"
- plugin="org.jboss.tools.maven.jsf">
-
- <description>
- %description
- </description>
-
- <copyright>
- %copyright
- </copyright>
-
- <license url="%licenseURL">
- %license
- </license>
-
- <requires>
- <import feature="org.maven.ide.eclipse.feature" version="0.10.0" match="greaterOrEqual"/>
- <import feature="org.maven.ide.eclipse.wtp.feature" version="0.10.0" match="greaterOrEqual"/>
- </requires>
-
- <plugin
- id="org.jboss.tools.maven.jsf"
- download-size="0"
- install-size="0"
- version="0.0.0"
- unpack="false"/>
-
-</feature>
+<?xml version="1.0" encoding="UTF-8"?>
+<feature
+ id="org.jboss.tools.maven.jsf.feature"
+ label="%featureName"
+ version="1.0.0.qualifier"
+ provider-name="%providerName"
+ plugin="org.jboss.tools.maven.jsf">
+
+ <description>
+ %description
+ </description>
+
+ <copyright>
+ %copyright
+ </copyright>
+
+ <license url="%licenseURL">
+ %license
+ </license>
+
+ <requires>
+ <import feature="org.maven.ide.eclipse.feature" version="0.10.0" match="greaterOrEqual"/>
+ <import feature="org.maven.ide.eclipse.wtp.feature" version="0.10.0" match="greaterOrEqual"/>
+ </requires>
+
+ <plugin
+ id="org.jboss.tools.maven.jsf"
+ download-size="0"
+ install-size="0"
+ version="0.0.0"
+ unpack="false"/>
+
+</feature>
Modified: trunk/maven/features/org.jboss.tools.maven.portlet.feature/feature.xml
===================================================================
--- trunk/maven/features/org.jboss.tools.maven.portlet.feature/feature.xml 2010-07-08 03:28:42 UTC (rev 23299)
+++ trunk/maven/features/org.jboss.tools.maven.portlet.feature/feature.xml 2010-07-08 03:41:29 UTC (rev 23300)
@@ -1,33 +1,33 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<feature
- id="org.jboss.tools.maven.portlet.feature"
- label="%featureName"
- version="1.0.0.qualifier"
- provider-name="%providerName"
- plugin="org.jboss.tools.maven.portlet">
-
- <description>
- %description
- </description>
-
- <copyright>
- %copyright
- </copyright>
-
- <license url="%licenseURL">
- %license
- </license>
-
- <requires>
- <import feature="org.maven.ide.eclipse.feature" version="0.10.0" match="greaterOrEqual"/>
- <import feature="org.maven.ide.eclipse.wtp.feature" version="0.10.0" match="greaterOrEqual"/>
- </requires>
-
- <plugin
- id="org.jboss.tools.maven.portlet"
- download-size="0"
- install-size="0"
- version="0.0.0"
- unpack="false"/>
-
-</feature>
+<?xml version="1.0" encoding="UTF-8"?>
+<feature
+ id="org.jboss.tools.maven.portlet.feature"
+ label="%featureName"
+ version="1.0.0.qualifier"
+ provider-name="%providerName"
+ plugin="org.jboss.tools.maven.portlet">
+
+ <description>
+ %description
+ </description>
+
+ <copyright>
+ %copyright
+ </copyright>
+
+ <license url="%licenseURL">
+ %license
+ </license>
+
+ <requires>
+ <import feature="org.maven.ide.eclipse.feature" version="0.10.0" match="greaterOrEqual"/>
+ <import feature="org.maven.ide.eclipse.wtp.feature" version="0.10.0" match="greaterOrEqual"/>
+ </requires>
+
+ <plugin
+ id="org.jboss.tools.maven.portlet"
+ download-size="0"
+ install-size="0"
+ version="0.0.0"
+ unpack="false"/>
+
+</feature>
Modified: trunk/ws/tests/org.jboss.tools.ws.creation.core.test/META-INF/MANIFEST.MF
===================================================================
--- trunk/ws/tests/org.jboss.tools.ws.creation.core.test/META-INF/MANIFEST.MF 2010-07-08 03:28:42 UTC (rev 23299)
+++ trunk/ws/tests/org.jboss.tools.ws.creation.core.test/META-INF/MANIFEST.MF 2010-07-08 03:41:29 UTC (rev 23300)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.ws.creation.core.test
-Bundle-Version: 1.0.0
+Bundle-Version: 1.0.0.qualifier
Bundle-Activator: org.jboss.tools.ws.creation.core.test.Activator
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime,
Modified: trunk/ws/tests/org.jboss.tools.ws.creation.core.test/pom.xml
===================================================================
--- trunk/ws/tests/org.jboss.tools.ws.creation.core.test/pom.xml 2010-07-08 03:28:42 UTC (rev 23299)
+++ trunk/ws/tests/org.jboss.tools.ws.creation.core.test/pom.xml 2010-07-08 03:41:29 UTC (rev 23300)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.ws.tests</groupId>
<artifactId>org.jboss.tools.ws.creation.core.test</artifactId>
- <version>1.0.0</version>
+ <version>1.0.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
15 years, 9 months
JBoss Tools SVN: r23299 - trunk/workingset/features/org.jboss.tools.workingset.feature.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-07-07 23:28:42 -0400 (Wed, 07 Jul 2010)
New Revision: 23299
Modified:
trunk/workingset/features/org.jboss.tools.workingset.feature/
Log:
svn:ignore
Property changes on: trunk/workingset/features/org.jboss.tools.workingset.feature
___________________________________________________________________
Name: svn:ignore
+ target
buildlog.latest.txt
bin
build
*.class
15 years, 9 months
JBoss Tools SVN: r23298 - in trunk/drools: features and 1 other directories.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-07-07 23:26:12 -0400 (Wed, 07 Jul 2010)
New Revision: 23298
Modified:
trunk/drools/
trunk/drools/features/
trunk/drools/plugins/
Log:
add svn:ignores
Property changes on: trunk/drools
___________________________________________________________________
Name: svn:ignore
+ drools-5.1.0.SNAPSHOT-eclipse-all.zip
Property changes on: trunk/drools/features
___________________________________________________________________
Name: svn:ignore
+ org.guvnor.tools.feature
org.drools.eclipse.feature
org.drools.eclipse.task.feature
Property changes on: trunk/drools/plugins
___________________________________________________________________
Name: svn:ignore
+ org.eclipse.webdav
org.guvnor.tools
org.drools.eclipse
org.drools.eclipse.task
15 years, 9 months
JBoss Tools SVN: r23297 - in trunk/seam/plugins: org.jboss.tools.seam.text.ext and 1 other directories.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-07-07 22:44:04 -0400 (Wed, 07 Jul 2010)
New Revision: 23297
Modified:
trunk/seam/plugins/org.jboss.tools.seam.core/pom.xml
trunk/seam/plugins/org.jboss.tools.seam.text.ext/pom.xml
trunk/seam/plugins/org.jboss.tools.seam.ui/pom.xml
Log:
fix versions
Modified: trunk/seam/plugins/org.jboss.tools.seam.core/pom.xml
===================================================================
--- trunk/seam/plugins/org.jboss.tools.seam.core/pom.xml 2010-07-08 02:34:57 UTC (rev 23296)
+++ trunk/seam/plugins/org.jboss.tools.seam.core/pom.xml 2010-07-08 02:44:04 UTC (rev 23297)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.seam.plugins</groupId>
<artifactId>org.jboss.tools.seam.core</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.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 2010-07-08 02:34:57 UTC (rev 23296)
+++ trunk/seam/plugins/org.jboss.tools.seam.text.ext/pom.xml 2010-07-08 02:44:04 UTC (rev 23297)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.seam.plugins</groupId>
<artifactId>org.jboss.tools.seam.text.ext</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.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 2010-07-08 02:34:57 UTC (rev 23296)
+++ trunk/seam/plugins/org.jboss.tools.seam.ui/pom.xml 2010-07-08 02:44:04 UTC (rev 23297)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.seam.plugins</groupId>
<artifactId>org.jboss.tools.seam.ui</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
15 years, 9 months
JBoss Tools SVN: r23296 - trunk/seam/plugins/org.jboss.tools.seam.xml.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-07-07 22:34:57 -0400 (Wed, 07 Jul 2010)
New Revision: 23296
Modified:
trunk/seam/plugins/org.jboss.tools.seam.xml/pom.xml
Log:
fix pom/manifest versions
Modified: trunk/seam/plugins/org.jboss.tools.seam.xml/pom.xml
===================================================================
--- trunk/seam/plugins/org.jboss.tools.seam.xml/pom.xml 2010-07-08 01:53:38 UTC (rev 23295)
+++ trunk/seam/plugins/org.jboss.tools.seam.xml/pom.xml 2010-07-08 02:34:57 UTC (rev 23296)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.seam.plugins</groupId>
<artifactId>org.jboss.tools.seam.xml</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
15 years, 9 months