JBoss Tools SVN: r44300 - trunk/tests/plugins/org.jboss.tools.tests.installation/src/org/jboss/tools/tests/installation.
by jbosstools-commits@lists.jboss.org
Author: psrna
Date: 2012-10-04 10:41:55 -0400 (Thu, 04 Oct 2012)
New Revision: 44300
Modified:
trunk/tests/plugins/org.jboss.tools.tests.installation/src/org/jboss/tools/tests/installation/InstallTest.java
Log:
* Added catch for Timeout Exception to recognize if the installation failed because it took to long.
Modified: trunk/tests/plugins/org.jboss.tools.tests.installation/src/org/jboss/tools/tests/installation/InstallTest.java
===================================================================
--- trunk/tests/plugins/org.jboss.tools.tests.installation/src/org/jboss/tools/tests/installation/InstallTest.java 2012-10-04 14:39:18 UTC (rev 44299)
+++ trunk/tests/plugins/org.jboss.tools.tests.installation/src/org/jboss/tools/tests/installation/InstallTest.java 2012-10-04 14:41:55 UTC (rev 44300)
@@ -25,6 +25,7 @@
import org.eclipse.swtbot.swt.finder.widgets.SWTBotButton;
import org.eclipse.swtbot.swt.finder.widgets.SWTBotShell;
import org.eclipse.swtbot.swt.finder.widgets.SWTBotTreeItem;
+import org.eclipse.swtbot.swt.finder.widgets.TimeoutException;
import org.junit.Test;
import org.junit.runner.RunWith;
@@ -180,6 +181,10 @@
// Eclipse 4.2 => "No"
restartShellBot.button("No").click();
}
+ } catch (TimeoutException ex) {
+
+ fail("Installation Timeout Exception: " + ex.getMessage());
+
} catch (Exception ex) {
String installDesc = bot.text().getText();
12 years, 3 months
JBoss Tools SVN: r44298 - in trunk/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core: internal/identification and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: fbricon
Date: 2012-10-04 10:35:44 -0400 (Thu, 04 Oct 2012)
New Revision: 44298
Modified:
trunk/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/identification/ArtifactIdentifier.java
trunk/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/internal/identification/FileIdentificationManager.java
trunk/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/internal/identification/MavenPropertiesIdentifier.java
trunk/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/internal/identification/NexusIndexIdentifier.java
trunk/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/internal/identification/NexusRepositoryIdentifier.java
Log:
JBIDE-12529 add monitor to identify method
Modified: trunk/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/identification/ArtifactIdentifier.java
===================================================================
--- trunk/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/identification/ArtifactIdentifier.java 2012-10-04 14:34:33 UTC (rev 44297)
+++ trunk/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/identification/ArtifactIdentifier.java 2012-10-04 14:35:44 UTC (rev 44298)
@@ -13,10 +13,14 @@
import java.io.File;
import org.eclipse.core.runtime.CoreException;
+import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.m2e.core.embedder.ArtifactKey;
public interface ArtifactIdentifier {
+ @Deprecated
ArtifactKey identify(File file) throws CoreException;
+ ArtifactKey identify(File file, IProgressMonitor monitor) throws CoreException;
+
}
\ No newline at end of file
Modified: trunk/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/internal/identification/FileIdentificationManager.java
===================================================================
--- trunk/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/internal/identification/FileIdentificationManager.java 2012-10-04 14:34:33 UTC (rev 44297)
+++ trunk/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/internal/identification/FileIdentificationManager.java 2012-10-04 14:35:44 UTC (rev 44298)
@@ -84,7 +84,7 @@
if (monitor.isCanceled()) {
return null;
}
- artifactKey = identifier.identify(file);
+ artifactKey = identifier.identify(file, monitor);
if (artifactKey != null) {
//long stop = System.currentTimeMillis();
//System.err.println(file.getName() + " identified as " + artifactKey + " in " + (stop-start) + " ms");
Modified: trunk/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/internal/identification/MavenPropertiesIdentifier.java
===================================================================
--- trunk/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/internal/identification/MavenPropertiesIdentifier.java 2012-10-04 14:34:33 UTC (rev 44297)
+++ trunk/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/internal/identification/MavenPropertiesIdentifier.java 2012-10-04 14:35:44 UTC (rev 44298)
@@ -19,6 +19,8 @@
import java.util.zip.ZipFile;
import org.eclipse.core.runtime.CoreException;
+import org.eclipse.core.runtime.IProgressMonitor;
+import org.eclipse.core.runtime.NullProgressMonitor;
import org.eclipse.m2e.core.embedder.ArtifactKey;
public class MavenPropertiesIdentifier extends AbstractArtifactIdentifier {
@@ -28,9 +30,20 @@
}
public ArtifactKey identify(File file) throws CoreException {
+ return identify(file, null);
+ }
+
+ public ArtifactKey identify(File file, IProgressMonitor monitor) throws CoreException {
+ if (monitor == null) {
+ monitor = new NullProgressMonitor();
+ }
+ if (monitor.isCanceled()) {
+ return null;
+ }
ZipFile jar = null;
try {
jar = new ZipFile(file);
+ monitor.setTaskName("Checking for maven properties in " + file.getName());
return getArtifactFromMetaInf(jar);
} catch (ZipException e) {
e.printStackTrace();
Modified: trunk/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/internal/identification/NexusIndexIdentifier.java
===================================================================
--- trunk/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/internal/identification/NexusIndexIdentifier.java 2012-10-04 14:34:33 UTC (rev 44297)
+++ trunk/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/internal/identification/NexusIndexIdentifier.java 2012-10-04 14:35:44 UTC (rev 44298)
@@ -15,6 +15,8 @@
import java.util.List;
import org.eclipse.core.runtime.CoreException;
+import org.eclipse.core.runtime.IProgressMonitor;
+import org.eclipse.core.runtime.NullProgressMonitor;
import org.eclipse.m2e.core.MavenPlugin;
import org.eclipse.m2e.core.embedder.ArtifactKey;
import org.eclipse.m2e.core.internal.index.IIndex;
@@ -36,10 +38,21 @@
}
public ArtifactKey identify(File file) throws CoreException {
+ return identify(file, null);
+ }
+
+ public ArtifactKey identify(File file, IProgressMonitor monitor) throws CoreException {
+ if (monitor == null) {
+ monitor = new NullProgressMonitor();
+ }
IndexManager indexManager = MavenPlugin.getIndexManager();
IIndex index = indexManager.getAllIndexes();
IndexedArtifactFile info = null;
try {
+ if (monitor.isCanceled()) {
+ return null;
+ }
+ monitor.setTaskName("Checking global m2e Nexus index for "+file.getName());
info = index.identify(file);
} catch (Throwable e) {
// ignore
@@ -57,6 +70,10 @@
NexusIndex nexusIndex = nexusIndexManager.getIndex(repository);
if (nexusIndex != null) {
try {
+ if (monitor.isCanceled()) {
+ return null;
+ }
+ monitor.setTaskName("Checking Nexus index of '"+ repository.getId() + "' repository for "+file.getName());
info = nexusIndex.identify(file);
} catch (Throwable t) {
// ignore
@@ -70,7 +87,6 @@
}
}
}
- //System.err.println(getName() + " could not identify "+file);
return artifact;
}
Modified: trunk/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/internal/identification/NexusRepositoryIdentifier.java
===================================================================
--- trunk/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/internal/identification/NexusRepositoryIdentifier.java 2012-10-04 14:34:33 UTC (rev 44297)
+++ trunk/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/internal/identification/NexusRepositoryIdentifier.java 2012-10-04 14:35:44 UTC (rev 44298)
@@ -16,12 +16,16 @@
import java.io.UnsupportedEncodingException;
import java.net.HttpURLConnection;
import java.net.URL;
+import java.net.UnknownHostException;
+import java.util.LinkedHashSet;
import java.util.Set;
import javax.xml.bind.JAXBContext;
import javax.xml.bind.Unmarshaller;
import org.eclipse.core.runtime.CoreException;
+import org.eclipse.core.runtime.IProgressMonitor;
+import org.eclipse.core.runtime.NullProgressMonitor;
import org.eclipse.m2e.core.embedder.ArtifactKey;
import org.jboss.tools.maven.core.MavenCoreActivator;
import org.jboss.tools.maven.core.repositories.NexusRepository;
@@ -36,10 +40,20 @@
}
public ArtifactKey identify(File file) throws CoreException {
- return getArtifactFromRemoteNexusRepository(file);
+ return getArtifactFromRemoteNexusRepository(file, null);
}
- private ArtifactKey getArtifactFromRemoteNexusRepository(File file) {
+ public ArtifactKey identify(File file, IProgressMonitor monitor) throws CoreException {
+ return getArtifactFromRemoteNexusRepository(file, monitor);
+ }
+
+ private ArtifactKey getArtifactFromRemoteNexusRepository(File file, IProgressMonitor monitor) {
+ if (monitor == null) {
+ monitor = new NullProgressMonitor();
+ }
+ if (monitor.isCanceled()) {
+ return null;
+ }
String sha1;
try {
sha1 = getSHA1(file);
@@ -47,38 +61,25 @@
return null;
}
RemoteRepositoryManager repoManager = MavenCoreActivator.getDefault().getRepositoryManager();
- Set<NexusRepository> nexusRepositories = repoManager .getNexusRepositories();
+ Set<NexusRepository> nexusRepositories = new LinkedHashSet<NexusRepository>(repoManager.getNexusRepositories());
for (NexusRepository repository : nexusRepositories) {
+ if (monitor.isCanceled()) {
+ return null;
+ }
if (!repository.isEnabled()) {
continue;
}
+ monitor.setTaskName("Querying "+repository.getUrl() + " for "+file.getName());
+
try {
ArtifactKey key = searchArtifactFromRemoteNexusRepository(repository.getSearchUrl(sha1));
if (key != null) {
- /*
- Searching for sources here makes no sense here :
- ex : guice.jar (from seam 2.3) is found in jboss nexus via a SHA1 search but subsequent search
- of its sources on this repo returns null => guice.jar can never be identified in that case!
- Source resolution / Missing sources should be dealt upstream from here
-
- String searchSourcesUrl = repository.getSearchUrl(key.getArtifactId(),
- key.getGroupId(),
- key.getVersion(),
- getSourcesClassifier(key.getClassifier()));
-
- ArtifactKey resolvedKey = searchArtifactFromRemoteNexusRepository(searchSourcesUrl);
-
- if (resolvedKey != null) {
- return key;
- }
- */
return key;
}
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
}
}
- //System.err.println(getName()+ "Couldn't find match for SHA1="+sha1);
return null;
}
@@ -96,6 +97,8 @@
if (object instanceof SearchResponse) {
return extractArtifactKey((SearchResponse)object);
}
+ } catch (UnknownHostException uhe) {
+ System.err.println("NexusRepositoryIdentifier can't connect to remote repository :"+ uhe.getMessage());
} catch (Exception e) {
e.printStackTrace();
} finally {
12 years, 3 months
JBoss Tools SVN: r44297 - trunk/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/internal/identification.
by jbosstools-commits@lists.jboss.org
Author: fbricon
Date: 2012-10-04 10:34:33 -0400 (Thu, 04 Oct 2012)
New Revision: 44297
Modified:
trunk/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/internal/identification/MavenPropertiesIdentifier.java
Log:
JBIDE-12529 close opened jar file.
Modified: trunk/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/internal/identification/MavenPropertiesIdentifier.java
===================================================================
--- trunk/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/internal/identification/MavenPropertiesIdentifier.java 2012-10-04 14:33:47 UTC (rev 44296)
+++ trunk/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/internal/identification/MavenPropertiesIdentifier.java 2012-10-04 14:34:33 UTC (rev 44297)
@@ -28,7 +28,7 @@
}
public ArtifactKey identify(File file) throws CoreException {
- ZipFile jar;
+ ZipFile jar = null;
try {
jar = new ZipFile(file);
return getArtifactFromMetaInf(jar);
@@ -36,11 +36,18 @@
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
+ } finally {
+ if (jar != null) {
+ try {
+ jar.close();
+ } catch (IOException e) {
+ }
+ }
}
- //System.err.println(getName() + " could not identify "+file);
return null;
}
+ @SuppressWarnings("nls")
protected static ArtifactKey getArtifactFromMetaInf(ZipFile jar) throws IOException {
ZipEntry mavenEntry = jar.getEntry("META-INF/maven");//$NON-NLS-1$
if (mavenEntry == null) {
12 years, 3 months
JBoss Tools SVN: r44296 - trunk/download.jboss.org/jbosstools/updates/development/indigo/soa-tooling.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2012-10-04 10:33:47 -0400 (Thu, 04 Oct 2012)
New Revision: 44296
Added:
trunk/download.jboss.org/jbosstools/updates/development/indigo/soa-toolin...
Removed:
trunk/download.jboss.org/jbosstools/updates/development/indigo/soa-toolin...
Log:
rename index.html to README.html so the dir can be browsed to see child projects underneath
Copied: trunk/download.jboss.org/jbosstools/updates/development/indigo/soa-toolin... (from rev 44295, trunk/download.jboss.org/jbosstools/updates/development/indigo/soa-toolin...)
===================================================================
--- trunk/download.jboss.org/jbosstools/updates/development/indigo/soa-toolin... (rev 0)
+++ trunk/download.jboss.org/jbosstools/updates/development/indigo/soa-toolin... 2012-10-04 14:33:47 UTC (rev 44296)
@@ -0,0 +1,616 @@
+<html>
+<head>
+<title>JBoss Tools - SOA Tooling - Development Milestone Update Site: 3.3.0.v20120620-0445-H5-CR1-SOA</title>
+<style>
+@import url("http://download.jboss.org/jbosstools/updates/web/site.css");
+</style>
+</head>
+<body marginheight="0" marginwidth="0" leftmargin="0" topmargin="0">
+<center>
+<table marginheight="0" marginwidth="0" leftmargin="0" topmargin="0"
+ cellspacing="0" cellpadding="0" width="920" class="bodyText">
+ <tr>
+ <td colspan="3"><img
+ src="https://www.jboss.org/dms/tools/images/tools-banner.png" /></td>
+ </tr>
+ <tr>
+ <td>      </td>
+ <td>      </td>
+ <td>      </td>
+ </tr>
+ <tr>
+ <td>      </td>
+ <td>
+ <h2 class="title">JBoss Tools - SOA Tooling - Development Milestone Update Site</h2>
+ <table width="100%">
+ <tr class="header">
+ <td class="sub-header" width="100%"><span>Latest Build: 3.3.0.v20120620-0445-H5-CR1-SOA</span></td>
+ </tr>
+
+ <tr class="light-row" style="height: 30px">
+ <td class="bodyText">
+ <p class="bodyText">This is the <b>Development Milestone</b>
+ Update Site for JBoss Tools - SOA Tooling.
+ <blockquote style="border: 1px dashed #1778be; padding: 2px">
+ <ol>
+ <li>To <a class="link"
+ href="http://www.jboss.org/tools/download/installation/update_3_3">install</a>
+ from this site, start up Eclipse 3.7, then do:
+ <ul>
+ <code><strong>Help > Install New Software... ></strong></code>
+ </ul>
+ </li>
+ <li>Copy this site's URL into Eclipse, and hit Enter.</li>
+ <li>When the site loads, select the features to install,
+ or click the <code><strong>Select All</strong></code> button.</li>
+ <li>To properly resolve all dependencies, check
+ <ul><code><strong>[x] Contact all update sites during install to find required software</strong></code></ul>
+
+ <li>Click <code><strong>Next</strong></code>, agree to the license
+ terms, and install.</li>
+
+ <p class="bodyText">
+ You can also download JBoss Tools as individual zips for
+ offline installation. See <a class="link"
+ href="http://www.jboss.org/tools/download">JBoss Tools
+ Downloads</a>.<br /> If you downloaded this site as a zip, see
+ <a href="http://download.jboss.org/jbosstools/updates/soatools-3.3.0.CR1/README.in...">Installation README</a>.
+ See also <a
+ href="http://www.jboss.org/tools/download/installation">Installation
+ methods</a>.
+ </p>
+ </ol>
+ </blockquote>
+ </td>
+ </tr>
+ </table>
+ </td>
+ <td>      </td>
+ </tr>
+ <tr>
+ <td></td>
+ <td>
+ <table xmlns="http://www.w3.org/1999/xhtml" xmlns:xalan="http://xml.apache.org/xalan" border="0" cellpadding="0" cellspacing="2">
+<tr style="background-color:#DDDDDD">
+<th style="font-size:small">Feature</th>
+<th style="font-size:small">Version</th>
+<th style="font-size:small">
+ Feature Categor(ies)
+ </th>
+</tr>
+<tr style="background-color:
+ #EEEEEE
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/soatools-3.3.0.CR1/features/...">org.jboss.savara.tools.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">2.0.0.Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ SOATools</span>
+</td>
+</tr>
+<tr style="background-color:
+ #FFFFFF
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/soatools-3.3.0.CR1/features/...">org.jboss.tools.bpel.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">1.1.0.v20120619-2251-H6-CR1-SOA</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ SOATools</span>
+</td>
+</tr>
+<tr style="background-color:
+ #EEEEEE
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/soatools-3.3.0.CR1/features/...">org.jboss.tools.central.discovery.soa-tooling.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">1.0.0.v20120620-0912-H5-CR1-SOA</span>
+</td>
+<td/>
+</tr>
+<tr style="background-color:
+ #FFFFFF
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/soatools-3.3.0.CR1/features/...">org.jboss.tools.esb.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">1.5.0.v20120620-0642-H9-CR1-SOA</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ SOADataServices</span>
+<span style="font-size:x-small">
+ |
+ SOATools</span>
+</td>
+</tr>
+<tr style="background-color:
+ #EEEEEE
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/soatools-3.3.0.CR1/features/...">org.jboss.tools.jbpm.common.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">4.4.0.v20120619-2227-H5-CR1-SOA</span>
+</td>
+<td/>
+</tr>
+<tr style="background-color:
+ #FFFFFF
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/soatools-3.3.0.CR1/features/...">org.jboss.tools.jbpm.convert.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">1.0.0.v20120619-2227-H5-CR1-SOA</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ SOADataServices</span>
+<span style="font-size:x-small">
+ |
+ SOATools</span>
+</td>
+</tr>
+<tr style="background-color:
+ #EEEEEE
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/soatools-3.3.0.CR1/features/...">org.jboss.tools.jbpm3.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">3.2.1.v20120619-2227-H5-CR1-SOA</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ SOADataServices</span>
+<span style="font-size:x-small">
+ |
+ SOATools</span>
+</td>
+</tr>
+<tr style="background-color:
+ #FFFFFF
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/soatools-3.3.0.CR1/features/...">org.jboss.tools.modeshape.jcr.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">1.1.0.v20120619-2218-H4-CR1-SOA</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ SOADataServices</span>
+<span style="font-size:x-small">
+ |
+ DataTools</span>
+</td>
+</tr>
+<tr style="background-color:
+ #EEEEEE
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/soatools-3.3.0.CR1/features/...">org.jboss.tools.modeshape.rest.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">1.1.0.v20120619-2218-H4-CR1-SOA</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ SOADataServices</span>
+<span style="font-size:x-small">
+ |
+ DataTools</span>
+</td>
+</tr>
+<tr style="background-color:
+ #FFFFFF
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/soatools-3.3.0.CR1/features/...">org.jboss.tools.runtime.drools.detector.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">1.3.0.v20120620-0839-H5-CR1-SOA</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ BusinessRules</span>
+<span style="font-size:x-small">
+ |
+ SOADataServices</span>
+</td>
+</tr>
+<tr style="background-color:
+ #EEEEEE
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/soatools-3.3.0.CR1/features/...">org.jboss.tools.runtime.esb.detector.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">1.3.0.v20120620-0839-H5-CR1-SOA</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ SOADataServices</span>
+</td>
+</tr>
+<tr style="background-color:
+ #FFFFFF
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/soatools-3.3.0.CR1/features/...">org.jboss.tools.runtime.jbpm.detector.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">1.3.0.v20120620-0839-H5-CR1-SOA</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ BusinessRules</span>
+<span style="font-size:x-small">
+ |
+ SOADataServices</span>
+</td>
+</tr>
+<tr style="background-color:#DDDDDD">
+<th style="font-size:small">Feature</th>
+<th style="font-size:small">Version</th>
+<th style="font-size:small">
+ Feature Categor(ies)
+ </th>
+</tr>
+<tr style="background-color:
+ #EEEEEE
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/soatools-3.3.0.CR1/features/...">org.drools.eclipse.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">5.3.2.Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ SOADataServices</span>
+<span style="font-size:x-small">
+ |
+ BusinessRules</span>
+<span style="font-size:x-small">
+ |
+ SOATools</span>
+<span style="font-size:x-small">
+ |
+ GeneralTools</span>
+</td>
+</tr>
+<tr style="background-color:
+ #FFFFFF
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/soatools-3.3.0.CR1/features/...">org.drools.eclipse.task.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">5.3.2.Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ SOADataServices</span>
+<span style="font-size:x-small">
+ |
+ BusinessRules</span>
+<span style="font-size:x-small">
+ |
+ SOATools</span>
+</td>
+</tr>
+<tr style="background-color:
+ #EEEEEE
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/soatools-3.3.0.CR1/features/...">org.eclipse.uml2</a>
+</td>
+<td>
+<span style="font-size:x-small">3.2.1.v201109082252</span>
+</td>
+<td/>
+</tr>
+<tr style="background-color:
+ #FFFFFF
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/soatools-3.3.0.CR1/features/...">org.eclipse.zest</a>
+</td>
+<td>
+<span style="font-size:x-small">1.3.0.v20110425-2050-67A18yF6F18CBD5A7N54242</span>
+</td>
+<td/>
+</tr>
+<tr style="background-color:
+ #EEEEEE
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/soatools-3.3.0.CR1/features/...">org.guvnor.tools.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">5.3.2.Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ SOADataServices</span>
+<span style="font-size:x-small">
+ |
+ SOATools</span>
+</td>
+</tr>
+<tr style="background-color:
+ #FFFFFF
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/soatools-3.3.0.CR1/features/...">org.jbpm.eclipse.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">5.3.2.Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ BusinessRules</span>
+<span style="font-size:x-small">
+ |
+ SOATools</span>
+</td>
+</tr>
+<tr style="background-color:
+ #EEEEEE
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/soatools-3.3.0.CR1/features/...">org.jbpm.eclipse.task.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">5.3.2.Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ BusinessRules</span>
+<span style="font-size:x-small">
+ |
+ SOATools</span>
+</td>
+</tr>
+<tr style="background-color:
+ #FFFFFF
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/soatools-3.3.0.CR1/features/...">org.pi4soa.core.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">3.1.2.v20120307-2048-H257-Beta2</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ SOATools</span>
+</td>
+</tr>
+<tr style="background-color:
+ #EEEEEE
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/soatools-3.3.0.CR1/features/...">org.savara.tools.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">2.0.0.Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ SOATools</span>
+</td>
+</tr>
+<tr style="background-color:
+ #FFFFFF
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/soatools-3.3.0.CR1/features/...">org.savara.tools.incubator.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">2.0.0.Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ SOATools</span>
+</td>
+</tr>
+<tr style="background-color:
+ #EEEEEE
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/soatools-3.3.0.CR1/features/...">org.switchyard.tools.editor.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">0.5.0.v20120620-0037-H125-CI</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AbridgedTools</span>
+<span style="font-size:x-small">
+ |
+ SOATools</span>
+</td>
+</tr>
+<tr style="background-color:
+ #FFFFFF
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/soatools-3.3.0.CR1/features/...">org.switchyard.tools.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">0.5.0.v20120620-0037-H125-CI</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AbridgedTools</span>
+<span style="font-size:x-small">
+ |
+ SOATools</span>
+</td>
+</tr>
+<tr style="background-color:
+ #EEEEEE
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/soatools-3.3.0.CR1/features/...">org.teiid.datatools.connectivity.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">7.7.1.v20120619-2152-H6-CR1-SOA</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ DataTools</span>
+</td>
+</tr>
+<tr style="background-color:
+ #FFFFFF
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/soatools-3.3.0.CR1/features/...">org.teiid.designer.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">7.7.1.v20120619-2152-H6-CR1-SOA</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ DataTools</span>
+</td>
+</tr>
+<tr style="background-color:
+ #EEEEEE
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/soatools-3.3.0.CR1/features/...">org.teiid.designer.runtime.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">7.7.1.v20120619-2152-H6-CR1-SOA</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ DataTools</span>
+</td>
+</tr>
+<tr style="background-color:#DDDDDD">
+<th style="font-size:small" colspan="1">Metadata</th>
+<th style="font-size:small" colspan="1"/>
+<th style="font-size:small" colspan="1"/>
+</tr>
+<tr style="background-color:#EEEEEE">
+<td colspan="1" class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/soatools-3.3.0.CR1/site.xml">site.xml</a>
+ ::
+ <a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/soatools-3.3.0.CR1/artifacts...">artifacts.jar</a>
+ ::
+ <a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/soatools-3.3.0.CR1/content.jar">content.jar</a>
+</td>
+<td colspan="1" class="rowLine">
+ ::
+ <a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/soatools-3.3.0.CR1/plugins/">plugins</a>
+ ::
+ <a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/soatools-3.3.0.CR1/features/">features</a>
+</td>
+<td colspan="1" class="rowLine">
+ :: <a href="http://download.jboss.org/jbosstools/updates/soatools-3.3.0.CR1/jbosstool..." style="font-size:x-small">jbosstools-directory.xml</a>
+ :: <a href="http://download.jboss.org/jbosstools/updates/soatools-3.3.0.CR1/site.prop..." style="font-size:x-small">site.properties</a>
+ </td>
+</tr>
+</table><br xmlns="http://www.w3.org/1999/xhtml" xmlns:xalan="http://xml.apache.org/xalan"/>
+
+ </td>
+ <td></td>
+ </tr>
+ <tr>
+ <td></td>
+ <td>
+ <table width="100%">
+ <tr class="header">
+ <td class="sub-header" width="100%"><span> Installation
+ Types</span></td>
+ </tr>
+ <tr class="light-row" style="height: 30px">
+ <td class="bodyText">
+ <p class="bodyText">Depending on how close to the bleeding edge
+ you like to be, there are several types of releases available.</p>
+ <br />
+
+ </td>
+ </tr>
+
+ <tr class="dark-row" style="height: 30px">
+ <td class="bodyText">
+ <h4>Stable Releases</h4>
+
+ <p><a href="https://www.jboss.org/tools/download/stable.html">Stable
+ releases</a> are - as indicated by their name - stable.</p><br/>
+
+ </td>
+ </tr>
+
+ <tr class="light-row" style="height: 30px">
+ <td class="bodyText">
+ <h4>Development Milestones</h4>
+
+ <p><a href="https://www.jboss.org/tools/download/dev.html">Development
+ builds</a>, released once per milestone and only a few times a year, are
+ fairly stable, but there may be some things which do not yet work.
+ If you would like to try one of these milestones, we'd greatly
+ appreciate the assistance in testing and <a
+ href="https://jira.jboss.org/jira/browse/JBIDE">reporting of
+ issues in our issue tracker</a>.</p><br/>
+
+ </td>
+ </tr>
+
+ <tr class="dark-row" style="height: 30px">
+ <td class="bodyText">
+ <h4>Nightly Builds</h4>
+
+ <p>The <a
+ href="https://www.jboss.org/tools/download/nightly.html">bleeding
+ edge</a> contains the latest and greatest new features, but nothing is
+ stable or guaranteed - yet. If you're using a Milestone and need a
+ fix, you can update to the latest Nightly, or wait for the next
+ Milestone.</p><br/>
+ </td>
+ </tr>
+ </table>
+ </td>
+ </tr>
+</table>
+</center>
+</html>
Deleted: trunk/download.jboss.org/jbosstools/updates/development/indigo/soa-toolin...
===================================================================
--- trunk/download.jboss.org/jbosstools/updates/development/indigo/soa-toolin... 2012-10-04 14:26:24 UTC (rev 44295)
+++ trunk/download.jboss.org/jbosstools/updates/development/indigo/soa-toolin... 2012-10-04 14:33:47 UTC (rev 44296)
@@ -1,616 +0,0 @@
-<html>
-<head>
-<title>JBoss Tools - SOA Tooling - Development Milestone Update Site: 3.3.0.v20120620-0445-H5-CR1-SOA</title>
-<style>
-@import url("http://download.jboss.org/jbosstools/updates/web/site.css");
-</style>
-</head>
-<body marginheight="0" marginwidth="0" leftmargin="0" topmargin="0">
-<center>
-<table marginheight="0" marginwidth="0" leftmargin="0" topmargin="0"
- cellspacing="0" cellpadding="0" width="920" class="bodyText">
- <tr>
- <td colspan="3"><img
- src="https://www.jboss.org/dms/tools/images/tools-banner.png" /></td>
- </tr>
- <tr>
- <td>      </td>
- <td>      </td>
- <td>      </td>
- </tr>
- <tr>
- <td>      </td>
- <td>
- <h2 class="title">JBoss Tools - SOA Tooling - Development Milestone Update Site</h2>
- <table width="100%">
- <tr class="header">
- <td class="sub-header" width="100%"><span>Latest Build: 3.3.0.v20120620-0445-H5-CR1-SOA</span></td>
- </tr>
-
- <tr class="light-row" style="height: 30px">
- <td class="bodyText">
- <p class="bodyText">This is the <b>Development Milestone</b>
- Update Site for JBoss Tools - SOA Tooling.
- <blockquote style="border: 1px dashed #1778be; padding: 2px">
- <ol>
- <li>To <a class="link"
- href="http://www.jboss.org/tools/download/installation/update_3_3">install</a>
- from this site, start up Eclipse 3.7, then do:
- <ul>
- <code><strong>Help > Install New Software... ></strong></code>
- </ul>
- </li>
- <li>Copy this site's URL into Eclipse, and hit Enter.</li>
- <li>When the site loads, select the features to install,
- or click the <code><strong>Select All</strong></code> button.</li>
- <li>To properly resolve all dependencies, check
- <ul><code><strong>[x] Contact all update sites during install to find required software</strong></code></ul>
-
- <li>Click <code><strong>Next</strong></code>, agree to the license
- terms, and install.</li>
-
- <p class="bodyText">
- You can also download JBoss Tools as individual zips for
- offline installation. See <a class="link"
- href="http://www.jboss.org/tools/download">JBoss Tools
- Downloads</a>.<br /> If you downloaded this site as a zip, see
- <a href="http://download.jboss.org/jbosstools/updates/soatools-3.3.0.CR1/README.in...">Installation README</a>.
- See also <a
- href="http://www.jboss.org/tools/download/installation">Installation
- methods</a>.
- </p>
- </ol>
- </blockquote>
- </td>
- </tr>
- </table>
- </td>
- <td>      </td>
- </tr>
- <tr>
- <td></td>
- <td>
- <table xmlns="http://www.w3.org/1999/xhtml" xmlns:xalan="http://xml.apache.org/xalan" border="0" cellpadding="0" cellspacing="2">
-<tr style="background-color:#DDDDDD">
-<th style="font-size:small">Feature</th>
-<th style="font-size:small">Version</th>
-<th style="font-size:small">
- Feature Categor(ies)
- </th>
-</tr>
-<tr style="background-color:
- #EEEEEE
- ">
-<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/soatools-3.3.0.CR1/features/...">org.jboss.savara.tools.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">2.0.0.Final</span>
-</td>
-<td>
-<span style="font-size:x-small">
- |
- SOATools</span>
-</td>
-</tr>
-<tr style="background-color:
- #FFFFFF
- ">
-<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/soatools-3.3.0.CR1/features/...">org.jboss.tools.bpel.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">1.1.0.v20120619-2251-H6-CR1-SOA</span>
-</td>
-<td>
-<span style="font-size:x-small">
- |
- SOATools</span>
-</td>
-</tr>
-<tr style="background-color:
- #EEEEEE
- ">
-<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/soatools-3.3.0.CR1/features/...">org.jboss.tools.central.discovery.soa-tooling.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">1.0.0.v20120620-0912-H5-CR1-SOA</span>
-</td>
-<td/>
-</tr>
-<tr style="background-color:
- #FFFFFF
- ">
-<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/soatools-3.3.0.CR1/features/...">org.jboss.tools.esb.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">1.5.0.v20120620-0642-H9-CR1-SOA</span>
-</td>
-<td>
-<span style="font-size:x-small">
- |
- SOADataServices</span>
-<span style="font-size:x-small">
- |
- SOATools</span>
-</td>
-</tr>
-<tr style="background-color:
- #EEEEEE
- ">
-<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/soatools-3.3.0.CR1/features/...">org.jboss.tools.jbpm.common.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">4.4.0.v20120619-2227-H5-CR1-SOA</span>
-</td>
-<td/>
-</tr>
-<tr style="background-color:
- #FFFFFF
- ">
-<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/soatools-3.3.0.CR1/features/...">org.jboss.tools.jbpm.convert.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">1.0.0.v20120619-2227-H5-CR1-SOA</span>
-</td>
-<td>
-<span style="font-size:x-small">
- |
- SOADataServices</span>
-<span style="font-size:x-small">
- |
- SOATools</span>
-</td>
-</tr>
-<tr style="background-color:
- #EEEEEE
- ">
-<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/soatools-3.3.0.CR1/features/...">org.jboss.tools.jbpm3.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">3.2.1.v20120619-2227-H5-CR1-SOA</span>
-</td>
-<td>
-<span style="font-size:x-small">
- |
- SOADataServices</span>
-<span style="font-size:x-small">
- |
- SOATools</span>
-</td>
-</tr>
-<tr style="background-color:
- #FFFFFF
- ">
-<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/soatools-3.3.0.CR1/features/...">org.jboss.tools.modeshape.jcr.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">1.1.0.v20120619-2218-H4-CR1-SOA</span>
-</td>
-<td>
-<span style="font-size:x-small">
- |
- SOADataServices</span>
-<span style="font-size:x-small">
- |
- DataTools</span>
-</td>
-</tr>
-<tr style="background-color:
- #EEEEEE
- ">
-<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/soatools-3.3.0.CR1/features/...">org.jboss.tools.modeshape.rest.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">1.1.0.v20120619-2218-H4-CR1-SOA</span>
-</td>
-<td>
-<span style="font-size:x-small">
- |
- SOADataServices</span>
-<span style="font-size:x-small">
- |
- DataTools</span>
-</td>
-</tr>
-<tr style="background-color:
- #FFFFFF
- ">
-<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/soatools-3.3.0.CR1/features/...">org.jboss.tools.runtime.drools.detector.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">1.3.0.v20120620-0839-H5-CR1-SOA</span>
-</td>
-<td>
-<span style="font-size:x-small">
- |
- BusinessRules</span>
-<span style="font-size:x-small">
- |
- SOADataServices</span>
-</td>
-</tr>
-<tr style="background-color:
- #EEEEEE
- ">
-<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/soatools-3.3.0.CR1/features/...">org.jboss.tools.runtime.esb.detector.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">1.3.0.v20120620-0839-H5-CR1-SOA</span>
-</td>
-<td>
-<span style="font-size:x-small">
- |
- SOADataServices</span>
-</td>
-</tr>
-<tr style="background-color:
- #FFFFFF
- ">
-<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/soatools-3.3.0.CR1/features/...">org.jboss.tools.runtime.jbpm.detector.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">1.3.0.v20120620-0839-H5-CR1-SOA</span>
-</td>
-<td>
-<span style="font-size:x-small">
- |
- BusinessRules</span>
-<span style="font-size:x-small">
- |
- SOADataServices</span>
-</td>
-</tr>
-<tr style="background-color:#DDDDDD">
-<th style="font-size:small">Feature</th>
-<th style="font-size:small">Version</th>
-<th style="font-size:small">
- Feature Categor(ies)
- </th>
-</tr>
-<tr style="background-color:
- #EEEEEE
- ">
-<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/soatools-3.3.0.CR1/features/...">org.drools.eclipse.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">5.3.2.Final</span>
-</td>
-<td>
-<span style="font-size:x-small">
- |
- SOADataServices</span>
-<span style="font-size:x-small">
- |
- BusinessRules</span>
-<span style="font-size:x-small">
- |
- SOATools</span>
-<span style="font-size:x-small">
- |
- GeneralTools</span>
-</td>
-</tr>
-<tr style="background-color:
- #FFFFFF
- ">
-<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/soatools-3.3.0.CR1/features/...">org.drools.eclipse.task.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">5.3.2.Final</span>
-</td>
-<td>
-<span style="font-size:x-small">
- |
- SOADataServices</span>
-<span style="font-size:x-small">
- |
- BusinessRules</span>
-<span style="font-size:x-small">
- |
- SOATools</span>
-</td>
-</tr>
-<tr style="background-color:
- #EEEEEE
- ">
-<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/soatools-3.3.0.CR1/features/...">org.eclipse.uml2</a>
-</td>
-<td>
-<span style="font-size:x-small">3.2.1.v201109082252</span>
-</td>
-<td/>
-</tr>
-<tr style="background-color:
- #FFFFFF
- ">
-<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/soatools-3.3.0.CR1/features/...">org.eclipse.zest</a>
-</td>
-<td>
-<span style="font-size:x-small">1.3.0.v20110425-2050-67A18yF6F18CBD5A7N54242</span>
-</td>
-<td/>
-</tr>
-<tr style="background-color:
- #EEEEEE
- ">
-<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/soatools-3.3.0.CR1/features/...">org.guvnor.tools.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">5.3.2.Final</span>
-</td>
-<td>
-<span style="font-size:x-small">
- |
- SOADataServices</span>
-<span style="font-size:x-small">
- |
- SOATools</span>
-</td>
-</tr>
-<tr style="background-color:
- #FFFFFF
- ">
-<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/soatools-3.3.0.CR1/features/...">org.jbpm.eclipse.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">5.3.2.Final</span>
-</td>
-<td>
-<span style="font-size:x-small">
- |
- BusinessRules</span>
-<span style="font-size:x-small">
- |
- SOATools</span>
-</td>
-</tr>
-<tr style="background-color:
- #EEEEEE
- ">
-<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/soatools-3.3.0.CR1/features/...">org.jbpm.eclipse.task.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">5.3.2.Final</span>
-</td>
-<td>
-<span style="font-size:x-small">
- |
- BusinessRules</span>
-<span style="font-size:x-small">
- |
- SOATools</span>
-</td>
-</tr>
-<tr style="background-color:
- #FFFFFF
- ">
-<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/soatools-3.3.0.CR1/features/...">org.pi4soa.core.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">3.1.2.v20120307-2048-H257-Beta2</span>
-</td>
-<td>
-<span style="font-size:x-small">
- |
- SOATools</span>
-</td>
-</tr>
-<tr style="background-color:
- #EEEEEE
- ">
-<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/soatools-3.3.0.CR1/features/...">org.savara.tools.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">2.0.0.Final</span>
-</td>
-<td>
-<span style="font-size:x-small">
- |
- SOATools</span>
-</td>
-</tr>
-<tr style="background-color:
- #FFFFFF
- ">
-<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/soatools-3.3.0.CR1/features/...">org.savara.tools.incubator.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">2.0.0.Final</span>
-</td>
-<td>
-<span style="font-size:x-small">
- |
- SOATools</span>
-</td>
-</tr>
-<tr style="background-color:
- #EEEEEE
- ">
-<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/soatools-3.3.0.CR1/features/...">org.switchyard.tools.editor.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">0.5.0.v20120620-0037-H125-CI</span>
-</td>
-<td>
-<span style="font-size:x-small">
- |
- AbridgedTools</span>
-<span style="font-size:x-small">
- |
- SOATools</span>
-</td>
-</tr>
-<tr style="background-color:
- #FFFFFF
- ">
-<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/soatools-3.3.0.CR1/features/...">org.switchyard.tools.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">0.5.0.v20120620-0037-H125-CI</span>
-</td>
-<td>
-<span style="font-size:x-small">
- |
- AbridgedTools</span>
-<span style="font-size:x-small">
- |
- SOATools</span>
-</td>
-</tr>
-<tr style="background-color:
- #EEEEEE
- ">
-<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/soatools-3.3.0.CR1/features/...">org.teiid.datatools.connectivity.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">7.7.1.v20120619-2152-H6-CR1-SOA</span>
-</td>
-<td>
-<span style="font-size:x-small">
- |
- DataTools</span>
-</td>
-</tr>
-<tr style="background-color:
- #FFFFFF
- ">
-<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/soatools-3.3.0.CR1/features/...">org.teiid.designer.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">7.7.1.v20120619-2152-H6-CR1-SOA</span>
-</td>
-<td>
-<span style="font-size:x-small">
- |
- DataTools</span>
-</td>
-</tr>
-<tr style="background-color:
- #EEEEEE
- ">
-<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/soatools-3.3.0.CR1/features/...">org.teiid.designer.runtime.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">7.7.1.v20120619-2152-H6-CR1-SOA</span>
-</td>
-<td>
-<span style="font-size:x-small">
- |
- DataTools</span>
-</td>
-</tr>
-<tr style="background-color:#DDDDDD">
-<th style="font-size:small" colspan="1">Metadata</th>
-<th style="font-size:small" colspan="1"/>
-<th style="font-size:small" colspan="1"/>
-</tr>
-<tr style="background-color:#EEEEEE">
-<td colspan="1" class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/soatools-3.3.0.CR1/site.xml">site.xml</a>
- ::
- <a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/soatools-3.3.0.CR1/artifacts...">artifacts.jar</a>
- ::
- <a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/soatools-3.3.0.CR1/content.jar">content.jar</a>
-</td>
-<td colspan="1" class="rowLine">
- ::
- <a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/soatools-3.3.0.CR1/plugins/">plugins</a>
- ::
- <a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/soatools-3.3.0.CR1/features/">features</a>
-</td>
-<td colspan="1" class="rowLine">
- :: <a href="http://download.jboss.org/jbosstools/updates/soatools-3.3.0.CR1/jbosstool..." style="font-size:x-small">jbosstools-directory.xml</a>
- :: <a href="http://download.jboss.org/jbosstools/updates/soatools-3.3.0.CR1/site.prop..." style="font-size:x-small">site.properties</a>
- </td>
-</tr>
-</table><br xmlns="http://www.w3.org/1999/xhtml" xmlns:xalan="http://xml.apache.org/xalan"/>
-
- </td>
- <td></td>
- </tr>
- <tr>
- <td></td>
- <td>
- <table width="100%">
- <tr class="header">
- <td class="sub-header" width="100%"><span> Installation
- Types</span></td>
- </tr>
- <tr class="light-row" style="height: 30px">
- <td class="bodyText">
- <p class="bodyText">Depending on how close to the bleeding edge
- you like to be, there are several types of releases available.</p>
- <br />
-
- </td>
- </tr>
-
- <tr class="dark-row" style="height: 30px">
- <td class="bodyText">
- <h4>Stable Releases</h4>
-
- <p><a href="https://www.jboss.org/tools/download/stable.html">Stable
- releases</a> are - as indicated by their name - stable.</p><br/>
-
- </td>
- </tr>
-
- <tr class="light-row" style="height: 30px">
- <td class="bodyText">
- <h4>Development Milestones</h4>
-
- <p><a href="https://www.jboss.org/tools/download/dev.html">Development
- builds</a>, released once per milestone and only a few times a year, are
- fairly stable, but there may be some things which do not yet work.
- If you would like to try one of these milestones, we'd greatly
- appreciate the assistance in testing and <a
- href="https://jira.jboss.org/jira/browse/JBIDE">reporting of
- issues in our issue tracker</a>.</p><br/>
-
- </td>
- </tr>
-
- <tr class="dark-row" style="height: 30px">
- <td class="bodyText">
- <h4>Nightly Builds</h4>
-
- <p>The <a
- href="https://www.jboss.org/tools/download/nightly.html">bleeding
- edge</a> contains the latest and greatest new features, but nothing is
- stable or guaranteed - yet. If you're using a Milestone and need a
- fix, you can update to the latest Nightly, or wait for the next
- Milestone.</p><br/>
- </td>
- </tr>
- </table>
- </td>
- </tr>
-</table>
-</center>
-</html>
12 years, 3 months
JBoss Tools SVN: r44295 - trunk/download.jboss.org/jbosstools/updates/development/juno/soa-tooling.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2012-10-04 10:26:24 -0400 (Thu, 04 Oct 2012)
New Revision: 44295
Added:
trunk/download.jboss.org/jbosstools/updates/development/juno/soa-tooling/...
trunk/download.jboss.org/jbosstools/updates/development/juno/soa-tooling/...
trunk/download.jboss.org/jbosstools/updates/development/juno/soa-tooling/...
trunk/download.jboss.org/jbosstools/updates/development/juno/soa-tooling/...
Removed:
trunk/download.jboss.org/jbosstools/updates/development/juno/soa-tooling/...
trunk/download.jboss.org/jbosstools/updates/development/juno/soa-tooling/...
trunk/download.jboss.org/jbosstools/updates/development/juno/soa-tooling/...
trunk/download.jboss.org/jbosstools/updates/development/juno/soa-tooling/...
Log:
move index to README so that this folder is browseable; link to modeshape; update README blurb; provide composite*.xml files instead of empty site.xml
Copied: trunk/download.jboss.org/jbosstools/updates/development/juno/soa-tooling/... (from rev 44293, trunk/download.jboss.org/jbosstools/updates/development/juno/soa-tooling/...)
===================================================================
--- trunk/download.jboss.org/jbosstools/updates/development/juno/soa-tooling/... (rev 0)
+++ trunk/download.jboss.org/jbosstools/updates/development/juno/soa-tooling/... 2012-10-04 14:26:24 UTC (rev 44295)
@@ -0,0 +1,112 @@
+<html>
+<head>
+<title>JBoss Tools - SOA Tooling - Development Milestone Update Site: coming soon</title>
+<style>
+@import url("http://download.jboss.org/jbosstools/updates/web/site.css");
+</style>
+</head>
+<body marginheight="0" marginwidth="0" leftmargin="0" topmargin="0">
+<center>
+<table marginheight="0" marginwidth="0" leftmargin="0" topmargin="0"
+ cellspacing="0" cellpadding="0" width="920" class="bodyText">
+ <tr>
+ <td colspan="3"><img
+ src="https://www.jboss.org/dms/tools/images/tools-banner.png" /></td>
+ </tr>
+ <tr>
+ <td>      </td>
+ <td>      </td>
+ <td>      </td>
+ </tr>
+ <tr>
+ <td>      </td>
+ <td>
+ <h2 class="title">JBoss Tools - SOA Tooling - Development Milestone Update Site</h2>
+ <table width="100%">
+ <tr class="header">
+ <td class="sub-header" width="100%"><span>Latest Build: n/a </span></td>
+ </tr>
+
+ <tr class="light-row" style="height: 30px">
+ <td class="bodyText">
+ <p class="bodyText">This will be the <b>Development Milestone</b>
+ Update Site for JBoss Tools - SOA Tooling.
+
+ <blockquote style="border: 1px dashed #1778be; padding: 2px">
+ <blockquote>
+ There is no JBoss Tools - SOA Tooling release <br/>
+ for Eclipse 4.2 (Juno) at this time. Stay tuned.<br/>
+ <br/>
+ This composite site is a work in progress. More projects will be added in time.
+ <br/>
+ <a href="compositeArtifacts.xml">compositeArtifacts.xml</a><br/>
+ <a href="compositeContent.xml">compositeContent.xml</a><br/>
+
+ </blockquote>
+ </blockquote>
+ </td>
+ </tr>
+ </table>
+ </td>
+ <td>      </td>
+ </tr>
+ <tr>
+ <td></td>
+ <td>
+ <table width="100%">
+ <tr class="header">
+ <td class="sub-header" width="100%"><span> Installation
+ Types</span></td>
+ </tr>
+ <tr class="light-row" style="height: 30px">
+ <td class="bodyText">
+ <p class="bodyText">Depending on how close to the bleeding edge
+ you like to be, there are several types of releases available.</p>
+ <br />
+
+ </td>
+ </tr>
+
+ <tr class="dark-row" style="height: 30px">
+ <td class="bodyText">
+ <h4>Stable Releases</h4>
+
+ <p><a href="https://www.jboss.org/tools/download/stable.html">Stable
+ releases</a> are - as indicated by their name - stable.</p><br/>
+
+ </td>
+ </tr>
+
+ <tr class="light-row" style="height: 30px">
+ <td class="bodyText">
+ <h4>Development Milestones</h4>
+
+ <p><a href="https://www.jboss.org/tools/download/dev.html">Development
+ builds</a>, released once per milestone and only a few times a year, are
+ fairly stable, but there may be some things which do not yet work.
+ If you would like to try one of these milestones, we'd greatly
+ appreciate the assistance in testing and <a
+ href="https://jira.jboss.org/jira/browse/JBIDE">reporting of
+ issues in our issue tracker</a>.</p><br/>
+
+ </td>
+ </tr>
+
+ <tr class="dark-row" style="height: 30px">
+ <td class="bodyText">
+ <h4>Nightly Builds</h4>
+
+ <p>The <a
+ href="https://www.jboss.org/tools/download/nightly.html">bleeding
+ edge</a> contains the latest and greatest new features, but nothing is
+ stable or guaranteed - yet. If you're using a Milestone and need a
+ fix, you can update to the latest Nightly, or wait for the next
+ Milestone.</p><br/>
+ </td>
+ </tr>
+ </table>
+ </td>
+ </tr>
+</table>
+</center>
+</html>
Deleted: trunk/download.jboss.org/jbosstools/updates/development/juno/soa-tooling/...
===================================================================
--- trunk/download.jboss.org/jbosstools/updates/development/juno/soa-tooling/... 2012-10-04 13:52:06 UTC (rev 44294)
+++ trunk/download.jboss.org/jbosstools/updates/development/juno/soa-tooling/... 2012-10-04 14:26:24 UTC (rev 44295)
@@ -1,15 +0,0 @@
-<?xml version='1.0' encoding='UTF-8'?>
-<?compositeArtifactRepository version='1.0.0'?>
-<repository name='JBoss Tools - SOA Tooling - Development Milestone Update Site' type='org.eclipse.equinox.internal.p2.artifact.repository.CompositeArtifactRepository' version='1.0.0'>
-<properties size='2'>
-<property name='p2.compressed' value='true'/>
-<!--
- get new time w/
- date +%s000
--->
-<property name='p2.timestamp' value='1324575282000'/>
-</properties>
-<children size='1'>
-<child location='.'/>
-</children>
-</repository>
Deleted: trunk/download.jboss.org/jbosstools/updates/development/juno/soa-tooling/...
===================================================================
--- trunk/download.jboss.org/jbosstools/updates/development/juno/soa-tooling/... 2012-10-04 13:52:06 UTC (rev 44294)
+++ trunk/download.jboss.org/jbosstools/updates/development/juno/soa-tooling/... 2012-10-04 14:26:24 UTC (rev 44295)
@@ -1,15 +0,0 @@
-<?xml version='1.0' encoding='UTF-8'?>
-<?compositeMetadataRepository version='1.0.0'?>
-<repository name='JBoss Tools - SOA Tooling - Development Milestone Update Site' type='org.eclipse.equinox.internal.p2.metadata.repository.CompositeMetadataRepository' version='1.0.0'>
-<properties size='2'>
-<property name='p2.compressed' value='true'/>
-<!--
- get new time w/
- date +%s000
--->
-<property name='p2.timestamp' value='1324575286000'/>
-</properties>
-<children size='1'>
-<child location='.'/>
-</children>
-</repository>
Copied: trunk/download.jboss.org/jbosstools/updates/development/juno/soa-tooling/... (from rev 44293, trunk/download.jboss.org/jbosstools/updates/development/juno/soa-tooling/...)
===================================================================
--- trunk/download.jboss.org/jbosstools/updates/development/juno/soa-tooling/... (rev 0)
+++ trunk/download.jboss.org/jbosstools/updates/development/juno/soa-tooling/... 2012-10-04 14:26:24 UTC (rev 44295)
@@ -0,0 +1,15 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<?compositeArtifactRepository version='1.0.0'?>
+<repository name='JBoss Tools - SOA Tooling - Development Milestone Update Site' type='org.eclipse.equinox.internal.p2.artifact.repository.CompositeArtifactRepository' version='1.0.0'>
+<properties size='2'>
+<property name='p2.compressed' value='true'/>
+<!--
+ get new time w/
+ date +%s000
+-->
+<property name='p2.timestamp' value='1349360526000'/>
+</properties>
+<children size='1'>
+<child location='modeshape/'/>
+</children>
+</repository>
Copied: trunk/download.jboss.org/jbosstools/updates/development/juno/soa-tooling/... (from rev 44293, trunk/download.jboss.org/jbosstools/updates/development/juno/soa-tooling/...)
===================================================================
--- trunk/download.jboss.org/jbosstools/updates/development/juno/soa-tooling/... (rev 0)
+++ trunk/download.jboss.org/jbosstools/updates/development/juno/soa-tooling/... 2012-10-04 14:26:24 UTC (rev 44295)
@@ -0,0 +1,15 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<?compositeMetadataRepository version='1.0.0'?>
+<repository name='JBoss Tools - SOA Tooling - Development Milestone Update Site' type='org.eclipse.equinox.internal.p2.metadata.repository.CompositeMetadataRepository' version='1.0.0'>
+<properties size='2'>
+<property name='p2.compressed' value='true'/>
+<!--
+ get new time w/
+ date +%s000
+-->
+<property name='p2.timestamp' value='1349360535000'/>
+</properties>
+<children size='1'>
+<child location='modeshape/'/>
+</children>
+</repository>
Deleted: trunk/download.jboss.org/jbosstools/updates/development/juno/soa-tooling/...
===================================================================
--- trunk/download.jboss.org/jbosstools/updates/development/juno/soa-tooling/... 2012-10-04 13:52:06 UTC (rev 44294)
+++ trunk/download.jboss.org/jbosstools/updates/development/juno/soa-tooling/... 2012-10-04 14:26:24 UTC (rev 44295)
@@ -1,106 +0,0 @@
-<html>
-<head>
-<title>JBoss Tools - SOA Tooling - Development Milestone Update Site: coming soon</title>
-<style>
-@import url("http://download.jboss.org/jbosstools/updates/web/site.css");
-</style>
-</head>
-<body marginheight="0" marginwidth="0" leftmargin="0" topmargin="0">
-<center>
-<table marginheight="0" marginwidth="0" leftmargin="0" topmargin="0"
- cellspacing="0" cellpadding="0" width="920" class="bodyText">
- <tr>
- <td colspan="3"><img
- src="https://www.jboss.org/dms/tools/images/tools-banner.png" /></td>
- </tr>
- <tr>
- <td>      </td>
- <td>      </td>
- <td>      </td>
- </tr>
- <tr>
- <td>      </td>
- <td>
- <h2 class="title">JBoss Tools - SOA Tooling - Development Milestone Update Site</h2>
- <table width="100%">
- <tr class="header">
- <td class="sub-header" width="100%"><span>Latest Build: n/a </span></td>
- </tr>
-
- <tr class="light-row" style="height: 30px">
- <td class="bodyText">
- <p class="bodyText">This will be the <b>Development Milestone</b>
- Update Site for JBoss Tools - SOA Tooling.
-
- <blockquote style="border: 1px dashed #1778be; padding: 2px">
- <blockquote>
- There is no JBoss Tools - SOA Tooling release <br/>
- for Eclipse 4.2 (Juno) at this time. Stay tuned.<br/>
- </blockquote>
- </blockquote>
- </td>
- </tr>
- </table>
- </td>
- <td>      </td>
- </tr>
- <tr>
- <td></td>
- <td>
- <table width="100%">
- <tr class="header">
- <td class="sub-header" width="100%"><span> Installation
- Types</span></td>
- </tr>
- <tr class="light-row" style="height: 30px">
- <td class="bodyText">
- <p class="bodyText">Depending on how close to the bleeding edge
- you like to be, there are several types of releases available.</p>
- <br />
-
- </td>
- </tr>
-
- <tr class="dark-row" style="height: 30px">
- <td class="bodyText">
- <h4>Stable Releases</h4>
-
- <p><a href="https://www.jboss.org/tools/download/stable.html">Stable
- releases</a> are - as indicated by their name - stable.</p><br/>
-
- </td>
- </tr>
-
- <tr class="light-row" style="height: 30px">
- <td class="bodyText">
- <h4>Development Milestones</h4>
-
- <p><a href="https://www.jboss.org/tools/download/dev.html">Development
- builds</a>, released once per milestone and only a few times a year, are
- fairly stable, but there may be some things which do not yet work.
- If you would like to try one of these milestones, we'd greatly
- appreciate the assistance in testing and <a
- href="https://jira.jboss.org/jira/browse/JBIDE">reporting of
- issues in our issue tracker</a>.</p><br/>
-
- </td>
- </tr>
-
- <tr class="dark-row" style="height: 30px">
- <td class="bodyText">
- <h4>Nightly Builds</h4>
-
- <p>The <a
- href="https://www.jboss.org/tools/download/nightly.html">bleeding
- edge</a> contains the latest and greatest new features, but nothing is
- stable or guaranteed - yet. If you're using a Milestone and need a
- fix, you can update to the latest Nightly, or wait for the next
- Milestone.</p><br/>
- </td>
- </tr>
- </table>
- </td>
- </tr>
-</table>
-</center>
-</html>
Deleted: trunk/download.jboss.org/jbosstools/updates/development/juno/soa-tooling/...
===================================================================
--- trunk/download.jboss.org/jbosstools/updates/development/juno/soa-tooling/... 2012-10-04 13:52:06 UTC (rev 44294)
+++ trunk/download.jboss.org/jbosstools/updates/development/juno/soa-tooling/... 2012-10-04 14:26:24 UTC (rev 44295)
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<site>
- <description>
- JBoss Tools - SOA Tooling - Development Milestone Update Site (empty site)
- </description>
-</site>
Copied: trunk/download.jboss.org/jbosstools/updates/development/juno/soa-tooling/... (from rev 44293, trunk/download.jboss.org/jbosstools/updates/development/juno/soa-tooling/...)
===================================================================
--- trunk/download.jboss.org/jbosstools/updates/development/juno/soa-tooling/... (rev 0)
+++ trunk/download.jboss.org/jbosstools/updates/development/juno/soa-tooling/... 2012-10-04 14:26:24 UTC (rev 44295)
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<site>
+ <description>
+ JBoss Tools - SOA Tooling - Development Milestone Update Site (empty site)
+ </description>
+</site>
12 years, 3 months
JBoss Tools SVN: r44294 - branches/jbosstools-4.0.0.Alpha2/build/publish.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2012-10-04 09:52:06 -0400 (Thu, 04 Oct 2012)
New Revision: 44294
Modified:
branches/jbosstools-4.0.0.Alpha2/build/publish/promote.sh
Log:
purge existing workspace folder to ensure we're not combining releases
Modified: branches/jbosstools-4.0.0.Alpha2/build/publish/promote.sh
===================================================================
--- branches/jbosstools-4.0.0.Alpha2/build/publish/promote.sh 2012-10-04 13:51:53 UTC (rev 44293)
+++ branches/jbosstools-4.0.0.Alpha2/build/publish/promote.sh 2012-10-04 13:52:06 UTC (rev 44294)
@@ -37,6 +37,8 @@
if [[ ${OPERATION} == "MOVE" ]]; then
echo -e "rename builds/staging/${SOURCE_PATH} updates/${BUILD_TYPE}/${TARGET_PLATFORM}/${PARENT_FOLDER}/${PROJECT_NAME}/${TARGET_FOLDER}" | sftp ${DESTINATION}
else
+ # purge existing workspace folder to ensure we're not combining releases
+ if [[ ${WORKSPACE} ]] && [[ -d ${WORKSPACE}/${JOB_NAME} ]]; then rm -fr ${WORKSPACE}/${JOB_NAME}/; fi
rsync -arzq --protocol=28 ${DESTINATION}/builds/staging/${SOURCE_PATH}/* ${WORKSPACE}/${JOB_NAME}/
rsync -arzq --protocol=28 --delete ${WORKSPACE}/${JOB_NAME}/* ${DESTINATION}/updates/${BUILD_TYPE}/${TARGET_PLATFORM}/${PARENT_FOLDER}/${PROJECT_NAME}/${TARGET_FOLDER}/
fi
12 years, 3 months
JBoss Tools SVN: r44293 - trunk/build/publish.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2012-10-04 09:51:53 -0400 (Thu, 04 Oct 2012)
New Revision: 44293
Modified:
trunk/build/publish/promote.sh
Log:
purge existing workspace folder to ensure we're not combining releases
Modified: trunk/build/publish/promote.sh
===================================================================
--- trunk/build/publish/promote.sh 2012-10-04 13:30:00 UTC (rev 44292)
+++ trunk/build/publish/promote.sh 2012-10-04 13:51:53 UTC (rev 44293)
@@ -37,6 +37,8 @@
if [[ ${OPERATION} == "MOVE" ]]; then
echo -e "rename builds/staging/${SOURCE_PATH} updates/${BUILD_TYPE}/${TARGET_PLATFORM}/${PARENT_FOLDER}/${PROJECT_NAME}/${TARGET_FOLDER}" | sftp ${DESTINATION}
else
+ # purge existing workspace folder to ensure we're not combining releases
+ if [[ ${WORKSPACE} ]] && [[ -d ${WORKSPACE}/${JOB_NAME} ]]; then rm -fr ${WORKSPACE}/${JOB_NAME}/; fi
rsync -arzq --protocol=28 ${DESTINATION}/builds/staging/${SOURCE_PATH}/* ${WORKSPACE}/${JOB_NAME}/
rsync -arzq --protocol=28 --delete ${WORKSPACE}/${JOB_NAME}/* ${DESTINATION}/updates/${BUILD_TYPE}/${TARGET_PLATFORM}/${PARENT_FOLDER}/${PROJECT_NAME}/${TARGET_FOLDER}/
fi
12 years, 3 months
JBoss Tools SVN: r44292 - trunk/build/target-platforms/jbdevstudio-JunoSR0b/local.
by jbosstools-commits@lists.jboss.org
Author: mickael_istria
Date: 2012-10-04 09:30:00 -0400 (Thu, 04 Oct 2012)
New Revision: 44292
Modified:
trunk/build/target-platforms/jbdevstudio-JunoSR0b/local/pom.xml
Log:
JBIDE-12773: Fix typo
Modified: trunk/build/target-platforms/jbdevstudio-JunoSR0b/local/pom.xml
===================================================================
--- trunk/build/target-platforms/jbdevstudio-JunoSR0b/local/pom.xml 2012-10-04 12:58:27 UTC (rev 44291)
+++ trunk/build/target-platforms/jbdevstudio-JunoSR0b/local/pom.xml 2012-10-04 13:30:00 UTC (rev 44292)
@@ -43,7 +43,7 @@
<version>${project.version}</version>
<packaging>target</packaging>
<classifier>multiple</classifier>
- <destination>${project.build.directory}/jmultiple.target</destination>
+ <destination>${project.build.directory}/multiple.target</destination>
</configuration>
</execution>
</executions>
12 years, 3 months
JBoss Tools SVN: r44291 - trunk/build/parent.
by jbosstools-commits@lists.jboss.org
Author: mickael_istria
Date: 2012-10-04 08:58:27 -0400 (Thu, 04 Oct 2012)
New Revision: 44291
Modified:
trunk/build/parent/pom.xml
Log:
JBIDE-12773: Get parent pom to consume new target-platforms
Modified: trunk/build/parent/pom.xml
===================================================================
--- trunk/build/parent/pom.xml 2012-10-04 12:02:19 UTC (rev 44290)
+++ trunk/build/parent/pom.xml 2012-10-04 12:58:27 UTC (rev 44291)
@@ -38,6 +38,8 @@
<!-- Default coverage filter, to be overriden when necessary -->
<coverage.filter>org.jboss.tools.*</coverage.filter>
+ <targetPlatformGroup>jbosstools-JunoSR1</targetPlatformGroup>
+
<!-- 1a. URL of latest JBT target platform site -->
<jbosstools-target-site>http://download.jboss.org/jbosstools/updates/target-platform_4.0.juno.SR1...</jbosstools-target-site>
@@ -542,7 +544,7 @@
<configuration>
<target>
<artifact>
- <groupId>org.jboss.tools.target-platforms</groupId>
+ <groupId>org.jboss.tools.target-platforms.${targetPlatformGroup}</groupId>
<artifactId>multiple</artifactId>
<version>${JBT_VERSION}.${BUILD_ALIAS}-SNAPSHOT</version>
<classifier>multiple</classifier>
@@ -568,8 +570,8 @@
<configuration>
<target>
<artifact>
- <groupId>org.jboss.tools.target-platforms</groupId>
- <artifactId>unified</artifactId>
+ <groupId>org.jboss.tools.target-platforms.${targetPlatformGroup}</groupId>
+ <artifactId>unified</artifactId>
<version>${JBT_VERSION}.${BUILD_ALIAS}-SNAPSHOT</version>
<classifier>unified</classifier>
</artifact>
@@ -593,7 +595,7 @@
<configuration>
<target>
<artifact>
- <groupId>org.jboss.tools.target-platforms</groupId>
+ <groupId>org.jboss.tools.target-platforms.${targetPlatformGroup}</groupId>
<artifactId>jenkins</artifactId>
<version>${JBT_VERSION}.${BUILD_ALIAS}-SNAPSHOT</version>
<classifier>jenkins</classifier>
@@ -623,7 +625,7 @@
<configuration>
<target>
<artifact>
- <groupId>org.jboss.tools.target-platofms</groupId>
+ <groupId>org.jboss.tools.target-platforms.${targetPlatformGroup}</groupId>
<artifactId>local</artifactId>
<version>${JBT_VERSION}.${BUILD_ALIAS}-SNAPSHOT</version>
<classifier>local</classifier>
12 years, 3 months