JBoss Tools SVN: r36153 - in trunk/jsf/docs/jsf_tools_ref_guide/en-US: images/jsf_support and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: irooskov(a)redhat.com
Date: 2011-11-02 22:44:32 -0400 (Wed, 02 Nov 2011)
New Revision: 36153
Added:
trunk/jsf/docs/jsf_tools_ref_guide/en-US/images/jsf_support/jsf_existing_project_01.png
trunk/jsf/docs/jsf_tools_ref_guide/en-US/images/jsf_support/jsf_existing_project_02.png
Modified:
trunk/jsf/docs/jsf_tools_ref_guide/en-US/jsf_support.xml
Log:
updated for JBIDE-9198
Added: trunk/jsf/docs/jsf_tools_ref_guide/en-US/images/jsf_support/jsf_existing_project_01.png
===================================================================
(Binary files differ)
Property changes on: trunk/jsf/docs/jsf_tools_ref_guide/en-US/images/jsf_support/jsf_existing_project_01.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/jsf/docs/jsf_tools_ref_guide/en-US/images/jsf_support/jsf_existing_project_02.png
===================================================================
(Binary files differ)
Property changes on: trunk/jsf/docs/jsf_tools_ref_guide/en-US/images/jsf_support/jsf_existing_project_02.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Modified: trunk/jsf/docs/jsf_tools_ref_guide/en-US/jsf_support.xml
===================================================================
--- trunk/jsf/docs/jsf_tools_ref_guide/en-US/jsf_support.xml 2011-11-03 01:17:33 UTC (rev 36152)
+++ trunk/jsf/docs/jsf_tools_ref_guide/en-US/jsf_support.xml 2011-11-03 02:44:32 UTC (rev 36153)
@@ -43,7 +43,7 @@
</para>
<section>
- <title>Facelets templates</title>
+ <title>Creating a JSF project with Facelets</title>
<para>
If you want to build an application using Facelets, create a project with Facelets based on version 1.2 of the JSF Reference Implementation, i. e. select the <guilabel>JSF 1.2 with Facelets</guilabel> option in the <guilabel>JSF Environment</guilabel> section of the <guilabel>New JSF Project</guilabel> wizard.
</para>
@@ -138,6 +138,34 @@
</table>
</section>
<section>
+ <title>Adding JSF Facelets to any existing project</title>
+ <para>
+ JSF capability can be added to any existing project, and no pre-existing <filename>web.xml</filename> file is necessary. To enable JSF support for a project, right-click on the project in the <guilabel>Project Explorer</guilabel>, bringing up the context menu. From this menu navigate to <menuchoice><guimenuitem>Configure</guimenuitem><guimenuitem>Add JSF Capabilities</guimenuitem></menuchoice>.
+ </para>
+ <figure>
+ <title>Add JSF Capabilities menu item</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/troubleshooting/JSF_existing_project_01.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <para>
+ This will open the <guilabel>Project Facets</guilabel> dialog for the project. Click the checkbox next to <guilabel>JavaServer Faces</guilabel>. You undertake further configuration by clicking the <guilabel>Further configuration available</guilabel> button at the bottom of the dialog; this will allow you to define specific configuration options. Click <guibutton>Apply</guibutton> and then the <guibutton>OK</guibutton> on the <guilabel>Project Facets</guilabel> dialog when you are finished.
+ </para>
+ <figure>
+ <title>Project Facets dialog</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/troubleshooting/JSF_existing_project_02.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <para>
+ The project will now contain a new node (visible through the <guilabel>Project Explorer</guilabel>) named <guilabel>Web Resources</guilabel>. This node contains all your JSF files for the project.
+ </para>
+ </section>
+ <section>
<title>Facelets components</title>
<para>
13 years, 1 month
JBoss Tools SVN: r36152 - trunk/esb/plugins/org.jboss.tools.esb.validator.
by jbosstools-commits@lists.jboss.org
Author: scabanovich
Date: 2011-11-02 21:17:33 -0400 (Wed, 02 Nov 2011)
New Revision: 36152
Modified:
trunk/esb/plugins/org.jboss.tools.esb.validator/plugin.xml
Log:
JBIDE-10097
https://issues.jboss.org/browse/JBIDE-10097
'ESB Validator' property page registered for ESB projects.
Modified: trunk/esb/plugins/org.jboss.tools.esb.validator/plugin.xml
===================================================================
--- trunk/esb/plugins/org.jboss.tools.esb.validator/plugin.xml 2011-11-03 01:12:02 UTC (rev 36151)
+++ trunk/esb/plugins/org.jboss.tools.esb.validator/plugin.xml 2011-11-03 01:17:33 UTC (rev 36152)
@@ -31,5 +31,26 @@
</page>
</extension>
+ <extension point="org.eclipse.ui.propertyPages">
+ <page
+ name="%PreferencePage_Validator"
+ class="org.jboss.tools.esb.validator.ui.ESBValidatorPreferencePage"
+ id="org.jboss.tools.esb.validator.ui.propertyPages.ESBValidatorPreferencePage">
+ <enabledWhen>
+ <and>
+ <adapt type="org.eclipse.core.resources.IProject">
+ <or>
+ <test
+ forcePluginActivation="true"
+ property="org.eclipse.wst.common.project.facet.core.projectFacet"
+ value="jst.jboss.esb" />
+ </or>
+ </adapt>
+ </and>
+ </enabledWhen>
+ <keywordReference id="org.eclipse.wst.html.ui.webcontent"/>
+ </page>
+ </extension>
+
</plugin>
13 years, 1 month
JBoss Tools SVN: r36151 - trunk/cdi/plugins/org.jboss.tools.cdi.ui/src/org/jboss/tools/cdi/ui/wizard/xpl.
by jbosstools-commits@lists.jboss.org
Author: dazarov
Date: 2011-11-02 21:12:02 -0400 (Wed, 02 Nov 2011)
New Revision: 36151
Modified:
trunk/cdi/plugins/org.jboss.tools.cdi.ui/src/org/jboss/tools/cdi/ui/wizard/xpl/AddQualifiersToBeanComposite.java
Log:
Quickfix and Wizard for fixing ambigious injection warning is confusing https://issues.jboss.org/browse/JBIDE-9940
Modified: trunk/cdi/plugins/org.jboss.tools.cdi.ui/src/org/jboss/tools/cdi/ui/wizard/xpl/AddQualifiersToBeanComposite.java
===================================================================
--- trunk/cdi/plugins/org.jboss.tools.cdi.ui/src/org/jboss/tools/cdi/ui/wizard/xpl/AddQualifiersToBeanComposite.java 2011-11-03 00:47:54 UTC (rev 36150)
+++ trunk/cdi/plugins/org.jboss.tools.cdi.ui/src/org/jboss/tools/cdi/ui/wizard/xpl/AddQualifiersToBeanComposite.java 2011-11-03 01:12:02 UTC (rev 36151)
@@ -450,9 +450,7 @@
throws InvocationTargetException, InterruptedException {
monitor.beginTask(CDICoreMessages.CDI_UTIL_BUILD_CDI_MODEL, 10);
monitor.worked(3);
-
- //waitForIdle(1000, 5000);
- delay(1000);
+
try {
Job.getJobManager().join(ResourcesPlugin.FAMILY_AUTO_BUILD, null);
} catch (InterruptedException e) {
@@ -461,45 +459,6 @@
monitor.worked(7);
}
-
-// public void waitForIdle(long delay, long maxIdle) {
-// long start = System.currentTimeMillis();
-// while (!Job.getJobManager().isIdle()) {
-// delay(delay);
-// if ((System.currentTimeMillis() - start) > maxIdle) {
-// Job[] jobs = Job.getJobManager().find(null);
-// StringBuffer str = new StringBuffer();
-// for (Job job : jobs) {
-// if (job.getThread() != null) {
-// str.append("\n").append(job.getName()).append(" (")
-// .append(job.getClass()).append(")");
-// }
-// }
-// throw new RuntimeException(
-// "Long running tasks detected:" + str.toString()); //$NON-NLS-1$
-// }
-// }
-// }
-
- public void delay(long waitTimeMillis) {
- Display display = Display.getCurrent();
- if (display != null) {
- long endTimeMillis = System.currentTimeMillis() + waitTimeMillis;
- while (System.currentTimeMillis() < endTimeMillis) {
- if (!display.readAndDispatch())
- display.sleep();
- }
- display.update();
- }
- // Otherwise, perform a simple sleep.
- else {
- try {
- Thread.sleep(waitTimeMillis);
- } catch (InterruptedException e) {
- // Ignored.
- }
- }
- }
});
}catch(InterruptedException ie){
CDICorePlugin.getDefault().logError(ie);
13 years, 1 month
JBoss Tools SVN: r36150 - in trunk/cdi/plugins: org.jboss.tools.cdi.ui and 3 other directories.
by jbosstools-commits@lists.jboss.org
Author: akazakov
Date: 2011-11-02 20:47:54 -0400 (Wed, 02 Nov 2011)
New Revision: 36150
Added:
trunk/cdi/plugins/org.jboss.tools.cdi.ui/src/org/jboss/tools/cdi/ui/wizard/CDIProjectWizard.java
Modified:
trunk/cdi/plugins/org.jboss.tools.cdi.core/plugin.xml
trunk/cdi/plugins/org.jboss.tools.cdi.ui/META-INF/MANIFEST.MF
trunk/cdi/plugins/org.jboss.tools.cdi.ui/plugin.xml
trunk/cdi/plugins/org.jboss.tools.cdi.ui/src/org/jboss/tools/cdi/ui/CDIUIMessages.java
trunk/cdi/plugins/org.jboss.tools.cdi.ui/src/org/jboss/tools/cdi/ui/CDIUIMessages.properties
Log:
https://issues.jboss.org/browse/JBIDE-9581 Create vanilla CDI getting started project
Modified: trunk/cdi/plugins/org.jboss.tools.cdi.core/plugin.xml
===================================================================
--- trunk/cdi/plugins/org.jboss.tools.cdi.core/plugin.xml 2011-11-02 23:50:22 UTC (rev 36149)
+++ trunk/cdi/plugins/org.jboss.tools.cdi.core/plugin.xml 2011-11-03 00:47:54 UTC (rev 36150)
@@ -67,6 +67,21 @@
</or>
</constraint>
</project-facet-version>
+
+ <template
+ id="template.jboss.tools.cdi10">
+ <label>
+ CDI Web Project
+ </label>
+ <fixed
+ facet="jst.java"/>
+ <fixed
+ facet="jst.web"/>
+ <preset
+ id="jboss.jst.cdi.preset">
+ </preset>
+ </template>
+
<action
facet="jst.cdi"
id="jst.cdi.1.0.install"
Modified: trunk/cdi/plugins/org.jboss.tools.cdi.ui/META-INF/MANIFEST.MF
===================================================================
--- trunk/cdi/plugins/org.jboss.tools.cdi.ui/META-INF/MANIFEST.MF 2011-11-02 23:50:22 UTC (rev 36149)
+++ trunk/cdi/plugins/org.jboss.tools.cdi.ui/META-INF/MANIFEST.MF 2011-11-03 00:47:54 UTC (rev 36150)
@@ -35,7 +35,9 @@
org.eclipse.ui.navigator;bundle-version="3.5.0",
org.eclipse.ui.navigator.resources;bundle-version="3.4.300",
org.eclipse.draw2d;bundle-version="3.7.0",
- org.eclipse.jdt.core.manipulation;bundle-version="1.4.0"
+ org.eclipse.jdt.core.manipulation;bundle-version="1.4.0",
+ org.eclipse.jst.servlet.ui;bundle-version="1.1.500",
+ org.eclipse.wst.web.ui;bundle-version="1.1.400"
Bundle-ActivationPolicy: lazy
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
Bundle-Vendor: %Bundle-Vendor.0
Modified: trunk/cdi/plugins/org.jboss.tools.cdi.ui/plugin.xml
===================================================================
--- trunk/cdi/plugins/org.jboss.tools.cdi.ui/plugin.xml 2011-11-02 23:50:22 UTC (rev 36149)
+++ trunk/cdi/plugins/org.jboss.tools.cdi.ui/plugin.xml 2011-11-03 00:47:54 UTC (rev 36150)
@@ -180,6 +180,21 @@
name="CDI (Context and Dependency Injection)"
id="org.jboss.tools.cdi.ui">
</category>
+ <wizard
+ category="org.jboss.tools.cdi.ui"
+ class="org.jboss.tools.cdi.ui.wizard.CDIProjectWizard"
+ icon="platform:/plugin/org.jboss.tools.cdi.core/images/cdi16.png"
+ id="org.jboss.tools.cdi.ui.wizard.NewCDIProjectWizard"
+ name="CDI Web Project"
+ preferredPerspectives="org.eclipse.jst.j2ee.J2EEPerspective,org.jboss.tools.jst.web.ui.WebDevelopmentPerspective"
+ project="true">
+ <description>
+ Create a CDI Web Project
+ </description>
+ <selection
+ class="org.eclipse.core.resources.IResource">
+ </selection>
+ </wizard>
<wizard
category="org.jboss.tools.cdi.ui"
class="org.jboss.tools.cdi.ui.wizard.NewQualifierCreationWizard"
@@ -344,6 +359,9 @@
<perspectiveExtension
targetID="org.eclipse.jst.j2ee.J2EEPerspective">
<newWizardShortcut
+ id="org.jboss.tools.cdi.ui.wizard.NewCDIProjectWizard">
+ </newWizardShortcut>
+ <newWizardShortcut
id="org.jboss.tools.cdi.ui.wizard.NewBeanCreationWizard">
</newWizardShortcut>
<newWizardShortcut
@@ -388,6 +406,20 @@
<commonWizard
menuGroupId="org.jboss.tools.cdi.ui"
type="new"
+ wizardId="org.jboss.tools.cdi.ui.wizard.NewCDIProjectWizard">
+ <enablement>
+ <or>
+ <adapt type="org.eclipse.core.resources.IFile" />
+ <adapt type="org.eclipse.core.resources.IFolder" />
+ <adapt type="org.eclipse.core.resources.IProject" />
+ <adapt type="org.eclipse.core.resources.IWorkspaceRoot" />
+ <adapt type="org.eclipse.jdt.core.IJavaElement" />
+ </or>
+ </enablement>
+ </commonWizard>
+ <commonWizard
+ menuGroupId="org.jboss.tools.cdi.ui"
+ type="new"
wizardId="org.jboss.tools.cdi.ui.wizard.NewBeanCreationWizard">
<enablement>
<or>
Modified: trunk/cdi/plugins/org.jboss.tools.cdi.ui/src/org/jboss/tools/cdi/ui/CDIUIMessages.java
===================================================================
--- trunk/cdi/plugins/org.jboss.tools.cdi.ui/src/org/jboss/tools/cdi/ui/CDIUIMessages.java 2011-11-02 23:50:22 UTC (rev 36149)
+++ trunk/cdi/plugins/org.jboss.tools.cdi.ui/src/org/jboss/tools/cdi/ui/CDIUIMessages.java 2011-11-03 00:47:54 UTC (rev 36150)
@@ -15,7 +15,7 @@
public class CDIUIMessages extends NLS{
private static final String BUNDLE_NAME = "org.jboss.tools.cdi.ui.CDIUIMessages"; //$NON-NLS-1$
-
+
static {
NLS.initializeMessages(BUNDLE_NAME, CDIUIMessages.class);
}
@@ -152,4 +152,6 @@
public static String OPEN_CDI_NAMED_BEAN_ACTION_NAME;
public static String OPEN_CDI_NAMED_BEAN_ACTION_MESSAGE;
-}
+
+ public static String CDI_PROJECT_WIZARD_NEW_PROJECT;
+}
\ No newline at end of file
Modified: trunk/cdi/plugins/org.jboss.tools.cdi.ui/src/org/jboss/tools/cdi/ui/CDIUIMessages.properties
===================================================================
--- trunk/cdi/plugins/org.jboss.tools.cdi.ui/src/org/jboss/tools/cdi/ui/CDIUIMessages.properties 2011-11-02 23:50:22 UTC (rev 36149)
+++ trunk/cdi/plugins/org.jboss.tools.cdi.ui/src/org/jboss/tools/cdi/ui/CDIUIMessages.properties 2011-11-03 00:47:54 UTC (rev 36150)
@@ -141,4 +141,4 @@
OPEN_CDI_NAMED_BEAN_ACTION_NAME=Open CDI Named Bean
OPEN_CDI_NAMED_BEAN_ACTION_MESSAGE=Enter bean EL name prefix or pattern (? = any character, * = any string):
-
+CDI_PROJECT_WIZARD_NEW_PROJECT=New CDI Web Project
\ No newline at end of file
Added: trunk/cdi/plugins/org.jboss.tools.cdi.ui/src/org/jboss/tools/cdi/ui/wizard/CDIProjectWizard.java
===================================================================
--- trunk/cdi/plugins/org.jboss.tools.cdi.ui/src/org/jboss/tools/cdi/ui/wizard/CDIProjectWizard.java (rev 0)
+++ trunk/cdi/plugins/org.jboss.tools.cdi.ui/src/org/jboss/tools/cdi/ui/wizard/CDIProjectWizard.java 2011-11-03 00:47:54 UTC (rev 36150)
@@ -0,0 +1,89 @@
+/*******************************************************************************
+ * Copyright (c) 2011 Red Hat, Inc.
+ * Distributed under license by Red Hat, Inc. All rights reserved.
+ * This program is made available under the terms of the
+ * Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Red Hat, Inc. - initial API and implementation
+ ******************************************************************************/
+package org.jboss.tools.cdi.ui.wizard;
+
+import java.util.Collections;
+import java.util.HashSet;
+import java.util.Set;
+
+import org.eclipse.core.runtime.CoreException;
+import org.eclipse.jst.servlet.ui.project.facet.WebProjectWizard;
+import org.eclipse.wst.common.project.facet.core.FacetedProjectFramework;
+import org.eclipse.wst.common.project.facet.core.IFacetedProjectTemplate;
+import org.eclipse.wst.common.project.facet.core.IFacetedProjectWorkingCopy;
+import org.eclipse.wst.common.project.facet.core.IPreset;
+import org.eclipse.wst.common.project.facet.core.IProjectFacet;
+import org.eclipse.wst.common.project.facet.core.IProjectFacetVersion;
+import org.eclipse.wst.common.project.facet.core.ProjectFacetsManager;
+import org.eclipse.wst.common.project.facet.core.runtime.IRuntime;
+import org.jboss.tools.cdi.ui.CDIUIMessages;
+
+/**
+ * @author Alexey Kazakov
+ */
+public class CDIProjectWizard extends WebProjectWizard {
+
+ private static final String CDI_TEMPALTE = "template.jboss.tools.cdi10";
+ private IPreset oldPreset;
+
+ public CDIProjectWizard() {
+ super();
+ setWindowTitle(CDIUIMessages.CDI_PROJECT_WIZARD_NEW_PROJECT);
+ }
+
+ /*
+ * (non-Javadoc)
+ * @see org.eclipse.jst.servlet.ui.project.facet.WebProjectWizard#getTemplate()
+ */
+ @Override
+ protected IFacetedProjectTemplate getTemplate() {
+ return ProjectFacetsManager.getTemplate(CDI_TEMPALTE);
+ }
+
+ /*
+ * (non-Javadoc)
+ * @see org.eclipse.wst.web.ui.internal.wizards.NewProjectDataModelFacetWizard#setRuntimeAndDefaultFacets(org.eclipse.wst.common.project.facet.core.runtime.IRuntime)
+ */
+ @Override
+ protected void setRuntimeAndDefaultFacets(IRuntime runtime) {
+ IPreset preset = getFacetedProjectWorkingCopy().getSelectedPreset();
+ if(preset!=null) {
+ oldPreset = preset;
+ }
+ IFacetedProjectWorkingCopy dm = getFacetedProjectWorkingCopy();
+ dm.setTargetedRuntimes(Collections.<IRuntime> emptySet());
+ boolean dontUseRuntimeConfig = false;
+ if (runtime != null) {
+ if(oldPreset!=null) {
+ dm.setProjectFacets(oldPreset.getProjectFacets());
+ dontUseRuntimeConfig = true;
+ } else {
+ Set<IProjectFacetVersion> minFacets = new HashSet<IProjectFacetVersion>();
+ try {
+ for (IProjectFacet f : dm.getFixedProjectFacets()) {
+ minFacets.add(f.getLatestSupportedVersion(runtime));
+ }
+ } catch (CoreException e) {
+ throw new RuntimeException(e);
+ }
+ dm.setProjectFacets(minFacets);
+ }
+ dm.setTargetedRuntimes(Collections.singleton(runtime));
+ }
+ if(dontUseRuntimeConfig) {
+ if(dm.getAvailablePresets().contains(oldPreset)) {
+ dm.setSelectedPreset(oldPreset.getId());
+ }
+ } else if(dm.getAvailablePresets().contains(FacetedProjectFramework.DEFAULT_CONFIGURATION_PRESET_ID)) {
+ dm.setSelectedPreset(FacetedProjectFramework.DEFAULT_CONFIGURATION_PRESET_ID);
+ }
+ }
+}
\ No newline at end of file
Property changes on: trunk/cdi/plugins/org.jboss.tools.cdi.ui/src/org/jboss/tools/cdi/ui/wizard/CDIProjectWizard.java
___________________________________________________________________
Added: svn:mime-type
+ text/plain
13 years, 1 month
JBoss Tools SVN: r36149 - in trunk/cdi/plugins/org.jboss.tools.cdi.ui/src/org/jboss/tools/cdi/ui: wizard and 1 other directories.
by jbosstools-commits@lists.jboss.org
Author: dazarov
Date: 2011-11-02 19:50:22 -0400 (Wed, 02 Nov 2011)
New Revision: 36149
Modified:
trunk/cdi/plugins/org.jboss.tools.cdi.ui/src/org/jboss/tools/cdi/ui/marker/AddQualifiersToBeanProcessor.java
trunk/cdi/plugins/org.jboss.tools.cdi.ui/src/org/jboss/tools/cdi/ui/marker/MarkerResolutionUtils.java
trunk/cdi/plugins/org.jboss.tools.cdi.ui/src/org/jboss/tools/cdi/ui/wizard/SelectBeanWizard.java
trunk/cdi/plugins/org.jboss.tools.cdi.ui/src/org/jboss/tools/cdi/ui/wizard/xpl/AddQualifiersToBeanComposite.java
Log:
Quickfix and Wizard for fixing ambigious injection warning is confusing https://issues.jboss.org/browse/JBIDE-9940
Modified: trunk/cdi/plugins/org.jboss.tools.cdi.ui/src/org/jboss/tools/cdi/ui/marker/AddQualifiersToBeanProcessor.java
===================================================================
--- trunk/cdi/plugins/org.jboss.tools.cdi.ui/src/org/jboss/tools/cdi/ui/marker/AddQualifiersToBeanProcessor.java 2011-11-02 22:48:21 UTC (rev 36148)
+++ trunk/cdi/plugins/org.jboss.tools.cdi.ui/src/org/jboss/tools/cdi/ui/marker/AddQualifiersToBeanProcessor.java 2011-11-02 23:50:22 UTC (rev 36149)
@@ -75,7 +75,7 @@
createRootChange();
MarkerResolutionUtils.addQualifiersToBean(qualifiers, selectedBean, rootChange);
-
+
MarkerResolutionUtils.addQualifiersToInjectionPoint(qualifiers, injectionPoint, rootChange);
return status;
Modified: trunk/cdi/plugins/org.jboss.tools.cdi.ui/src/org/jboss/tools/cdi/ui/marker/MarkerResolutionUtils.java
===================================================================
--- trunk/cdi/plugins/org.jboss.tools.cdi.ui/src/org/jboss/tools/cdi/ui/marker/MarkerResolutionUtils.java 2011-11-02 22:48:21 UTC (rev 36148)
+++ trunk/cdi/plugins/org.jboss.tools.cdi.ui/src/org/jboss/tools/cdi/ui/marker/MarkerResolutionUtils.java 2011-11-02 23:50:22 UTC (rev 36149)
@@ -549,9 +549,10 @@
}
}
- fileChange.setEdit(edit);
- if(edit.getChildrenSize() > 0)
+ if(edit.getChildrenSize() > 0){
+ fileChange.setEdit(edit);
change.add(fileChange);
+ }
}catch(CoreException ex){
CDIUIPlugin.getDefault().logError(ex);
}
@@ -599,9 +600,10 @@
}
- fileChange.setEdit(edit);
- if(edit.getChildrenSize() > 0)
+ if(edit.getChildrenSize() > 0){
+ fileChange.setEdit(edit);
change.add(fileChange);
+ }
}catch(CoreException ex){
CDIUIPlugin.getDefault().logError(ex);
}
Modified: trunk/cdi/plugins/org.jboss.tools.cdi.ui/src/org/jboss/tools/cdi/ui/wizard/SelectBeanWizard.java
===================================================================
--- trunk/cdi/plugins/org.jboss.tools.cdi.ui/src/org/jboss/tools/cdi/ui/wizard/SelectBeanWizard.java 2011-11-02 22:48:21 UTC (rev 36148)
+++ trunk/cdi/plugins/org.jboss.tools.cdi.ui/src/org/jboss/tools/cdi/ui/wizard/SelectBeanWizard.java 2011-11-02 23:50:22 UTC (rev 36149)
@@ -149,6 +149,7 @@
if(next instanceof AddQualifiersToBeanWizardPage)
((AddQualifiersToBeanWizardPage)next).init(bean);
setSelectedBean(bean);
+ page.setDeployedQualifiers(page.getDeployedQualifiers());
}else
setPageComplete(false);
}
Modified: trunk/cdi/plugins/org.jboss.tools.cdi.ui/src/org/jboss/tools/cdi/ui/wizard/xpl/AddQualifiersToBeanComposite.java
===================================================================
--- trunk/cdi/plugins/org.jboss.tools.cdi.ui/src/org/jboss/tools/cdi/ui/wizard/xpl/AddQualifiersToBeanComposite.java 2011-11-02 22:48:21 UTC (rev 36148)
+++ trunk/cdi/plugins/org.jboss.tools.cdi.ui/src/org/jboss/tools/cdi/ui/wizard/xpl/AddQualifiersToBeanComposite.java 2011-11-02 23:50:22 UTC (rev 36149)
@@ -20,6 +20,8 @@
import org.eclipse.core.resources.ResourcesPlugin;
import org.eclipse.core.runtime.IProgressMonitor;
+import org.eclipse.core.runtime.jobs.IJobChangeEvent;
+import org.eclipse.core.runtime.jobs.IJobChangeListener;
import org.eclipse.core.runtime.jobs.Job;
import org.eclipse.draw2d.ColorConstants;
import org.eclipse.jdt.core.Flags;
@@ -128,6 +130,8 @@
createControl();
if(bean != null)
init(bean);
+
+ page.setDeployedQualifiers(getDeployedQualifiers());
}
public void init(IBean bean){
@@ -447,6 +451,8 @@
monitor.beginTask(CDICoreMessages.CDI_UTIL_BUILD_CDI_MODEL, 10);
monitor.worked(3);
+ //waitForIdle(1000, 5000);
+ delay(1000);
try {
Job.getJobManager().join(ResourcesPlugin.FAMILY_AUTO_BUILD, null);
} catch (InterruptedException e) {
@@ -455,6 +461,45 @@
monitor.worked(7);
}
+
+// public void waitForIdle(long delay, long maxIdle) {
+// long start = System.currentTimeMillis();
+// while (!Job.getJobManager().isIdle()) {
+// delay(delay);
+// if ((System.currentTimeMillis() - start) > maxIdle) {
+// Job[] jobs = Job.getJobManager().find(null);
+// StringBuffer str = new StringBuffer();
+// for (Job job : jobs) {
+// if (job.getThread() != null) {
+// str.append("\n").append(job.getName()).append(" (")
+// .append(job.getClass()).append(")");
+// }
+// }
+// throw new RuntimeException(
+// "Long running tasks detected:" + str.toString()); //$NON-NLS-1$
+// }
+// }
+// }
+
+ public void delay(long waitTimeMillis) {
+ Display display = Display.getCurrent();
+ if (display != null) {
+ long endTimeMillis = System.currentTimeMillis() + waitTimeMillis;
+ while (System.currentTimeMillis() < endTimeMillis) {
+ if (!display.readAndDispatch())
+ display.sleep();
+ }
+ display.update();
+ }
+ // Otherwise, perform a simple sleep.
+ else {
+ try {
+ Thread.sleep(waitTimeMillis);
+ } catch (InterruptedException e) {
+ // Ignored.
+ }
+ }
+ }
});
}catch(InterruptedException ie){
CDICorePlugin.getDefault().logError(ie);
13 years, 1 month
JBoss Tools SVN: r36148 - in trunk/jbpm/docs/reference/en-US: images and 1 other directories.
by jbosstools-commits@lists.jboss.org
Author: irooskov(a)redhat.com
Date: 2011-11-02 18:48:21 -0400 (Wed, 02 Nov 2011)
New Revision: 36148
Added:
trunk/jbpm/docs/reference/en-US/images/troubleshooting/
trunk/jbpm/docs/reference/en-US/images/troubleshooting/troubleshooting_01.png
trunk/jbpm/docs/reference/en-US/troubleshooting.xml
Modified:
trunk/jbpm/docs/reference/en-US/Book_Info.xml
trunk/jbpm/docs/reference/en-US/jBPM_Tools_Reference_Guide.xml
Log:
updated for jBPM 3.3.0.M2 what's new
Modified: trunk/jbpm/docs/reference/en-US/Book_Info.xml
===================================================================
--- trunk/jbpm/docs/reference/en-US/Book_Info.xml 2011-11-02 22:21:04 UTC (rev 36147)
+++ trunk/jbpm/docs/reference/en-US/Book_Info.xml 2011-11-02 22:48:21 UTC (rev 36148)
@@ -5,9 +5,9 @@
<title>jBPM Tools Reference Guide</title>
<subtitle>Provides information relating to the jBPM Tools set.</subtitle>
<productname>JBoss Developer Studio</productname>
- <productnumber>4.1</productnumber>
- <edition>4.1.0</edition>
- <pubsnumber>3</pubsnumber>
+ <productnumber>5.0</productnumber>
+ <edition>5.0.0</edition>
+ <pubsnumber>1</pubsnumber>
<abstract>
<para>The jBPM Tools Reference Guide explains how to use the jBPM Tools to create process definitions and workflow processes.</para>
</abstract>
Added: trunk/jbpm/docs/reference/en-US/images/troubleshooting/troubleshooting_01.png
===================================================================
(Binary files differ)
Property changes on: trunk/jbpm/docs/reference/en-US/images/troubleshooting/troubleshooting_01.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Modified: trunk/jbpm/docs/reference/en-US/jBPM_Tools_Reference_Guide.xml
===================================================================
--- trunk/jbpm/docs/reference/en-US/jBPM_Tools_Reference_Guide.xml 2011-11-02 22:21:04 UTC (rev 36147)
+++ trunk/jbpm/docs/reference/en-US/jBPM_Tools_Reference_Guide.xml 2011-11-02 22:48:21 UTC (rev 36148)
@@ -13,6 +13,7 @@
<xi:include href="Quick_Howto_Guide.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include> -->
<xi:include href="tasks.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
<xi:include href="the_views.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
+<xi:include href="troubleshooting.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
<xi:include href="Feedback.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
<xi:include href="Revision_History.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
</book>
Added: trunk/jbpm/docs/reference/en-US/troubleshooting.xml
===================================================================
--- trunk/jbpm/docs/reference/en-US/troubleshooting.xml (rev 0)
+++ trunk/jbpm/docs/reference/en-US/troubleshooting.xml 2011-11-02 22:48:21 UTC (rev 36148)
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<chapter>
+ <title>Troubleshooting</title>
+ <section id="troubleshooting">
+ <title>Conditional transitions</title>
+ <para>
+ Conditional transitions are discouraged if they are leaving anything other than condition nodes. The property page for transitions will display a warning if such a circumstance occurs.
+ </para>
+ <figure>
+ <title>Conditional transitions - troubleshooting</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/troubleshooting/troubleshooting_01.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <para>
+ The warning can be suppressed by navigating to <menuchoice><guimenuitem>Window</guimenuitem><guimenuitem>Preferences</guimenuitem></menuchoice> and checking the checkbox <guilabel>Suppress warning on invalid transitions with conditions.</guilabel> on the Compatibility preference page.
+ </para>
+ </section>
+</chapter>
\ No newline at end of file
13 years, 1 month
JBoss Tools SVN: r36147 - trunk/build/aggregate/site.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2011-11-02 18:21:04 -0400 (Wed, 02 Nov 2011)
New Revision: 36147
Modified:
trunk/build/aggregate/site/index.html
trunk/build/aggregate/site/jbosstools-directory.xml
Log:
regen index and directory files
Modified: trunk/build/aggregate/site/index.html
===================================================================
--- trunk/build/aggregate/site/index.html 2011-11-02 22:20:57 UTC (rev 36146)
+++ trunk/build/aggregate/site/index.html 2011-11-02 22:21:04 UTC (rev 36147)
@@ -96,8 +96,8 @@
</th>
</tr>
<tr style="background-color:
							#EEEEEE
						">
- <td class="rowLine"><a href="features/org.jboss.ide.eclipse.archives.feature_3.2.1.v20111029-0912-H507-Beta1.jar" style="font-size:x-small">org.jboss.ide.eclipse.archives.feature</a></td>
- <td><span style="font-size:x-small">3.2.1.v20111029-0912-H507-Beta1</span></td>
+ <td class="rowLine"><a href="features/org.jboss.ide.eclipse.archives.feature_3.2.1.v20111102-0159-H512-Beta1.jar" style="font-size:x-small">org.jboss.ide.eclipse.archives.feature</a></td>
+ <td><span style="font-size:x-small">3.2.1.v20111102-0159-H512-Beta1</span></td>
<td><span style="font-size:x-small">
|
AbridgedTools</span><span style="font-size:x-small">
@@ -105,8 +105,8 @@
GeneralTools</span></td>
</tr>
<tr style="background-color:
							#FFFFFF
						">
- <td class="rowLine"><a href="features/org.jboss.ide.eclipse.as.feature_2.3.0.v20111031-1808-H814-Beta1.jar" style="font-size:x-small">org.jboss.ide.eclipse.as.feature</a></td>
- <td><span style="font-size:x-small">2.3.0.v20111031-1808-H814-Beta1</span></td>
+ <td class="rowLine"><a href="features/org.jboss.ide.eclipse.as.feature_2.3.0.v20111102-0219-H817-Beta1.jar" style="font-size:x-small">org.jboss.ide.eclipse.as.feature</a></td>
+ <td><span style="font-size:x-small">2.3.0.v20111102-0219-H817-Beta1</span></td>
<td><span style="font-size:x-small">
|
AbridgedTools</span><span style="font-size:x-small">
@@ -114,8 +114,8 @@
WebTools</span></td>
</tr>
<tr style="background-color:
							#EEEEEE
						">
- <td class="rowLine"><a href="features/org.jboss.ide.eclipse.freemarker.feature_1.2.0.v20111031-2006-H476-Beta1.jar" style="font-size:x-small">org.jboss.ide.eclipse.freemarker.feature</a></td>
- <td><span style="font-size:x-small">1.2.0.v20111031-2006-H476-Beta1</span></td>
+ <td class="rowLine"><a href="features/org.jboss.ide.eclipse.freemarker.feature_1.2.0.v20111102-0200-H479-Beta1.jar" style="font-size:x-small">org.jboss.ide.eclipse.freemarker.feature</a></td>
+ <td><span style="font-size:x-small">1.2.0.v20111102-0200-H479-Beta1</span></td>
<td><span style="font-size:x-small">
|
AbridgedTools</span><span style="font-size:x-small">
@@ -123,15 +123,15 @@
GeneralTools</span></td>
</tr>
<tr style="background-color:
							#FFFFFF
						">
- <td class="rowLine"><a href="features/org.jboss.tools.birt.feature_1.3.0.v20111101-0100-H509-Beta1.jar" style="font-size:x-small">org.jboss.tools.birt.feature</a></td>
- <td><span style="font-size:x-small">1.3.0.v20111101-0100-H509-Beta1</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.birt.feature_1.3.0.v20111102-0204-H512-Beta1.jar" style="font-size:x-small">org.jboss.tools.birt.feature</a></td>
+ <td><span style="font-size:x-small">1.3.0.v20111102-0204-H512-Beta1</span></td>
<td><span style="font-size:x-small">
|
ReportTools</span></td>
</tr>
<tr style="background-color:
							#EEEEEE
						">
- <td class="rowLine"><a href="features/org.jboss.tools.cdi.feature_1.2.0.v20111029-0958-H652-Beta1.jar" style="font-size:x-small">org.jboss.tools.cdi.feature</a></td>
- <td><span style="font-size:x-small">1.2.0.v20111029-0958-H652-Beta1</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.cdi.feature_1.2.0.v20111102-0240-H656-Beta1.jar" style="font-size:x-small">org.jboss.tools.cdi.feature</a></td>
+ <td><span style="font-size:x-small">1.2.0.v20111102-0240-H656-Beta1</span></td>
<td><span style="font-size:x-small">
|
AbridgedTools</span><span style="font-size:x-small">
@@ -141,8 +141,8 @@
GeneralTools</span></td>
</tr>
<tr style="background-color:
							#FFFFFF
						">
- <td class="rowLine"><a href="features/org.jboss.tools.cdi.seam.feature_1.2.0.v20111029-0958-H652-Beta1.jar" style="font-size:x-small">org.jboss.tools.cdi.seam.feature</a></td>
- <td><span style="font-size:x-small">1.2.0.v20111029-0958-H652-Beta1</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.cdi.seam.feature_1.2.0.v20111102-0240-H656-Beta1.jar" style="font-size:x-small">org.jboss.tools.cdi.seam.feature</a></td>
+ <td><span style="font-size:x-small">1.2.0.v20111102-0240-H656-Beta1</span></td>
<td><span style="font-size:x-small">
|
AbridgedTools</span><span style="font-size:x-small">
@@ -152,52 +152,52 @@
GeneralTools</span></td>
</tr>
<tr style="background-color:
							#EEEEEE
						">
- <td class="rowLine"><a href="features/org.jboss.tools.central.discovery.feature_1.0.0.v20111029-1920-H30-Beta1.jar" style="font-size:x-small">org.jboss.tools.central.discovery.feature</a></td>
- <td><span style="font-size:x-small">1.0.0.v20111029-1920-H30-Beta1</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.central.discovery.feature_1.0.0.v20111102-0711-H32-Beta1.jar" style="font-size:x-small">org.jboss.tools.central.discovery.feature</a></td>
+ <td><span style="font-size:x-small">1.0.0.v20111102-0711-H32-Beta1</span></td>
<td></td>
</tr>
<tr style="background-color:
							#FFFFFF
						">
- <td class="rowLine"><a href="features/org.jboss.tools.central.feature_1.0.0.v20111029-1920-H30-Beta1.jar" style="font-size:x-small">org.jboss.tools.central.feature</a></td>
- <td><span style="font-size:x-small">1.0.0.v20111029-1920-H30-Beta1</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.central.feature_1.0.0.v20111102-0711-H32-Beta1.jar" style="font-size:x-small">org.jboss.tools.central.feature</a></td>
+ <td><span style="font-size:x-small">1.0.0.v20111102-0711-H32-Beta1</span></td>
<td><span style="font-size:x-small">
|
AbridgedTools</span></td>
</tr>
<tr style="background-color:
							#EEEEEE
						">
- <td class="rowLine"><a href="features/org.jboss.tools.common.core.feature_3.3.0.v20111029-0844-H538-Beta1.jar" style="font-size:x-small">org.jboss.tools.common.core.feature</a></td>
- <td><span style="font-size:x-small">3.3.0.v20111029-0844-H538-Beta1</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.common.core.feature_3.3.0.v20111102-0137-H544-Beta1.jar" style="font-size:x-small">org.jboss.tools.common.core.feature</a></td>
+ <td><span style="font-size:x-small">3.3.0.v20111102-0137-H544-Beta1</span></td>
<td></td>
</tr>
<tr style="background-color:
							#FFFFFF
						">
- <td class="rowLine"><a href="features/org.jboss.tools.common.feature_3.3.0.v20111029-0844-H538-Beta1.jar" style="font-size:x-small">org.jboss.tools.common.feature</a></td>
- <td><span style="font-size:x-small">3.3.0.v20111029-0844-H538-Beta1</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.common.feature_3.3.0.v20111102-0137-H544-Beta1.jar" style="font-size:x-small">org.jboss.tools.common.feature</a></td>
+ <td><span style="font-size:x-small">3.3.0.v20111102-0137-H544-Beta1</span></td>
<td></td>
</tr>
<tr style="background-color:
							#EEEEEE
						">
- <td class="rowLine"><a href="features/org.jboss.tools.common.jdt.feature_3.3.0.v20111101-0200-H540-Beta1.jar" style="font-size:x-small">org.jboss.tools.common.jdt.feature</a></td>
- <td><span style="font-size:x-small">3.3.0.v20111101-0200-H540-Beta1</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.common.jdt.feature_3.3.0.v20111102-0137-H544-Beta1.jar" style="font-size:x-small">org.jboss.tools.common.jdt.feature</a></td>
+ <td><span style="font-size:x-small">3.3.0.v20111102-0137-H544-Beta1</span></td>
<td><span style="font-size:x-small">
|
AbridgedTools</span></td>
</tr>
<tr style="background-color:
							#FFFFFF
						">
- <td class="rowLine"><a href="features/org.jboss.tools.common.text.ext.feature_3.3.0.v20111029-0844-H538-Beta1.jar" style="font-size:x-small">org.jboss.tools.common.text.ext.feature</a></td>
- <td><span style="font-size:x-small">3.3.0.v20111029-0844-H538-Beta1</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.common.text.ext.feature_3.3.0.v20111102-0137-H544-Beta1.jar" style="font-size:x-small">org.jboss.tools.common.text.ext.feature</a></td>
+ <td><span style="font-size:x-small">3.3.0.v20111102-0137-H544-Beta1</span></td>
<td></td>
</tr>
<tr style="background-color:
							#EEEEEE
						">
- <td class="rowLine"><a href="features/org.jboss.tools.common.ui.feature_3.3.0.v20111029-0844-H538-Beta1.jar" style="font-size:x-small">org.jboss.tools.common.ui.feature</a></td>
- <td><span style="font-size:x-small">3.3.0.v20111029-0844-H538-Beta1</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.common.ui.feature_3.3.0.v20111102-0137-H544-Beta1.jar" style="font-size:x-small">org.jboss.tools.common.ui.feature</a></td>
+ <td><span style="font-size:x-small">3.3.0.v20111102-0137-H544-Beta1</span></td>
<td></td>
</tr>
<tr style="background-color:
							#FFFFFF
						">
- <td class="rowLine"><a href="features/org.jboss.tools.common.verification.feature_3.3.0.v20111029-0844-H538-Beta1.jar" style="font-size:x-small">org.jboss.tools.common.verification.feature</a></td>
- <td><span style="font-size:x-small">3.3.0.v20111029-0844-H538-Beta1</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.common.verification.feature_3.3.0.v20111102-0137-H544-Beta1.jar" style="font-size:x-small">org.jboss.tools.common.verification.feature</a></td>
+ <td><span style="font-size:x-small">3.3.0.v20111102-0137-H544-Beta1</span></td>
<td></td>
</tr>
<tr style="background-color:
							#EEEEEE
						">
- <td class="rowLine"><a href="features/org.jboss.tools.community.project.examples.feature_1.2.1.v20111029-1852-H457-Beta1.jar" style="font-size:x-small">org.jboss.tools.community.project.examples.feature</a></td>
- <td><span style="font-size:x-small">1.2.1.v20111029-1852-H457-Beta1</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.community.project.examples.feature_1.2.1.v20111102-0641-H459-Beta1.jar" style="font-size:x-small">org.jboss.tools.community.project.examples.feature</a></td>
+ <td><span style="font-size:x-small">1.2.1.v20111102-0641-H459-Beta1</span></td>
<td><span style="font-size:x-small">
|
AbridgedTools</span><span style="font-size:x-small">
@@ -205,29 +205,29 @@
GeneralTools</span></td>
</tr>
<tr style="background-color:
							#FFFFFF
						">
- <td class="rowLine"><a href="features/org.jboss.tools.deltacloud.feature_1.0.1.v20111031-1823-H721-Beta1.jar" style="font-size:x-small">org.jboss.tools.deltacloud.feature</a></td>
- <td><span style="font-size:x-small">1.0.1.v20111031-1823-H721-Beta1</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.deltacloud.feature_1.0.1.v20111102-0238-H724-Beta1.jar" style="font-size:x-small">org.jboss.tools.deltacloud.feature</a></td>
+ <td><span style="font-size:x-small">1.0.1.v20111102-0238-H724-Beta1</span></td>
<td><span style="font-size:x-small">
|
CloudTools</span></td>
</tr>
<tr style="background-color:
							#EEEEEE
						">
- <td class="rowLine"><a href="features/org.jboss.tools.forge.feature_1.0.0.v20111029-0912-H339-Beta1.jar" style="font-size:x-small">org.jboss.tools.forge.feature</a></td>
- <td><span style="font-size:x-small">1.0.0.v20111029-0912-H339-Beta1</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.forge.feature_1.0.0.v20111102-0158-H343-Beta1.jar" style="font-size:x-small">org.jboss.tools.forge.feature</a></td>
+ <td><span style="font-size:x-small">1.0.0.v20111102-0158-H343-Beta1</span></td>
<td><span style="font-size:x-small">
|
WebTools</span></td>
</tr>
<tr style="background-color:
							#FFFFFF
						">
- <td class="rowLine"><a href="features/org.jboss.tools.gwt.feature_1.0.2.v20111101-0030-H295-Beta1.jar" style="font-size:x-small">org.jboss.tools.gwt.feature</a></td>
- <td><span style="font-size:x-small">1.0.2.v20111101-0030-H295-Beta1</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.gwt.feature_1.0.2.v20111102-0200-H298-Beta1.jar" style="font-size:x-small">org.jboss.tools.gwt.feature</a></td>
+ <td><span style="font-size:x-small">1.0.2.v20111102-0200-H298-Beta1</span></td>
<td><span style="font-size:x-small">
|
GeneralTools</span></td>
</tr>
<tr style="background-color:
							#EEEEEE
						">
- <td class="rowLine"><a href="features/org.jboss.tools.jmx.feature_1.2.0.v20111029-0912-H472-Beta1.jar" style="font-size:x-small">org.jboss.tools.jmx.feature</a></td>
- <td><span style="font-size:x-small">1.2.0.v20111029-0912-H472-Beta1</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.jmx.feature_1.2.0.v20111102-0202-H476-Beta1.jar" style="font-size:x-small">org.jboss.tools.jmx.feature</a></td>
+ <td><span style="font-size:x-small">1.2.0.v20111102-0202-H476-Beta1</span></td>
<td><span style="font-size:x-small">
|
AbridgedTools</span><span style="font-size:x-small">
@@ -235,8 +235,8 @@
GeneralTools</span></td>
</tr>
<tr style="background-color:
							#FFFFFF
						">
- <td class="rowLine"><a href="features/org.jboss.tools.jsf.feature_3.3.0.v20111031-0554-H500-Beta1.jar" style="font-size:x-small">org.jboss.tools.jsf.feature</a></td>
- <td><span style="font-size:x-small">3.3.0.v20111031-0554-H500-Beta1</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.jsf.feature_3.3.0.v20111102-1328-H504-Beta1.jar" style="font-size:x-small">org.jboss.tools.jsf.feature</a></td>
+ <td><span style="font-size:x-small">3.3.0.v20111102-1328-H504-Beta1</span></td>
<td><span style="font-size:x-small">
|
AbridgedTools</span><span style="font-size:x-small">
@@ -244,8 +244,8 @@
WebTools</span></td>
</tr>
<tr style="background-color:
							#EEEEEE
						">
- <td class="rowLine"><a href="features/org.jboss.tools.jst.feature_3.3.0.v20111029-0925-H604-Beta1.jar" style="font-size:x-small">org.jboss.tools.jst.feature</a></td>
- <td><span style="font-size:x-small">3.3.0.v20111029-0925-H604-Beta1</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.jst.feature_3.3.0.v20111102-0204-H609-Beta1.jar" style="font-size:x-small">org.jboss.tools.jst.feature</a></td>
+ <td><span style="font-size:x-small">3.3.0.v20111102-0204-H609-Beta1</span></td>
<td><span style="font-size:x-small">
|
AbridgedTools</span><span style="font-size:x-small">
@@ -253,71 +253,71 @@
WebTools</span></td>
</tr>
<tr style="background-color:
							#FFFFFF
						">
- <td class="rowLine"><a href="features/org.jboss.tools.maven.cdi.feature_1.3.0.v20111029-1916-H458-Beta1.jar" style="font-size:x-small">org.jboss.tools.maven.cdi.feature</a></td>
- <td><span style="font-size:x-small">1.3.0.v20111029-1916-H458-Beta1</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.maven.cdi.feature_1.3.0.v20111101-1738-H459-Beta1.jar" style="font-size:x-small">org.jboss.tools.maven.cdi.feature</a></td>
+ <td><span style="font-size:x-small">1.3.0.v20111101-1738-H459-Beta1</span></td>
<td><span style="font-size:x-small">
|
MavenTools</span></td>
</tr>
<tr style="background-color:
							#EEEEEE
						">
- <td class="rowLine"><a href="features/org.jboss.tools.maven.feature_1.3.0.v20111029-1916-H458-Beta1.jar" style="font-size:x-small">org.jboss.tools.maven.feature</a></td>
- <td><span style="font-size:x-small">1.3.0.v20111029-1916-H458-Beta1</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.maven.feature_1.3.0.v20111101-1738-H459-Beta1.jar" style="font-size:x-small">org.jboss.tools.maven.feature</a></td>
+ <td><span style="font-size:x-small">1.3.0.v20111101-1738-H459-Beta1</span></td>
<td><span style="font-size:x-small">
|
MavenTools</span></td>
</tr>
<tr style="background-color:
							#FFFFFF
						">
- <td class="rowLine"><a href="features/org.jboss.tools.maven.hibernate.feature_1.3.0.v20111029-1916-H458-Beta1.jar" style="font-size:x-small">org.jboss.tools.maven.hibernate.feature</a></td>
- <td><span style="font-size:x-small">1.3.0.v20111029-1916-H458-Beta1</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.maven.hibernate.feature_1.3.0.v20111101-1738-H459-Beta1.jar" style="font-size:x-small">org.jboss.tools.maven.hibernate.feature</a></td>
+ <td><span style="font-size:x-small">1.3.0.v20111101-1738-H459-Beta1</span></td>
<td><span style="font-size:x-small">
|
MavenTools</span></td>
</tr>
<tr style="background-color:
							#EEEEEE
						">
- <td class="rowLine"><a href="features/org.jboss.tools.maven.jaxrs.feature_1.3.0.v20111029-1916-H458-Beta1.jar" style="font-size:x-small">org.jboss.tools.maven.jaxrs.feature</a></td>
- <td><span style="font-size:x-small">1.3.0.v20111029-1916-H458-Beta1</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.maven.jaxrs.feature_1.3.0.v20111101-1738-H459-Beta1.jar" style="font-size:x-small">org.jboss.tools.maven.jaxrs.feature</a></td>
+ <td><span style="font-size:x-small">1.3.0.v20111101-1738-H459-Beta1</span></td>
<td><span style="font-size:x-small">
|
MavenTools</span></td>
</tr>
<tr style="background-color:
							#FFFFFF
						">
- <td class="rowLine"><a href="features/org.jboss.tools.maven.jbosspackaging.feature_1.3.0.v20111029-1916-H458-Beta1.jar" style="font-size:x-small">org.jboss.tools.maven.jbosspackaging.feature</a></td>
- <td><span style="font-size:x-small">1.3.0.v20111029-1916-H458-Beta1</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.maven.jbosspackaging.feature_1.3.0.v20111101-1738-H459-Beta1.jar" style="font-size:x-small">org.jboss.tools.maven.jbosspackaging.feature</a></td>
+ <td><span style="font-size:x-small">1.3.0.v20111101-1738-H459-Beta1</span></td>
<td><span style="font-size:x-small">
|
MavenTools</span></td>
</tr>
<tr style="background-color:
							#EEEEEE
						">
- <td class="rowLine"><a href="features/org.jboss.tools.maven.jsf.feature_1.3.0.v20111029-1916-H458-Beta1.jar" style="font-size:x-small">org.jboss.tools.maven.jsf.feature</a></td>
- <td><span style="font-size:x-small">1.3.0.v20111029-1916-H458-Beta1</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.maven.jsf.feature_1.3.0.v20111101-1738-H459-Beta1.jar" style="font-size:x-small">org.jboss.tools.maven.jsf.feature</a></td>
+ <td><span style="font-size:x-small">1.3.0.v20111101-1738-H459-Beta1</span></td>
<td><span style="font-size:x-small">
|
MavenTools</span></td>
</tr>
<tr style="background-color:
							#FFFFFF
						">
- <td class="rowLine"><a href="features/org.jboss.tools.maven.portlet.feature_1.3.0.v20111029-1916-H458-Beta1.jar" style="font-size:x-small">org.jboss.tools.maven.portlet.feature</a></td>
- <td><span style="font-size:x-small">1.3.0.v20111029-1916-H458-Beta1</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.maven.portlet.feature_1.3.0.v20111101-1738-H459-Beta1.jar" style="font-size:x-small">org.jboss.tools.maven.portlet.feature</a></td>
+ <td><span style="font-size:x-small">1.3.0.v20111101-1738-H459-Beta1</span></td>
<td><span style="font-size:x-small">
|
MavenTools</span></td>
</tr>
<tr style="background-color:
							#EEEEEE
						">
- <td class="rowLine"><a href="features/org.jboss.tools.maven.project.examples.feature_1.3.0.v20111029-1916-H458-Beta1.jar" style="font-size:x-small">org.jboss.tools.maven.project.examples.feature</a></td>
- <td><span style="font-size:x-small">1.3.0.v20111029-1916-H458-Beta1</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.maven.project.examples.feature_1.3.0.v20111101-1738-H459-Beta1.jar" style="font-size:x-small">org.jboss.tools.maven.project.examples.feature</a></td>
+ <td><span style="font-size:x-small">1.3.0.v20111101-1738-H459-Beta1</span></td>
<td><span style="font-size:x-small">
|
MavenTools</span></td>
</tr>
<tr style="background-color:
							#FFFFFF
						">
- <td class="rowLine"><a href="features/org.jboss.tools.maven.seam.feature_1.3.0.v20111029-1916-H458-Beta1.jar" style="font-size:x-small">org.jboss.tools.maven.seam.feature</a></td>
- <td><span style="font-size:x-small">1.3.0.v20111029-1916-H458-Beta1</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.maven.seam.feature_1.3.0.v20111101-1738-H459-Beta1.jar" style="font-size:x-small">org.jboss.tools.maven.seam.feature</a></td>
+ <td><span style="font-size:x-small">1.3.0.v20111101-1738-H459-Beta1</span></td>
<td><span style="font-size:x-small">
|
MavenTools</span></td>
</tr>
<tr style="background-color:
							#EEEEEE
						">
- <td class="rowLine"><a href="features/org.jboss.tools.openshift.egit.integration.feature_2.3.0.v20111031-1932-H16-Beta1.jar" style="font-size:x-small">org.jboss.tools.openshift.egit.integration.feature</a></td>
- <td><span style="font-size:x-small">2.3.0.v20111031-1932-H16-Beta1</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.openshift.egit.integration.feature_2.3.0.v20111102-0241-H19-Beta1.jar" style="font-size:x-small">org.jboss.tools.openshift.egit.integration.feature</a></td>
+ <td><span style="font-size:x-small">2.3.0.v20111102-0241-H19-Beta1</span></td>
<td><span style="font-size:x-small">
|
AbridgedTools</span><span style="font-size:x-small">
@@ -325,8 +325,8 @@
CloudTools</span></td>
</tr>
<tr style="background-color:
							#FFFFFF
						">
- <td class="rowLine"><a href="features/org.jboss.tools.openshift.express.feature_2.3.0.v20111031-1932-H16-Beta1.jar" style="font-size:x-small">org.jboss.tools.openshift.express.feature</a></td>
- <td><span style="font-size:x-small">2.3.0.v20111031-1932-H16-Beta1</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.openshift.express.feature_2.3.0.v20111102-0241-H19-Beta1.jar" style="font-size:x-small">org.jboss.tools.openshift.express.feature</a></td>
+ <td><span style="font-size:x-small">2.3.0.v20111102-0241-H19-Beta1</span></td>
<td><span style="font-size:x-small">
|
AbridgedTools</span><span style="font-size:x-small">
@@ -334,8 +334,8 @@
CloudTools</span></td>
</tr>
<tr style="background-color:
							#EEEEEE
						">
- <td class="rowLine"><a href="features/org.jboss.tools.portlet.feature_1.2.0.v20111029-1842-H397-Beta1.jar" style="font-size:x-small">org.jboss.tools.portlet.feature</a></td>
- <td><span style="font-size:x-small">1.2.0.v20111029-1842-H397-Beta1</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.portlet.feature_1.2.0.v20111102-0628-H399-Beta1.jar" style="font-size:x-small">org.jboss.tools.portlet.feature</a></td>
+ <td><span style="font-size:x-small">1.2.0.v20111102-0628-H399-Beta1</span></td>
<td><span style="font-size:x-small">
|
AbridgedTools</span><span style="font-size:x-small">
@@ -343,8 +343,8 @@
WebTools</span></td>
</tr>
<tr style="background-color:
							#FFFFFF
						">
- <td class="rowLine"><a href="features/org.jboss.tools.project.examples.feature_1.2.1.v20111029-1852-H457-Beta1.jar" style="font-size:x-small">org.jboss.tools.project.examples.feature</a></td>
- <td><span style="font-size:x-small">1.2.1.v20111029-1852-H457-Beta1</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.project.examples.feature_1.2.1.v20111102-0641-H459-Beta1.jar" style="font-size:x-small">org.jboss.tools.project.examples.feature</a></td>
+ <td><span style="font-size:x-small">1.2.1.v20111102-0641-H459-Beta1</span></td>
<td><span style="font-size:x-small">
|
AbridgedTools</span><span style="font-size:x-small">
@@ -352,8 +352,8 @@
GeneralTools</span></td>
</tr>
<tr style="background-color:
							#EEEEEE
						">
- <td class="rowLine"><a href="features/org.jboss.tools.richfaces.feature_3.3.0.v20111031-0554-H500-Beta1.jar" style="font-size:x-small">org.jboss.tools.richfaces.feature</a></td>
- <td><span style="font-size:x-small">3.3.0.v20111031-0554-H500-Beta1</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.richfaces.feature_3.3.0.v20111102-1328-H504-Beta1.jar" style="font-size:x-small">org.jboss.tools.richfaces.feature</a></td>
+ <td><span style="font-size:x-small">3.3.0.v20111102-1328-H504-Beta1</span></td>
<td><span style="font-size:x-small">
|
AbridgedTools</span><span style="font-size:x-small">
@@ -361,36 +361,36 @@
WebTools</span></td>
</tr>
<tr style="background-color:
							#FFFFFF
						">
- <td class="rowLine"><a href="features/org.jboss.tools.runtime.as.detector.feature_1.3.0.v20111029-1910-H464-Beta1.jar" style="font-size:x-small">org.jboss.tools.runtime.as.detector.feature</a></td>
- <td><span style="font-size:x-small">1.3.0.v20111029-1910-H464-Beta1</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.runtime.as.detector.feature_1.3.0.v20111102-0659-H466-Beta1.jar" style="font-size:x-small">org.jboss.tools.runtime.as.detector.feature</a></td>
+ <td><span style="font-size:x-small">1.3.0.v20111102-0659-H466-Beta1</span></td>
<td><span style="font-size:x-small">
|
AbridgedTools</span></td>
</tr>
<tr style="background-color:
							#EEEEEE
						">
- <td class="rowLine"><a href="features/org.jboss.tools.runtime.core.feature_1.3.0.v20111029-1910-H464-Beta1.jar" style="font-size:x-small">org.jboss.tools.runtime.core.feature</a></td>
- <td><span style="font-size:x-small">1.3.0.v20111029-1910-H464-Beta1</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.runtime.core.feature_1.3.0.v20111102-0659-H466-Beta1.jar" style="font-size:x-small">org.jboss.tools.runtime.core.feature</a></td>
+ <td><span style="font-size:x-small">1.3.0.v20111102-0659-H466-Beta1</span></td>
<td><span style="font-size:x-small">
|
AbridgedTools</span></td>
</tr>
<tr style="background-color:
							#FFFFFF
						">
- <td class="rowLine"><a href="features/org.jboss.tools.runtime.feature_1.3.0.v20111029-1910-H464-Beta1.jar" style="font-size:x-small">org.jboss.tools.runtime.feature</a></td>
- <td><span style="font-size:x-small">1.3.0.v20111029-1910-H464-Beta1</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.runtime.feature_1.3.0.v20111102-0659-H466-Beta1.jar" style="font-size:x-small">org.jboss.tools.runtime.feature</a></td>
+ <td><span style="font-size:x-small">1.3.0.v20111102-0659-H466-Beta1</span></td>
<td><span style="font-size:x-small">
|
AbridgedTools</span></td>
</tr>
<tr style="background-color:
							#EEEEEE
						">
- <td class="rowLine"><a href="features/org.jboss.tools.runtime.seam.detector.feature_1.3.0.v20111029-1910-H464-Beta1.jar" style="font-size:x-small">org.jboss.tools.runtime.seam.detector.feature</a></td>
- <td><span style="font-size:x-small">1.3.0.v20111029-1910-H464-Beta1</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.runtime.seam.detector.feature_1.3.0.v20111102-0659-H466-Beta1.jar" style="font-size:x-small">org.jboss.tools.runtime.seam.detector.feature</a></td>
+ <td><span style="font-size:x-small">1.3.0.v20111102-0659-H466-Beta1</span></td>
<td><span style="font-size:x-small">
|
AbridgedTools</span></td>
</tr>
<tr style="background-color:
							#FFFFFF
						">
- <td class="rowLine"><a href="features/org.jboss.tools.seam.feature_3.3.0.v20111031-0650-H643-Beta1.jar" style="font-size:x-small">org.jboss.tools.seam.feature</a></td>
- <td><span style="font-size:x-small">3.3.0.v20111031-0650-H643-Beta1</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.seam.feature_3.3.0.v20111102-1541-H647-Beta1.jar" style="font-size:x-small">org.jboss.tools.seam.feature</a></td>
+ <td><span style="font-size:x-small">3.3.0.v20111102-1541-H647-Beta1</span></td>
<td><span style="font-size:x-small">
|
AbridgedTools</span><span style="font-size:x-small">
@@ -398,8 +398,8 @@
WebTools</span></td>
</tr>
<tr style="background-color:
							#EEEEEE
						">
- <td class="rowLine"><a href="features/org.jboss.tools.struts.feature_3.3.0.v20111029-1557-H411-Beta1.jar" style="font-size:x-small">org.jboss.tools.struts.feature</a></td>
- <td><span style="font-size:x-small">3.3.0.v20111029-1557-H411-Beta1</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.struts.feature_3.3.0.v20111102-1249-H415-Beta1.jar" style="font-size:x-small">org.jboss.tools.struts.feature</a></td>
+ <td><span style="font-size:x-small">3.3.0.v20111102-1249-H415-Beta1</span></td>
<td><span style="font-size:x-small">
|
AbridgedTools</span><span style="font-size:x-small">
@@ -407,15 +407,15 @@
WebTools</span></td>
</tr>
<tr style="background-color:
							#FFFFFF
						">
- <td class="rowLine"><a href="features/org.jboss.tools.usage.feature_1.1.0.v20111031-1957-H438-Beta1.jar" style="font-size:x-small">org.jboss.tools.usage.feature</a></td>
- <td><span style="font-size:x-small">1.1.0.v20111031-1957-H438-Beta1</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.usage.feature_1.1.0.v20111102-0151-H441-Beta1.jar" style="font-size:x-small">org.jboss.tools.usage.feature</a></td>
+ <td><span style="font-size:x-small">1.1.0.v20111102-0151-H441-Beta1</span></td>
<td><span style="font-size:x-small">
|
AbridgedTools</span></td>
</tr>
<tr style="background-color:
							#EEEEEE
						">
- <td class="rowLine"><a href="features/org.jboss.tools.vpe.feature_3.3.0.v20111029-0234-H577-Beta1.jar" style="font-size:x-small">org.jboss.tools.vpe.feature</a></td>
- <td><span style="font-size:x-small">3.3.0.v20111029-0234-H577-Beta1</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.vpe.feature_3.3.0.v20111102-1054-H583-Beta1.jar" style="font-size:x-small">org.jboss.tools.vpe.feature</a></td>
+ <td><span style="font-size:x-small">3.3.0.v20111102-1054-H583-Beta1</span></td>
<td><span style="font-size:x-small">
|
AbridgedTools</span><span style="font-size:x-small">
@@ -423,8 +423,8 @@
WebTools</span></td>
</tr>
<tr style="background-color:
							#FFFFFF
						">
- <td class="rowLine"><a href="features/org.jboss.tools.ws.feature_1.2.2.v20111029-0232-H591-Beta1.jar" style="font-size:x-small">org.jboss.tools.ws.feature</a></td>
- <td><span style="font-size:x-small">1.2.2.v20111029-0232-H591-Beta1</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.ws.feature_1.2.2.v20111102-0802-H596-Beta1.jar" style="font-size:x-small">org.jboss.tools.ws.feature</a></td>
+ <td><span style="font-size:x-small">1.2.2.v20111102-0802-H596-Beta1</span></td>
<td><span style="font-size:x-small">
|
AbridgedTools</span><span style="font-size:x-small">
@@ -432,8 +432,8 @@
WebTools</span></td>
</tr>
<tr style="background-color:
							#EEEEEE
						">
- <td class="rowLine"><a href="features/org.jboss.tools.ws.jaxrs.feature_1.2.2.v20111029-0232-H591-Beta1.jar" style="font-size:x-small">org.jboss.tools.ws.jaxrs.feature</a></td>
- <td><span style="font-size:x-small">1.2.2.v20111029-0232-H591-Beta1</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.ws.jaxrs.feature_1.2.2.v20111102-0802-H596-Beta1.jar" style="font-size:x-small">org.jboss.tools.ws.jaxrs.feature</a></td>
+ <td><span style="font-size:x-small">1.2.2.v20111102-0802-H596-Beta1</span></td>
<td><span style="font-size:x-small">
|
AbridgedTools</span><span style="font-size:x-small">
@@ -441,8 +441,8 @@
WebTools</span></td>
</tr>
<tr style="background-color:
							#FFFFFF
						">
- <td class="rowLine"><a href="features/org.jboss.tools.xulrunner.feature_3.3.0.v20111031-1858-H579-Beta1.jar" style="font-size:x-small">org.jboss.tools.xulrunner.feature</a></td>
- <td><span style="font-size:x-small">3.3.0.v20111031-1858-H579-Beta1</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.xulrunner.feature_3.3.0.v20111102-1054-H583-Beta1.jar" style="font-size:x-small">org.jboss.tools.xulrunner.feature</a></td>
+ <td><span style="font-size:x-small">3.3.0.v20111102-1054-H583-Beta1</span></td>
<td></td>
</tr>
<tr style="background-color:#DDDDDD">
@@ -454,8 +454,8 @@
</th>
</tr>
<tr style="background-color:
							#EEEEEE
						">
- <td class="rowLine"><a href="features/org.hibernate.eclipse.feature_3.4.0.v20111031-1930-H540-Beta1.jar" style="font-size:x-small">org.hibernate.eclipse.feature</a></td>
- <td><span style="font-size:x-small">3.4.0.v20111031-1930-H540-Beta1</span></td>
+ <td class="rowLine"><a href="features/org.hibernate.eclipse.feature_3.4.0.v20111102-0214-H543-Beta1.jar" style="font-size:x-small">org.hibernate.eclipse.feature</a></td>
+ <td><span style="font-size:x-small">3.4.0.v20111102-0214-H543-Beta1</span></td>
<td><span style="font-size:x-small">
|
AbridgedTools</span><span style="font-size:x-small">
Modified: trunk/build/aggregate/site/jbosstools-directory.xml
===================================================================
--- trunk/build/aggregate/site/jbosstools-directory.xml 2011-11-02 22:20:57 UTC (rev 36146)
+++ trunk/build/aggregate/site/jbosstools-directory.xml 2011-11-02 22:21:04 UTC (rev 36147)
@@ -1,4 +1,4 @@
<?xml version='1.0' encoding='UTF-8'?>
<directory xmlns="http://www.eclipse.org/mylyn/discovery/directory/">
-<entry url="plugins/org.jboss.tools.central.discovery_1.0.0.v20111029-1920-H30-Beta1.jar" permitCategories="true"/>
+<entry url="plugins/org.jboss.tools.central.discovery_1.0.0.v20111102-0711-H32-Beta1.jar" permitCategories="true"/>
</directory>
13 years, 1 month
JBoss Tools SVN: r36146 - trunk/build/aggregate/site.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2011-11-02 18:20:57 -0400 (Wed, 02 Nov 2011)
New Revision: 36146
Modified:
trunk/build/aggregate/site/build.xml
Log:
less unzip/zip, more targets
Modified: trunk/build/aggregate/site/build.xml
===================================================================
--- trunk/build/aggregate/site/build.xml 2011-11-02 22:20:50 UTC (rev 36145)
+++ trunk/build/aggregate/site/build.xml 2011-11-02 22:20:57 UTC (rev 36146)
@@ -31,7 +31,7 @@
<property name="aggregateSite.properties" value="aggregateSite.jbosstools.properties" />
<property file="${aggregateSite.properties}" />
- <property name="web.content.files" value="index.html, **/*.css, README*, *directory.xml"/>
+ <property name="web.content.files" value="index.html, **/*.css, README*, *directory.xml" />
<target name="init">
<ant antfile="${build.xml}" target="init" />
@@ -45,7 +45,7 @@
<antcall target="get.saxon" />
</target>
- <target name="custom.build" description="aggregate update site extras" depends="init,check.target,add.associate.sites,add.web.content,pack.zip,collect.zips,collect.metadata,create.summary.file" />
+ <target name="custom.build" description="aggregate update site extras" depends="init,check.target,unpack.content.jar,add.associate.sites,add.web.content,pack.content.jar,pack.zip,collect.zips,collect.metadata,create.summary.file" />
<target name="get.saxon" unless="saxon.jar.exists">
<!-- or use http://downloads.sourceforge.net/saxon/saxonhe9-3-0-4j.zip ? -->
@@ -351,13 +351,6 @@
</not>
</and>
<then>
- <if>
- <available file="${update.site.source.dir}/content.jar" type="file" />
- <then>
- <unzip src="${update.site.source.dir}/content.jar" dest="${update.site.source.dir}" />
- <delete file="${update.site.source.dir}/content.jar" />
- </then>
- </if>
<!-- counter variable -->
<var name="associate.sites.0" value="" />
<for param="associate.site" list="${associate.sites}" delimiter=",
@@ -390,13 +383,26 @@
</echo>
<copy file="${update.site.source.dir}/content.xml" tofile="${update.site.source.dir}/content.old.xml" overwrite="true" />
<xslt style="remove-uncategorized.xsl" in="${update.site.source.dir}/content.old.xml" out="${update.site.source.dir}/content.xml" />
- <zip destfile="${update.site.source.dir}/content.jar" basedir="${update.site.source.dir}" includes="content.xml" />
- <delete file="${update.site.source.dir}/content.xml" />
- <delete file="${update.site.source.dir}/content.old.xml" />
</then>
</if>
</target>
+ <target name="unpack.content.jar">
+ <if>
+ <available file="${update.site.source.dir}/content.jar" type="file" />
+ <then>
+ <unzip src="${update.site.source.dir}/content.jar" dest="${update.site.source.dir}" />
+ <delete file="${update.site.source.dir}/content.jar" />
+ </then>
+ </if>
+ </target>
+
+ <target name="pack.content.jar">
+ <zip destfile="${update.site.source.dir}/content.jar" basedir="${update.site.source.dir}" includes="content.xml" />
+ <delete file="${update.site.source.dir}/content.xml" />
+ <delete file="${update.site.source.dir}/content.old.xml" />
+ </target>
+
<target name="unpack.zip">
<unzip src="${output.dir}/target/site_assembly.zip" dest="${update.site.source.dir}" />
</target>
@@ -479,12 +485,12 @@
<!-- get filename matching org.jboss.tools.central.discovery_1.0.0.v20111013-0511-M4.jar, then generate replacement directory.xml file -->
<path id="central.discovery.jar.id">
- <fileset dir="${update.site.source.dir}/plugins">
- <include name="org.jboss.tools.central.discovery_*.jar"/>
- </fileset>
+ <fileset dir="${update.site.source.dir}/plugins">
+ <include name="org.jboss.tools.central.discovery_*.jar" />
+ </fileset>
</path>
- <property name="central.discovery.path" refid="central.discovery.jar.id"/>
- <basename property="central.discovery.jar" file="${central.discovery.path}"/>
+ <property name="central.discovery.path" refid="central.discovery.jar.id" />
+ <basename property="central.discovery.jar" file="${central.discovery.path}" />
<echo file="${output.dir}/jbosstools-directory.xml"><?xml version='1.0' encoding='UTF-8'?>
<directory xmlns="http://www.eclipse.org/mylyn/discovery/directory/">
<entry url="plugins/${central.discovery.jar}" permitCategories="true"/>
@@ -593,7 +599,7 @@
<target name="collect.metadata" description="collect svn revision info + other metadata (JOB_NAME, BUILD_ID, BUILD_NUMBER, WORKSPACE, HUDSON_SLAVE), zip file names+sizes+md5sums">
<property name="aggregate.zips.dir" value="${output.dir}/zips" />
- <mkdir dir="${aggregate.zips.dir}"/>
+ <mkdir dir="${aggregate.zips.dir}" />
<!-- load file properties (name, size, md5sum) -->
<if>
<available file="${aggregate.zips.dir}/build.properties.file.txt" type="file" />
13 years, 1 month
JBoss Tools SVN: r36145 - trunk/requirements/soap.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2011-11-02 18:20:50 -0400 (Wed, 02 Nov 2011)
New Revision: 36145
Modified:
trunk/requirements/soap/build.properties
Log:
add soa-p-5.2.0.ER6.zip to requirements/soap/
Modified: trunk/requirements/soap/build.properties
===================================================================
--- trunk/requirements/soap/build.properties 2011-11-02 21:59:03 UTC (rev 36144)
+++ trunk/requirements/soap/build.properties 2011-11-02 22:20:50 UTC (rev 36145)
@@ -18,3 +18,10 @@
soap51.build.archive.md5=f3cb81c4c7493a6255620d15233a5671
soap51.build.archive.root=jboss-soa-p.5.1.0
+# http://jawa05.englab.brq.redhat.com/candidate/soa-5.2.0.ER6/soa-p-5.2.0.E...
+soap52.build.uri=http://jawa05.englab.brq.redhat.com/candidate/soa-5.2.0.ER6/
+soap52.build.name=soa-p-5.2.0.ER6
+soap52.build.archive=${soap51.build.name}.zip
+soap52.build.archive.md5=abc110a6e71c0c93713a350dacfcec46
+soap52.build.archive.root=jboss-soa-p.5.2.0
+
13 years, 1 month