JBoss Tools SVN: r25122 - trunk/build.
by jbosstools-commits@lists.jboss.org
Author: akazakov
Date: 2010-09-23 08:04:13 -0400 (Thu, 23 Sep 2010)
New Revision: 25122
Modified:
trunk/build/pom.xml
Log:
Fixed seam-bootstrap build.
Modified: trunk/build/pom.xml
===================================================================
--- trunk/build/pom.xml 2010-09-23 09:47:23 UTC (rev 25121)
+++ trunk/build/pom.xml 2010-09-23 12:04:13 UTC (rev 25122)
@@ -413,6 +413,8 @@
<id>seam-bootstrap</id>
<modules>
<module>../tests</module>
+ <module>../jmx</module>
+ <module>../archives</module>
<module>../as</module>
<module>../hibernatetools</module>
<module>../common</module>
15 years, 7 months
JBoss Tools SVN: r25121 - trunk/jst/plugins/org.jboss.tools.jst.web.kb/src/org/jboss/tools/jst/web/kb/internal/validation.
by jbosstools-commits@lists.jboss.org
Author: akazakov
Date: 2010-09-23 05:47:23 -0400 (Thu, 23 Sep 2010)
New Revision: 25121
Modified:
trunk/jst/plugins/org.jboss.tools.jst.web.kb/src/org/jboss/tools/jst/web/kb/internal/validation/ValidationErrorManager.java
Log:
JBIDE-7021
https://jira.jboss.org/browse/JBIDE-7021
Modified: trunk/jst/plugins/org.jboss.tools.jst.web.kb/src/org/jboss/tools/jst/web/kb/internal/validation/ValidationErrorManager.java
===================================================================
--- trunk/jst/plugins/org.jboss.tools.jst.web.kb/src/org/jboss/tools/jst/web/kb/internal/validation/ValidationErrorManager.java 2010-09-23 09:43:17 UTC (rev 25120)
+++ trunk/jst/plugins/org.jboss.tools.jst.web.kb/src/org/jboss/tools/jst/web/kb/internal/validation/ValidationErrorManager.java 2010-09-23 09:47:23 UTC (rev 25121)
@@ -217,7 +217,7 @@
* @param markerOwner
* @return
*/
- public static IMarker addError(String message, int severity, String[] messageArguments, int length, int offset, IResource target, TextFileDocumentProvider documentProvider, String markerId, Class markerOwner) {
+ public static IMarker addError(String message, int severity, Object[] messageArguments, int length, int offset, IResource target, TextFileDocumentProvider documentProvider, String markerId, Class markerOwner) {
IMarker marker = null;
int lineNumber = 1;
try {
15 years, 7 months
JBoss Tools SVN: r25120 - branches/jbosstools-3.2.0.Beta1/jst/plugins/org.jboss.tools.jst.web.kb/src/org/jboss/tools/jst/web/kb/internal/validation.
by jbosstools-commits@lists.jboss.org
Author: akazakov
Date: 2010-09-23 05:43:17 -0400 (Thu, 23 Sep 2010)
New Revision: 25120
Modified:
branches/jbosstools-3.2.0.Beta1/jst/plugins/org.jboss.tools.jst.web.kb/src/org/jboss/tools/jst/web/kb/internal/validation/ValidationErrorManager.java
Log:
JBIDE-7021
https://jira.jboss.org/browse/JBIDE-7021
Modified: branches/jbosstools-3.2.0.Beta1/jst/plugins/org.jboss.tools.jst.web.kb/src/org/jboss/tools/jst/web/kb/internal/validation/ValidationErrorManager.java
===================================================================
--- branches/jbosstools-3.2.0.Beta1/jst/plugins/org.jboss.tools.jst.web.kb/src/org/jboss/tools/jst/web/kb/internal/validation/ValidationErrorManager.java 2010-09-23 09:21:42 UTC (rev 25119)
+++ branches/jbosstools-3.2.0.Beta1/jst/plugins/org.jboss.tools.jst.web.kb/src/org/jboss/tools/jst/web/kb/internal/validation/ValidationErrorManager.java 2010-09-23 09:43:17 UTC (rev 25120)
@@ -217,7 +217,7 @@
* @param markerOwner
* @return
*/
- public static IMarker addError(String message, int severity, String[] messageArguments, int length, int offset, IResource target, TextFileDocumentProvider documentProvider, String markerId, Class markerOwner) {
+ public static IMarker addError(String message, int severity, Object[] messageArguments, int length, int offset, IResource target, TextFileDocumentProvider documentProvider, String markerId, Class markerOwner) {
IMarker marker = null;
int lineNumber = 1;
try {
@@ -228,8 +228,8 @@
lineNumber = doc.getLineOfOffset(offset) + 1;
}
}
-// marker = addTask(markerOwner.getName().intern(), target, lineNumber, MessageFormat.format(message, messageArguments),
-// severity, null, markerId, offset, length);
+ marker = addTask(markerOwner.getName().intern(), target, lineNumber, MessageFormat.format(message, messageArguments),
+ severity, null, markerId, offset, length);
} catch (BadLocationException e) {
WebKbPlugin.getDefault().logError(
NLS.bind(KbMessages.EXCEPTION_DURING_CREATING_MARKER, target.getFullPath()), e);
15 years, 7 months
JBoss Tools SVN: r25119 - trunk/jst/plugins/org.jboss.tools.jst.web.kb/src/org/jboss/tools/jst/web/kb/internal/validation.
by jbosstools-commits@lists.jboss.org
Author: akazakov
Date: 2010-09-23 05:21:42 -0400 (Thu, 23 Sep 2010)
New Revision: 25119
Modified:
trunk/jst/plugins/org.jboss.tools.jst.web.kb/src/org/jboss/tools/jst/web/kb/internal/validation/ValidationErrorManager.java
Log:
JBIDE-7021
https://jira.jboss.org/browse/JBIDE-7021
Modified: trunk/jst/plugins/org.jboss.tools.jst.web.kb/src/org/jboss/tools/jst/web/kb/internal/validation/ValidationErrorManager.java
===================================================================
--- trunk/jst/plugins/org.jboss.tools.jst.web.kb/src/org/jboss/tools/jst/web/kb/internal/validation/ValidationErrorManager.java 2010-09-23 02:28:18 UTC (rev 25118)
+++ trunk/jst/plugins/org.jboss.tools.jst.web.kb/src/org/jboss/tools/jst/web/kb/internal/validation/ValidationErrorManager.java 2010-09-23 09:21:42 UTC (rev 25119)
@@ -228,8 +228,8 @@
lineNumber = doc.getLineOfOffset(offset) + 1;
}
}
-// marker = addTask(markerOwner.getName().intern(), target, lineNumber, MessageFormat.format(message, messageArguments),
-// severity, null, markerId, offset, length);
+ marker = addTask(markerOwner.getName().intern(), target, lineNumber, MessageFormat.format(message, messageArguments),
+ severity, null, markerId, offset, length);
} catch (BadLocationException e) {
WebKbPlugin.getDefault().logError(
NLS.bind(KbMessages.EXCEPTION_DURING_CREATING_MARKER, target.getFullPath()), e);
15 years, 7 months
JBoss Tools SVN: r25118 - trunk/as/docs/reference/en-US.
by jbosstools-commits@lists.jboss.org
Author: irooskov(a)redhat.com
Date: 2010-09-22 22:28:18 -0400 (Wed, 22 Sep 2010)
New Revision: 25118
Modified:
trunk/as/docs/reference/en-US/Revision_History.xml
Log:
updated for publican
Modified: trunk/as/docs/reference/en-US/Revision_History.xml
===================================================================
--- trunk/as/docs/reference/en-US/Revision_History.xml 2010-09-23 02:11:14 UTC (rev 25117)
+++ trunk/as/docs/reference/en-US/Revision_History.xml 2010-09-23 02:28:18 UTC (rev 25118)
@@ -1,4 +1,4 @@
<?xml version='1.0' encoding='utf-8' ?>
<!DOCTYPE Book PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
]>
-<appendix><title>Revision History</title><simpara><revhistory><revision><revnumber>1</revnumber><date>Wed Jun 09 2010</date><author><firstname>JBoss Tools</firstname><surname>Documentation Team</surname></author><revdescription><simplelist><member>General updates</member></simplelist></revdescription></revision><revision><revnumber>0</revnumber><date>Fri Nov 20 2009</date><author><firstname>Isaac</firstname><surname>Rooskov</surname><email>irooskov(a)redhat.com</email></author><revdescription><simplelist><member>Initial creation of book by publican</member></simplelist></revdescription></revision></revhistory></simpara></appendix>
+<appendix><title>Revision History</title><simpara><revhistory><revision><revnumber>1</revnumber><date>Wed Jun 09 2010</date><author><firstname>JBoss Tools</firstname><surname>Documentation Team</surname><email></email></author><revdescription><simplelist><member>General updates</member></simplelist></revdescription></revision><revision><revnumber>0</revnumber><date>Fri Nov 20 2009</date><author><firstname>Isaac</firstname><surname>Rooskov</surname><email>irooskov(a)redhat.com</email></author><revdescription><simplelist><member>Initial creation of book by publican</member></simplelist></revdescription></revision></revhistory></simpara></appendix>
15 years, 7 months
JBoss Tools SVN: r25117 - trunk/as/docs/reference/en-US.
by jbosstools-commits@lists.jboss.org
Author: irooskov(a)redhat.com
Date: 2010-09-22 22:11:14 -0400 (Wed, 22 Sep 2010)
New Revision: 25117
Modified:
trunk/as/docs/reference/en-US/Book_Info.xml
Log:
updated book info for next jbds release
Modified: trunk/as/docs/reference/en-US/Book_Info.xml
===================================================================
--- trunk/as/docs/reference/en-US/Book_Info.xml 2010-09-23 01:12:33 UTC (rev 25116)
+++ trunk/as/docs/reference/en-US/Book_Info.xml 2010-09-23 02:11:14 UTC (rev 25117)
@@ -1,4 +1,4 @@
<?xml version='1.0' encoding='utf-8' ?>
<!DOCTYPE Book PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
]>
-<bookinfo><title>JBoss Server Manager Reference Guide</title><subtitle>Provides information relating to the JBoss Server Manager.</subtitle><productname>JBoss Developer Studio</productname><productnumber>3.0</productnumber><edition>3.0.1</edition><pubsnumber>0</pubsnumber><abstract><para>The JBoss Server Manager Reference Guide explains how to use the JBoss Server Manager to configure, start, stop the server, to know deployment and archiving processes.</para></abstract><corpauthor><inlinemediaobject><imageobject><imagedata fileref="Common_Content/images/title_logo.svg" format="SVG"></imagedata></imageobject></inlinemediaobject></corpauthor><xi:include href="Common_Content/Legal_Notice.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include><xi:include href="Author_Group.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include></bookinfo>
+<bookinfo><title>JBoss Server Manager Reference Guide</title><subtitle>Provides information relating to the JBoss Server Manager.</subtitle><productname>JBoss Developer Studio</productname><productnumber>4.0</productnumber><edition>4.0.0</edition><pubsnumber>0</pubsnumber><abstract><para>The JBoss Server Manager Reference Guide explains how to use the JBoss Server Manager to configure, start, stop the server, to know deployment and archiving processes.</para></abstract><corpauthor><inlinemediaobject><imageobject><imagedata fileref="Common_Content/images/title_logo.svg" format="SVG"></imagedata></imageobject></inlinemediaobject></corpauthor><xi:include href="Common_Content/Legal_Notice.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include><xi:include href="Author_Group.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include></bookinfo>
15 years, 7 months
JBoss Tools SVN: r25116 - trunk/as/docs/reference/en-US.
by jbosstools-commits@lists.jboss.org
Author: irooskov(a)redhat.com
Date: 2010-09-22 21:12:33 -0400 (Wed, 22 Sep 2010)
New Revision: 25116
Modified:
trunk/as/docs/reference/en-US/runtimes_servers.xml
Log:
updated with new documentation for TOOLSDOC-111
Modified: trunk/as/docs/reference/en-US/runtimes_servers.xml
===================================================================
--- trunk/as/docs/reference/en-US/runtimes_servers.xml 2010-09-23 00:55:35 UTC (rev 25115)
+++ trunk/as/docs/reference/en-US/runtimes_servers.xml 2010-09-23 01:12:33 UTC (rev 25116)
@@ -37,61 +37,6 @@
configuration to use.</para>
</listitem>
</itemizedlist>
-
- <section id="Detecting_a_new_runtime">
- <title>Detecting a new runtime</title>
- <para>
- JBoss Tools features the ability to search, detect and add existing JBoss server runtimes installed on your system. If you don't have an existing runtime <xref linkend="InstNewRuntime"/> will guide you through the creation process. To begin searching for your existing JBoss runtime navigate to <menuchoice><guimenuitem>Window</guimenuitem><guimenuitem>Preferences</guimenuitem><guimenuitem>JBoss Tools</guimenuitem><guimenuitem>JBoss Runtimes</guimenuitem></menuchoice>.
- </para>
- <figure>
- <title>Preference page for JBoss Runtimes</title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/runtimes_servers/runtimes_servers-detecting_new_runtime_1.png"/>
- </imageobject>
- </mediaobject>
- </figure>
- <para>
- The JBoss Runtimes preference page allows you to perform three different actions: <guibutton>Search</guibutton> for a JBoss runtime installation, <guibutton>Export</guibutton> a JBoss runtime configuration and <guibutton>Import</guibutton> the configuration of a JBoss runtime.
- </para>
- <para>
- The <guibutton>Search</guibutton> button opens a file system browser window. Select a directory where you wish JBoss Tools to begin recursively searching for JBoss runtimes and upon completion it will return all those found. From the returned list, choose the runtimes you wish to make available to your JBoss Tools instance by clicking the box beside each runtime and clicking the <guibutton>OK</guibutton> button.
- </para>
- <figure>
- <title>JBoss Runtime search results</title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/runtimes_servers/runtimes_servers-detecting_new_runtime_2.png"/>
- </imageobject>
- </mediaobject>
- </figure>
- <para>
- The <guibutton>Export</guibutton> button opens the <guilabel>Export Preferences</guilabel> dialog. The <guilabel>Export all</guilabel> box will automatically be selected, however you can choose to only export specific preference settings (such as only those related to your JBoss runtime) by selecting individual entries from the displayed list.
- </para>
- <figure>
- <title>JBoss Runtime search results</title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/runtimes_servers/runtimes_servers-export_runtime_1.png"/>
- </imageobject>
- </mediaobject>
- </figure>
- <para>
- To export the preference settings you must specify a preference file that the information will be written to. This file, once exported, can be used to reapply your settings by clicking on the <guilabel>Import</guilabel> button.
- </para>
- <para>
- The <guibutton>Import</guibutton> button opens the <guilabel>Import Preferences</guilabel> dialog. The <guilabel>Import all</guilabel> box will automatically be selected, however you can choose to only import specific preference settings (such as only those related to your JBoss runtime) by selecting individual entries from the list that displays after using the <guibutton>Browse</guibutton> button to select your exported preference file (for example: preference_file.epf).
- </para>
- <figure>
- <title>JBoss Runtime search results</title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/runtimes_servers/runtimes_servers-import_runtime_1.png"/>
- </imageobject>
- </mediaobject>
- </figure>
- </section>
-
<section id="InstNewRuntime">
<title>Installing a new runtime</title>
<para>You can install runtimes into eclipse from the <emphasis>
@@ -254,8 +199,72 @@
,make sure that necessary configuration is chosen,click <emphasis><property>Finish</property> </emphasis> and then <emphasis><property>Save</property></emphasis> button.</para>
</note>
</section>
+ <section id="Detecting_an_existing_runtime">
+ <title>Detecting an existing runtime</title>
+ <para>
+ JBoss Tools features the ability to search, detect and add existing JBoss server runtimes installed on your system. If you don't have an existing runtime <xref linkend="InstNewRuntime"/> will guide you through the creation process. To begin searching for your existing JBoss runtime navigate to <menuchoice>
+ <guimenuitem>Window</guimenuitem>
+ <guimenuitem>Preferences</guimenuitem>
+ <guimenuitem>JBoss Tools</guimenuitem>
+ <guimenuitem>JBoss Runtimes</guimenuitem>
+ </menuchoice>.
+ </para>
+ <figure>
+ <title>Preference page for JBoss Runtimes</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/runtimes_servers/runtimes_servers-detecting_new_runtime_1.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <para>
+ The JBoss Runtimes preference page allows you to perform three different actions: <guibutton>Search</guibutton> for a JBoss runtime installation, <guibutton>Export</guibutton> a JBoss runtime configuration and <guibutton>Import</guibutton> the configuration of a JBoss runtime.
+ </para>
+ <para>
+ The <guibutton>Search</guibutton> button opens a file system browser window. Select a directory where you wish JBoss Tools to begin recursively searching for JBoss runtimes and upon completion it will return all those found. From the returned list, choose the runtimes you wish to make available to your JBoss Tools instance by clicking the box beside each runtime and clicking the <guibutton>OK</guibutton> button.
+ </para>
+ <figure>
+ <title>JBoss Runtime search results</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/runtimes_servers/runtimes_servers-detecting_new_runtime_2.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ </section>
+ <section id="Exporting_and_Importing_runtime_preferences">
+ <title>Exporting and Importing runtime preferences</title>
+ <para>
+ The <guimenuitem>JBoss Runtimes</guimenuitem> <guilabel>Preferences</guilabel> interface seen in <xref linkend="Detecting_an_existing_runtime"/> also allows you to export and import your runtime preferences. You can navigate to the page through <menuchoice><guimenuitem>Window</guimenuitem><guimenuitem>Preferences</guimenuitem><guimenuitem>JBoss Tools</guimenuitem><guimenuitem>JBoss Runtimes</guimenuitem></menuchoice>.
+ </para>
+ <para>
+ The <guibutton>Export</guibutton> button opens the <guilabel>Export Preferences</guilabel> dialog. The <guilabel>Export all</guilabel> box will automatically be selected, however you can choose to only export specific preference settings (such as only those related to your JBoss runtime) by selecting individual entries from the displayed list.
+ </para>
+ <figure>
+ <title>Export Preferences dialog</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/runtimes_servers/runtimes_servers-export_runtime_1.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <para>
+ To export the preference settings you must specify a preference file that the information will be written to. This file, once exported, can be used to reapply your settings by clicking on the <guilabel>Import</guilabel> button.
+ </para>
+ <para>
+ The <guibutton>Import</guibutton> button opens the <guilabel>Import Preferences</guilabel> dialog. The <guilabel>Import all</guilabel> box will automatically be selected, however you can choose to only import specific preference settings (such as only those related to your JBoss runtime) by selecting individual entries from the list that displays after using the <guibutton>Browse</guibutton> button to select your exported preference file (for example: preference_file.epf).
+ </para>
+ <figure>
+ <title>Import Preferences dialog</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/runtimes_servers/runtimes_servers-import_runtime_1.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ </section>
<section id="CopyRuntime">
- <title>Copying the existing runtime configuration</title>
+ <title>Duplicating a runtime configuration</title>
<para>While installing a new runtime you can copy the configuration from the existing one.
To do this you should perform all the steps in the <link linkend="InstNewRuntime">previous</link> section except pressing <emphasis>
<property>Finish</property></emphasis>
15 years, 7 months
JBoss Tools SVN: r25115 - trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/modules.
by jbosstools-commits@lists.jboss.org
Author: rob.stryker(a)jboss.com
Date: 2010-09-22 20:55:35 -0400 (Wed, 22 Sep 2010)
New Revision: 25115
Modified:
trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/modules/SingleDeployableFactory.java
Log:
JBIDE-7146 - fixed
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/modules/SingleDeployableFactory.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/modules/SingleDeployableFactory.java 2010-09-23 00:08:41 UTC (rev 25114)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/modules/SingleDeployableFactory.java 2010-09-23 00:55:35 UTC (rev 25115)
@@ -97,7 +97,7 @@
public static boolean makeDeployable(IPath workspaceRelative) {
boolean ret = getFactory().addModule(workspaceRelative);
- getFactory().saveDeployableList();
+ getFactory().saveDeployableList(workspaceRelative.segment(0));
return ret;
}
@@ -107,7 +107,7 @@
public static void unmakeDeployable(IPath workspaceRelative) {
getFactory().removeModule(workspaceRelative);
- getFactory().saveDeployableList();
+ getFactory().saveDeployableList(workspaceRelative.segment(0));
}
public static IModule findModule(IResource resource) {
@@ -166,6 +166,11 @@
}
}
+ /**
+ * Saves the deployable list for ALL files.
+ * Should not be used
+ * @deprecated
+ */
public void saveDeployableList() {
HashMap<String, String> map = new HashMap<String, String>();
IProject[] allProjects = ResourcesPlugin.getWorkspace().getRoot().getProjects();
@@ -193,6 +198,29 @@
}
}
}
+
+ public void saveDeployableList(String projectName) {
+ IProject project = ResourcesPlugin.getWorkspace().getRoot().getProject(projectName);
+ String list = ""; //$NON-NLS-1$
+ Set<IPath> allPaths = moduleIdToModule.keySet();
+ Iterator<IPath> j = allPaths.iterator();
+ IPath tmp;
+ while(j.hasNext()) {
+ tmp = j.next();
+ list += tmp.removeFirstSegments(1).makeRelative() + "\n"; //$NON-NLS-1$
+ }
+
+ String qualifier = JBossServerCorePlugin.getDefault().getDescriptor().getUniqueIdentifier();
+ IScopeContext context = new ProjectScope(project);
+ IEclipsePreferences node = context.getNode(qualifier);
+ if (node != null)
+ node.put(PREFERENCE_KEY, list);
+ try {
+ node.flush();
+ } catch (BackingStoreException e) {
+ // TODO Log
+ }
+ }
/* This is not called but keeping it around for now just in case */
public void legacySaveDeployableList() {
15 years, 7 months
JBoss Tools SVN: r25114 - branches/jbosstools-3.2.0.Beta1.
by jbosstools-commits@lists.jboss.org
Author: dgolovin
Date: 2010-09-22 20:08:41 -0400 (Wed, 22 Sep 2010)
New Revision: 25114
Added:
branches/jbosstools-3.2.0.Beta1/archives/
branches/jbosstools-3.2.0.Beta1/as/
branches/jbosstools-3.2.0.Beta1/birt/
branches/jbosstools-3.2.0.Beta1/bootstrap-pom.xml
branches/jbosstools-3.2.0.Beta1/bpel/
branches/jbosstools-3.2.0.Beta1/bpmn/
branches/jbosstools-3.2.0.Beta1/build.xml
branches/jbosstools-3.2.0.Beta1/build/
branches/jbosstools-3.2.0.Beta1/cdi/
branches/jbosstools-3.2.0.Beta1/common/
branches/jbosstools-3.2.0.Beta1/deltacloud/
branches/jbosstools-3.2.0.Beta1/documentation/
branches/jbosstools-3.2.0.Beta1/download.jboss.org/
branches/jbosstools-3.2.0.Beta1/drools/
branches/jbosstools-3.2.0.Beta1/esb/
branches/jbosstools-3.2.0.Beta1/examples/
branches/jbosstools-3.2.0.Beta1/flow/
branches/jbosstools-3.2.0.Beta1/freemarker/
branches/jbosstools-3.2.0.Beta1/gwt/
branches/jbosstools-3.2.0.Beta1/hibernatetools/
branches/jbosstools-3.2.0.Beta1/jbpm/
branches/jbosstools-3.2.0.Beta1/jmx/
branches/jbosstools-3.2.0.Beta1/jsf/
branches/jbosstools-3.2.0.Beta1/jst/
branches/jbosstools-3.2.0.Beta1/labs/
branches/jbosstools-3.2.0.Beta1/maven/
branches/jbosstools-3.2.0.Beta1/modeshape/
branches/jbosstools-3.2.0.Beta1/pom.xml
branches/jbosstools-3.2.0.Beta1/portlet/
branches/jbosstools-3.2.0.Beta1/profiler/
branches/jbosstools-3.2.0.Beta1/requirements/
branches/jbosstools-3.2.0.Beta1/runtime/
branches/jbosstools-3.2.0.Beta1/seam/
branches/jbosstools-3.2.0.Beta1/site/
branches/jbosstools-3.2.0.Beta1/smooks/
branches/jbosstools-3.2.0.Beta1/struts/
branches/jbosstools-3.2.0.Beta1/tests/
branches/jbosstools-3.2.0.Beta1/thirdparty/
branches/jbosstools-3.2.0.Beta1/tptp/
branches/jbosstools-3.2.0.Beta1/usage/
branches/jbosstools-3.2.0.Beta1/vpe/
branches/jbosstools-3.2.0.Beta1/workingset/
branches/jbosstools-3.2.0.Beta1/ws/
branches/jbosstools-3.2.0.Beta1/xulrunner/
Log:
Branch for JBossTools 3.2.0.Beta1 release
Copied: branches/jbosstools-3.2.0.Beta1/archives (from rev 25113, trunk/archives)
Copied: branches/jbosstools-3.2.0.Beta1/as (from rev 25113, trunk/as)
Copied: branches/jbosstools-3.2.0.Beta1/birt (from rev 25113, trunk/birt)
Copied: branches/jbosstools-3.2.0.Beta1/bootstrap-pom.xml (from rev 25113, trunk/bootstrap-pom.xml)
===================================================================
--- branches/jbosstools-3.2.0.Beta1/bootstrap-pom.xml (rev 0)
+++ branches/jbosstools-3.2.0.Beta1/bootstrap-pom.xml 2010-09-23 00:08:41 UTC (rev 25114)
@@ -0,0 +1,30 @@
+<project
+xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.jboss.tools</groupId>
+ <artifactId>bootstrap</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ <packaging>pom</packaging>
+ <scm>
+ <connection>scm:svn:https://anonsvn.jboss.org/repos/jbosstools/trunk</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/jbosstools/trunk</developerConnection>
+ <url>https://anonsvn.jboss.org/repos/jbosstools/trunk</url>
+ </scm>
+ <properties>
+
+ </properties>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-scm-plugin</artifactId>
+ <version>1.3</version>
+ <configuration>
+ <checkoutDirectory>${basedir}/sources</checkoutDirectory>
+ <goals>clean,install</goals>
+ <profiles>helios-no-target</profiles>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+</project>
Copied: branches/jbosstools-3.2.0.Beta1/bpel (from rev 25113, trunk/bpel)
Copied: branches/jbosstools-3.2.0.Beta1/bpmn (from rev 25113, trunk/bpmn)
Copied: branches/jbosstools-3.2.0.Beta1/build (from rev 25113, trunk/build)
Copied: branches/jbosstools-3.2.0.Beta1/build.xml (from rev 25113, trunk/build.xml)
===================================================================
--- branches/jbosstools-3.2.0.Beta1/build.xml (rev 0)
+++ branches/jbosstools-3.2.0.Beta1/build.xml 2010-09-23 00:08:41 UTC (rev 25114)
@@ -0,0 +1,17 @@
+<project default="run" basedir="." name="jbosstools build.xml">
+
+<!--
+ This script is provided here for convenience if building entire tree already on disk.
+ Generally, you would this instead to self-bootstrap the process:
+
+ svn co http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/build/
+ cd build
+ ant
+
+ See build/build.xml for usage details, commandline flag overrides, etc.
+ See also genpom.xml for how to generate missing pom.xml files.
+-->
+ <target name="run">
+ <ant antfile="build/build.xml" inheritall="true" inheritrefs="true" />
+ </target>
+</project>
Copied: branches/jbosstools-3.2.0.Beta1/cdi (from rev 25113, trunk/cdi)
Copied: branches/jbosstools-3.2.0.Beta1/common (from rev 25113, trunk/common)
Copied: branches/jbosstools-3.2.0.Beta1/deltacloud (from rev 25113, trunk/deltacloud)
Copied: branches/jbosstools-3.2.0.Beta1/documentation (from rev 25113, trunk/documentation)
Copied: branches/jbosstools-3.2.0.Beta1/download.jboss.org (from rev 25113, trunk/download.jboss.org)
Copied: branches/jbosstools-3.2.0.Beta1/drools (from rev 25113, trunk/drools)
Copied: branches/jbosstools-3.2.0.Beta1/esb (from rev 25113, trunk/esb)
Copied: branches/jbosstools-3.2.0.Beta1/examples (from rev 25113, trunk/examples)
Copied: branches/jbosstools-3.2.0.Beta1/flow (from rev 25113, trunk/flow)
Copied: branches/jbosstools-3.2.0.Beta1/freemarker (from rev 25113, trunk/freemarker)
Copied: branches/jbosstools-3.2.0.Beta1/gwt (from rev 25113, trunk/gwt)
Copied: branches/jbosstools-3.2.0.Beta1/hibernatetools (from rev 25113, trunk/hibernatetools)
Copied: branches/jbosstools-3.2.0.Beta1/jbpm (from rev 25113, trunk/jbpm)
Copied: branches/jbosstools-3.2.0.Beta1/jmx (from rev 25113, trunk/jmx)
Copied: branches/jbosstools-3.2.0.Beta1/jsf (from rev 25113, trunk/jsf)
Copied: branches/jbosstools-3.2.0.Beta1/jst (from rev 25113, trunk/jst)
Copied: branches/jbosstools-3.2.0.Beta1/labs (from rev 25113, trunk/labs)
Copied: branches/jbosstools-3.2.0.Beta1/maven (from rev 25113, trunk/maven)
Copied: branches/jbosstools-3.2.0.Beta1/modeshape (from rev 25113, trunk/modeshape)
Copied: branches/jbosstools-3.2.0.Beta1/pom.xml (from rev 25113, trunk/pom.xml)
===================================================================
--- branches/jbosstools-3.2.0.Beta1/pom.xml (rev 0)
+++ branches/jbosstools-3.2.0.Beta1/pom.xml 2010-09-23 00:08:41 UTC (rev 25114)
@@ -0,0 +1,72 @@
+<project
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
+ xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.jboss</groupId>
+ <artifactId>jbosstools</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ <packaging>pom</packaging>
+ <modules>
+ <module>build/parent</module>
+ <module>build/libs</module>
+
+ <!-- this order is important! make sure you've run genpom.xml first! -->
+ <!-- dgolovin's order -->
+ <module>tests</module>
+ <module>freemarker</module>
+ <module>jmx</module>
+ <module>archives</module>
+ <module>as</module>
+ <module>common</module>
+ <module>jst</module>
+ <!-- Built as external Hudson job, http://hudson.qa.jboss.com/hudson/view/DevStudio_Tycho/job/xulrunner-1.9.2/,
+ so not needed here <module>xulrunner</module> -->
+ <module>vpe</module>
+ <module>jsf</module>
+
+ <module>hibernatetools</module>
+ <module>portlet</module>
+ <module>workingset</module>
+
+ <module>struts</module>
+
+ <module>profiler</module>
+ <module>smooks</module>
+ <module>cdi</module>
+ <module>birt</module>
+ <module>bpel</module>
+ <module>esb</module>
+ <module>seam</module>
+ <module>examples</module>
+ <module>maven</module>
+ <module>tptp</module>
+ <module>ws</module>
+ <module>modeshape</module>
+ <module>flow</module>
+ <module>jbpm</module>
+ <module>gwt</module>
+ <module>deltacloud</module>
+ <!-- NOTE: To build drools, must first bootstrap with ant script: cd drools;
+ ant -q -->
+ <!-- IF YOU REMOVE A MODULE, be sure to also remove it from site/site.xml
+ and build/aggregate/site/site.xml or the build will break! -->
+ <!-- module>drools</module -->
+ <module>runtime</module>
+ <module>usage</module>
+ <module>site</module>
+ </modules>
+ <profiles>
+ <profile>
+ <id>emma-coverage</id>
+ <activation>
+ <property>
+ <name>coverage</name>
+ </property>
+ </activation>
+ <modules>
+ <module>build/reports/emma-coverage</module>
+ </modules>
+ </profile>
+ </profiles>
+</project>
+
Copied: branches/jbosstools-3.2.0.Beta1/portlet (from rev 25113, trunk/portlet)
Copied: branches/jbosstools-3.2.0.Beta1/profiler (from rev 25113, trunk/profiler)
Copied: branches/jbosstools-3.2.0.Beta1/requirements (from rev 25113, trunk/requirements)
Copied: branches/jbosstools-3.2.0.Beta1/runtime (from rev 25113, trunk/runtime)
Copied: branches/jbosstools-3.2.0.Beta1/seam (from rev 25113, trunk/seam)
Copied: branches/jbosstools-3.2.0.Beta1/site (from rev 25113, trunk/site)
Copied: branches/jbosstools-3.2.0.Beta1/smooks (from rev 25113, trunk/smooks)
Copied: branches/jbosstools-3.2.0.Beta1/struts (from rev 25113, trunk/struts)
Copied: branches/jbosstools-3.2.0.Beta1/tests (from rev 25113, trunk/tests)
Copied: branches/jbosstools-3.2.0.Beta1/thirdparty (from rev 25113, trunk/thirdparty)
Copied: branches/jbosstools-3.2.0.Beta1/tptp (from rev 25113, trunk/tptp)
Copied: branches/jbosstools-3.2.0.Beta1/usage (from rev 25113, trunk/usage)
Copied: branches/jbosstools-3.2.0.Beta1/vpe (from rev 25113, trunk/vpe)
Copied: branches/jbosstools-3.2.0.Beta1/workingset (from rev 25113, trunk/workingset)
Copied: branches/jbosstools-3.2.0.Beta1/ws (from rev 25113, trunk/ws)
Copied: branches/jbosstools-3.2.0.Beta1/xulrunner (from rev 25113, trunk/xulrunner)
15 years, 7 months
JBoss Tools SVN: r25113 - branches.
by jbosstools-commits@lists.jboss.org
Author: dgolovin
Date: 2010-09-22 20:05:28 -0400 (Wed, 22 Sep 2010)
New Revision: 25113
Added:
branches/jbosstools-3.2.0.Beta1/
Log:
java.wsdl dependency lower version is changed to 1.6.2
15 years, 7 months