JBoss Tools SVN: r21105 - trunk/struts/tests/org.jboss.tools.struts.ui.bot.test/src/org/jboss/tools/struts/ui/bot/test/smoke.
by jbosstools-commits@lists.jboss.org
Author: vpakan(a)redhat.com
Date: 2010-03-29 07:25:32 -0400 (Mon, 29 Mar 2010)
New Revision: 21105
Modified:
trunk/struts/tests/org.jboss.tools.struts.ui.bot.test/src/org/jboss/tools/struts/ui/bot/test/smoke/RunStrutsProjectOnServer.java
Log:
Cleanup server when test failed
Modified: trunk/struts/tests/org.jboss.tools.struts.ui.bot.test/src/org/jboss/tools/struts/ui/bot/test/smoke/RunStrutsProjectOnServer.java
===================================================================
--- trunk/struts/tests/org.jboss.tools.struts.ui.bot.test/src/org/jboss/tools/struts/ui/bot/test/smoke/RunStrutsProjectOnServer.java 2010-03-29 11:24:11 UTC (rev 21104)
+++ trunk/struts/tests/org.jboss.tools.struts.ui.bot.test/src/org/jboss/tools/struts/ui/bot/test/smoke/RunStrutsProjectOnServer.java 2010-03-29 11:25:32 UTC (rev 21105)
@@ -37,11 +37,11 @@
swtJbtExt.runProjectOnServer(StrutsAllBotTests.STRUTS_PROJECT_NAME);
// Check Browser Content
String browserText = WidgetFinderHelper.browserInEditorText(bot, "KickStart: Input name",true);
- assertTrue("Displayed HTML page has wrong content",
- browserText.indexOf("<TITLE>KickStart: Input name</TITLE>") > - 1);
swtJbtExt.stopApplicationServer( 0);
swtJbtExt.removeProjectFromServers(StrutsAllBotTests.STRUTS_PROJECT_NAME);
SWTJBTExt.deleteApplicationServer(bot, 0);
+ assertTrue("Displayed HTML page has wrong content",
+ (browserText!= null) && (browserText.indexOf("<TITLE>KickStart: Input name</TITLE>") > - 1));
}
}
14 years, 9 months
JBoss Tools SVN: r21104 - trunk/jst/tests/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext.
by jbosstools-commits@lists.jboss.org
Author: vpakan(a)redhat.com
Date: 2010-03-29 07:24:11 -0400 (Mon, 29 Mar 2010)
New Revision: 21104
Modified:
trunk/jst/tests/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/SWTJBTExt.java
Log:
Added possibility removeProjectFromServers() to specify server name suffix. Added method removeSeamProjectFromServers().
Modified: trunk/jst/tests/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/SWTJBTExt.java
===================================================================
--- trunk/jst/tests/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/SWTJBTExt.java 2010-03-29 11:21:48 UTC (rev 21103)
+++ trunk/jst/tests/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/SWTJBTExt.java 2010-03-29 11:24:11 UTC (rev 21104)
@@ -160,9 +160,17 @@
}
/**
* Remove Project from all Servers
+ * @param projectName
+ */
+ public void removeProjectFromServers(String projectName){
+ removeProjectFromServers(projectName, null);
+ }
+ /**
+ * Remove Project from all Servers
* @param projectName
+ * @param suffix
*/
- public void removeProjectFromServers(String projectName){
+ public void removeProjectFromServers(String projectName , String suffix){
eclipse.showView(ViewType.SERVERS);
@@ -170,23 +178,32 @@
SWTBotTree serverTree = bot.viewByTitle(IDELabel.View.SERVERS).bot().tree();
+ delay();
+
// Expand All
for (SWTBotTreeItem serverTreeItem : serverTree.getAllItems()){
serverTreeItem.expand();
// if JSF Test Project is deployed to server remove it
- int itemIndex = 0;
- SWTBotTreeItem[] serverTreeItemChildren = serverTreeItem.getItems();
- while (itemIndex < serverTreeItemChildren.length
- && !serverTreeItemChildren[itemIndex].getText().startsWith(projectName)){
- itemIndex++;
- }
- // Server Tree Item has Child with Text equal to JSF TEst Project
- if (itemIndex < serverTreeItemChildren.length){
- ContextMenuHelper.prepareTreeItemForContextMenu(serverTree,serverTreeItemChildren[itemIndex]);
- new SWTBotMenu(ContextMenuHelper.getContextMenu(serverTree, IDELabel.Menu.REMOVE, false)).click();
- bot.shell("Server").activate();
- bot.button(IDELabel.Button.OK).click();
- }
+ SWTBotTreeItem[] serverTreeItemChildren = serverTreeItem.getItems();
+ if (serverTreeItemChildren != null && serverTreeItemChildren.length > 0){
+ int itemIndex = 0;
+ boolean found = false;
+ do{
+ String treeItemlabel = serverTreeItemChildren[itemIndex].getText();
+ found = treeItemlabel.startsWith(projectName)
+ && (suffix == null || treeItemlabel.endsWith(suffix));
+ } while (!found && ++itemIndex < serverTreeItemChildren.length);
+ // Server Tree Item has Child with Text equal to JSF TEst Project
+ if (found){
+ log.info("Found project to be removed from server: " + serverTreeItemChildren[itemIndex].getText());
+ ContextMenuHelper.prepareTreeItemForContextMenu(serverTree,serverTreeItemChildren[itemIndex]);
+ new SWTBotMenu(ContextMenuHelper.getContextMenu(serverTree, IDELabel.Menu.REMOVE, false)).click();
+ bot.shell("Server").activate();
+ bot.button(IDELabel.Button.OK).click();
+ log.info("Removed project from server: " + serverTreeItemChildren[itemIndex].getText());
+ bot.sleep(10*1000L);
+ }
+ }
}
delay();
}
@@ -369,4 +386,9 @@
}
+ public void removeSeamProjectFromServers(String projectName){
+ removeProjectFromServers(projectName);
+ removeProjectFromServers("/" + projectName,"-ds.xml");
+ }
+
}
14 years, 9 months
JBoss Tools SVN: r21103 - trunk/struts/tests/org.jboss.tools.struts.ui.bot.test/src/org/jboss/tools/struts/ui/bot/test/smoke.
by jbosstools-commits@lists.jboss.org
Author: vpakan(a)redhat.com
Date: 2010-03-29 07:21:48 -0400 (Mon, 29 Mar 2010)
New Revision: 21103
Modified:
trunk/struts/tests/org.jboss.tools.struts.ui.bot.test/src/org/jboss/tools/struts/ui/bot/test/smoke/ImportStrutsProjectTest.java
Log:
Added some delays to testImportStrutsProjectTest() method
Modified: trunk/struts/tests/org.jboss.tools.struts.ui.bot.test/src/org/jboss/tools/struts/ui/bot/test/smoke/ImportStrutsProjectTest.java
===================================================================
--- trunk/struts/tests/org.jboss.tools.struts.ui.bot.test/src/org/jboss/tools/struts/ui/bot/test/smoke/ImportStrutsProjectTest.java 2010-03-29 11:19:00 UTC (rev 21102)
+++ trunk/struts/tests/org.jboss.tools.struts.ui.bot.test/src/org/jboss/tools/struts/ui/bot/test/smoke/ImportStrutsProjectTest.java 2010-03-29 11:21:48 UTC (rev 21103)
@@ -14,6 +14,7 @@
import java.io.File;
import org.eclipse.swtbot.swt.finder.widgets.SWTBotTree;
+import org.eclipse.swtbot.swt.finder.widgets.SWTBotTreeItem;
import org.jboss.tools.ui.bot.ext.SWTEclipseExt;
import org.jboss.tools.ui.bot.ext.SWTJBTExt;
import org.jboss.tools.ui.bot.ext.SWTTestExt;
@@ -52,9 +53,12 @@
bot.menu(IDELabel.Menu.FILE).menu(IDELabel.Menu.IMPORT).click();
bot.shell(IDELabel.Shell.IMPORT).activate();
+ swtJbtExt.delay();
SWTBotTree tree = bot.tree();
swtJbtExt.delay();
- tree.expandNode("Other").select(IDELabel.Menu.STRUTS_PROJECT);
+ SWTBotTreeItem tiOther = tree.expandNode("Other");
+ swtJbtExt.delay();
+ tiOther.select(IDELabel.Menu.STRUTS_PROJECT);
bot.button("Next >").click();
bot.shell(IDELabel.Shell.IMPORT_STRUTS_PROJECT).activate();
14 years, 9 months
JBoss Tools SVN: r21102 - trunk/jst/tests/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext.
by jbosstools-commits@lists.jboss.org
Author: vpakan(a)redhat.com
Date: 2010-03-29 07:19:00 -0400 (Mon, 29 Mar 2010)
New Revision: 21102
Modified:
trunk/jst/tests/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/SWTUtilExt.java
Log:
Make method printRunningJobs() public.
Modified: trunk/jst/tests/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/SWTUtilExt.java
===================================================================
--- trunk/jst/tests/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/SWTUtilExt.java 2010-03-29 11:17:43 UTC (rev 21101)
+++ trunk/jst/tests/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/SWTUtilExt.java 2010-03-29 11:19:00 UTC (rev 21102)
@@ -189,7 +189,7 @@
return false;
}
- private void printRunningJobs() {
+ public void printRunningJobs() {
Job[] jobs = Job.getJobManager().find(null);
for (Job job : jobs) {
14 years, 9 months
JBoss Tools SVN: r21101 - trunk/jst/tests/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/types.
by jbosstools-commits@lists.jboss.org
Author: vpakan(a)redhat.com
Date: 2010-03-29 07:17:43 -0400 (Mon, 29 Mar 2010)
New Revision: 21101
Modified:
trunk/jst/tests/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/types/JobName.java
Log:
Added new jobs
Modified: trunk/jst/tests/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/types/JobName.java
===================================================================
--- trunk/jst/tests/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/types/JobName.java 2010-03-29 11:16:58 UTC (rev 21100)
+++ trunk/jst/tests/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/types/JobName.java 2010-03-29 11:17:43 UTC (rev 21101)
@@ -20,4 +20,12 @@
public static final String VISUAL_UPDATE = "Visual Editor View Update";
public static final String VISUAL_REFRESH = "Visual Editor Refresh";
public static final String UPDATING_INDEXES = "Updating indexes";
+ public static final String USAGE_DATA_EVENT_CONSUMER = "Usage Data Event consumer";
+ public static final String ANIMATION_START = "Animation start";
+ public static final String UPDATE_PROCESS = "Update Progress";
+ public static final String PERIODIC_WORKSPACE_SAVE = "Periodic workspace save.";
+ public static final String JBOSS_TOOLS_MODEL_UPDATE = "JBoss Tools Model Update";
+ public static final String INITIALIZING_QUICK_DIFF = "Initializing Quick Diff";
+ public static final String PROCESSING_DIRTY_REGIONS = "Processing Dirty Regions";
+ public static final String UPDATING_WORKSPACE = "Updating workspace";
}
14 years, 9 months
JBoss Tools SVN: r21100 - trunk/jst/tests/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/helper.
by jbosstools-commits@lists.jboss.org
Author: vpakan(a)redhat.com
Date: 2010-03-29 07:16:58 -0400 (Mon, 29 Mar 2010)
New Revision: 21100
Modified:
trunk/jst/tests/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/helper/WidgetFinderHelper.java
Log:
When browser not found return null from method browserInEditorText().
Modified: trunk/jst/tests/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/helper/WidgetFinderHelper.java
===================================================================
--- trunk/jst/tests/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/helper/WidgetFinderHelper.java 2010-03-29 11:14:41 UTC (rev 21099)
+++ trunk/jst/tests/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/helper/WidgetFinderHelper.java 2010-03-29 11:16:58 UTC (rev 21100)
@@ -16,6 +16,7 @@
import org.eclipse.swt.browser.Browser;
import org.eclipse.swtbot.eclipse.finder.SWTWorkbenchBot;
import org.eclipse.swtbot.eclipse.finder.widgets.SWTBotEditor;
+import org.eclipse.swtbot.swt.finder.exceptions.WidgetNotFoundException;
import org.eclipse.swtbot.swt.finder.finders.UIThreadRunnable;
import org.eclipse.swtbot.swt.finder.results.StringResult;
@@ -47,19 +48,24 @@
String browserText = null;
- SWTBotEditor editor = bot.editorByTitle(editorTitle);
-
- final Browser browser = browserInEditor(editor);
-
- browserText = UIThreadRunnable
- .syncExec(new StringResult() {
- public String run() {
- return browser.getText();
+ try{
+
+ SWTBotEditor editor = bot.editorByTitle(editorTitle);
+ final Browser browser = browserInEditor(editor);
+
+ browserText = UIThreadRunnable
+ .syncExec(new StringResult() {
+ public String run() {
+ return browser.getText();
+ }
+ });
+
+ if (closeEditor){
+ editor.close();
}
- });
-
- if (closeEditor){
- editor.close();
+
+ } catch (WidgetNotFoundException wnfe){
+ // do nothing returns null
}
return browserText;
14 years, 9 months
JBoss Tools SVN: r21099 - trunk/jst/tests/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/helper.
by jbosstools-commits@lists.jboss.org
Author: vpakan(a)redhat.com
Date: 2010-03-29 07:14:41 -0400 (Mon, 29 Mar 2010)
New Revision: 21099
Modified:
trunk/jst/tests/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/helper/FileRenameHelper.java
Log:
Added timeout
Modified: trunk/jst/tests/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/helper/FileRenameHelper.java
===================================================================
--- trunk/jst/tests/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/helper/FileRenameHelper.java 2010-03-29 07:55:03 UTC (rev 21098)
+++ trunk/jst/tests/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/helper/FileRenameHelper.java 2010-03-29 11:14:41 UTC (rev 21099)
@@ -78,8 +78,7 @@
bot.textWithLabel(IDELabel.RenameResourceDialog.NEW_NAME)
.setText(newFileName);
bot.button(IDELabel.Button.OK).click();
- bot.sleep(sleepTime);
- new SWTUtilExt(bot).waitForJobs(JobName.UPDATING_INDEXES);
+ new SWTUtilExt(bot).waitForAll(60 * 1000L);
// Check Results
// File with Old Name doesn't exists within WebProjects View
try{
14 years, 9 months
JBoss Tools SVN: r21098 - in trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui: wizards and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: Grid.Qian
Date: 2010-03-29 03:55:03 -0400 (Mon, 29 Mar 2010)
New Revision: 21098
Modified:
trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/messages/JBossWSUI.properties
trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/messages/JBossWSUIMessages.java
trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/wizards/JBossWSGenerateWizard.java
trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/wizards/JBossWSGenerateWizardValidator.java
Log:
JBIDE-6079: to trunk
Modified: trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/messages/JBossWSUI.properties
===================================================================
--- trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/messages/JBossWSUI.properties 2010-03-28 20:34:40 UTC (rev 21097)
+++ trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/messages/JBossWSUI.properties 2010-03-29 07:55:03 UTC (rev 21098)
@@ -44,8 +44,8 @@
JBossWSGenerateWebXmlWizardPage_Project_Group=Dynamic Web Project Name
JBossWSGenerateWebXmlWizardPage_Project_Group_Tooltip=If no Dynamic Web Project exists, you must create one before creating your sample web service.
JBossWSGenerateWebXmlWizardPage_Web_Service_Group=Web Service
-JBossWSGenerateWizard_NoProjectSelected=No project selected. Please select a Dynamic Web Project to continue.
+Error_JBossWSGenerateWizard_NoProjectSelected=No correct project selected. Please select a Dynamic Web Project to continue.
Error_JBossWS_Label_Runtime_Load=Error occurred while loading JBossWS Command. Select the correct JBoss Server folder.
Error_JBossWS_Basic_Editor_Composite=Parent control should be Composite
Error_JBossWS_Basic_Editor_Support=Editor supports only Grid layout
Modified: trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/messages/JBossWSUIMessages.java
===================================================================
--- trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/messages/JBossWSUIMessages.java 2010-03-28 20:34:40 UTC (rev 21097)
+++ trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/messages/JBossWSUIMessages.java 2010-03-29 07:55:03 UTC (rev 21098)
@@ -68,8 +68,8 @@
public static String JBossWSGenerateWebXmlWizardPage_Project_Group;
public static String JBossWSGenerateWebXmlWizardPage_Project_Group_Tooltip;
public static String JBossWSGenerateWebXmlWizardPage_Web_Service_Group;
- public static String JBossWSGenerateWizard_NoProjectSelected;
+ public static String Error_JBossWSGenerateWizard_NoProjectSelected;
public static String Error_JBossWS_Label_Runtime_Load;
public static String Error_JBossWS_Basic_Editor_Composite;
public static String Error_JBossWS_Basic_Editor_Support;
Modified: trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/wizards/JBossWSGenerateWizard.java
===================================================================
--- trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/wizards/JBossWSGenerateWizard.java 2010-03-28 20:34:40 UTC (rev 21097)
+++ trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/wizards/JBossWSGenerateWizard.java 2010-03-29 07:55:03 UTC (rev 21098)
@@ -150,7 +150,7 @@
if (firstPage != null && !firstPage.getControl().isDisposed()) {
if (firstPage.hasChanged())
firstPage
- .setErrorMessage(JBossWSUIMessages.JBossWSGenerateWizard_NoProjectSelected);
+ .setErrorMessage(JBossWSUIMessages.Error_JBossWSGenerateWizard_NoProjectSelected);
}
return false;
}
Modified: trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/wizards/JBossWSGenerateWizardValidator.java
===================================================================
--- trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/wizards/JBossWSGenerateWizardValidator.java 2010-03-28 20:34:40 UTC (rev 21097)
+++ trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/wizards/JBossWSGenerateWizardValidator.java 2010-03-29 07:55:03 UTC (rev 21098)
@@ -17,6 +17,7 @@
import org.eclipse.core.runtime.IStatus;
import org.eclipse.jst.j2ee.model.IModelProvider;
import org.eclipse.jst.j2ee.model.ModelProviderManager;
+import org.eclipse.jst.j2ee.project.JavaEEProjectUtilities;
import org.eclipse.jst.javaee.core.UrlPatternType;
import org.eclipse.jst.javaee.web.Servlet;
import org.eclipse.jst.javaee.web.ServletMapping;
@@ -46,22 +47,24 @@
}
public static IStatus isWSNameValid() {
+ IModelProvider provider = null;
if (model.getWebProjectName() == null) {
return StatusUtils
- .errorStatus(JBossWSUIMessages.JBossWSGenerateWizard_NoProjectSelected);
+ .errorStatus(JBossWSUIMessages.Error_JBossWSGenerateWizard_NoProjectSelected);
} else {
try {
- ModelProviderManager.getModelProvider(JBossWSCreationUtils
- .getProjectByName(model.getWebProjectName()));
- } catch (IllegalArgumentException iae) {
+ IProject project = JBossWSCreationUtils.getProjectByName(model
+ .getWebProjectName());
+ if (!JavaEEProjectUtilities.isDynamicWebProject(project)) {
+ throw new Exception();
+ }
+ provider = ModelProviderManager.getModelProvider(project);
+ } catch (Exception exc) {
model.setWebProjectName(null);
return StatusUtils
- .errorStatus(JBossWSUIMessages.JBossWSGenerateWizard_NoProjectSelected);
+ .errorStatus(JBossWSUIMessages.Error_JBossWSGenerateWizard_NoProjectSelected);
}
}
- final IModelProvider provider = ModelProviderManager
- .getModelProvider(JBossWSCreationUtils.getProjectByName(model
- .getWebProjectName()));
Object object = provider.getModelObject();
if (object instanceof WebApp) {
WebApp webApp = (WebApp) object;
@@ -115,7 +118,7 @@
.errorStatus(JBossWSUIMessages.Error_JBossWS_GenerateWizard_ClassName_Same);
} else if (project == null) {
return StatusUtils
- .errorStatus(JBossWSUIMessages.JBossWSGenerateWizard_NoProjectSelected);
+ .errorStatus(JBossWSUIMessages.Error_JBossWSGenerateWizard_NoProjectSelected);
} else {
File file = JBossWSCreationUtils.findFileByPath(className + JAVA,
project.getLocation().toOSString());
14 years, 9 months
JBoss Tools SVN: r21097 - in branches/modular_build: archives/plugins/org.jboss.ide.eclipse.archives.jdt.integration and 213 other directories.
by jbosstools-commits@lists.jboss.org
Author: max.andersen(a)jboss.com
Date: 2010-03-28 16:34:40 -0400 (Sun, 28 Mar 2010)
New Revision: 21097
Modified:
branches/modular_build/archives/plugins/org.jboss.ide.eclipse.archives.core/
branches/modular_build/archives/plugins/org.jboss.ide.eclipse.archives.jdt.integration/
branches/modular_build/archives/plugins/org.jboss.ide.eclipse.archives.ui/
branches/modular_build/archives/tests/org.jboss.ide.eclipse.archives.test/
branches/modular_build/archives/tests/org.jboss.ide.eclipse.archives.ui.test/
branches/modular_build/archives/util/packaging-convert/
branches/modular_build/as/plugins/org.jboss.ide.eclipse.archives.webtools/
branches/modular_build/as/plugins/org.jboss.ide.eclipse.as.classpath.core/
branches/modular_build/as/plugins/org.jboss.ide.eclipse.as.classpath.ui/
branches/modular_build/as/plugins/org.jboss.ide.eclipse.as.core/
branches/modular_build/as/plugins/org.jboss.ide.eclipse.as.doc.user/
branches/modular_build/as/plugins/org.jboss.ide.eclipse.as.ssh/
branches/modular_build/as/plugins/org.jboss.ide.eclipse.as.ui.mbeans/
branches/modular_build/as/plugins/org.jboss.ide.eclipse.as.ui/
branches/modular_build/as/plugins/org.jboss.ide.eclipse.as.wtp.core/
branches/modular_build/as/plugins/org.jboss.ide.eclipse.as.wtp.ui/
branches/modular_build/as/tests/org.jboss.ide.eclipse.as.archives.integration.test/
branches/modular_build/as/tests/org.jboss.ide.eclipse.as.test/
branches/modular_build/as/tests/org.jboss.ide.eclipse.as.ui.test/
branches/modular_build/birt/plugins/org.jboss.tools.birt.core/
branches/modular_build/birt/plugins/org.jboss.tools.birt.oda.ui/
branches/modular_build/birt/plugins/org.jboss.tools.birt.oda/
branches/modular_build/birt/tests/org.jboss.tools.birt.core.test/
branches/modular_build/bpel/plugins/org.eclipse.bpel.apache.ode.deploy.model/
branches/modular_build/bpel/plugins/org.eclipse.bpel.apache.ode.deploy.ui/
branches/modular_build/bpel/plugins/org.eclipse.bpel.common.model/
branches/modular_build/bpel/plugins/org.eclipse.bpel.common.ui/
branches/modular_build/bpel/plugins/org.eclipse.bpel.model/
branches/modular_build/bpel/plugins/org.eclipse.bpel.ui/
branches/modular_build/bpel/plugins/org.eclipse.bpel.validator/
branches/modular_build/bpel/plugins/org.eclipse.bpel.wsil.model/
branches/modular_build/bpel/plugins/org.eclipse.bpel.xpath10/
branches/modular_build/bpel/plugins/org.jboss.tools.bpel.cheatsheet/
branches/modular_build/bpel/plugins/org.jboss.tools.bpel.runtimes/
branches/modular_build/bpel/tests/org.jboss.tools.bpel.ui.test/
branches/modular_build/cdi/plugins/org.jboss.tools.cdi.core/
branches/modular_build/cdi/plugins/org.jboss.tools.cdi.text.ext/
branches/modular_build/cdi/plugins/org.jboss.tools.cdi.ui/
branches/modular_build/cdi/plugins/org.jboss.tools.cdi.xml.ui/
branches/modular_build/cdi/plugins/org.jboss.tools.cdi.xml/
branches/modular_build/cdi/tests/org.jboss.tools.cdi.core.test/
branches/modular_build/cdi/tests/org.jboss.tools.cdi.text.ext.test/
branches/modular_build/cdi/tests/org.jboss.tools.cdi.ui.test/
branches/modular_build/common/plugins/org.jboss.tools.common.el.core/
branches/modular_build/common/plugins/org.jboss.tools.common.el.ui/
branches/modular_build/common/plugins/org.jboss.tools.common.gef/
branches/modular_build/common/plugins/org.jboss.tools.common.meta.ui/
branches/modular_build/common/plugins/org.jboss.tools.common.model.ui/
branches/modular_build/common/plugins/org.jboss.tools.common.model/
branches/modular_build/common/plugins/org.jboss.tools.common.projecttemplates/
branches/modular_build/common/plugins/org.jboss.tools.common.resref.core/
branches/modular_build/common/plugins/org.jboss.tools.common.resref.ui/
branches/modular_build/common/plugins/org.jboss.tools.common.text.ext/
branches/modular_build/common/plugins/org.jboss.tools.common.text.xml/
branches/modular_build/common/plugins/org.jboss.tools.common.ui/
branches/modular_build/common/plugins/org.jboss.tools.common.verification.ui/
branches/modular_build/common/plugins/org.jboss.tools.common.verification/
branches/modular_build/common/plugins/org.jboss.tools.common/
branches/modular_build/common/tests/org.jboss.tools.common.el.core.test/
branches/modular_build/common/tests/org.jboss.tools.common.model.test/
branches/modular_build/common/tests/org.jboss.tools.common.model.ui.test/
branches/modular_build/common/tests/org.jboss.tools.common.test/
branches/modular_build/common/tests/org.jboss.tools.common.text.ext.test/
branches/modular_build/common/tests/org.jboss.tools.common.verification.test/
branches/modular_build/common/tests/org.jboss.tools.common.verification.ui.test/
branches/modular_build/documentation/guides/GettingStartedGuide/
branches/modular_build/drools/plugins/org.jboss.tools.flow.ruleflow/
branches/modular_build/esb/plugins/org.jboss.tools.esb.core/
branches/modular_build/esb/plugins/org.jboss.tools.esb.project.core/
branches/modular_build/esb/plugins/org.jboss.tools.esb.project.ui/
branches/modular_build/esb/plugins/org.jboss.tools.esb.ui/
branches/modular_build/esb/tests/org.jboss.tools.esb.core.test/
branches/modular_build/esb/tests/org.jboss.tools.esb.project.core.test/
branches/modular_build/examples/plugins/org.jboss.tools.project.examples.cheatsheet/
branches/modular_build/examples/plugins/org.jboss.tools.project.examples/
branches/modular_build/examples/tests/org.jboss.tools.project.examples.test/
branches/modular_build/flow/plugins/org.jboss.tools.flow.common/
branches/modular_build/flow/tests/org.jboss.tools.flow.common.test/
branches/modular_build/freemarker/features/org.jboss.ide.eclipse.freemarker.feature/
branches/modular_build/freemarker/features/org.jboss.ide.eclipse.freemarker.test.feature/
branches/modular_build/freemarker/plugins/org.jboss.ide.eclipse.freemarker/
branches/modular_build/freemarker/tests/org.jboss.ide.eclipse.freemarker.test/
branches/modular_build/hibernatetools/plugins/org.hibernate.eclipse/
branches/modular_build/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.core/
branches/modular_build/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui/
branches/modular_build/hibernatetools/plugins/org.jboss.tools.hibernate.ui/
branches/modular_build/hibernatetools/plugins/org.jboss.tools.hibernate.xml.ui/
branches/modular_build/hibernatetools/plugins/org.jboss.tools.hibernate.xml/
branches/modular_build/hibernatetools/sampleprojects/org.jboss.tools.hibernate.sampleproject.mappingtypes/
branches/modular_build/hibernatetools/tests/org.hibernate.eclipse.jdt.ui.test/
branches/modular_build/hibernatetools/tests/org.jboss.tools.hibernate.jpt.core.test/
branches/modular_build/hibernatetools/tests/org.jboss.tools.hibernate.ui.bot.test/
branches/modular_build/hibernatetools/tests/org.jboss.tools.hibernate.ui.test/
branches/modular_build/jbpm/plugins/org.jboss.tools.flow.jpdl4.multipage/
branches/modular_build/jbpm/plugins/org.jboss.tools.flow.jpdl4/
branches/modular_build/jbpm/plugins/org.jboss.tools.jbpm.common/
branches/modular_build/jbpm/plugins/org.jboss.tools.jbpm.convert/
branches/modular_build/jbpm/plugins/org.jbpm.gd.jpdl/
branches/modular_build/jbpm/tests/org.jboss.tools.flow.jpdl4.multipage.test/
branches/modular_build/jbpm/tests/org.jboss.tools.flow.jpdl4.test/
branches/modular_build/jbpm/tests/org.jboss.tools.jbpm.common.test/
branches/modular_build/jbpm/tests/org.jboss.tools.jbpm.convert.test/
branches/modular_build/jbpm/tests/org.jbpm.gd.jpdl.test/
branches/modular_build/jmx/features/org.jboss.tools.jmx.feature/
branches/modular_build/jmx/plugins/org.jboss.tools.jmx.core/
branches/modular_build/jmx/plugins/org.jboss.tools.jmx.ui/
branches/modular_build/jsf/plugins/org.jboss.tools.jsf.text.ext.facelets/
branches/modular_build/jsf/plugins/org.jboss.tools.jsf.text.ext.richfaces/
branches/modular_build/jsf/plugins/org.jboss.tools.jsf.text.ext/
branches/modular_build/jsf/plugins/org.jboss.tools.jsf.ui/
branches/modular_build/jsf/plugins/org.jboss.tools.jsf.verification/
branches/modular_build/jsf/plugins/org.jboss.tools.jsf.vpe.ajax4jsf/
branches/modular_build/jsf/plugins/org.jboss.tools.jsf.vpe.facelets/
branches/modular_build/jsf/plugins/org.jboss.tools.jsf.vpe.jsf/
branches/modular_build/jsf/plugins/org.jboss.tools.jsf.vpe.jstl/
branches/modular_build/jsf/plugins/org.jboss.tools.jsf.vpe.myfaces/
branches/modular_build/jsf/plugins/org.jboss.tools.jsf.vpe.richfaces/
branches/modular_build/jsf/plugins/org.jboss.tools.jsf.vpe.seam/
branches/modular_build/jsf/plugins/org.jboss.tools.jsf/
branches/modular_build/jsf/tests/org.jboss.tools.jsf.test/
branches/modular_build/jsf/tests/org.jboss.tools.jsf.text.ext.test/
branches/modular_build/jsf/tests/org.jboss.tools.jsf.ui.bot.test/
branches/modular_build/jsf/tests/org.jboss.tools.jsf.ui.test/
branches/modular_build/jsf/tests/org.jboss.tools.jsf.verification.test/
branches/modular_build/jsf/tests/org.jboss.tools.jsf.vpe.ajax4jsf.test/
branches/modular_build/jsf/tests/org.jboss.tools.jsf.vpe.facelets.test/
branches/modular_build/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/
branches/modular_build/jsf/tests/org.jboss.tools.jsf.vpe.jstl.test/
branches/modular_build/jsf/tests/org.jboss.tools.jsf.vpe.myfaces.test/
branches/modular_build/jsf/tests/org.jboss.tools.jsf.vpe.richfaces.test/
branches/modular_build/jsf/tests/org.jboss.tools.jsf.vpe.seam.test/
branches/modular_build/jst/plugins/org.jboss.tools.jst.css/
branches/modular_build/jst/plugins/org.jboss.tools.jst.firstrun/
branches/modular_build/jst/plugins/org.jboss.tools.jst.jsp/
branches/modular_build/jst/plugins/org.jboss.tools.jst.text.ext/
branches/modular_build/jst/plugins/org.jboss.tools.jst.web.kb/
branches/modular_build/jst/plugins/org.jboss.tools.jst.web.tiles.ui/
branches/modular_build/jst/plugins/org.jboss.tools.jst.web.tiles/
branches/modular_build/jst/plugins/org.jboss.tools.jst.web.ui/
branches/modular_build/jst/plugins/org.jboss.tools.jst.web.verification/
branches/modular_build/jst/plugins/org.jboss.tools.jst.web/
branches/modular_build/jst/tests/org.jboss.tools.jst.css.test/
branches/modular_build/jst/tests/org.jboss.tools.jst.jsp.test/
branches/modular_build/jst/tests/org.jboss.tools.jst.ui.bot.test/
branches/modular_build/jst/tests/org.jboss.tools.jst.ui.firstrun.bot.test/
branches/modular_build/jst/tests/org.jboss.tools.jst.web.kb.test/
branches/modular_build/jst/tests/org.jboss.tools.jst.web.test/
branches/modular_build/jst/tests/org.jboss.tools.jst.web.ui.test/
branches/modular_build/jst/tests/org.jboss.tools.ui.bot.ext/
branches/modular_build/labs/plugins/org.jboss.tools.labs.pde.sourceprovider/
branches/modular_build/maven/plugins/org.jboss.tools.maven.core/
branches/modular_build/maven/plugins/org.jboss.tools.maven.seam/
branches/modular_build/maven/plugins/org.jboss.tools.maven.ui/
branches/modular_build/modeshape/plugins/org.jboss.tools.modeshape.rest/
branches/modular_build/modeshape/tests/org.jboss.tools.modeshape.rest.test/
branches/modular_build/portlet/plugins/org.jboss.tools.portlet.core/
branches/modular_build/portlet/plugins/org.jboss.tools.portlet.ui/
branches/modular_build/portlet/tests/org.jboss.tools.portlet.core.test/
branches/modular_build/profiler/plugins/org.jboss.tools.profiler.ui/
branches/modular_build/seam/plugins/org.jboss.tools.seam.core/
branches/modular_build/seam/plugins/org.jboss.tools.seam.pages.xml/
branches/modular_build/seam/plugins/org.jboss.tools.seam.text.ext/
branches/modular_build/seam/plugins/org.jboss.tools.seam.ui.pages/
branches/modular_build/seam/plugins/org.jboss.tools.seam.ui/
branches/modular_build/seam/plugins/org.jboss.tools.seam.xml.ui/
branches/modular_build/seam/plugins/org.jboss.tools.seam.xml/
branches/modular_build/seam/tests/org.jboss.tools.seam.core.test/
branches/modular_build/seam/tests/org.jboss.tools.seam.pages.xml.test/
branches/modular_build/seam/tests/org.jboss.tools.seam.text.ext.test/
branches/modular_build/seam/tests/org.jboss.tools.seam.ui.bot.test/
branches/modular_build/seam/tests/org.jboss.tools.seam.ui.pages.test/
branches/modular_build/seam/tests/org.jboss.tools.seam.ui.test/
branches/modular_build/seam/tests/org.jboss.tools.seam.xml.test/
branches/modular_build/seam/tests/org.jboss.tools.seam.xml.ui.test/
branches/modular_build/smooks/plugins/org.jboss.tools.smooks.core/
branches/modular_build/smooks/plugins/org.jboss.tools.smooks.runtime/
branches/modular_build/smooks/plugins/org.jboss.tools.smooks.runtime/target/
branches/modular_build/smooks/plugins/org.jboss.tools.smooks.templating/
branches/modular_build/smooks/plugins/org.jboss.tools.smooks.ui/
branches/modular_build/smooks/tests/org.jboss.tools.smooks.core.test/
branches/modular_build/smooks/tests/org.jboss.tools.smooks.templating.test/
branches/modular_build/struts/plugins/org.jboss.tools.struts.text.ext/
branches/modular_build/struts/plugins/org.jboss.tools.struts.ui/
branches/modular_build/struts/plugins/org.jboss.tools.struts.validator.ui/
branches/modular_build/struts/plugins/org.jboss.tools.struts.verification/
branches/modular_build/struts/plugins/org.jboss.tools.struts.vpe.struts/
branches/modular_build/struts/plugins/org.jboss.tools.struts/
branches/modular_build/struts/tests/org.jboss.tools.struts.text.ext.test/
branches/modular_build/struts/tests/org.jboss.tools.struts.vpe.struts.test/
branches/modular_build/tests/plugins/org.jboss.tools.tests/
branches/modular_build/tptp/plugins/org.jboss.tools.eclipse.as.tptp/
branches/modular_build/vpe/plugins/org.jboss.tools.vpe.docbook/
branches/modular_build/vpe/plugins/org.jboss.tools.vpe.html/
branches/modular_build/vpe/plugins/org.jboss.tools.vpe.jsp/
branches/modular_build/vpe/plugins/org.jboss.tools.vpe.resref/
branches/modular_build/vpe/plugins/org.jboss.tools.vpe.ui.palette/
branches/modular_build/vpe/plugins/org.jboss.tools.vpe.xulrunner/
branches/modular_build/vpe/plugins/org.jboss.tools.vpe/
branches/modular_build/vpe/plugins/org.jboss.tools.xulrunner.initializer/
branches/modular_build/vpe/plugins/org.jboss.tools.xulrunner/
branches/modular_build/vpe/tests/org.jboss.tools.vpe.html.test/
branches/modular_build/vpe/tests/org.jboss.tools.vpe.jsp.test/
branches/modular_build/vpe/tests/org.jboss.tools.vpe.test/
branches/modular_build/vpe/tests/org.jboss.tools.vpe.ui.bot.test/
branches/modular_build/vpe/tests/org.jboss.tools.vpe.ui.test/
branches/modular_build/vpe/tests/org.jboss.tools.vpe.xulrunner.test/
branches/modular_build/workingset/plugins/org.jboss.tools.workingset.core/
branches/modular_build/workingset/plugins/org.jboss.tools.workingset.ui/
branches/modular_build/workingset/tests/org.jboss.tools.workingset.core.test/
branches/modular_build/ws/plugins/org.jboss.tools.ws.core/
branches/modular_build/ws/plugins/org.jboss.tools.ws.creation.core/
branches/modular_build/ws/plugins/org.jboss.tools.ws.creation.ui/
branches/modular_build/ws/plugins/org.jboss.tools.ws.ui/
branches/modular_build/ws/tests/org.jboss.tools.ws.core.test/
branches/modular_build/ws/tests/org.jboss.tools.ws.ui.test/
Log:
cleaned up svn ignores. JBDS-486
Property changes on: branches/modular_build/archives/plugins/org.jboss.ide.eclipse.archives.core
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
Property changes on: branches/modular_build/archives/plugins/org.jboss.ide.eclipse.archives.jdt.integration
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
Property changes on: branches/modular_build/archives/plugins/org.jboss.ide.eclipse.archives.ui
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
Property changes on: branches/modular_build/archives/tests/org.jboss.ide.eclipse.archives.test
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/archives/tests/org.jboss.ide.eclipse.archives.ui.test
___________________________________________________________________
Name: svn:ignore
+ bin
target
build
d
Property changes on: branches/modular_build/archives/util/packaging-convert
___________________________________________________________________
Name: svn:ignore
- bin
build
packaging-convert.zip
packaging-converter.jar
+ bin
target
build
d
Property changes on: branches/modular_build/as/plugins/org.jboss.ide.eclipse.archives.webtools
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
Property changes on: branches/modular_build/as/plugins/org.jboss.ide.eclipse.as.classpath.core
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
Property changes on: branches/modular_build/as/plugins/org.jboss.ide.eclipse.as.classpath.ui
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
Property changes on: branches/modular_build/as/plugins/org.jboss.ide.eclipse.as.core
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
Property changes on: branches/modular_build/as/plugins/org.jboss.ide.eclipse.as.doc.user
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
Property changes on: branches/modular_build/as/plugins/org.jboss.ide.eclipse.as.ssh
___________________________________________________________________
Name: svn:ignore
- bin
target
+ bin
target
build
Property changes on: branches/modular_build/as/plugins/org.jboss.ide.eclipse.as.ui
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
Property changes on: branches/modular_build/as/plugins/org.jboss.ide.eclipse.as.ui.mbeans
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
Property changes on: branches/modular_build/as/plugins/org.jboss.ide.eclipse.as.wtp.core
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
Property changes on: branches/modular_build/as/plugins/org.jboss.ide.eclipse.as.wtp.ui
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
Property changes on: branches/modular_build/as/tests/org.jboss.ide.eclipse.as.archives.integration.test
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/as/tests/org.jboss.ide.eclipse.as.test
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/as/tests/org.jboss.ide.eclipse.as.ui.test
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/birt/plugins/org.jboss.tools.birt.core
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/birt/plugins/org.jboss.tools.birt.oda
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/birt/plugins/org.jboss.tools.birt.oda.ui
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/birt/tests/org.jboss.tools.birt.core.test
___________________________________________________________________
Name: svn:ignore
+ bin
target
build
d
Property changes on: branches/modular_build/bpel/plugins/org.eclipse.bpel.apache.ode.deploy.model
___________________________________________________________________
Name: svn:ignore
- bin
bin/*
+ bin
target
build
d
Property changes on: branches/modular_build/bpel/plugins/org.eclipse.bpel.apache.ode.deploy.ui
___________________________________________________________________
Name: svn:ignore
- bin
bin/*
+ bin
target
build
d
Property changes on: branches/modular_build/bpel/plugins/org.eclipse.bpel.common.model
___________________________________________________________________
Name: svn:ignore
- bin
bin/*
+ bin
target
build
d
Property changes on: branches/modular_build/bpel/plugins/org.eclipse.bpel.common.ui
___________________________________________________________________
Name: svn:ignore
- bin
bin/*
+ bin
target
build
d
Property changes on: branches/modular_build/bpel/plugins/org.eclipse.bpel.model
___________________________________________________________________
Name: svn:ignore
- bin
bin/*
+ bin
target
build
d
Property changes on: branches/modular_build/bpel/plugins/org.eclipse.bpel.ui
___________________________________________________________________
Name: svn:ignore
- bin
bin/*
+ bin
target
build
d
Property changes on: branches/modular_build/bpel/plugins/org.eclipse.bpel.validator
___________________________________________________________________
Name: svn:ignore
- bin
bin/*
+ bin
target
build
d
Property changes on: branches/modular_build/bpel/plugins/org.eclipse.bpel.wsil.model
___________________________________________________________________
Name: svn:ignore
- bin
bin/*
+ bin
target
build
d
Property changes on: branches/modular_build/bpel/plugins/org.eclipse.bpel.xpath10
___________________________________________________________________
Name: svn:ignore
- bin
bin/*
+ bin
target
build
d
Property changes on: branches/modular_build/bpel/plugins/org.jboss.tools.bpel.cheatsheet
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/bpel/plugins/org.jboss.tools.bpel.runtimes
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/bpel/tests/org.jboss.tools.bpel.ui.test
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/cdi/plugins/org.jboss.tools.cdi.core
___________________________________________________________________
Name: svn:ignore
+ bin
target
build
d
Property changes on: branches/modular_build/cdi/plugins/org.jboss.tools.cdi.text.ext
___________________________________________________________________
Name: svn:ignore
+ bin
target
build
d
Property changes on: branches/modular_build/cdi/plugins/org.jboss.tools.cdi.ui
___________________________________________________________________
Name: svn:ignore
+ bin
target
build
d
Property changes on: branches/modular_build/cdi/plugins/org.jboss.tools.cdi.xml
___________________________________________________________________
Name: svn:ignore
+ bin
target
build
d
Property changes on: branches/modular_build/cdi/plugins/org.jboss.tools.cdi.xml.ui
___________________________________________________________________
Name: svn:ignore
+ bin
target
build
d
Property changes on: branches/modular_build/cdi/tests/org.jboss.tools.cdi.core.test
___________________________________________________________________
Name: svn:ignore
+ bin
target
build
d
Property changes on: branches/modular_build/cdi/tests/org.jboss.tools.cdi.text.ext.test
___________________________________________________________________
Name: svn:ignore
+ bin
target
build
d
Property changes on: branches/modular_build/cdi/tests/org.jboss.tools.cdi.ui.test
___________________________________________________________________
Name: svn:ignore
+ bin
target
build
d
Property changes on: branches/modular_build/common/plugins/org.jboss.tools.common
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
Property changes on: branches/modular_build/common/plugins/org.jboss.tools.common.el.core
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
Property changes on: branches/modular_build/common/plugins/org.jboss.tools.common.el.ui
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
Property changes on: branches/modular_build/common/plugins/org.jboss.tools.common.gef
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
Property changes on: branches/modular_build/common/plugins/org.jboss.tools.common.meta.ui
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
Property changes on: branches/modular_build/common/plugins/org.jboss.tools.common.model
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
Property changes on: branches/modular_build/common/plugins/org.jboss.tools.common.model.ui
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
Property changes on: branches/modular_build/common/plugins/org.jboss.tools.common.projecttemplates
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
Property changes on: branches/modular_build/common/plugins/org.jboss.tools.common.resref.core
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
Property changes on: branches/modular_build/common/plugins/org.jboss.tools.common.resref.ui
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
Property changes on: branches/modular_build/common/plugins/org.jboss.tools.common.text.ext
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
Property changes on: branches/modular_build/common/plugins/org.jboss.tools.common.text.xml
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
Property changes on: branches/modular_build/common/plugins/org.jboss.tools.common.ui
___________________________________________________________________
Name: svn:ignore
- bin
target
+ bin
target
build
Property changes on: branches/modular_build/common/plugins/org.jboss.tools.common.verification
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
Property changes on: branches/modular_build/common/plugins/org.jboss.tools.common.verification.ui
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
Property changes on: branches/modular_build/common/tests/org.jboss.tools.common.el.core.test
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/common/tests/org.jboss.tools.common.model.test
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/common/tests/org.jboss.tools.common.model.ui.test
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/common/tests/org.jboss.tools.common.test
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/common/tests/org.jboss.tools.common.text.ext.test
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/common/tests/org.jboss.tools.common.verification.test
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/common/tests/org.jboss.tools.common.verification.ui.test
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/documentation/guides/GettingStartedGuide
___________________________________________________________________
Name: svn:ignore
- target
+ bin
target
build
d
Property changes on: branches/modular_build/drools/plugins/org.jboss.tools.flow.ruleflow
___________________________________________________________________
Name: svn:ignore
- target
+ bin
target
build
Property changes on: branches/modular_build/esb/plugins/org.jboss.tools.esb.core
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/esb/plugins/org.jboss.tools.esb.project.core
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/esb/plugins/org.jboss.tools.esb.project.ui
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/esb/plugins/org.jboss.tools.esb.ui
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/esb/tests/org.jboss.tools.esb.core.test
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/esb/tests/org.jboss.tools.esb.project.core.test
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/examples/plugins/org.jboss.tools.project.examples
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/examples/plugins/org.jboss.tools.project.examples.cheatsheet
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/examples/tests/org.jboss.tools.project.examples.test
___________________________________________________________________
Name: svn:ignore
+ bin
target
build
d
Property changes on: branches/modular_build/flow/plugins/org.jboss.tools.flow.common
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
Property changes on: branches/modular_build/flow/tests/org.jboss.tools.flow.common.test
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/freemarker/features/org.jboss.ide.eclipse.freemarker.feature
___________________________________________________________________
Name: svn:ignore
+ bin
target
build
Property changes on: branches/modular_build/freemarker/features/org.jboss.ide.eclipse.freemarker.test.feature
___________________________________________________________________
Name: svn:ignore
+ bin
target
build
Property changes on: branches/modular_build/freemarker/plugins/org.jboss.ide.eclipse.freemarker
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
Property changes on: branches/modular_build/freemarker/tests/org.jboss.ide.eclipse.freemarker.test
___________________________________________________________________
Name: svn:ignore
+ bin
target
build
Property changes on: branches/modular_build/hibernatetools/plugins/org.hibernate.eclipse
___________________________________________________________________
Name: svn:ignore
- build
.settings
+ bin
target
build
Property changes on: branches/modular_build/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.core
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui
___________________________________________________________________
Name: svn:ignore
- .settings
bin
+ bin
target
build
d
Property changes on: branches/modular_build/hibernatetools/plugins/org.jboss.tools.hibernate.ui
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/hibernatetools/plugins/org.jboss.tools.hibernate.xml
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/hibernatetools/plugins/org.jboss.tools.hibernate.xml.ui
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/hibernatetools/sampleprojects/org.jboss.tools.hibernate.sampleproject.mappingtypes
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/hibernatetools/tests/org.hibernate.eclipse.jdt.ui.test
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/hibernatetools/tests/org.jboss.tools.hibernate.jpt.core.test
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/hibernatetools/tests/org.jboss.tools.hibernate.ui.bot.test
___________________________________________________________________
Name: svn:ignore
- screenshots
test-output
+ bin
target
build
d
Property changes on: branches/modular_build/hibernatetools/tests/org.jboss.tools.hibernate.ui.test
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/jbpm/plugins/org.jboss.tools.flow.jpdl4
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
Property changes on: branches/modular_build/jbpm/plugins/org.jboss.tools.flow.jpdl4.multipage
___________________________________________________________________
Name: svn:ignore
- bin
bin
+ bin
target
build
Property changes on: branches/modular_build/jbpm/plugins/org.jboss.tools.jbpm.common
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
Property changes on: branches/modular_build/jbpm/plugins/org.jboss.tools.jbpm.convert
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
Property changes on: branches/modular_build/jbpm/plugins/org.jbpm.gd.jpdl
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
Property changes on: branches/modular_build/jbpm/tests/org.jboss.tools.flow.jpdl4.multipage.test
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/jbpm/tests/org.jboss.tools.flow.jpdl4.test
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/jbpm/tests/org.jboss.tools.jbpm.common.test
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/jbpm/tests/org.jboss.tools.jbpm.convert.test
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/jbpm/tests/org.jbpm.gd.jpdl.test
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/jmx/features/org.jboss.tools.jmx.feature
___________________________________________________________________
Name: svn:ignore
+ bin
target
build
Property changes on: branches/modular_build/jmx/plugins/org.jboss.tools.jmx.core
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
Property changes on: branches/modular_build/jmx/plugins/org.jboss.tools.jmx.ui
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
Property changes on: branches/modular_build/jsf/plugins/org.jboss.tools.jsf
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/jsf/plugins/org.jboss.tools.jsf.text.ext
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/jsf/plugins/org.jboss.tools.jsf.text.ext.facelets
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/jsf/plugins/org.jboss.tools.jsf.text.ext.richfaces
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/jsf/plugins/org.jboss.tools.jsf.ui
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/jsf/plugins/org.jboss.tools.jsf.verification
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/jsf/plugins/org.jboss.tools.jsf.vpe.ajax4jsf
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/jsf/plugins/org.jboss.tools.jsf.vpe.facelets
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/jsf/plugins/org.jboss.tools.jsf.vpe.jsf
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/jsf/plugins/org.jboss.tools.jsf.vpe.jstl
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/jsf/plugins/org.jboss.tools.jsf.vpe.myfaces
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/jsf/plugins/org.jboss.tools.jsf.vpe.richfaces
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/jsf/plugins/org.jboss.tools.jsf.vpe.seam
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/jsf/tests/org.jboss.tools.jsf.test
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/jsf/tests/org.jboss.tools.jsf.text.ext.test
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/jsf/tests/org.jboss.tools.jsf.ui.bot.test
___________________________________________________________________
Name: svn:ignore
+ bin
target
build
d
Property changes on: branches/modular_build/jsf/tests/org.jboss.tools.jsf.ui.test
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/jsf/tests/org.jboss.tools.jsf.verification.test
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/jsf/tests/org.jboss.tools.jsf.vpe.ajax4jsf.test
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/jsf/tests/org.jboss.tools.jsf.vpe.facelets.test
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/jsf/tests/org.jboss.tools.jsf.vpe.jstl.test
___________________________________________________________________
Name: svn:ignore
- bin
bin
+ bin
target
build
d
Property changes on: branches/modular_build/jsf/tests/org.jboss.tools.jsf.vpe.myfaces.test
___________________________________________________________________
Name: svn:ignore
- AllTests.txt
bin
+ bin
target
build
d
Property changes on: branches/modular_build/jsf/tests/org.jboss.tools.jsf.vpe.richfaces.test
___________________________________________________________________
Name: svn:ignore
- AllTests.txt
bin
+ bin
target
build
d
Property changes on: branches/modular_build/jsf/tests/org.jboss.tools.jsf.vpe.seam.test
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/jst/plugins/org.jboss.tools.jst.css
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
Property changes on: branches/modular_build/jst/plugins/org.jboss.tools.jst.firstrun
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
Property changes on: branches/modular_build/jst/plugins/org.jboss.tools.jst.jsp
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
Property changes on: branches/modular_build/jst/plugins/org.jboss.tools.jst.text.ext
___________________________________________________________________
Name: svn:ignore
+ bin
target
build
Property changes on: branches/modular_build/jst/plugins/org.jboss.tools.jst.web
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
Property changes on: branches/modular_build/jst/plugins/org.jboss.tools.jst.web.kb
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
Property changes on: branches/modular_build/jst/plugins/org.jboss.tools.jst.web.tiles
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
Property changes on: branches/modular_build/jst/plugins/org.jboss.tools.jst.web.tiles.ui
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
Property changes on: branches/modular_build/jst/plugins/org.jboss.tools.jst.web.ui
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
Property changes on: branches/modular_build/jst/plugins/org.jboss.tools.jst.web.verification
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
Property changes on: branches/modular_build/jst/tests/org.jboss.tools.jst.css.test
___________________________________________________________________
Name: svn:ignore
+ bin
target
build
d
Property changes on: branches/modular_build/jst/tests/org.jboss.tools.jst.jsp.test
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/jst/tests/org.jboss.tools.jst.ui.bot.test
___________________________________________________________________
Name: svn:ignore
+ bin
target
build
d
Property changes on: branches/modular_build/jst/tests/org.jboss.tools.jst.ui.firstrun.bot.test
___________________________________________________________________
Name: svn:ignore
+ bin
target
build
d
Property changes on: branches/modular_build/jst/tests/org.jboss.tools.jst.web.kb.test
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/jst/tests/org.jboss.tools.jst.web.test
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/jst/tests/org.jboss.tools.jst.web.ui.test
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/jst/tests/org.jboss.tools.ui.bot.ext
___________________________________________________________________
Name: svn:ignore
- bin
target
+ bin
target
build
d
Property changes on: branches/modular_build/labs/plugins/org.jboss.tools.labs.pde.sourceprovider
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/maven/plugins/org.jboss.tools.maven.core
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/maven/plugins/org.jboss.tools.maven.seam
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/maven/plugins/org.jboss.tools.maven.ui
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/modeshape/plugins/org.jboss.tools.modeshape.rest
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/modeshape/tests/org.jboss.tools.modeshape.rest.test
___________________________________________________________________
Name: svn:ignore
+ bin
target
build
d
Property changes on: branches/modular_build/portlet/plugins/org.jboss.tools.portlet.core
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/portlet/plugins/org.jboss.tools.portlet.ui
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/portlet/tests/org.jboss.tools.portlet.core.test
___________________________________________________________________
Name: svn:ignore
+ bin
target
build
d
Property changes on: branches/modular_build/profiler/plugins/org.jboss.tools.profiler.ui
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/seam/plugins/org.jboss.tools.seam.core
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/seam/plugins/org.jboss.tools.seam.pages.xml
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/seam/plugins/org.jboss.tools.seam.text.ext
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/seam/plugins/org.jboss.tools.seam.ui
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/seam/plugins/org.jboss.tools.seam.ui.pages
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/seam/plugins/org.jboss.tools.seam.xml
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/seam/plugins/org.jboss.tools.seam.xml.ui
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/seam/tests/org.jboss.tools.seam.core.test
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/seam/tests/org.jboss.tools.seam.pages.xml.test
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/seam/tests/org.jboss.tools.seam.text.ext.test
___________________________________________________________________
Name: svn:ignore
+ bin
target
build
d
Property changes on: branches/modular_build/seam/tests/org.jboss.tools.seam.ui.bot.test
___________________________________________________________________
Name: svn:ignore
+ bin
target
build
d
Property changes on: branches/modular_build/seam/tests/org.jboss.tools.seam.ui.pages.test
___________________________________________________________________
Name: svn:ignore
+ bin
target
build
d
Property changes on: branches/modular_build/seam/tests/org.jboss.tools.seam.ui.test
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/seam/tests/org.jboss.tools.seam.xml.test
___________________________________________________________________
Name: svn:ignore
+ bin
target
build
d
Property changes on: branches/modular_build/seam/tests/org.jboss.tools.seam.xml.ui.test
___________________________________________________________________
Name: svn:ignore
+ bin
target
build
d
Property changes on: branches/modular_build/smooks/plugins/org.jboss.tools.smooks.core
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/smooks/plugins/org.jboss.tools.smooks.runtime
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
Property changes on: branches/modular_build/smooks/plugins/org.jboss.tools.smooks.runtime/target
___________________________________________________________________
Name: svn:ignore
+ bin
target
build
Property changes on: branches/modular_build/smooks/plugins/org.jboss.tools.smooks.templating
___________________________________________________________________
Name: svn:ignore
+ bin
target
build
d
Property changes on: branches/modular_build/smooks/plugins/org.jboss.tools.smooks.ui
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/smooks/tests/org.jboss.tools.smooks.core.test
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/smooks/tests/org.jboss.tools.smooks.templating.test
___________________________________________________________________
Name: svn:ignore
+ bin
target
build
d
Property changes on: branches/modular_build/struts/plugins/org.jboss.tools.struts
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/struts/plugins/org.jboss.tools.struts.text.ext
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/struts/plugins/org.jboss.tools.struts.ui
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/struts/plugins/org.jboss.tools.struts.validator.ui
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/struts/plugins/org.jboss.tools.struts.verification
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/struts/plugins/org.jboss.tools.struts.vpe.struts
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/struts/tests/org.jboss.tools.struts.text.ext.test
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/struts/tests/org.jboss.tools.struts.vpe.struts.test
___________________________________________________________________
Name: svn:ignore
- bin
AllTests.txt
+ bin
target
build
d
Property changes on: branches/modular_build/tests/plugins/org.jboss.tools.tests
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
Property changes on: branches/modular_build/tptp/plugins/org.jboss.tools.eclipse.as.tptp
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/vpe/plugins/org.jboss.tools.vpe
___________________________________________________________________
Name: svn:ignore
- bin
.options
+ bin
target
build
Property changes on: branches/modular_build/vpe/plugins/org.jboss.tools.vpe.docbook
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
Property changes on: branches/modular_build/vpe/plugins/org.jboss.tools.vpe.html
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
Property changes on: branches/modular_build/vpe/plugins/org.jboss.tools.vpe.jsp
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
Property changes on: branches/modular_build/vpe/plugins/org.jboss.tools.vpe.resref
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
Property changes on: branches/modular_build/vpe/plugins/org.jboss.tools.vpe.ui.palette
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
Property changes on: branches/modular_build/vpe/plugins/org.jboss.tools.vpe.xulrunner
___________________________________________________________________
Name: svn:ignore
- .options
bin
+ bin
target
build
Property changes on: branches/modular_build/vpe/plugins/org.jboss.tools.xulrunner
___________________________________________________________________
Name: svn:ignore
+ bin
target
build
Property changes on: branches/modular_build/vpe/plugins/org.jboss.tools.xulrunner.initializer
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
Property changes on: branches/modular_build/vpe/tests/org.jboss.tools.vpe.html.test
___________________________________________________________________
Name: svn:ignore
- bin
AllTests.txt
+ bin
target
build
d
Property changes on: branches/modular_build/vpe/tests/org.jboss.tools.vpe.jsp.test
___________________________________________________________________
Name: svn:ignore
- AllTests.txt
bin
+ bin
target
build
d
Property changes on: branches/modular_build/vpe/tests/org.jboss.tools.vpe.test
___________________________________________________________________
Name: svn:ignore
- bin
AllTests.txt
+ bin
target
build
d
Property changes on: branches/modular_build/vpe/tests/org.jboss.tools.vpe.ui.bot.test
___________________________________________________________________
Name: svn:ignore
- bin
*.class
+ bin
target
build
d
Property changes on: branches/modular_build/vpe/tests/org.jboss.tools.vpe.ui.test
___________________________________________________________________
Name: svn:ignore
- bin
AllTests.txt
+ bin
target
build
d
Property changes on: branches/modular_build/vpe/tests/org.jboss.tools.vpe.xulrunner.test
___________________________________________________________________
Name: svn:ignore
- bin
AllTests.txt
+ bin
target
build
d
Property changes on: branches/modular_build/workingset/plugins/org.jboss.tools.workingset.core
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/workingset/plugins/org.jboss.tools.workingset.ui
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/workingset/tests/org.jboss.tools.workingset.core.test
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/ws/plugins/org.jboss.tools.ws.core
___________________________________________________________________
Name: svn:ignore
- bin
bin
+ bin
target
build
d
Property changes on: branches/modular_build/ws/plugins/org.jboss.tools.ws.creation.core
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/ws/plugins/org.jboss.tools.ws.creation.ui
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/ws/plugins/org.jboss.tools.ws.ui
___________________________________________________________________
Name: svn:ignore
- bin
bin
+ bin
target
build
d
Property changes on: branches/modular_build/ws/tests/org.jboss.tools.ws.core.test
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
Property changes on: branches/modular_build/ws/tests/org.jboss.tools.ws.ui.test
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
d
14 years, 9 months
JBoss Tools SVN: r21096 - in branches/modular_build/jmx/tests: org.jboss.tools.jmx.core.test and 1 other directories.
by jbosstools-commits@lists.jboss.org
Author: max.andersen(a)jboss.com
Date: 2010-03-28 13:43:05 -0400 (Sun, 28 Mar 2010)
New Revision: 21096
Removed:
branches/modular_build/jmx/tests/org.jboss.tools.jmx.ui.test.interactive/
Modified:
branches/modular_build/jmx/tests/org.jboss.tools.jmx.core.test/
branches/modular_build/jmx/tests/org.jboss.tools.jmx.ui.test/
Log:
delete orphaned test.interactive in jmx plugin. JBDS-486. Should be resurrected again.
Property changes on: branches/modular_build/jmx/tests/org.jboss.tools.jmx.core.test
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
Property changes on: branches/modular_build/jmx/tests/org.jboss.tools.jmx.ui.test
___________________________________________________________________
Name: svn:ignore
- bin
+ bin
target
build
14 years, 9 months