JBoss Tools SVN: r24447 - workspace/snjeza/resteasy-examples.
by jbosstools-commits@lists.jboss.org
Author: bfitzpat
Date: 2010-08-25 15:05:23 -0400 (Wed, 25 Aug 2010)
New Revision: 24447
Modified:
workspace/snjeza/resteasy-examples/resteasySimple.zip
Log:
OPEN - issue JBDS-1295: RESTEasySimpleProjectExampleinJBDS3 no longer working, appears plugins and other code may have changed
https://jira.jboss.org/browse/JBDS-1295
Modified: workspace/snjeza/resteasy-examples/resteasySimple.zip
===================================================================
(Binary files differ)
15 years, 4 months
JBoss Tools SVN: r24446 - branches/jbosstools-3.2.0.M2/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/launch.
by jbosstools-commits@lists.jboss.org
Author: dgolovin
Date: 2010-08-25 14:53:28 -0400 (Wed, 25 Aug 2010)
New Revision: 24446
Modified:
branches/jbosstools-3.2.0.M2/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/launch/CodeGenXMLFactory.java
Log:
https://jira.jboss.org/browse/JBIDE-6722 Code Generation -> Generic Exporter -> NPE
fix for NPE in code generation, I guess it expects some exporter properties to be defined for each code generation, but they actually don't. I've added check for nulls and that should fix NPE issues but some logical issues might still be here
Modified: branches/jbosstools-3.2.0.M2/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/launch/CodeGenXMLFactory.java
===================================================================
--- branches/jbosstools-3.2.0.M2/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/launch/CodeGenXMLFactory.java 2010-08-25 18:51:56 UTC (rev 24445)
+++ branches/jbosstools-3.2.0.M2/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/launch/CodeGenXMLFactory.java 2010-08-25 18:53:28 UTC (rev 24446)
@@ -321,8 +321,10 @@
Map<String, AttributeDescription> attributesDescrGui = exportersDescr.get(expName);
// construct new mapping: name -> AttributeDescription
Map<String, AttributeDescription> attributesDescrAnt = new TreeMap<String, AttributeDescription>();
- for (AttributeDescription ad : attributesDescrGui.values()) {
- attributesDescrAnt.put(ad.name, ad);
+ if(attributesDescrGui!=null) {
+ for (AttributeDescription ad : attributesDescrGui.values()) {
+ attributesDescrAnt.put(ad.name, ad);
+ }
}
//
Element exporter = hibernatetool.addElement(expName);
15 years, 4 months
JBoss Tools SVN: r24445 - trunk/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/launch.
by jbosstools-commits@lists.jboss.org
Author: dgolovin
Date: 2010-08-25 14:51:56 -0400 (Wed, 25 Aug 2010)
New Revision: 24445
Modified:
trunk/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/launch/CodeGenXMLFactory.java
Log:
https://jira.jboss.org/browse/JBIDE-6722 Code Generation -> Generic Exporter -> NPE
fix for NPE in code generation, I guess it expects some exporter properties to be defined for each code generation, but they actually don't. I've added check for nulls and that should fix NPE issues but some logical issues might still be here
Modified: trunk/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/launch/CodeGenXMLFactory.java
===================================================================
--- trunk/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/launch/CodeGenXMLFactory.java 2010-08-25 18:31:32 UTC (rev 24444)
+++ trunk/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/launch/CodeGenXMLFactory.java 2010-08-25 18:51:56 UTC (rev 24445)
@@ -321,8 +321,10 @@
Map<String, AttributeDescription> attributesDescrGui = exportersDescr.get(expName);
// construct new mapping: name -> AttributeDescription
Map<String, AttributeDescription> attributesDescrAnt = new TreeMap<String, AttributeDescription>();
- for (AttributeDescription ad : attributesDescrGui.values()) {
- attributesDescrAnt.put(ad.name, ad);
+ if(attributesDescrGui!=null) {
+ for (AttributeDescription ad : attributesDescrGui.values()) {
+ attributesDescrAnt.put(ad.name, ad);
+ }
}
//
Element exporter = hibernatetool.addElement(expName);
15 years, 4 months
JBoss Tools SVN: r24444 - trunk/documentation/whatsnew/drools.
by jbosstools-commits@lists.jboss.org
Author: bfitzpat
Date: 2010-08-25 14:31:32 -0400 (Wed, 25 Aug 2010)
New Revision: 24444
Modified:
trunk/documentation/whatsnew/drools/guvnor-tools-news-5.1.0.M2.html
Log:
Just updated the grammar a bit for this what's new
Modified: trunk/documentation/whatsnew/drools/guvnor-tools-news-5.1.0.M2.html
===================================================================
--- trunk/documentation/whatsnew/drools/guvnor-tools-news-5.1.0.M2.html 2010-08-25 18:25:20 UTC (rev 24443)
+++ trunk/documentation/whatsnew/drools/guvnor-tools-news-5.1.0.M2.html 2010-08-25 18:31:32 UTC (rev 24444)
@@ -26,7 +26,7 @@
<tr>
<td valign="top" align="right"><a name="itemname3" id="itemname3"></a><b>Support Updating Repository Connection</b></td>
<td valign="top">
- <p>Guvnor tool provides a new wizard for updating a exist Guvnor repository connection. On the wizard, the repository location can be changed and security info as well. </p>
+ <p>Guvnor tools now provides a wizard for updating an existing Guvnor repository connection. In the wizard, the repository location and security information can be changed.</p>
<p><img src=images/edit_connection.gif></p>
<p><img src=images/edit_connection_wizard.gif></p>
@@ -55,14 +55,8 @@
<tr>
<td valign="top" align="right"><a name="itemname3" id="itemname3"></a><b>Add Resource from Non-Navigator View</b></td>
<td valign="top">
- <p>For previous Guvnor tools version, all Guvnor tools related actions are only visible on Navigator view, so resources can only be added to Guvnor repository from navigator view. it is available for non-navigator view now. </p>
-
-<p></p>
-<p></p>
-
-
+ <p>In previous Guvnor tools versions, Guvnor tools-related actions were only visible in the Navigator view, so resources could only be added to the Guvnor repository from there. Now you can also add resources from other navigator views such as the Package Explorer.</p>
<p><small><a href="https://jira.jboss.org/browse/JBIDE-6459">Related jira</a></p>
-
</td>
</tr>
15 years, 4 months
JBoss Tools SVN: r24443 - in trunk/documentation/whatsnew/ws: images and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: bfitzpat
Date: 2010-08-25 14:25:20 -0400 (Wed, 25 Aug 2010)
New Revision: 24443
Added:
trunk/documentation/whatsnew/ws/images/sample_restful_ws_wizard.jpg
trunk/documentation/whatsnew/ws/images/ws_tester_m2_facelift.jpg
Modified:
trunk/documentation/whatsnew/ws/ws-news-1.2.0.M2.html
Log:
OPEN - issue JBIDE-6899: WS Component N&N
https://jira.jboss.org/browse/JBIDE-6899
Added: trunk/documentation/whatsnew/ws/images/sample_restful_ws_wizard.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/whatsnew/ws/images/sample_restful_ws_wizard.jpg
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/documentation/whatsnew/ws/images/ws_tester_m2_facelift.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/whatsnew/ws/images/ws_tester_m2_facelift.jpg
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Modified: trunk/documentation/whatsnew/ws/ws-news-1.2.0.M2.html
===================================================================
--- trunk/documentation/whatsnew/ws/ws-news-1.2.0.M2.html 2010-08-25 17:33:28 UTC (rev 24442)
+++ trunk/documentation/whatsnew/ws/ws-news-1.2.0.M2.html 2010-08-25 18:25:20 UTC (rev 24443)
@@ -9,24 +9,30 @@
<title>WS Tools 3.2.0 M2 What's New</title>
</head>
<body>
-<h1>WS Tools 3.2.0 M1 What's New</h1>
+<h1>WS tools 3.2.0 M2 What's New</h1>
-<p align="right"><a href="../index.html">< Main Index</a> <a href="../deltacloud/deltacloud-news-1.0.0.M2.html">Deltacloud Development Tools ></a></p>
+<p align="right"><a href="../index.html">< Main Index</a></p>
<table border="0" cellpadding="10" cellspacing="0" width="80%">
<tr>
<td colspan="2">
<hr/>
- <h3>TBD: Category name</h3>
+ <h3>Views</h3>
<hr/>
</td>
</tr>
<tr>
- <td valign="top" align="right"><a name="itemname3" id="itemname3"></a><b>TBD: Feature name</b></td>
+ <td valign="top" align="right"><a name="itemname3" id="itemname3"></a><b>Web Service Tester Updates</b></td>
<td valign="top">
- TBD: Description
+ <p>In M1, we added a new Web Service Tester view to JBoss Tools. Since then, the tester has gone through a facelift. The look and feel is courtesy of the Eclipse Forms toolkit and the usability improvements to the layout will hopefully make it much easier to get around in.</p>
+ <p>Once you've typed or selected your WSDL location in the URL combo, you can select the technology you're invoking the service against. The default is JAX-WS, but you now have the JAX-RS operations built into the list - GET, POST, PUT, DELETE, and OPTIONS. OPTIONS provides a way to ping a JAX-RS service to see what operations it supports. </p>
+ <p>In addition, you now have additional options for your Response data. You can save it to a text file, open it in an editor, view it in raw form (which is the default), or view your results in an embedded web browser. This last option can be very useful when a service returns a web page with an error or warning to view.</p>
+ <img src="./images/ws_tester_m2_facelift.jpg" style="width : 756px; height : 381px;"/>
+ <p>In addition, we've added a few other bits of new functionality:</p>
+ <ul><li>Basic Authentication support if a service is secured and needs to pass along a user name and password <small><a href="http://jira.jboss.org/browse/JBIDE-6660">Related Jira</a></small></li>
+ <li>Better support for cancelling a long-running invocation <small><a href="http://jira.jboss.org/browse/JBIDE-6589">Related Jira</a></small></li></ul>
</td>
</tr>
@@ -39,9 +45,11 @@
<tr>
<td valign="top" align="right"><a name="itemname3"
- id="itemname3"></a><b>TBD: Feture name</b></td>
+ id="itemname3"></a><b>New JAX-RS Sample Wizard</b></td>
<td valign="top">
- TBD: Description
+ <p>Much like the "Create a Sample Web Service" wizard that was added in JBT 3.1, we've added a new "Create a Sample RESTful Web Service" wizard this release to quickly get you up and running.</p>
+ <img src="./images/sample_restful_ws_wizard.jpg" style=""/>
+ <p><small><a href="http://jira.jboss.org/browse/JBIDE-5723">Related Jira</a></small></p>
</td>
</tr>
15 years, 4 months
JBoss Tools SVN: r24442 - trunk/documentation/whatsnew/drools.
by jbosstools-commits@lists.jboss.org
Author: bfitzpat
Date: 2010-08-25 13:33:28 -0400 (Wed, 25 Aug 2010)
New Revision: 24442
Added:
trunk/documentation/whatsnew/drools/drools-news-5.1.0.M2-full.html
Log:
OPEN - issue JBIDE-6891: Drools Component N&N
https://jira.jboss.org/browse/JBIDE-6891
Added: trunk/documentation/whatsnew/drools/drools-news-5.1.0.M2-full.html
===================================================================
--- trunk/documentation/whatsnew/drools/drools-news-5.1.0.M2-full.html (rev 0)
+++ trunk/documentation/whatsnew/drools/drools-news-5.1.0.M2-full.html 2010-08-25 17:33:28 UTC (rev 24442)
@@ -0,0 +1,38 @@
+<?xml version="1.0" encoding="iso-8859-1"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Language" content="en-us" />
+<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
+<link rel="stylesheet" href="../whatsnew.css"/>
+<title>Drools IDE 5.1.0.M2 What's New</title>
+</head>
+<body>
+<h1>Drools IDE 5.1.0.M2 What's New</h1>
+
+<p align="right"><a href="../index.html">< Main Index</a> </p>
+
+
+<table border="0" cellpadding="10" cellspacing="0" width="80%">
+
+ <tr>
+ <td colspan="2">
+ <hr/>
+ <h3>Drools M2</h3>
+ <hr/>
+ </td>
+ </tr>
+ <tr>
+ <td valign="top" align="right"><a name="itemname3" id="itemname3"></a><b>Release notes</b></td>
+ <td valign="top">
+ <p>Along with several minor fixes, the major bits for this release involve BPMN2 integration. Check <a href="http://blog.athico.com/2009/07/drools-flow-and-bpmn2.html">here</a> for details.</p>
+ </td>
+ </tr>
+</table>
+
+</body>
+
+</html>
+
+
Property changes on: trunk/documentation/whatsnew/drools/drools-news-5.1.0.M2-full.html
___________________________________________________________________
Name: svn:mime-type
+ text/plain
15 years, 4 months
JBoss Tools SVN: r24441 - trunk/build/aggregate/site.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-08-25 13:32:19 -0400 (Wed, 25 Aug 2010)
New Revision: 24441
Modified:
trunk/build/aggregate/site/build.xml
Log:
make build.xml's collect.zips task quieter
Modified: trunk/build/aggregate/site/build.xml
===================================================================
--- trunk/build/aggregate/site/build.xml 2010-08-25 17:27:51 UTC (rev 24440)
+++ trunk/build/aggregate/site/build.xml 2010-08-25 17:32:19 UTC (rev 24441)
@@ -186,7 +186,7 @@
<var unset="true" name="wget.return" />
<!-- quieter output and return code check w/ wget instead of <get> -->
<exec executable="wget" dir="${aggegate.zips.dir}" failonerror="false" failifexecutionfails="true" resultproperty="wget.return">
- <arg line="${inputRepo(a){repoNum}}/logs/zip.list.txt --no-clobber" />
+ <arg line="${inputRepo(a){repoNum}}/logs/zip.list.txt -q --no-clobber" />
</exec>
<!--get src="${inputRepo(a){repoNum}}/logs/zip.list.txt" dest="${aggegate.zips.dir}/zip.list.txt" ignoreerrors="true" /-->
<if>
@@ -212,12 +212,14 @@
replace="\1" />
<mkdir dir="${aggegate.zips.dir}/${relativePath}" />
<!-- fetch zips to local dir -->
- <echo>repoNum = @{repoNum}
+ <echo level="verbose">repoNum = @{repoNum}
relativePath = ${relativePath}
zipPath = @{zipPath}
-URL = ${inputRepo@{repoNum}}/@{zipPath}
DEST = ${aggegate.zips.dir}/@{zipPath}
</echo>
+ <echo>
+URL = ${inputRepo@{repoNum}}/@{zipPath}
+</echo>
<exec executable="wget" dir="${aggegate.zips.dir}" failonerror="false" failifexecutionfails="false">
<arg line="${inputRepo@{repoNum}}/@{zipPath} -q --no-clobber" />
</exec>
15 years, 4 months
JBoss Tools SVN: r24440 - in trunk/documentation/whatsnew/esb: images and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: bfitzpat
Date: 2010-08-25 13:27:51 -0400 (Wed, 25 Aug 2010)
New Revision: 24440
Added:
trunk/documentation/whatsnew/esb/esb-news-1.4.0.M2.html
trunk/documentation/whatsnew/esb/images/BPELInvoke_editor.jpg
trunk/documentation/whatsnew/esb/images/BPELInvoke_menu.jpg
trunk/documentation/whatsnew/esb/images/BPELInvoke_wizard.jpg
trunk/documentation/whatsnew/esb/images/BusinessRulesProcessor_EditorForm.jpg
trunk/documentation/whatsnew/esb/images/ESB_Camel.jpg
trunk/documentation/whatsnew/esb/images/ESB_Wizard_ESB_1.3.0_Config_Version.jpg
trunk/documentation/whatsnew/esb/images/ESB_Wizard_ESB_4.9_Runtime_Version.jpg
trunk/documentation/whatsnew/esb/images/SecurityFormEditor.jpg
Log:
OPEN - issue JBIDE-6892: ESB Component N&N
https://jira.jboss.org/browse/JBIDE-6892
Added: trunk/documentation/whatsnew/esb/esb-news-1.4.0.M2.html
===================================================================
--- trunk/documentation/whatsnew/esb/esb-news-1.4.0.M2.html (rev 0)
+++ trunk/documentation/whatsnew/esb/esb-news-1.4.0.M2.html 2010-08-25 17:27:51 UTC (rev 24440)
@@ -0,0 +1,117 @@
+ <p><a href="smooks/smooks-news-1.1.0.CR1.html">Smooks Tools</a></p> <?xml version="1.0" encoding="iso-8859-1"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Language" content="en-us" />
+<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
+<link rel="stylesheet" href="../whatsnew.css"/>
+<title>ESB tools 1.3.0.M2 What's New</title>
+</head>
+<body>
+<h1>ESB tools 1.3.0.M2 What's New</h1>
+
+<p align="right"><a href="../index.html">< Main Index</a> <a href="../maven/maven-news-1.1.0.CR2.html">Maven Tools ></a></p>
+
+<table border="0" cellpadding="10" cellspacing="0" width="80%">
+
+ <tr>
+ <td colspan="2">
+ <hr/>
+ <h3>Editors</h3>
+ <hr/>
+ </td>
+ </tr>
+
+ <tr>
+ <td valign="top" align="right"><a name="itemname3" id="itemname3"></a><b>ESB 4.9 Support</b></td>
+ <td valign="top">
+ <p>Bringing the ESB Editor in line with ESB 4.9 required some changes. These changes are documented in the next few sections...</p>
+ </td>
+ </tr>
+
+ <tr>
+ <td colspan="2">
+
+ <hr/>
+ </td>
+ </tr>
+
+ <tr>
+ <td valign="top" align="right"><a name="itemname3" id="itemname3"></a><b>Ability to Create ESB 4.9 Configuration Files</b></td>
+ <td valign="top">
+ <p>We've added ESB 4.9 support to the New ESB Project wizard. This enables you to specify ESB 4.9 for those runtimes that support it.</p>
+ <img src="./images/ESB_Wizard_ESB_4.9_Runtime_Version.jpg" alt="" />
+ <p> And you can also, for a runtime that supports ESB 4.9, select version 1.3 of the ESB configuration file.</p>
+ <img src="./images/ESB_Wizard_ESB_1.3.0_Config_Version.jpg" alt="" />
+ <p><small><a href="http://jira.jboss.org/browse/JBIDE-6609">Related Jira</a></small></p>
+
+ </td>
+ </tr>
+ <tr>
+ <td colspan="2">
+
+ <hr/>
+ </td>
+ </tr>
+ <tr>
+ <td valign="top" align="right"><a name="itemname3" id="itemname3"></a><b>Added support for BPELInvoke Action</b></td>
+ <td valign="top">
+ <p>We've been working to add more BPEL integration into this release as well. The BPELInvoke action provides an integration point between ESB and the Riftsaw ODE/BPEL runtime.</p>
+ <img src="./images/BPELInvoke_menu.jpg" alt="" style="width : 683px; height : 335px;"/>
+ <img src="./images/BPELInvoke_wizard.jpg" alt="" style=""/>
+ <img src="./images/BPELInvoke_editor.jpg" alt="" style="width : 664px; height : 357px;"/>
+ <p><small><a href="http://jira.jboss.org/browse/JBIDE-6908">Related Jira</a></small></p>
+
+ </td>
+ </tr>
+
+ <tr>
+ <td colspan="2">
+
+ <hr/>
+ </td>
+ </tr>
+ <tr>
+ <td valign="top" align="right"><a name="itemname3" id="itemname3"></a><b>Added support for Securing ESB Services</b></td>
+ <td valign="top">
+ <p>Another area we've been working on is security. You now have the ability to configure the security element for a service.</p>
+ <img src="./images/SecurityFormEditor.jpg" alt="" style="width : 679px; height : 379px;"/>
+ <p><small><a href="http://jira.jboss.org/browse/JBIDE-6758">Related Jira</a></small></p>
+
+ </td>
+ </tr>
+ <tr>
+ <td colspan="2">
+
+ <hr/>
+ </td>
+ </tr>
+ <tr>
+ <td valign="top" align="right"><a name="itemname3" id="itemname3"></a><b>New Camel Router Functionality in ESB 4.9</b></td>
+ <td valign="top">
+ <p>In ESB 4.9, there's a new router available for utilizing the Camel runtime. We've added support for that in the tooling.</p>
+ <img src="./images/ESB_Camel.jpg" alt="" style="width : 691px; height : 500px;"/>
+ <p><small><a href="https://jira.jboss.org/browse/JBIDE-6615">Related Jira</a></small></p>
+ </td>
+ </tr>
+ <tr>
+ <td colspan="2">
+
+ <hr/>
+ </td>
+ </tr>
+ <tr>
+ <td valign="top" align="right"><a name="itemname3" id="itemname3"></a><b>New Complex Event Processing Functionality in ESB 4.9</b></td>
+ <td valign="top">
+ <p>In ESB 4.9, there's some new functionality available for Complex Event Processing utilizing the BusinessRulesProcessor action. We've added support for that in the tooling.</p>
+ <img src="./images/BusinessRulesProcessor_EditorForm.jpg" alt="" style="width : 691px; height : 380px;"/>
+ <p><small><a href="https://jira.jboss.org/browse/JBIDE-6614">Related Jira</a></small></p>
+ </td>
+ </tr>
+</table>
+</body>
+
+</html>
+
+
Property changes on: trunk/documentation/whatsnew/esb/esb-news-1.4.0.M2.html
___________________________________________________________________
Name: svn:mime-type
+ text/plain
Added: trunk/documentation/whatsnew/esb/images/BPELInvoke_editor.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/whatsnew/esb/images/BPELInvoke_editor.jpg
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/documentation/whatsnew/esb/images/BPELInvoke_menu.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/whatsnew/esb/images/BPELInvoke_menu.jpg
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/documentation/whatsnew/esb/images/BPELInvoke_wizard.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/whatsnew/esb/images/BPELInvoke_wizard.jpg
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/documentation/whatsnew/esb/images/BusinessRulesProcessor_EditorForm.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/whatsnew/esb/images/BusinessRulesProcessor_EditorForm.jpg
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/documentation/whatsnew/esb/images/ESB_Camel.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/whatsnew/esb/images/ESB_Camel.jpg
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/documentation/whatsnew/esb/images/ESB_Wizard_ESB_1.3.0_Config_Version.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/whatsnew/esb/images/ESB_Wizard_ESB_1.3.0_Config_Version.jpg
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/documentation/whatsnew/esb/images/ESB_Wizard_ESB_4.9_Runtime_Version.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/whatsnew/esb/images/ESB_Wizard_ESB_4.9_Runtime_Version.jpg
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/documentation/whatsnew/esb/images/SecurityFormEditor.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/whatsnew/esb/images/SecurityFormEditor.jpg
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
15 years, 4 months
JBoss Tools SVN: r24439 - branches/jbosstools-3.2.0.M2/build.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-08-25 12:54:19 -0400 (Wed, 25 Aug 2010)
New Revision: 24439
Modified:
branches/jbosstools-3.2.0.M2/build/pom.xml
Log:
drools should be inactive by default; just aggregate from external build
Modified: branches/jbosstools-3.2.0.M2/build/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M2/build/pom.xml 2010-08-25 16:53:36 UTC (rev 24438)
+++ branches/jbosstools-3.2.0.M2/build/pom.xml 2010-08-25 16:54:19 UTC (rev 24439)
@@ -585,7 +585,7 @@
<profile>
<id>drools</id>
<activation>
- <activeByDefault>true</activeByDefault>
+ <activeByDefault>false</activeByDefault>
</activation>
<modules>
<module>../drools</module>
15 years, 4 months