JBoss Tools SVN: r41475 - in trunk: tests/plugins/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: jgargula
Date: 2012-05-28 06:51:49 -0400 (Mon, 28 May 2012)
New Revision: 41475
Modified:
trunk/build/aggregate/soatests-site/tests/org.jboss.tools.drools.ui.bot.test/src/org/jboss/tools/drools/ui/bot/test/smoke/DroolsViewsTest.java
trunk/build/aggregate/soatests-site/tests/org.jboss.tools.drools.ui.bot.test/src/org/jboss/tools/drools/ui/bot/test/smoke/RuleFlowTest.java
trunk/tests/plugins/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/SWTUtilExt.java
Log:
Added support for capturing standard output.
Modified: trunk/build/aggregate/soatests-site/tests/org.jboss.tools.drools.ui.bot.test/src/org/jboss/tools/drools/ui/bot/test/smoke/DroolsViewsTest.java
===================================================================
--- trunk/build/aggregate/soatests-site/tests/org.jboss.tools.drools.ui.bot.test/src/org/jboss/tools/drools/ui/bot/test/smoke/DroolsViewsTest.java 2012-05-28 02:51:02 UTC (rev 41474)
+++ trunk/build/aggregate/soatests-site/tests/org.jboss.tools.drools.ui.bot.test/src/org/jboss/tools/drools/ui/bot/test/smoke/DroolsViewsTest.java 2012-05-28 10:51:49 UTC (rev 41475)
@@ -2,8 +2,6 @@
import static org.eclipse.swtbot.swt.finder.matchers.WidgetMatcherFactory.withLabel;
-import java.io.ByteArrayOutputStream;
-import java.io.PrintStream;
import java.util.ArrayList;
import java.util.HashSet;
import java.util.List;
@@ -18,6 +16,7 @@
import org.eclipse.swtbot.swt.finder.widgets.SWTBotTreeItem;
import org.jboss.tools.ui.bot.ext.SWTOpenExt;
import org.jboss.tools.ui.bot.ext.SWTTestExt;
+import org.jboss.tools.ui.bot.ext.SWTUtilExt;
import org.jboss.tools.ui.bot.ext.Timing;
import org.jboss.tools.ui.bot.ext.gen.IView;
import org.jboss.tools.ui.bot.ext.helper.DragAndDropHelper;
@@ -71,7 +70,10 @@
// waits for running debugging
while (!eclipse.isDebugging()) {
- bot.sleep(Timing.time500MS());
+ bot.sleep(Timing.time1S());
+ if (console.getConsoleText().contains("Finished")) {
+ fail("Probably debugging is not stopping at breakpoints.");
+ }
}
// waits for stopping at breakpoint
@@ -134,13 +136,9 @@
public void agendaTest() {
bot.editorByTitle(RULES_FILE).show();
eclipse.stepOver();
- // Some hacks to read output stream and check exception
- PrintStream defaultOutputStream = System.out;
- ByteArrayOutputStream pipeOut = new ByteArrayOutputStream();
- System.setOut(new PrintStream(pipeOut));
+ SWTUtilExt.startCapturingStandardOutput();
openView(IDELabel.View.AGENDA);
- System.setOut(defaultOutputStream);
- String output = new String(pipeOut.toByteArray());
+ final String output = SWTUtilExt.stopCapturingStandardOutput();
System.out.print(output);
HashSet<Activation> expectedSet = new HashSet<Activation>(2);
// indicies are not compared
Modified: trunk/build/aggregate/soatests-site/tests/org.jboss.tools.drools.ui.bot.test/src/org/jboss/tools/drools/ui/bot/test/smoke/RuleFlowTest.java
===================================================================
--- trunk/build/aggregate/soatests-site/tests/org.jboss.tools.drools.ui.bot.test/src/org/jboss/tools/drools/ui/bot/test/smoke/RuleFlowTest.java 2012-05-28 02:51:02 UTC (rev 41474)
+++ trunk/build/aggregate/soatests-site/tests/org.jboss.tools.drools.ui.bot.test/src/org/jboss/tools/drools/ui/bot/test/smoke/RuleFlowTest.java 2012-05-28 10:51:49 UTC (rev 41475)
@@ -41,7 +41,6 @@
import org.jboss.tools.ui.bot.ext.SWTUtilExt;
import org.jboss.tools.ui.bot.ext.Timing;
import org.jboss.tools.ui.bot.ext.gen.ActionItem;
-//import org.jboss.tools.ui.bot.ext.helper.KeyboardHelper;
import org.jboss.tools.ui.bot.ext.types.IDELabel;
import org.jboss.tools.ui.bot.ext.types.ViewType;
import org.junit.Test;
@@ -126,8 +125,11 @@
*/
private void ruleFlowEditorCheck(String ruleFlowFileName) {
packageExplorer.show();
- packageExplorer.openFile(DroolsAllBotTests.DROOLS_PROJECT_NAME ,
+ SWTUtilExt.startCapturingStandardOutput();
+ packageExplorer.openFile(DroolsAllBotTests.DROOLS_PROJECT_NAME,
DroolsAllBotTests.SRC_MAIN_RULES_TREE_NODE, ruleFlowFileName);
+ final String capturedOutput = SWTUtilExt.stopCapturingStandardOutput();
+ System.out.print(capturedOutput);
// Test if Rule Flow File is opened in editor
assertTrue("Rule Flow File is not opened properly. File " + ruleFlowFileName + " is not opened in editor",
SWTEclipseExt.existEditorWithLabel(bot, ruleFlowFileName));
@@ -193,6 +195,9 @@
gefEditor.save();
gefEditor.close();
checkEmptyRuleFile(DroolsAllBotTests.DROOLS_PROJECT_NAME , ruleFlowFileName);
+ assertFalse("Opening BPMN process throws IndexOutOfBoundsException exception."
+ + " Reported bug: https://issues.jboss.org/browse/JBIDE-11984",
+ capturedOutput.contains("IndexOutOfBoundsException"));
}
/**
Modified: trunk/tests/plugins/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/SWTUtilExt.java
===================================================================
--- trunk/tests/plugins/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/SWTUtilExt.java 2012-05-28 02:51:02 UTC (rev 41474)
+++ trunk/tests/plugins/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/SWTUtilExt.java 2012-05-28 10:51:49 UTC (rev 41475)
@@ -16,10 +16,12 @@
import static org.junit.Assert.fail;
import java.io.BufferedReader;
+import java.io.ByteArrayOutputStream;
import java.io.File;
import java.io.FileReader;
import java.io.IOException;
import java.io.InputStream;
+import java.io.PrintStream;
import java.lang.reflect.InvocationTargetException;
import java.util.ArrayList;
import java.util.Iterator;
@@ -72,7 +74,7 @@
*/
public class SWTUtilExt extends SWTUtils {
- private Logger log = Logger.getLogger(SWTUtilExt.class);
+ private static Logger log = Logger.getLogger(SWTUtilExt.class);
protected SWTWorkbenchBot bot;
private static class AlwaysMatchMatcher<T extends Widget> extends BaseMatcher<T> {
@@ -853,4 +855,41 @@
return new SWTBotMenu(menuItem, matcher);
}
+ /********** CAPTURING OF STANDARD OUTPUT **********/
+
+ /**
+ * Default output stream before redirecting.
+ */
+ private static PrintStream defaultOutputStream = System.out;
+ /**
+ * Redirected output stream for capturing output.
+ */
+ private static ByteArrayOutputStream capturingByteArrayOutputStream = null;
+
+ /**
+ * Starts capturing of standard output.
+ * Redirects standard output into other <code>PrintStream</code>
+ * which is captured.
+ */
+ public static void startCapturingStandardOutput() {
+ capturingByteArrayOutputStream = new ByteArrayOutputStream();
+ System.setOut(new PrintStream(capturingByteArrayOutputStream));
+ log.info("Capturing of standard output was started.");
+ }
+
+ /**
+ * Stops capturing of standard output by setting the default standard output.
+ *
+ * @return Captured output.
+ */
+ public static String stopCapturingStandardOutput() {
+ System.setOut(defaultOutputStream);
+ final String capturedOutput = new String(capturingByteArrayOutputStream.toByteArray());
+ capturingByteArrayOutputStream = null;
+ log.info("Capturing of standard output was stopped.");
+ return capturedOutput;
+ }
+
+ /********** END OF CAPTURING OF STANDARD OUTPUT **********/
+
}
\ No newline at end of file
13 years, 10 months
JBoss Tools SVN: r41474 - branches/jbosstools-3.3.x/requirements.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2012-05-27 22:51:02 -0400 (Sun, 27 May 2012)
New Revision: 41474
Modified:
branches/jbosstools-3.3.x/requirements/.gitignore
Log:
.gitignore file
Modified: branches/jbosstools-3.3.x/requirements/.gitignore
===================================================================
--- branches/jbosstools-3.3.x/requirements/.gitignore 2012-05-28 00:05:52 UTC (rev 41473)
+++ branches/jbosstools-3.3.x/requirements/.gitignore 2012-05-28 02:51:02 UTC (rev 41474)
@@ -1 +1,2 @@
download
+target
13 years, 10 months
JBoss Tools SVN: r41473 - trunk/esb/tests/org.jboss.tools.esb.project.core.test.
by jbosstools-commits@lists.jboss.org
Author: ldimaggio
Date: 2012-05-27 20:05:52 -0400 (Sun, 27 May 2012)
New Revision: 41473
Modified:
trunk/esb/tests/org.jboss.tools.esb.project.core.test/pom.xml
Log:
Corrected invalid dir name for SOA releases in: org.jboss.tools.esb.project.core.test/pom.xml
Modified: trunk/esb/tests/org.jboss.tools.esb.project.core.test/pom.xml
===================================================================
--- trunk/esb/tests/org.jboss.tools.esb.project.core.test/pom.xml 2012-05-27 22:55:54 UTC (rev 41472)
+++ trunk/esb/tests/org.jboss.tools.esb.project.core.test/pom.xml 2012-05-28 00:05:52 UTC (rev 41473)
@@ -13,7 +13,7 @@
<packaging>eclipse-test-plugin</packaging>
<properties>
- <systemProperties>-Djbosstools.test.jboss.home.4.2=${requirement.build.root}/jboss-soa-p.5.0.0/jboss-soa-p.5.0.0/jboss-as -Djbosstools.test.jboss.home.5.0=${requirement.build.root}/jboss-soa-p.5.0.0/jboss-soa-p.5.0.0/jboss-as -Djbosstools.test.jboss.home.5.1=${requirement.build.root}/jboss-5.1.0.GA -Djbosstools.test.soap.home.4.3=${requirement.build.root}/jboss-soa-p.4.3.0/jboss-soa-p.4.3.0/jboss-as -Djbosstools.test.soap.home.5.0=${requirement.build.root}/jboss-soa-p.5.0.0/jboss-soa-p.5.0.0/jboss-as</systemProperties>
+ <systemProperties>-Djbosstools.test.jboss.home.4.2=${requirement.build.root}/jboss-soa-p.5.0.0/jboss-soa-p.5.0.0/jboss-as -Djbosstools.test.jboss.home.5.0=${requirement.build.root}/jboss-soa-p.5.0.0/jboss-soa-p.5.0.0/jboss-as -Djbosstools.test.jboss.home.5.1=${requirement.build.root}/jboss-5.1.0.GA -Djbosstools.test.soap.home.4.3=${requirement.build.root}/jboss-soa-p.4.3.0/jboss-soa-p.4.3.0/ -Djbosstools.test.soap.home.5.0=${requirement.build.root}/jboss-soa-p.5.0.0/jboss-soa-p.5.0.0/</systemProperties>
<coverage.filter>org.jboss.tools.esb.core*</coverage.filter>
<emma.instrument.bundles>org.jboss.tools.esb.project.core</emma.instrument.bundles>
</properties>
13 years, 10 months
JBoss Tools SVN: r41472 - trunk/esb/tests/org.jboss.tools.esb.project.core.test/src/org/jboss/tools/esb/project/core/test.
by jbosstools-commits@lists.jboss.org
Author: ldimaggio
Date: 2012-05-27 18:55:54 -0400 (Sun, 27 May 2012)
New Revision: 41472
Modified:
trunk/esb/tests/org.jboss.tools.esb.project.core.test/src/org/jboss/tools/esb/project/core/test/ESBProjectDeploymentTest.java
Log:
Added failing server location string to message displayed when test in method createServer fails - ESBProjectDeploymentTest.java
Modified: trunk/esb/tests/org.jboss.tools.esb.project.core.test/src/org/jboss/tools/esb/project/core/test/ESBProjectDeploymentTest.java
===================================================================
--- trunk/esb/tests/org.jboss.tools.esb.project.core.test/src/org/jboss/tools/esb/project/core/test/ESBProjectDeploymentTest.java 2012-05-27 22:14:05 UTC (rev 41471)
+++ trunk/esb/tests/org.jboss.tools.esb.project.core.test/src/org/jboss/tools/esb/project/core/test/ESBProjectDeploymentTest.java 2012-05-27 22:55:54 UTC (rev 41472)
@@ -226,12 +226,14 @@
IClasspathEntry[] entry = initializer.getEntries(path);//jproject.getRawClasspath();
List<String> jars = new ArrayList<String>();
+ /* ldimaggi - display list of jars in the assert text - https://issues.jboss.org/browse/JBDS-2152 */
+ String jarsString = null;
for(IClasspathEntry ent :entry){
jars.add(ent.getPath().lastSegment());
+ jarsString = jarsString + ent.getPath().lastSegment() + " ";
}
+ assertEquals("unalbe to read User customized ESB runtime, jbossesb-rosetta.jar is not in classpath." + jarsString, true, jars.contains("jbossesb-rosetta.jar"));
- assertEquals("unalbe to read User customized ESB runtime, jbossesb-rosetta.jar is not in classpath.", true, jars.contains("jbossesb-rosetta.jar"));
-
}
public void testSOAP50Deployment() throws Exception {
@@ -351,7 +353,7 @@
protected void createServer(String runtimeID, String serverID,
String location, String configuration) throws CoreException {
// if file doesnt exist, abort immediately.
- assertTrue(new Path(location).toFile().exists());
+ assertTrue("server location " + location + " does not exist", new Path(location).toFile().exists());
currentRuntime = createRuntime(runtimeID, location, configuration);
IServerType serverType = ServerCore.findServerType(serverID);
13 years, 10 months
JBoss Tools SVN: r41471 - trunk/download.jboss.org/jbosstools/examples.
by jbosstools-commits@lists.jboss.org
Author: fbricon
Date: 2012-05-27 18:14:05 -0400 (Sun, 27 May 2012)
New Revision: 41471
Modified:
trunk/download.jboss.org/jbosstools/examples/project-examples-shared-3.3....
trunk/download.jboss.org/jbosstools/examples/project-examples-shared-3.3....
trunk/download.jboss.org/jbosstools/examples/project-examples-shared-3.3....
Log:
JBIDE-11870 : update gwt archetype to jboss-errai-kitchensink-archetype 2.0.0.Final
Modified: trunk/download.jboss.org/jbosstools/examples/project-examples-shared-3.3....
===================================================================
--- trunk/download.jboss.org/jbosstools/examples/project-examples-shared-3.3.... 2012-05-27 20:58:08 UTC (rev 41470)
+++ trunk/download.jboss.org/jbosstools/examples/project-examples-shared-3.3.... 2012-05-27 22:14:05 UTC (rev 41471)
@@ -39,7 +39,7 @@
<property name="id">org.jboss.tools.maven.core</property>
<property name="versions">[1.3.0,1.4.0)</property>
<property name="description">This project example requires JBoss Maven Tools.</property>
- <property name="connectorIds">org.jboss.tools.maven.feature,org.jboss.tools.maven.cdi.feature,org.jboss.tools.maven.hibernate.feature,org.jboss.tools.maven.jaxrs.feature,org.jboss.tools.maven.portlet.feature,org.jboss.tools.maven.seam.feature</property>
+ <property name="connectorIds">org.jboss.tools.maven.feature,org.jboss.tools.maven.cdi.feature,org.jboss.tools.maven.hibernate.feature,org.jboss.tools.maven.jaxrs.feature</property>
</fix>
</fixes>
<importType>mavenArchetype</importType>
@@ -49,9 +49,9 @@
<archetypeGroupId>org.jboss.spec.archetypes</archetypeGroupId>
<archetypeArtifactId>jboss-javaee6-webapp-archetype</archetypeArtifactId>
<archetypeVersion>7.1.1.Beta2</archetypeVersion>
-
+ <!--
<archetypeRepository>http://repository.jboss.org/nexus/content/repositories/releases/</archetypeRepository>
-
+ -->
<groupId>org.jboss.tools.examples</groupId>
<artifactId>jboss-javaee6-webapp</artifactId>
<version>0.0.1-SNAPSHOT</version>
@@ -105,9 +105,9 @@
<archetypeGroupId>org.jboss.spec.archetypes</archetypeGroupId>
<archetypeArtifactId>jboss-javaee6-webapp-ear-archetype</archetypeArtifactId>
<archetypeVersion>7.1.1.Beta2</archetypeVersion>
+ <!--
<archetypeRepository>http://repository.jboss.org/nexus/content/repositories/releases/</archetypeRepository>
- <!--
- <archetypeRepository>http://anonsvn.jboss.org/repos/jbosstools/workspace/fred/repositories/sna...</archetypeRepository>
+ <archetypeRepository>http://anonsvn.jboss.org/repos/jbosstools/workspace/fred/repositories/sna...</archetypeRepository>
-->
<groupId>org.jboss.tools.example</groupId>
<artifactId>multi</artifactId>
@@ -214,9 +214,9 @@
<archetypeGroupId>org.richfaces.archetypes</archetypeGroupId>
<archetypeArtifactId>richfaces-archetype-kitchensink</archetypeArtifactId>
<archetypeVersion>4.2.2.Final-1</archetypeVersion>
- <archetypeRepository>http://repository.jboss.org/nexus/content/repositories/releases/</archetypeRepository>
<!--
- <archetypeRepository>https://repository.jboss.org/nexus/content/repositories/jboss_releases_st...</archetypeRepository>
+ <archetypeRepository>http://repository.jboss.org/nexus/content/repositories/releases/</archetypeRepository>
+ <archetypeRepository>https://repository.jboss.org/nexus/content/repositories/jboss_releases_st...</archetypeRepository>
<archetypeRepository>http://repository.jboss.org/nexus/content/repositories/snapshots/</archetypeRepository>
-->
<groupId>org.jboss.tools.example</groupId>
@@ -335,17 +335,17 @@
</fix>
</fixes>
<importType>mavenArchetype</importType>
- <importTypeDescription>The project example requires the m2e, m2eclipse-wtp, JBoss Maven Integration and Google Plugin for Eclipse features.</importTypeDescription>
+ <importTypeDescription>The project example requires the m2e, m2eclipse-wtp, JBoss Maven GWT Integration and Google Plugin for Eclipse features.</importTypeDescription>
<!-- Activating the profile causes a build error :
'dependencies.dependency.version' for org.jboss.as:jboss-as-arquillian-container-remote:jar is missing.
<defaultMavenProfiles>arq-jbossas-remote</defaultMavenProfiles>
-->
<mavenArchetype>
<archetypeGroupId>org.jboss.errai.archetypes</archetypeGroupId>
- <archetypeArtifactId>kitchensink-quickstart</archetypeArtifactId>
- <archetypeVersion>2.0.0.Final-JBT</archetypeVersion>
+ <archetypeArtifactId>jboss-errai-kitchensink-archetype</archetypeArtifactId>
+ <archetypeVersion>2.0.0.Final</archetypeVersion>
+ <!--
<archetypeRepository>http://anonsvn.jboss.org/repos/jbosstools/workspace/fred/repositories/sna...</archetypeRepository>
- <!--
<archetypeRepository>https://repository.jboss.org/nexus/content/groups/public/</archetypeRepository>
-->
<groupId>org.jboss.tools.example</groupId>
Modified: trunk/download.jboss.org/jbosstools/examples/project-examples-shared-3.3....
===================================================================
--- trunk/download.jboss.org/jbosstools/examples/project-examples-shared-3.3.... 2012-05-27 20:58:08 UTC (rev 41470)
+++ trunk/download.jboss.org/jbosstools/examples/project-examples-shared-3.3.... 2012-05-27 22:14:05 UTC (rev 41471)
@@ -39,7 +39,7 @@
<property name="id">org.jboss.tools.maven.core</property>
<property name="versions">[1.3.0,1.4.0)</property>
<property name="description">This project example requires JBoss Maven Tools.</property>
- <property name="connectorIds">org.jboss.tools.maven.feature,org.jboss.tools.maven.cdi.feature,org.jboss.tools.maven.hibernate.feature,org.jboss.tools.maven.jaxrs.feature,org.jboss.tools.maven.portlet.feature,org.jboss.tools.maven.seam.feature</property>
+ <property name="connectorIds">org.jboss.tools.maven.feature,org.jboss.tools.maven.cdi.feature,org.jboss.tools.maven.hibernate.feature,org.jboss.tools.maven.jaxrs.feature</property>
</fix>
</fixes>
<importType>mavenArchetype</importType>
@@ -49,9 +49,9 @@
<archetypeGroupId>org.jboss.spec.archetypes</archetypeGroupId>
<archetypeArtifactId>jboss-javaee6-webapp-archetype</archetypeArtifactId>
<archetypeVersion>7.1.1.Beta2</archetypeVersion>
-
+ <!--
<archetypeRepository>http://repository.jboss.org/nexus/content/repositories/releases/</archetypeRepository>
-
+ -->
<groupId>org.jboss.tools.examples</groupId>
<artifactId>jboss-javaee6-webapp</artifactId>
<version>0.0.1-SNAPSHOT</version>
@@ -105,9 +105,9 @@
<archetypeGroupId>org.jboss.spec.archetypes</archetypeGroupId>
<archetypeArtifactId>jboss-javaee6-webapp-ear-archetype</archetypeArtifactId>
<archetypeVersion>7.1.1.Beta2</archetypeVersion>
+ <!--
<archetypeRepository>http://repository.jboss.org/nexus/content/repositories/releases/</archetypeRepository>
- <!--
- <archetypeRepository>http://anonsvn.jboss.org/repos/jbosstools/workspace/fred/repositories/sna...</archetypeRepository>
+ <archetypeRepository>http://anonsvn.jboss.org/repos/jbosstools/workspace/fred/repositories/sna...</archetypeRepository>
-->
<groupId>org.jboss.tools.example</groupId>
<artifactId>multi</artifactId>
@@ -214,9 +214,9 @@
<archetypeGroupId>org.richfaces.archetypes</archetypeGroupId>
<archetypeArtifactId>richfaces-archetype-kitchensink</archetypeArtifactId>
<archetypeVersion>4.2.2.Final-1</archetypeVersion>
- <archetypeRepository>http://repository.jboss.org/nexus/content/repositories/releases/</archetypeRepository>
<!--
- <archetypeRepository>https://repository.jboss.org/nexus/content/repositories/jboss_releases_st...</archetypeRepository>
+ <archetypeRepository>http://repository.jboss.org/nexus/content/repositories/releases/</archetypeRepository>
+ <archetypeRepository>https://repository.jboss.org/nexus/content/repositories/jboss_releases_st...</archetypeRepository>
<archetypeRepository>http://repository.jboss.org/nexus/content/repositories/snapshots/</archetypeRepository>
-->
<groupId>org.jboss.tools.example</groupId>
@@ -335,17 +335,17 @@
</fix>
</fixes>
<importType>mavenArchetype</importType>
- <importTypeDescription>The project example requires the m2e, m2eclipse-wtp, JBoss Maven Integration and Google Plugin for Eclipse features.</importTypeDescription>
+ <importTypeDescription>The project example requires the m2e, m2eclipse-wtp, JBoss Maven GWT Integration and Google Plugin for Eclipse features.</importTypeDescription>
<!-- Activating the profile causes a build error :
'dependencies.dependency.version' for org.jboss.as:jboss-as-arquillian-container-remote:jar is missing.
<defaultMavenProfiles>arq-jbossas-remote</defaultMavenProfiles>
-->
<mavenArchetype>
<archetypeGroupId>org.jboss.errai.archetypes</archetypeGroupId>
- <archetypeArtifactId>kitchensink-quickstart</archetypeArtifactId>
- <archetypeVersion>2.0.0.Final-JBT</archetypeVersion>
+ <archetypeArtifactId>jboss-errai-kitchensink-archetype</archetypeArtifactId>
+ <archetypeVersion>2.0.0.Final</archetypeVersion>
+ <!--
<archetypeRepository>http://anonsvn.jboss.org/repos/jbosstools/workspace/fred/repositories/sna...</archetypeRepository>
- <!--
<archetypeRepository>https://repository.jboss.org/nexus/content/groups/public/</archetypeRepository>
-->
<groupId>org.jboss.tools.example</groupId>
Modified: trunk/download.jboss.org/jbosstools/examples/project-examples-shared-3.3....
===================================================================
--- trunk/download.jboss.org/jbosstools/examples/project-examples-shared-3.3.... 2012-05-27 20:58:08 UTC (rev 41470)
+++ trunk/download.jboss.org/jbosstools/examples/project-examples-shared-3.3.... 2012-05-27 22:14:05 UTC (rev 41471)
@@ -39,7 +39,7 @@
<property name="id">org.jboss.tools.maven.core</property>
<property name="versions">[1.3.0,1.4.0)</property>
<property name="description">This project example requires JBoss Maven Tools.</property>
- <property name="connectorIds">org.jboss.tools.maven.feature,org.jboss.tools.maven.cdi.feature,org.jboss.tools.maven.hibernate.feature,org.jboss.tools.maven.jaxrs.feature,org.jboss.tools.maven.portlet.feature,org.jboss.tools.maven.seam.feature</property>
+ <property name="connectorIds">org.jboss.tools.maven.feature,org.jboss.tools.maven.cdi.feature,org.jboss.tools.maven.hibernate.feature,org.jboss.tools.maven.jaxrs.feature</property>
</fix>
</fixes>
<importType>mavenArchetype</importType>
@@ -49,9 +49,9 @@
<archetypeGroupId>org.jboss.spec.archetypes</archetypeGroupId>
<archetypeArtifactId>jboss-javaee6-webapp-archetype</archetypeArtifactId>
<archetypeVersion>7.1.1.Beta2</archetypeVersion>
-
+ <!--
<archetypeRepository>http://repository.jboss.org/nexus/content/repositories/releases/</archetypeRepository>
-
+ -->
<groupId>org.jboss.tools.examples</groupId>
<artifactId>jboss-javaee6-webapp</artifactId>
<version>0.0.1-SNAPSHOT</version>
@@ -105,9 +105,9 @@
<archetypeGroupId>org.jboss.spec.archetypes</archetypeGroupId>
<archetypeArtifactId>jboss-javaee6-webapp-ear-archetype</archetypeArtifactId>
<archetypeVersion>7.1.1.Beta2</archetypeVersion>
+ <!--
<archetypeRepository>http://repository.jboss.org/nexus/content/repositories/releases/</archetypeRepository>
- <!--
- <archetypeRepository>http://anonsvn.jboss.org/repos/jbosstools/workspace/fred/repositories/sna...</archetypeRepository>
+ <archetypeRepository>http://anonsvn.jboss.org/repos/jbosstools/workspace/fred/repositories/sna...</archetypeRepository>
-->
<groupId>org.jboss.tools.example</groupId>
<artifactId>multi</artifactId>
@@ -214,9 +214,9 @@
<archetypeGroupId>org.richfaces.archetypes</archetypeGroupId>
<archetypeArtifactId>richfaces-archetype-kitchensink</archetypeArtifactId>
<archetypeVersion>4.2.2.Final-1</archetypeVersion>
- <archetypeRepository>http://repository.jboss.org/nexus/content/repositories/releases/</archetypeRepository>
<!--
- <archetypeRepository>https://repository.jboss.org/nexus/content/repositories/jboss_releases_st...</archetypeRepository>
+ <archetypeRepository>http://repository.jboss.org/nexus/content/repositories/releases/</archetypeRepository>
+ <archetypeRepository>https://repository.jboss.org/nexus/content/repositories/jboss_releases_st...</archetypeRepository>
<archetypeRepository>http://repository.jboss.org/nexus/content/repositories/snapshots/</archetypeRepository>
-->
<groupId>org.jboss.tools.example</groupId>
@@ -335,17 +335,17 @@
</fix>
</fixes>
<importType>mavenArchetype</importType>
- <importTypeDescription>The project example requires the m2e, m2eclipse-wtp, JBoss Maven Integration and Google Plugin for Eclipse features.</importTypeDescription>
+ <importTypeDescription>The project example requires the m2e, m2eclipse-wtp, JBoss Maven GWT Integration and Google Plugin for Eclipse features.</importTypeDescription>
<!-- Activating the profile causes a build error :
'dependencies.dependency.version' for org.jboss.as:jboss-as-arquillian-container-remote:jar is missing.
<defaultMavenProfiles>arq-jbossas-remote</defaultMavenProfiles>
-->
<mavenArchetype>
<archetypeGroupId>org.jboss.errai.archetypes</archetypeGroupId>
- <archetypeArtifactId>kitchensink-quickstart</archetypeArtifactId>
- <archetypeVersion>2.0.0.Final-JBT</archetypeVersion>
+ <archetypeArtifactId>jboss-errai-kitchensink-archetype</archetypeArtifactId>
+ <archetypeVersion>2.0.0.Final</archetypeVersion>
+ <!--
<archetypeRepository>http://anonsvn.jboss.org/repos/jbosstools/workspace/fred/repositories/sna...</archetypeRepository>
- <!--
<archetypeRepository>https://repository.jboss.org/nexus/content/groups/public/</archetypeRepository>
-->
<groupId>org.jboss.tools.example</groupId>
13 years, 10 months
JBoss Tools SVN: r41470 - trunk/central/plugins/org.jboss.tools.central/src/org/jboss/tools/central/editors.
by jbosstools-commits@lists.jboss.org
Author: snjeza
Date: 2012-05-27 16:58:08 -0400 (Sun, 27 May 2012)
New Revision: 41470
Modified:
trunk/central/plugins/org.jboss.tools.central/src/org/jboss/tools/central/editors/GettingStartedPage.java
Log:
JBIDE-10652 - Quickstarts "carousel" idea to scale the list of quickstarts
Modified: trunk/central/plugins/org.jboss.tools.central/src/org/jboss/tools/central/editors/GettingStartedPage.java
===================================================================
--- trunk/central/plugins/org.jboss.tools.central/src/org/jboss/tools/central/editors/GettingStartedPage.java 2012-05-27 18:52:31 UTC (rev 41469)
+++ trunk/central/plugins/org.jboss.tools.central/src/org/jboss/tools/central/editors/GettingStartedPage.java 2012-05-27 20:58:08 UTC (rev 41470)
@@ -21,7 +21,6 @@
import java.util.Set;
import org.apache.commons.lang.StringEscapeUtils;
-import org.eclipse.core.resources.WorkspaceJob;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IConfigurationElement;
import org.eclipse.core.runtime.IContributor;
@@ -1078,18 +1077,14 @@
return;
}
Point size;
- //if (Platform.OS_MACOSX.equals(Platform.getOS())) {
- size = form.getSize();
- size.y = form.getBody().getSize().y;
- //} else {
- // size = form.getBody().getSize();
- //}
+ size = form.getSize();
+ size.y = form.getBody().getSize().y;
if (!force && size.equals(oldSize)) {
return;
}
oldSize = size;
GridData gd;
- int widthHint = size.x/2 - 40;
+ int widthHint = size.x/2 - 20;
gd = (GridData) newsSection.getLayoutData();
if (newsSection.isExpanded()) {
if (blogsSection.isExpanded()) {
@@ -1116,46 +1111,36 @@
gd.widthHint = widthHint;
gd.grabExcessVerticalSpace = false;
-
- gd = (GridData) tutorialsSection.getLayoutData();
- //gridData.heightHint = size.y - 40;
- gd.widthHint = widthHint;
- gd.grabExcessVerticalSpace = false;
- tutorialPageBook.pack();
- //computedSize = tutorialPageBook.computeSize(SWT.DEFAULT, SWT.DEFAULT);
- //tutorialsSection.setSize(widthHint, computedSize.y);
-
+
gd = (GridData) documentationSection.getLayoutData();
//gridData.heightHint = size.y - 40;
gd.widthHint = widthHint;
gd.grabExcessVerticalSpace = false;
- //computedSize = documentationSection.computeSize(SWT.DEFAULT, SWT.DEFAULT);
- //documentationSection.setSize(widthHint, computedSize.y);
gd = (GridData) settingsSection.getLayoutData();
gd.widthHint = widthHint;
gd.grabExcessVerticalSpace = false;
- //computedSize = settingsSection.computeSize(SWT.DEFAULT, SWT.DEFAULT);
- //settingsSection.setSize(widthHint, computedSize.y);
gd = (GridData) projectsSection.getLayoutData();
//gridData.heightHint = size.y - 40;
gd.widthHint = widthHint;
gd.grabExcessVerticalSpace = false;
- //computedSize = projectsSection.computeSize(SWT.DEFAULT, SWT.DEFAULT);
- //projectsSection.setSize(widthHint, computedSize.y);
- blogsScrollComposite.setMinSize(widthHint, size.y - 55);
- newsScrollComposite.setMinSize(widthHint, size.y - 55);
+ gd = (GridData) tutorialsSection.getLayoutData();
+ Point computedSize = tutorialPageBook.computeSize(widthHint, SWT.DEFAULT);
- Point computedSize = tutorialPageBook.computeSize(SWT.DEFAULT, SWT.DEFAULT);
- int y = computedSize.y;
- if (y > 100) {
- y = 100;
+ if (computedSize.y > (size.y/3)) {
+ gd.heightHint = size.y/3;
+ } else {
+ gd.heightHint = SWT.DEFAULT;
}
+ gd.widthHint = widthHint;
+ gd.grabExcessVerticalSpace = false;
- tutorialScrollComposite.setMinSize(widthHint, y);
+ computedSize = tutorialPageBook.computeSize(widthHint, SWT.DEFAULT);
+ tutorialScrollComposite.setMinSize(widthHint - 20, computedSize.y);
+
recomputeScrollComposite(blogsScrollComposite, blogsPageBook);
recomputeScrollComposite(newsScrollComposite, newsPageBook);
13 years, 10 months
JBoss Tools SVN: r41469 - trunk/esb/tests/org.jboss.tools.esb.project.core.test.
by jbosstools-commits@lists.jboss.org
Author: ldimaggio
Date: 2012-05-27 14:52:31 -0400 (Sun, 27 May 2012)
New Revision: 41469
Modified:
trunk/esb/tests/org.jboss.tools.esb.project.core.test/pom.xml
Log:
Updated references to required SOA runtimes - to resolve failing tests - https://issues.jboss.org/browse/JBDS-2152 - https://hudson.qa.jboss.com/hudson/job/soatools-3.3.0_Nightly.component--...
Modified: trunk/esb/tests/org.jboss.tools.esb.project.core.test/pom.xml
===================================================================
--- trunk/esb/tests/org.jboss.tools.esb.project.core.test/pom.xml 2012-05-26 15:46:39 UTC (rev 41468)
+++ trunk/esb/tests/org.jboss.tools.esb.project.core.test/pom.xml 2012-05-27 18:52:31 UTC (rev 41469)
@@ -13,7 +13,7 @@
<packaging>eclipse-test-plugin</packaging>
<properties>
- <systemProperties>-Djbosstools.test.jboss.home.4.2=${requirement.build.root}/jboss-soa-p.5.0.0/jboss-as -Djbosstools.test.jboss.home.5.0=${requirement.build.root}/jboss-soa-p.5.0.0/jboss-as -Djbosstools.test.jboss.home.5.1=${requirement.build.root}/jboss-5.1.0.GA -Djbosstools.test.soap.home.4.3=${requirement.build.root}/jboss-soa-p.4.3.0 -Djbosstools.test.soap.home.5.0=${requirement.build.root}/jboss-soa-p.5.0.0</systemProperties>
+ <systemProperties>-Djbosstools.test.jboss.home.4.2=${requirement.build.root}/jboss-soa-p.5.0.0/jboss-soa-p.5.0.0/jboss-as -Djbosstools.test.jboss.home.5.0=${requirement.build.root}/jboss-soa-p.5.0.0/jboss-soa-p.5.0.0/jboss-as -Djbosstools.test.jboss.home.5.1=${requirement.build.root}/jboss-5.1.0.GA -Djbosstools.test.soap.home.4.3=${requirement.build.root}/jboss-soa-p.4.3.0/jboss-soa-p.4.3.0/jboss-as -Djbosstools.test.soap.home.5.0=${requirement.build.root}/jboss-soa-p.5.0.0/jboss-soa-p.5.0.0/jboss-as</systemProperties>
<coverage.filter>org.jboss.tools.esb.core*</coverage.filter>
<emma.instrument.bundles>org.jboss.tools.esb.project.core</emma.instrument.bundles>
</properties>
@@ -31,4 +31,4 @@
</plugin>
</plugins>
</build>
-</project>
\ No newline at end of file
+</project>
13 years, 10 months
JBoss Tools SVN: r41468 - branches/jbosstools-3.3.x/build/target-platform.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2012-05-26 11:46:39 -0400 (Sat, 26 May 2012)
New Revision: 41468
Modified:
branches/jbosstools-3.3.x/build/target-platform/jbds.target
branches/jbosstools-3.3.x/build/target-platform/jbds.target.p2mirror.xml
branches/jbosstools-3.3.x/build/target-platform/multiple.target
branches/jbosstools-3.3.x/build/target-platform/multiple.target.p2mirror.xml
branches/jbosstools-3.3.x/build/target-platform/unified.target
branches/jbosstools-3.3.x/build/target-platform/unified.target.p2mirror.xml
Log:
commit JBIDE12002.patch.txt per JBIDE-12002
Modified: branches/jbosstools-3.3.x/build/target-platform/jbds.target
===================================================================
--- branches/jbosstools-3.3.x/build/target-platform/jbds.target 2012-05-26 15:45:19 UTC (rev 41467)
+++ branches/jbosstools-3.3.x/build/target-platform/jbds.target 2012-05-26 15:46:39 UTC (rev 41468)
@@ -20,7 +20,6 @@
<unit id="org.eclipse.m2e.feature.feature.group" version="1.0.200.20111228-1245"/>
<unit id="org.maven.ide.eclipse.wtp.feature.feature.group" version="0.15.2.20120306-2040"/>
<unit id="org.sonatype.m2e.mavenarchiver.feature.feature.group" version="0.15.0.201109290002"/>
- <unit id="org.jboss.tools.maven.apt.feature.feature.group" version="1.0.0.201205021739"/>
<unit id="ch.qos.logback.classic" version="0.9.27.v20110224-1110"/>
<unit id="ch.qos.logback.core" version="0.9.27.v20110224-1110"/>
<unit id="ch.qos.logback.slf4j" version="0.9.27.v20110224-1110"/>
Modified: branches/jbosstools-3.3.x/build/target-platform/jbds.target.p2mirror.xml
===================================================================
--- branches/jbosstools-3.3.x/build/target-platform/jbds.target.p2mirror.xml 2012-05-26 15:45:19 UTC (rev 41467)
+++ branches/jbosstools-3.3.x/build/target-platform/jbds.target.p2mirror.xml 2012-05-26 15:46:39 UTC (rev 41468)
@@ -34,7 +34,6 @@
<iu id="org.eclipse.m2e.feature.feature.group" version=""/>
<iu id="org.maven.ide.eclipse.wtp.feature.feature.group" version=""/>
<iu id="org.sonatype.m2e.mavenarchiver.feature.feature.group" version=""/>
-<iu id="org.jboss.tools.maven.apt.feature.feature.group" version=""/>
<iu id="ch.qos.logback.classic" version=""/>
<iu id="ch.qos.logback.core" version=""/>
<iu id="ch.qos.logback.slf4j" version=""/>
Modified: branches/jbosstools-3.3.x/build/target-platform/multiple.target
===================================================================
--- branches/jbosstools-3.3.x/build/target-platform/multiple.target 2012-05-26 15:45:19 UTC (rev 41467)
+++ branches/jbosstools-3.3.x/build/target-platform/multiple.target 2012-05-26 15:46:39 UTC (rev 41468)
@@ -22,7 +22,6 @@
<unit id="org.eclipse.m2e.feature.feature.group" version="1.0.200.20111228-1245"/>
<unit id="org.maven.ide.eclipse.wtp.feature.feature.group" version="0.15.2.20120306-2040"/>
<unit id="org.sonatype.m2e.mavenarchiver.feature.feature.group" version="0.15.0.201109290002"/>
- <unit id="org.jboss.tools.maven.apt.feature.feature.group" version="1.0.0.201205021739"/>
<unit id="ch.qos.logback.classic" version="0.9.27.v20110224-1110"/>
<unit id="ch.qos.logback.core" version="0.9.27.v20110224-1110"/>
<unit id="ch.qos.logback.slf4j" version="0.9.27.v20110224-1110"/>
Modified: branches/jbosstools-3.3.x/build/target-platform/multiple.target.p2mirror.xml
===================================================================
--- branches/jbosstools-3.3.x/build/target-platform/multiple.target.p2mirror.xml 2012-05-26 15:45:19 UTC (rev 41467)
+++ branches/jbosstools-3.3.x/build/target-platform/multiple.target.p2mirror.xml 2012-05-26 15:46:39 UTC (rev 41468)
@@ -35,7 +35,6 @@
<iu id="org.eclipse.m2e.feature.feature.group" version=""/>
<iu id="org.maven.ide.eclipse.wtp.feature.feature.group" version=""/>
<iu id="org.sonatype.m2e.mavenarchiver.feature.feature.group" version=""/>
-<iu id="org.jboss.tools.maven.apt.feature.feature.group" version=""/>
<iu id="ch.qos.logback.classic" version=""/>
<iu id="ch.qos.logback.core" version=""/>
<iu id="ch.qos.logback.slf4j" version=""/>
Modified: branches/jbosstools-3.3.x/build/target-platform/unified.target
===================================================================
--- branches/jbosstools-3.3.x/build/target-platform/unified.target 2012-05-26 15:45:19 UTC (rev 41467)
+++ branches/jbosstools-3.3.x/build/target-platform/unified.target 2012-05-26 15:46:39 UTC (rev 41468)
@@ -22,7 +22,6 @@
<unit id="org.eclipse.m2e.feature.feature.group" version="1.0.200.20111228-1245"/>
<unit id="org.maven.ide.eclipse.wtp.feature.feature.group" version="0.15.2.20120306-2040"/>
<unit id="org.sonatype.m2e.mavenarchiver.feature.feature.group" version="0.15.0.201109290002"/>
- <unit id="org.jboss.tools.maven.apt.feature.feature.group" version="1.0.0.201205021739"/>
<unit id="ch.qos.logback.classic" version="0.9.27.v20110224-1110"/>
<unit id="ch.qos.logback.core" version="0.9.27.v20110224-1110"/>
<unit id="ch.qos.logback.slf4j" version="0.9.27.v20110224-1110"/>
Modified: branches/jbosstools-3.3.x/build/target-platform/unified.target.p2mirror.xml
===================================================================
--- branches/jbosstools-3.3.x/build/target-platform/unified.target.p2mirror.xml 2012-05-26 15:45:19 UTC (rev 41467)
+++ branches/jbosstools-3.3.x/build/target-platform/unified.target.p2mirror.xml 2012-05-26 15:46:39 UTC (rev 41468)
@@ -35,7 +35,6 @@
<iu id="org.eclipse.m2e.feature.feature.group" version=""/>
<iu id="org.maven.ide.eclipse.wtp.feature.feature.group" version=""/>
<iu id="org.sonatype.m2e.mavenarchiver.feature.feature.group" version=""/>
-<iu id="org.jboss.tools.maven.apt.feature.feature.group" version=""/>
<iu id="ch.qos.logback.classic" version=""/>
<iu id="ch.qos.logback.core" version=""/>
<iu id="ch.qos.logback.slf4j" version=""/>
13 years, 10 months
JBoss Tools SVN: r41467 - trunk/build/target-platform.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2012-05-26 11:45:19 -0400 (Sat, 26 May 2012)
New Revision: 41467
Modified:
trunk/build/target-platform/jbds.target
trunk/build/target-platform/jbds.target.p2mirror.xml
trunk/build/target-platform/multiple.target
trunk/build/target-platform/multiple.target.p2mirror.xml
trunk/build/target-platform/unified.target
trunk/build/target-platform/unified.target.p2mirror.xml
Log:
commit JBIDE12002.patch.txt per JBIDE-12002
Modified: trunk/build/target-platform/jbds.target
===================================================================
--- trunk/build/target-platform/jbds.target 2012-05-26 06:12:02 UTC (rev 41466)
+++ trunk/build/target-platform/jbds.target 2012-05-26 15:45:19 UTC (rev 41467)
@@ -20,7 +20,6 @@
<unit id="org.eclipse.m2e.feature.feature.group" version="1.0.200.20111228-1245"/>
<unit id="org.maven.ide.eclipse.wtp.feature.feature.group" version="0.15.2.20120306-2040"/>
<unit id="org.sonatype.m2e.mavenarchiver.feature.feature.group" version="0.15.0.201109290002"/>
- <unit id="org.jboss.tools.maven.apt.feature.feature.group" version="1.0.0.201205021739"/>
<unit id="ch.qos.logback.classic" version="0.9.27.v20110224-1110"/>
<unit id="ch.qos.logback.core" version="0.9.27.v20110224-1110"/>
<unit id="ch.qos.logback.slf4j" version="0.9.27.v20110224-1110"/>
Modified: trunk/build/target-platform/jbds.target.p2mirror.xml
===================================================================
--- trunk/build/target-platform/jbds.target.p2mirror.xml 2012-05-26 06:12:02 UTC (rev 41466)
+++ trunk/build/target-platform/jbds.target.p2mirror.xml 2012-05-26 15:45:19 UTC (rev 41467)
@@ -34,7 +34,6 @@
<iu id="org.eclipse.m2e.feature.feature.group" version=""/>
<iu id="org.maven.ide.eclipse.wtp.feature.feature.group" version=""/>
<iu id="org.sonatype.m2e.mavenarchiver.feature.feature.group" version=""/>
-<iu id="org.jboss.tools.maven.apt.feature.feature.group" version=""/>
<iu id="ch.qos.logback.classic" version=""/>
<iu id="ch.qos.logback.core" version=""/>
<iu id="ch.qos.logback.slf4j" version=""/>
Modified: trunk/build/target-platform/multiple.target
===================================================================
--- trunk/build/target-platform/multiple.target 2012-05-26 06:12:02 UTC (rev 41466)
+++ trunk/build/target-platform/multiple.target 2012-05-26 15:45:19 UTC (rev 41467)
@@ -22,7 +22,6 @@
<unit id="org.eclipse.m2e.feature.feature.group" version="1.0.200.20111228-1245"/>
<unit id="org.maven.ide.eclipse.wtp.feature.feature.group" version="0.15.2.20120306-2040"/>
<unit id="org.sonatype.m2e.mavenarchiver.feature.feature.group" version="0.15.0.201109290002"/>
- <unit id="org.jboss.tools.maven.apt.feature.feature.group" version="1.0.0.201205021739"/>
<unit id="ch.qos.logback.classic" version="0.9.27.v20110224-1110"/>
<unit id="ch.qos.logback.core" version="0.9.27.v20110224-1110"/>
<unit id="ch.qos.logback.slf4j" version="0.9.27.v20110224-1110"/>
@@ -337,4 +336,4 @@
<feature id="org.mozilla.xpcom.feature"/>
</includeBundles>
<targetJRE path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
-</target>
\ No newline at end of file
+</target>
Modified: trunk/build/target-platform/multiple.target.p2mirror.xml
===================================================================
--- trunk/build/target-platform/multiple.target.p2mirror.xml 2012-05-26 06:12:02 UTC (rev 41466)
+++ trunk/build/target-platform/multiple.target.p2mirror.xml 2012-05-26 15:45:19 UTC (rev 41467)
@@ -35,7 +35,6 @@
<iu id="org.eclipse.m2e.feature.feature.group" version=""/>
<iu id="org.maven.ide.eclipse.wtp.feature.feature.group" version=""/>
<iu id="org.sonatype.m2e.mavenarchiver.feature.feature.group" version=""/>
-<iu id="org.jboss.tools.maven.apt.feature.feature.group" version=""/>
<iu id="ch.qos.logback.classic" version=""/>
<iu id="ch.qos.logback.core" version=""/>
<iu id="ch.qos.logback.slf4j" version=""/>
Modified: trunk/build/target-platform/unified.target
===================================================================
--- trunk/build/target-platform/unified.target 2012-05-26 06:12:02 UTC (rev 41466)
+++ trunk/build/target-platform/unified.target 2012-05-26 15:45:19 UTC (rev 41467)
@@ -22,7 +22,6 @@
<unit id="org.eclipse.m2e.feature.feature.group" version="1.0.200.20111228-1245"/>
<unit id="org.maven.ide.eclipse.wtp.feature.feature.group" version="0.15.2.20120306-2040"/>
<unit id="org.sonatype.m2e.mavenarchiver.feature.feature.group" version="0.15.0.201109290002"/>
- <unit id="org.jboss.tools.maven.apt.feature.feature.group" version="1.0.0.201205021739"/>
<unit id="ch.qos.logback.classic" version="0.9.27.v20110224-1110"/>
<unit id="ch.qos.logback.core" version="0.9.27.v20110224-1110"/>
<unit id="ch.qos.logback.slf4j" version="0.9.27.v20110224-1110"/>
@@ -337,4 +336,4 @@
<feature id="org.mozilla.xpcom.feature"/>
</includeBundles>
<targetJRE path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
-</target>
\ No newline at end of file
+</target>
Modified: trunk/build/target-platform/unified.target.p2mirror.xml
===================================================================
--- trunk/build/target-platform/unified.target.p2mirror.xml 2012-05-26 06:12:02 UTC (rev 41466)
+++ trunk/build/target-platform/unified.target.p2mirror.xml 2012-05-26 15:45:19 UTC (rev 41467)
@@ -35,7 +35,6 @@
<iu id="org.eclipse.m2e.feature.feature.group" version=""/>
<iu id="org.maven.ide.eclipse.wtp.feature.feature.group" version=""/>
<iu id="org.sonatype.m2e.mavenarchiver.feature.feature.group" version=""/>
-<iu id="org.jboss.tools.maven.apt.feature.feature.group" version=""/>
<iu id="ch.qos.logback.classic" version=""/>
<iu id="ch.qos.logback.core" version=""/>
<iu id="ch.qos.logback.slf4j" version=""/>
13 years, 10 months