JBoss Tools SVN: r41002 - trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/util.
by jbosstools-commits@lists.jboss.org
Author: rob.stryker(a)jboss.com
Date: 2012-05-14 15:06:08 -0400 (Mon, 14 May 2012)
New Revision: 41002
Modified:
trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/util/ArgsUtil.java
Log:
JBIDE-11853 argsutil npe
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/util/ArgsUtil.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/util/ArgsUtil.java 2012-05-14 19:04:01 UTC (rev 41001)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/util/ArgsUtil.java 2012-05-14 19:06:08 UTC (rev 41002)
@@ -31,7 +31,9 @@
public static final String QUOTE="\""; //$NON-NLS-1$
public static String[] parse(String s) {
- s = s.trim();
+ if( s == null )
+ return new String[0];
+
try {
ArrayList<String> l = new ArrayList<String>();
int length = s.length();
12 years, 8 months
JBoss Tools SVN: r41001 - trunk/build/aggregate/soa-site/plugins/org.jboss.tools.central.discovery.soa-tooling.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2012-05-14 15:04:01 -0400 (Mon, 14 May 2012)
New Revision: 41001
Modified:
trunk/build/aggregate/soa-site/plugins/org.jboss.tools.central.discovery.soa-tooling/plugin.xml
Log:
replace BRMS and SOA-P with more generic names as per JBDS-2113
Modified: trunk/build/aggregate/soa-site/plugins/org.jboss.tools.central.discovery.soa-tooling/plugin.xml
===================================================================
--- trunk/build/aggregate/soa-site/plugins/org.jboss.tools.central.discovery.soa-tooling/plugin.xml 2012-05-14 19:02:09 UTC (rev 41000)
+++ trunk/build/aggregate/soa-site/plugins/org.jboss.tools.central.discovery.soa-tooling/plugin.xml 2012-05-14 19:04:01 UTC (rev 41001)
@@ -32,7 +32,7 @@
license="Free, EPL"
provider="JBoss by Red Hat"
siteUrl="%jboss.soa.update.url"
- name="SOA-P Tooling"
+ name="SOA and Data Services Tooling"
description="BPEL, Drools, Guvnor, ESB, jBPM 3, ModeShape, Teiid, Runtime"
id="com.jboss.jbds.soatooling.bundle.soap">
@@ -64,7 +64,7 @@
image32="images/jbds_icon32.png">
</icon>
<overview
- summary="SOA-P Tooling for Eclipse - includes support for BPEL, Drools, Guvnor, ESB, jBPM 3, ModeShape, Teiid Designer, and Runtime Detection"
+ summary="SOA and Data Services Tooling for Eclipse - includes support for BPEL, Drools, Guvnor, ESB, jBPM 3, ModeShape, Teiid Designer, and Runtime Detection"
screenshot="images/jbds_soa-p_brms.png"
url="http://devstudio.jboss.com/">
</overview>
@@ -77,7 +77,7 @@
license="Free, EPL"
provider="JBoss by Red Hat"
siteUrl="%jboss.soa.update.url"
- name="BRMS Tooling"
+ name="Business Rules Tooling"
description="Drools, jBPM 5, Runtime"
id="com.jboss.jbds.soatooling.bundle.brms">
@@ -93,7 +93,7 @@
image32="images/jbds_icon32.png">
</icon>
<overview
- summary="BRMS Tooling for Eclipse - includes support for Drools, jBPM 5, and Runtime Detection"
+ summary="Business Rules Tooling for Eclipse - includes support for Drools, jBPM 5, and Runtime Detection"
screenshot="images/jbds_soa-p_brms.png"
url="http://devstudio.jboss.com/">
</overview>
12 years, 8 months
JBoss Tools SVN: r41000 - in trunk/as/plugins: org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration and 2 other directories.
by jbosstools-commits@lists.jboss.org
Author: rob.stryker(a)jboss.com
Date: 2012-05-14 15:02:09 -0400 (Mon, 14 May 2012)
New Revision: 41000
Modified:
trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/internal/v7/JBoss7ManagerServicePoller.java
trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/AbstractJBossJMXConnectionProvider.java
trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/JBoss71ServerConnection.java
trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/JBossJMXConnectionProviderModel.java
trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/JBossServerConnection.java
trunk/as/plugins/org.jboss.ide.eclipse.as.management.as71/src/org/jboss/ide/eclipse/as/internal/management/as71/AS71Manager.java
trunk/as/plugins/org.jboss.ide.eclipse.as.rse.core/src/org/jboss/ide/eclipse/as/rse/core/RSEJBoss7StartLaunchDelegate.java
Log:
JBIDE-11825
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/internal/v7/JBoss7ManagerServicePoller.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/internal/v7/JBoss7ManagerServicePoller.java 2012-05-14 18:59:52 UTC (rev 40999)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/internal/v7/JBoss7ManagerServicePoller.java 2012-05-14 19:02:09 UTC (rev 41000)
@@ -37,7 +37,6 @@
* @author André Dietisheim
*/
public class JBoss7ManagerServicePoller implements IServerStatePoller2 {
-
public static final String POLLER_ID = "org.jboss.ide.eclipse.as.core.server.JBoss7ManagerServicePoller"; //$NON-NLS-1$
private IServer server;
private AS7ManagementDetails managementDetails;
@@ -71,27 +70,55 @@
};
}
+ private synchronized void setRequiredProperties(List<String> props) {
+ this.requiredProperties = props;
+ }
+ private synchronized void setRequiredInfoException(RequiresInfoException e) {
+ this.requiresInfoException = e;
+ }
+
+ private synchronized void setPollingException(PollingException e) {
+ this.pollingException = e;
+ }
+
+ private synchronized Properties getRequiredPropertiesReturned() {
+ return requiredPropertiesReturned;
+ }
+
+ private synchronized boolean getDone() {
+ return done;
+ }
+
+ private synchronized void setDone(boolean done) {
+ this.done = done;
+ }
+
+ private synchronized boolean getCanceled() {
+ return canceled;
+ }
+
private String[] handleAsynchCallbacks(String[] prompts) {
List<String> tmp = new ArrayList<String>();
tmp.addAll(Arrays.asList(prompts));
- requiredProperties = tmp;
- requiresInfoException = new RequiresInfoException("Requires proper credentials"); //$NON-NLS-1$
- while( !done && !canceled && requiredPropertiesReturned == null ) {
+ setRequiredProperties(tmp);
+ RequiresInfoException e2 = new RequiresInfoException("Requires proper credentials"); //$NON-NLS-1$
+ setRequiredInfoException(e2);
+ while( !getDone() && !getCanceled() && getRequiredPropertiesReturned() == null ) {
try {
Thread.sleep(500);
} catch(InterruptedException ie) {/* Do nothing */}
}
- if( done || canceled )
+ if( getDone() || getCanceled() )
return new String[0];
String[] retPrompts = new String[prompts.length];
for( int i = 0; i < retPrompts.length; i++) {
- retPrompts[i] = (String)requiredPropertiesReturned.get(prompts[i]);
+ retPrompts[i] = (String)getRequiredPropertiesReturned().get(prompts[i]);
}
// If not cleared then it will keep asking for username/password
- requiresInfoException = null;
+ setRequiredInfoException(null);
return retPrompts;
}
@@ -108,7 +135,7 @@
return server;
}
- public boolean isComplete() throws PollingException, RequiresInfoException {
+ public synchronized boolean isComplete() throws PollingException, RequiresInfoException {
if (pollingException != null)
throw pollingException;
if( requiresInfoException != null )
@@ -116,7 +143,7 @@
return done;
}
- public boolean getState() throws PollingException, RequiresInfoException {
+ public synchronized boolean getState() throws PollingException, RequiresInfoException {
if( done )
return expectedState;
return !expectedState;
@@ -132,13 +159,13 @@
public void runLoop() {
try {
- while( !done && !canceled ) {
+ while( !getDone() && !getCanceled() ) {
if (expectedState == SERVER_DOWN) {
- done = checkShutdown(service);
+ setDone(checkShutdown(service));
} else {
- done = checkRunning(service);
+ setDone(checkRunning(service));
}
- if( !done ) {
+ if( !getDone() ) {
try {
Thread.sleep(300);
} catch(InterruptedException ie) {
@@ -147,7 +174,7 @@
}
}
} catch (Exception e) {
- pollingException = new PollingException(e.getMessage());
+ setPollingException(new PollingException(e.getMessage()));
}
}
@@ -176,15 +203,15 @@
JBoss7ManagerUtil.dispose(service);
}
- public List<String> getRequiredProperties() {
+ public synchronized List<String> getRequiredProperties() {
return requiredProperties == null ? new ArrayList<String>() : requiredProperties;
}
- public void provideCredentials(Properties properties) {
+ public synchronized void provideCredentials(Properties properties) {
requiredPropertiesReturned = properties;
}
- public void cancel(int type) {
+ public synchronized void cancel(int type) {
canceled = true;
}
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/AbstractJBossJMXConnectionProvider.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/AbstractJBossJMXConnectionProvider.java 2012-05-14 18:59:52 UTC (rev 40999)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/AbstractJBossJMXConnectionProvider.java 2012-05-14 19:02:09 UTC (rev 41000)
@@ -57,10 +57,13 @@
public void serverChanged(IServer server) {
if( belongsHere(server)) {
getConnections();
- IConnectionWrapper connection = createConnection(server);
- idToConnection.put(server.getId(), connection);
- if( connection != null )
- fireAdded(idToConnection.get(server.getId()));
+ Object o = idToConnection.get(server.getId());
+ if( o == null ) {
+ IConnectionWrapper connection = createConnection(server);
+ idToConnection.put(server.getId(), connection);
+ if( connection != null )
+ fireAdded(idToConnection.get(server.getId()));
+ }
}
}
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/JBoss71ServerConnection.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/JBoss71ServerConnection.java 2012-05-14 18:59:52 UTC (rev 40999)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/JBoss71ServerConnection.java 2012-05-14 19:02:09 UTC (rev 41000)
@@ -81,8 +81,8 @@
super.cleanupConnection(server, connection);
if( connectionToConnector.get(connection) != null ) {
try {
+ connectionToConnector.get(connection).close();
connectionToConnector.remove(connection);
- connectionToConnector.get(connection).close();
} catch(Exception e) { /* Ignore */ }
}
}
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/JBossJMXConnectionProviderModel.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/JBossJMXConnectionProviderModel.java 2012-05-14 18:59:52 UTC (rev 40999)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/JBossJMXConnectionProviderModel.java 2012-05-14 19:02:09 UTC (rev 41000)
@@ -40,7 +40,9 @@
}
public void registerProvider(int type, AbstractJBossJMXConnectionProvider provider) {
- initProviders();
+ if( providers == null) {
+ providers = new HashMap<Integer, AbstractJBossJMXConnectionProvider>();
+ }
providers.put(type, provider);
}
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/JBossServerConnection.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/JBossServerConnection.java 2012-05-14 18:59:52 UTC (rev 40999)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/JBossServerConnection.java 2012-05-14 19:02:09 UTC (rev 41000)
@@ -213,7 +213,7 @@
connectToStartedServer();
return Status.OK_STATUS;
}
- }.schedule();
+ }.schedule(5000);
}
protected void connectToStartedServer() {
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.management.as71/src/org/jboss/ide/eclipse/as/internal/management/as71/AS71Manager.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.management.as71/src/org/jboss/ide/eclipse/as/internal/management/as71/AS71Manager.java 2012-05-14 18:59:52 UTC (rev 40999)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.management.as71/src/org/jboss/ide/eclipse/as/internal/management/as71/AS71Manager.java 2012-05-14 19:02:09 UTC (rev 41000)
@@ -264,7 +264,11 @@
}
public void dispose() {
- StreamUtils.safeClose(client);
+ new Thread("Closing AS7 Management Streams") {
+ public void run() {
+ StreamUtils.safeClose(client);
+ }
+ }.start();
}
/*package*/ ModelNode execute(ModelNode node) throws JBoss7ManangerException {
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.rse.core/src/org/jboss/ide/eclipse/as/rse/core/RSEJBoss7StartLaunchDelegate.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.rse.core/src/org/jboss/ide/eclipse/as/rse/core/RSEJBoss7StartLaunchDelegate.java 2012-05-14 18:59:52 UTC (rev 40999)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.rse.core/src/org/jboss/ide/eclipse/as/rse/core/RSEJBoss7StartLaunchDelegate.java 2012-05-14 19:02:09 UTC (rev 41000)
@@ -37,7 +37,6 @@
}
String command = RSELaunchConfigProperties.getStartupCommand(configuration);
executeRemoteCommand(command, beh);
- launchPingThread(beh);
}
@Override
12 years, 8 months
JBoss Tools SVN: r40999 - trunk/build/aggregate/soa-site/site.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2012-05-14 14:59:52 -0400 (Mon, 14 May 2012)
New Revision: 40999
Modified:
trunk/build/aggregate/soa-site/site/site.xml
Log:
apply changes requested in JBDS-2113 to site.xml
Modified: trunk/build/aggregate/soa-site/site/site.xml
===================================================================
--- trunk/build/aggregate/soa-site/site/site.xml 2012-05-14 18:16:07 UTC (rev 40998)
+++ trunk/build/aggregate/soa-site/site/site.xml 2012-05-14 18:59:52 UTC (rev 40999)
@@ -36,7 +36,7 @@
</feature>
<feature url="features/org.jboss.tools.esb.feature_0.0.0.jar" id="org.jboss.tools.esb.feature" version="0.0.0">
- <category name="SOAPTools" />
+ <category name="SOADataServices" />
<category name="SOATools" />
</feature>
<feature url="features/org.jboss.tools.bpel.feature_0.0.0.jar" id="org.jboss.tools.bpel.feature" version="0.0.0">
@@ -45,80 +45,78 @@
<!-- jBPM3 features (JBDS-2012 remove jBPM4) -->
<feature url="features/org.jboss.tools.jbpm.convert.feature_0.0.0.jar" id="org.jboss.tools.jbpm.convert.feature" version="0.0.0">
- <category name="SOAPTools" />
+ <category name="SOADataServices" />
<category name="SOATools" />
</feature>
<feature url="features/org.jboss.tools.jbpm.common.feature_0.0.0.jar" id="org.jboss.tools.jbpm.common.feature" version="0.0.0">
</feature>
<feature url="features/org.jboss.tools.jbpm3.feature_0.0.0.jar" id="org.jboss.tools.jbpm3.feature" version="0.0.0">
- <category name="SOAPTools" />
+ <category name="SOADataServices" />
<category name="SOATools" />
</feature>
<!-- jBPM5 features -->
<feature url="features/org.jbpm.eclipse.feature_0.0.0.jar" id="org.jbpm.eclipse.feature" version="0.0.0">
- <category name="BRMSTools" />
+ <category name="BusinessRules" />
<category name="SOATools" />
</feature>
<feature url="features/org.jbpm.eclipse.task.feature_0.0.0.jar" id="org.jbpm.eclipse.task.feature" version="0.0.0">
- <category name="BRMSTools" />
+ <category name="BusinessRules" />
<category name="SOATools" />
</feature>
<!-- Drools/Guvnor -->
<feature url="features/org.drools.eclipse.feature_0.0.0.jar" id="org.drools.eclipse.feature" version="0.0.0">
- <category name="SOAPTools" />
- <category name="BRMSTools" />
+ <category name="SOADataServices" />
+ <category name="BusinessRules" />
<category name="SOATools" />
<category name="GeneralTools" />
</feature>
<feature url="features/org.drools.eclipse.task.feature_0.0.0.jar" id="org.drools.eclipse.task.feature" version="0.0.0">
- <category name="SOAPTools" />
- <category name="BRMSTools" />
+ <category name="SOADataServices" />
+ <category name="BusinessRules" />
<category name="SOATools" />
</feature>
<feature url="features/org.guvnor.tools.feature_0.0.0.jar" id="org.guvnor.tools.feature" version="0.0.0">
- <category name="SOAPTools" />
+ <category name="SOADataServices" />
<category name="SOATools" />
</feature>
<feature url="features/org.jboss.tools.modeshape.rest.feature_0.0.0.jar" id="org.jboss.tools.modeshape.rest.feature" version="0.0.0">
- <category name="SOAPTools" />
- <category name="GeneralTools" />
+ <category name="SOADataServices" />
+ <category name="DataTools" />
</feature>
<feature url="features/org.jboss.tools.modeshape.jcr.feature_0.0.0.jar" id="org.jboss.tools.modeshape.jcr.feature" version="0.0.0">
- <category name="SOAPTools" />
- <category name="GeneralTools" />
+ <category name="SOADataServices" />
+ <category name="DataTools" />
</feature>
<feature url="features/org.jboss.tools.runtime.drools.detector.feature_0.0.0.jar" id="org.jboss.tools.runtime.drools.detector.feature" version="0.0.0">
- <category name="BRMSTools" />
- <category name="SOAPTools" />
+ <category name="BusinessRules" />
+ <category name="SOADataServices" />
</feature>
<feature url="features/org.jboss.tools.runtime.esb.detector.feature_0.0.0.jar" id="org.jboss.tools.runtime.esb.detector.feature" version="0.0.0">
- <category name="SOAPTools" />
+ <category name="SOADataServices" />
</feature>
<feature url="features/org.jboss.tools.runtime.jbpm.detector.feature_0.0.0.jar" id="org.jboss.tools.runtime.jbpm.detector.feature" version="0.0.0">
- <category name="BRMSTools" />
- <category name="SOAPTools" />
+ <category name="BusinessRules" />
+ <category name="SOADataServices" />
</feature>
- <category-def name="SOAPTools" label="* SOA-P Tooling">
+ <category-def name="SOADataServices" label="* SOA and Data Services Tooling">
<description>
- SOA-P Tooling for Eclipse - includes support for BPEL, Drools, Guvnor, ESB, jBPM 3, ModeShape, Teiid Designer, and Runtime Detection
+ SOA and Data Services Tooling for Eclipse - includes support for BPEL, Drools, Guvnor, ESB, jBPM 3, ModeShape, Teiid Designer, and Runtime Detection
</description>
</category-def>
- <category-def name="BRMSTools" label="* BRMS Tooling">
+ <category-def name="BusinessRules" label="* Business Rules Tooling">
<description>
- BRMS Tooling for Eclipse - includes support for Drools, jBPM 5, and Runtime Detection
+ Business Rules Tooling for Eclipse - includes support for Drools, jBPM 5, and Runtime Detection
</description>
</category-def>
<category-def name="SOATools" label="JBoss SOA Development">
<description>
- Tools to help create SOA applications. Use these if you
- work with jBPM,
- Drools, JBoss ESB or JBoss WebServices.
+ Tools to help create SOA applications. Use these if you work with jBPM, Drools, JBoss ESB or JBoss WebServices.
</description>
</category-def>
12 years, 8 months
JBoss Tools SVN: r40997 - branches/jbosstools-3.3.0.Beta3/build/parent.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2012-05-14 13:39:38 -0400 (Mon, 14 May 2012)
New Revision: 40997
Modified:
branches/jbosstools-3.3.0.Beta3/build/parent/pom.xml
Log:
JBIDE-11700: add property for latest stable build of m2e-apt; for use with JBDS product builds
Modified: branches/jbosstools-3.3.0.Beta3/build/parent/pom.xml
===================================================================
--- branches/jbosstools-3.3.0.Beta3/build/parent/pom.xml 2012-05-14 17:38:23 UTC (rev 40996)
+++ branches/jbosstools-3.3.0.Beta3/build/parent/pom.xml 2012-05-14 17:39:38 UTC (rev 40997)
@@ -74,6 +74,9 @@
<coverage.filter>org.jboss.tools.*</coverage.filter>
<requirements.root>${basedir}/../../../requirements</requirements.root>
<requirement.build.root>${requirements.root}/target</requirement.build.root>
+
+ <!-- JBIDE-11700: latest stable build of m2e-apt for use with JBDS product builds -->
+ <m2e-apt>http://download.jboss.org/jbosstools/updates/requirements/m2eclipse/m2e-a...</m2e-apt>
</properties>
12 years, 8 months
JBoss Tools SVN: r40996 - branches/jbosstools-3.3.0.Beta3/central/plugins/org.jboss.tools.central.discovery.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2012-05-14 13:38:23 -0400 (Mon, 14 May 2012)
New Revision: 40996
Modified:
branches/jbosstools-3.3.0.Beta3/central/plugins/org.jboss.tools.central.discovery/plugin.xml
Log:
JBDS-2134 point Central at new http://download.jboss.org/jbosstools/updates/development/indigo/central/c... site
Modified: branches/jbosstools-3.3.0.Beta3/central/plugins/org.jboss.tools.central.discovery/plugin.xml
===================================================================
--- branches/jbosstools-3.3.0.Beta3/central/plugins/org.jboss.tools.central.discovery/plugin.xml 2012-05-14 17:35:15 UTC (rev 40995)
+++ branches/jbosstools-3.3.0.Beta3/central/plugins/org.jboss.tools.central.discovery/plugin.xml 2012-05-14 17:38:23 UTC (rev 40996)
@@ -23,7 +23,7 @@
license="Free, EPL"
name="JBoss Maven Integration"
provider="JBoss by Red Hat"
- siteUrl="http://download.jboss.org/jbosstools/updates/development/indigo/">
+ siteUrl="http://download.jboss.org/jbosstools/updates/development/indigo/central/c...">
<iu id="org.jboss.tools.maven.feature"/>
<icon
image32="images/jbosstools_icon32.png">
@@ -41,7 +41,7 @@
license="Free, EPL"
name="JBoss Maven CDI Configurator"
provider="JBoss by Red Hat"
- siteUrl="http://download.jboss.org/jbosstools/updates/development/indigo/">
+ siteUrl="http://download.jboss.org/jbosstools/updates/development/indigo/central/c...">
<iu id="org.jboss.tools.maven.cdi.feature"/>
<icon
image32="images/jbosstools_icon32.png">
@@ -59,7 +59,7 @@
license="Free, EPL"
name="JBoss Maven Hibernate Configurator"
provider="JBoss by Red Hat"
- siteUrl="http://download.jboss.org/jbosstools/updates/development/indigo/">
+ siteUrl="http://download.jboss.org/jbosstools/updates/development/indigo/central/c...">
<iu id="org.jboss.tools.maven.hibernate.feature"/>
<icon
image32="images/jbosstools_icon32.png">
@@ -77,7 +77,7 @@
license="Free, EPL"
name="JBoss Maven JAX-RS Configurator"
provider="JBoss by Red Hat"
- siteUrl="http://download.jboss.org/jbosstools/updates/development/indigo/">
+ siteUrl="http://download.jboss.org/jbosstools/updates/development/indigo/central/c...">
<iu id="org.jboss.tools.maven.jaxrs.feature"/>
<icon
image32="images/jbosstools_icon32.png">
@@ -95,7 +95,7 @@
license="Free, EPL"
name="JBoss Maven JSF Configurator"
provider="JBoss by Red Hat"
- siteUrl="http://download.jboss.org/jbosstools/updates/development/indigo/">
+ siteUrl="http://download.jboss.org/jbosstools/updates/development/indigo/central/c...">
<iu id="org.jboss.tools.maven.jsf.feature"/>
<icon
image32="images/jbosstools_icon32.png">
@@ -113,7 +113,7 @@
license="Free, EPL"
name="JBoss Maven Portlet Configurator"
provider="JBoss by Red Hat"
- siteUrl="http://download.jboss.org/jbosstools/updates/development/indigo/">
+ siteUrl="http://download.jboss.org/jbosstools/updates/development/indigo/central/c...">
<iu id="org.jboss.tools.maven.portlet.feature"/>
<icon
image32="images/jbosstools_icon32.png">
@@ -131,7 +131,7 @@
license="Free, EPL"
name="JBoss Maven Seam Configurator"
provider="JBoss by Red Hat"
- siteUrl="http://download.jboss.org/jbosstools/updates/development/indigo/">
+ siteUrl="http://download.jboss.org/jbosstools/updates/development/indigo/central/c...">
<iu id="org.jboss.tools.maven.seam.feature"/>
<icon
image32="images/jbosstools_icon32.png">
@@ -149,7 +149,7 @@
license="Free, EPL"
name="JBoss Maven JPA Configurator"
provider="JBoss by Red Hat"
- siteUrl="http://download.jboss.org/jbosstools/updates/development/indigo/">
+ siteUrl="http://download.jboss.org/jbosstools/updates/development/indigo/central/c...">
<iu id="org.jboss.tools.maven.jpa.feature"/>
<icon
image32="images/jbosstools_icon32.png">
@@ -167,7 +167,7 @@
license="Free, EPL"
name="Maven Profile Management UI"
provider="JBoss by Red Hat"
- siteUrl="http://download.jboss.org/jbosstools/updates/development/indigo/">
+ siteUrl="http://download.jboss.org/jbosstools/updates/development/indigo/central/c...">
<iu id="org.jboss.tools.maven.profiles.feature"/>
<icon
image32="images/jbosstools_icon32.png">
@@ -186,7 +186,7 @@
license="Free, EPL"
name="Maven Integration for Eclipse (m2e)"
provider="eclipse.org"
- siteUrl="http://download.jboss.org/jbosstools/updates/indigo/">
+ siteUrl="http://download.jboss.org/jbosstools/updates/development/indigo/central/c...">
<iu id="org.eclipse.m2e.feature"/>
<icon
image32="images/m2e_32.gif">
@@ -204,7 +204,7 @@
license="Free, EPL"
name="Maven Integration for Eclipse JDT APT (m2e-apt)"
provider="JBoss by Red Hat"
- siteUrl="http://download.jboss.org/jbosstools/updates/indigo/">
+ siteUrl="http://download.jboss.org/jbosstools/updates/development/indigo/central/c...">
<iu id="org.jboss.tools.maven.apt.feature"/>
<icon
image32="images/m2e_32.gif">
@@ -222,7 +222,7 @@
license="Free, EPL"
name="Maven Integration for Web Tools (m2e-wtp)"
provider="eclipse.org"
- siteUrl="http://download.jboss.org/jbosstools/updates/indigo/">
+ siteUrl="http://download.jboss.org/jbosstools/updates/development/indigo/central/c...">
<iu id="org.maven.ide.eclipse.wtp.feature"/>
<icon
image32="images/m2e_32.gif">
@@ -251,7 +251,7 @@
license="Free, EPL"
name="Eclipse EGit"
provider="eclipse.org"
- siteUrl="http://download.jboss.org/jbosstools/updates/indigo/">
+ siteUrl="http://download.jboss.org/jbosstools/updates/development/indigo/central/c...">
<iu id="org.eclipse.egit"/>
<icon
image32="images/egit_32.png">
@@ -269,7 +269,7 @@
license="Free, Subclipse License"
name="Subclipse + SVNKit"
provider="tigris.org"
- siteUrl="http://download.jboss.org/jbosstools/updates/indigo/extras/">
+ siteUrl="http://download.jboss.org/jbosstools/updates/development/indigo/central/c...">
<iu id="org.tigris.subversion.subclipse"/>
<iu id="org.tigris.subversion.clientadapter.svnkit.feature"/>
<icon
@@ -300,7 +300,7 @@
license="Free, LGPL"
name="FindBugs"
provider="FindBugs Project"
- siteUrl="http://download.jboss.org/jbosstools/updates/indigo/extras/">
+ siteUrl="http://download.jboss.org/jbosstools/updates/development/indigo/central/c...">
<iu id="edu.umd.cs.findbugs.plugin.eclipse"/>
<icon
image32="images/findbugs_32.png">
@@ -318,7 +318,7 @@
license="Free, ASL"
name="JSLint"
provider="Rockstarapps.com"
- siteUrl="http://download.jboss.org/jbosstools/updates/indigo/extras/">
+ siteUrl="http://download.jboss.org/jbosstools/updates/development/indigo/central/c...">
<iu id="com.rockstarapps.aws.feature"/>
<iu id="com.rockstarapps.html.core.feature"/>
<iu id="com.rockstarapps.jsLex"/>
@@ -340,7 +340,7 @@
license="Free, EPL"
name="Mylyn Issue Tracker Connectors"
provider="JBoss by Red Hat"
- siteUrl="http://download.jboss.org/jbosstools/updates/development/indigo/">
+ siteUrl="http://download.jboss.org/jbosstools/updates/development/indigo/central/c...">
<iu id="org.jboss.tools.common.mylyn.feature"/>
<iu id="org.eclipse.mylyn_feature"/>
<iu id="org.eclipse.mylyn.ide_feature"/>
@@ -367,7 +367,7 @@
license="Free, PMD License"
name="PMD"
provider="PMD Developers"
- siteUrl="http://download.jboss.org/jbosstools/updates/indigo/extras/">
+ siteUrl="http://download.jboss.org/jbosstools/updates/development/indigo/central/c...">
<iu id="net.sourceforge.pmd.eclipse"/>
<icon
image32="images/pmd_32.png">
@@ -385,7 +385,7 @@
license="Free, ASL"
name="TestNG"
provider="Cedric Beust"
- siteUrl="http://download.jboss.org/jbosstools/updates/indigo/extras/">
+ siteUrl="http://download.jboss.org/jbosstools/updates/development/indigo/central/c...">
<iu id="org.testng.eclipse"/>
<icon
image32="images/testng_32.gif">
@@ -439,7 +439,7 @@
license="Free, EPL, Other"
name="JST Server"
provider="Eclipse.org"
- siteUrl="http://download.jboss.org/jbosstools/updates/indigo/">
+ siteUrl="http://download.jboss.org/jbosstools/updates/development/indigo/central/c...">
<!-- <iu id="org.eclipse.jst.server_adapters.ext.feature"/> -->
<iu id="org.eclipse.jst.server_adapters.feature"/>
<iu id="org.eclipse.jst.server_core.feature"/>
@@ -462,7 +462,7 @@
license="EPL, Other"
name="Google Plugin + Web Toolkit"
provider="Google, Inc."
- siteUrl="http://download.jboss.org/jbosstools/updates/indigo/">
+ siteUrl="http://download.jboss.org/jbosstools/updates/development/indigo/central/c...">
<iu id="com.google.gwt.eclipse.sdkbundle.e37.feature"/>
<iu id="com.google.gdt.eclipse.suite.e37.feature"/>
<icon
@@ -481,7 +481,7 @@
license="Free, EPL, Other"
name="Spring IDE"
provider="Spring IDE Developers"
- siteUrl="http://download.jboss.org/jbosstools/updates/indigo/extras/">
+ siteUrl="http://download.jboss.org/jbosstools/updates/development/indigo/central/c...">
<iu id="org.springframework.ide.eclipse.aop.feature"/>
<iu id="org.springframework.ide.eclipse.autowire.feature"/>
<iu id="org.springframework.ide.eclipse.feature"/>
12 years, 8 months
JBoss Tools SVN: r40994 - trunk/central/plugins/org.jboss.tools.central.discovery.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2012-05-14 13:35:08 -0400 (Mon, 14 May 2012)
New Revision: 40994
Modified:
trunk/central/plugins/org.jboss.tools.central.discovery/plugin.xml
Log:
JBDS-2134 point Central at new http://download.jboss.org/jbosstools/updates/development/indigo/central/c... site
Modified: trunk/central/plugins/org.jboss.tools.central.discovery/plugin.xml
===================================================================
--- trunk/central/plugins/org.jboss.tools.central.discovery/plugin.xml 2012-05-14 17:29:19 UTC (rev 40993)
+++ trunk/central/plugins/org.jboss.tools.central.discovery/plugin.xml 2012-05-14 17:35:08 UTC (rev 40994)
@@ -23,7 +23,7 @@
license="Free, EPL"
name="JBoss Maven Integration"
provider="JBoss by Red Hat"
- siteUrl="http://download.jboss.org/jbosstools/updates/development/indigo/">
+ siteUrl="http://download.jboss.org/jbosstools/updates/development/indigo/central/c...">
<iu id="org.jboss.tools.maven.feature"/>
<icon
image32="images/jbosstools_icon32.png">
@@ -41,7 +41,7 @@
license="Free, EPL"
name="JBoss Maven CDI Configurator"
provider="JBoss by Red Hat"
- siteUrl="http://download.jboss.org/jbosstools/updates/development/indigo/">
+ siteUrl="http://download.jboss.org/jbosstools/updates/development/indigo/central/c...">
<iu id="org.jboss.tools.maven.cdi.feature"/>
<icon
image32="images/jbosstools_icon32.png">
@@ -59,7 +59,7 @@
license="Free, EPL"
name="JBoss Maven Hibernate Configurator"
provider="JBoss by Red Hat"
- siteUrl="http://download.jboss.org/jbosstools/updates/development/indigo/">
+ siteUrl="http://download.jboss.org/jbosstools/updates/development/indigo/central/c...">
<iu id="org.jboss.tools.maven.hibernate.feature"/>
<icon
image32="images/jbosstools_icon32.png">
@@ -77,7 +77,7 @@
license="Free, EPL"
name="JBoss Maven JAX-RS Configurator"
provider="JBoss by Red Hat"
- siteUrl="http://download.jboss.org/jbosstools/updates/development/indigo/">
+ siteUrl="http://download.jboss.org/jbosstools/updates/development/indigo/central/c...">
<iu id="org.jboss.tools.maven.jaxrs.feature"/>
<icon
image32="images/jbosstools_icon32.png">
@@ -95,7 +95,7 @@
license="Free, EPL"
name="JBoss Maven JSF Configurator"
provider="JBoss by Red Hat"
- siteUrl="http://download.jboss.org/jbosstools/updates/development/indigo/">
+ siteUrl="http://download.jboss.org/jbosstools/updates/development/indigo/central/c...">
<iu id="org.jboss.tools.maven.jsf.feature"/>
<icon
image32="images/jbosstools_icon32.png">
@@ -113,7 +113,7 @@
license="Free, EPL"
name="JBoss Maven Portlet Configurator"
provider="JBoss by Red Hat"
- siteUrl="http://download.jboss.org/jbosstools/updates/development/indigo/">
+ siteUrl="http://download.jboss.org/jbosstools/updates/development/indigo/central/c...">
<iu id="org.jboss.tools.maven.portlet.feature"/>
<icon
image32="images/jbosstools_icon32.png">
@@ -131,7 +131,7 @@
license="Free, EPL"
name="JBoss Maven Seam Configurator"
provider="JBoss by Red Hat"
- siteUrl="http://download.jboss.org/jbosstools/updates/development/indigo/">
+ siteUrl="http://download.jboss.org/jbosstools/updates/development/indigo/central/c...">
<iu id="org.jboss.tools.maven.seam.feature"/>
<icon
image32="images/jbosstools_icon32.png">
@@ -149,7 +149,7 @@
license="Free, EPL"
name="JBoss Maven JPA Configurator"
provider="JBoss by Red Hat"
- siteUrl="http://download.jboss.org/jbosstools/updates/development/indigo/">
+ siteUrl="http://download.jboss.org/jbosstools/updates/development/indigo/central/c...">
<iu id="org.jboss.tools.maven.jpa.feature"/>
<icon
image32="images/jbosstools_icon32.png">
@@ -167,7 +167,7 @@
license="Free, EPL"
name="Maven Profile Management UI"
provider="JBoss by Red Hat"
- siteUrl="http://download.jboss.org/jbosstools/updates/development/indigo/">
+ siteUrl="http://download.jboss.org/jbosstools/updates/development/indigo/central/c...">
<iu id="org.jboss.tools.maven.profiles.feature"/>
<icon
image32="images/jbosstools_icon32.png">
@@ -186,7 +186,7 @@
license="Free, EPL"
name="Maven Integration for Eclipse (m2e)"
provider="eclipse.org"
- siteUrl="http://download.jboss.org/jbosstools/updates/indigo/">
+ siteUrl="http://download.jboss.org/jbosstools/updates/development/indigo/central/c...">
<iu id="org.eclipse.m2e.feature"/>
<icon
image32="images/m2e_32.gif">
@@ -204,7 +204,7 @@
license="Free, EPL"
name="Maven Integration for Eclipse JDT APT (m2e-apt)"
provider="JBoss by Red Hat"
- siteUrl="http://download.jboss.org/jbosstools/updates/indigo/">
+ siteUrl="http://download.jboss.org/jbosstools/updates/development/indigo/central/c...">
<iu id="org.jboss.tools.maven.apt.feature"/>
<icon
image32="images/m2e_32.gif">
@@ -222,7 +222,7 @@
license="Free, EPL"
name="Maven Integration for Web Tools (m2e-wtp)"
provider="eclipse.org"
- siteUrl="http://download.jboss.org/jbosstools/updates/indigo/">
+ siteUrl="http://download.jboss.org/jbosstools/updates/development/indigo/central/c...">
<iu id="org.maven.ide.eclipse.wtp.feature"/>
<icon
image32="images/m2e_32.gif">
@@ -251,7 +251,7 @@
license="Free, EPL"
name="Eclipse EGit"
provider="eclipse.org"
- siteUrl="http://download.jboss.org/jbosstools/updates/indigo/">
+ siteUrl="http://download.jboss.org/jbosstools/updates/development/indigo/central/c...">
<iu id="org.eclipse.egit"/>
<icon
image32="images/egit_32.png">
@@ -269,7 +269,7 @@
license="Free, Subclipse License"
name="Subclipse + SVNKit"
provider="tigris.org"
- siteUrl="http://download.jboss.org/jbosstools/updates/indigo/extras/">
+ siteUrl="http://download.jboss.org/jbosstools/updates/development/indigo/central/c...">
<iu id="org.tigris.subversion.subclipse"/>
<iu id="org.tigris.subversion.clientadapter.svnkit.feature"/>
<icon
@@ -300,7 +300,7 @@
license="Free, LGPL"
name="FindBugs"
provider="FindBugs Project"
- siteUrl="http://download.jboss.org/jbosstools/updates/indigo/extras/">
+ siteUrl="http://download.jboss.org/jbosstools/updates/development/indigo/central/c...">
<iu id="edu.umd.cs.findbugs.plugin.eclipse"/>
<icon
image32="images/findbugs_32.png">
@@ -318,7 +318,7 @@
license="Free, ASL"
name="JSLint"
provider="Rockstarapps.com"
- siteUrl="http://download.jboss.org/jbosstools/updates/indigo/extras/">
+ siteUrl="http://download.jboss.org/jbosstools/updates/development/indigo/central/c...">
<iu id="com.rockstarapps.aws.feature"/>
<iu id="com.rockstarapps.html.core.feature"/>
<iu id="com.rockstarapps.jsLex"/>
@@ -340,7 +340,7 @@
license="Free, EPL"
name="Mylyn Issue Tracker Connectors"
provider="JBoss by Red Hat"
- siteUrl="http://download.jboss.org/jbosstools/updates/development/indigo/">
+ siteUrl="http://download.jboss.org/jbosstools/updates/development/indigo/central/c...">
<iu id="org.jboss.tools.common.mylyn.feature"/>
<iu id="org.eclipse.mylyn_feature"/>
<iu id="org.eclipse.mylyn.ide_feature"/>
@@ -367,7 +367,7 @@
license="Free, PMD License"
name="PMD"
provider="PMD Developers"
- siteUrl="http://download.jboss.org/jbosstools/updates/indigo/extras/">
+ siteUrl="http://download.jboss.org/jbosstools/updates/development/indigo/central/c...">
<iu id="net.sourceforge.pmd.eclipse"/>
<icon
image32="images/pmd_32.png">
@@ -385,7 +385,7 @@
license="Free, ASL"
name="TestNG"
provider="Cedric Beust"
- siteUrl="http://download.jboss.org/jbosstools/updates/indigo/extras/">
+ siteUrl="http://download.jboss.org/jbosstools/updates/development/indigo/central/c...">
<iu id="org.testng.eclipse"/>
<icon
image32="images/testng_32.gif">
@@ -439,7 +439,7 @@
license="Free, EPL, Other"
name="JST Server"
provider="Eclipse.org"
- siteUrl="http://download.jboss.org/jbosstools/updates/indigo/">
+ siteUrl="http://download.jboss.org/jbosstools/updates/development/indigo/central/c...">
<!-- <iu id="org.eclipse.jst.server_adapters.ext.feature"/> -->
<iu id="org.eclipse.jst.server_adapters.feature"/>
<iu id="org.eclipse.jst.server_core.feature"/>
@@ -462,7 +462,7 @@
license="EPL, Other"
name="Google Plugin + Web Toolkit"
provider="Google, Inc."
- siteUrl="http://download.jboss.org/jbosstools/updates/indigo/">
+ siteUrl="http://download.jboss.org/jbosstools/updates/development/indigo/central/c...">
<iu id="com.google.gwt.eclipse.sdkbundle.e37.feature"/>
<iu id="com.google.gdt.eclipse.suite.e37.feature"/>
<icon
@@ -481,7 +481,7 @@
license="Free, EPL, Other"
name="Spring IDE"
provider="Spring IDE Developers"
- siteUrl="http://download.jboss.org/jbosstools/updates/indigo/extras/">
+ siteUrl="http://download.jboss.org/jbosstools/updates/development/indigo/central/c...">
<iu id="org.springframework.ide.eclipse.aop.feature"/>
<iu id="org.springframework.ide.eclipse.autowire.feature"/>
<iu id="org.springframework.ide.eclipse.feature"/>
12 years, 8 months