JBoss Tools SVN: r21178 - branches/modular_build.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-03-31 19:46:55 -0400 (Wed, 31 Mar 2010)
New Revision: 21178
Modified:
branches/modular_build/genpom.scala
Log:
versions should not be the same in both places
Modified: branches/modular_build/genpom.scala
===================================================================
--- branches/modular_build/genpom.scala 2010-03-31 23:25:07 UTC (rev 21177)
+++ branches/modular_build/genpom.scala 2010-03-31 23:46:55 UTC (rev 21178)
@@ -8,8 +8,9 @@
/********** Configuration Start **********/
var projectName = "org.jboss.tools"
- var pathToParentPom = "./"
- var version = "0.0.1-SNAPSHOT"
+ var pathToParentPom = ""
+ var parentPomVersion = "1.0.0-SNAPSHOT"
+ var sourcePomVersion = "0.0.1-SNAPSHOT"
/********** Configuration Ends **********/
var aggregatorcount = 0
@@ -19,8 +20,8 @@
generateAggregator(new File("."),
new File(pathToParentPom + "parent-pom.xml"),
- GVA(projectName, projectName + ".parent.pom", version),
- GVA(projectName, "trunk", version)
+ GVA(projectName, projectName + ".parent.pom", parentPomVersion),
+ GVA(projectName, "trunk", sourcePomVersion)
)
println("Modules: " + modulecount + " Aggregator: " + aggregatorcount)
14 years, 8 months
JBoss Tools SVN: r21177 - branches/modular_build.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-03-31 19:25:07 -0400 (Wed, 31 Mar 2010)
New Revision: 21177
Modified:
branches/modular_build/genpom.scala
Log:
parameterize script for reuse by other projects with different tree structures, and support running from within features/ instead of from two levels up
Modified: branches/modular_build/genpom.scala
===================================================================
--- branches/modular_build/genpom.scala 2010-03-31 21:01:35 UTC (rev 21176)
+++ branches/modular_build/genpom.scala 2010-03-31 23:25:07 UTC (rev 21177)
@@ -6,15 +6,21 @@
case class GVA(groupId : String, artifactId : String, version : String)
+ /********** Configuration Start **********/
+ var projectName = "org.jboss.tools"
+ var pathToParentPom = "./"
+ var version = "0.0.1-SNAPSHOT"
+ /********** Configuration Ends **********/
+
var aggregatorcount = 0
var modulecount = 0
-
+
def main(args: Array[String]) {
generateAggregator(new File("."),
- new File("parent-pom.xml"),
- GVA("org.jboss.tools", "org.jboss.tools.parent.pom", "1.0.0-SNAPSHOT"),
- GVA("org.jboss.tools", "trunk", "0.0.1-SNAPSHOT")
+ new File(pathToParentPom + "parent-pom.xml"),
+ GVA(projectName, projectName + ".parent.pom", version),
+ GVA(projectName, "trunk", version)
)
println("Modules: " + modulecount + " Aggregator: " + aggregatorcount)
@@ -35,10 +41,9 @@
<groupId>{me.groupId}</groupId>
<artifactId>{me.artifactId}</artifactId>
<version>{getVersion(dir)}</version>
- <packaging>{
- if (dir.getParentFile().getName().equals("tests"))
+ <packaging>{ if (dir.getParentFile().getAbsolutePath().endsWith("/tests") || dir.getParentFile().getAbsolutePath().endsWith("/tests/."))
"eclipse-test-plugin"
- else if (dir.getParentFile().getName().equals("features"))
+ else if (dir.getParentFile().getAbsolutePath().endsWith("/features") || dir.getParentFile().getAbsolutePath().endsWith("/features/."))
"eclipse-feature"
else
"eclipse-plugin"}</packaging>
14 years, 8 months
JBoss Tools SVN: r21176 - trunk/jbpm/plugins/org.jbpm.gd.jpdl/src/org/jbpm/gd/jpdl/wizard.
by jbosstools-commits@lists.jboss.org
Author: koen.aers(a)jboss.com
Date: 2010-03-31 17:01:35 -0400 (Wed, 31 Mar 2010)
New Revision: 21176
Modified:
trunk/jbpm/plugins/org.jbpm.gd.jpdl/src/org/jbpm/gd/jpdl/wizard/NewActionWizard.java
Log:
JBIDE-6023: jBPM ActionHandler is interface but pre-selected in wizard as a class
Modified: trunk/jbpm/plugins/org.jbpm.gd.jpdl/src/org/jbpm/gd/jpdl/wizard/NewActionWizard.java
===================================================================
--- trunk/jbpm/plugins/org.jbpm.gd.jpdl/src/org/jbpm/gd/jpdl/wizard/NewActionWizard.java 2010-03-31 20:55:39 UTC (rev 21175)
+++ trunk/jbpm/plugins/org.jbpm.gd.jpdl/src/org/jbpm/gd/jpdl/wizard/NewActionWizard.java 2010-03-31 21:01:35 UTC (rev 21176)
@@ -68,7 +68,7 @@
public void init(IWorkbench workbench, IStructuredSelection selection) {
IProject p = getProject(selection);
adapter = new NewTypeWizardAdapter(p);
- adapter.setRawSuperClassName(ACTION_HANDLER_CLASS);
+ adapter.addRawInterfaceName(ACTION_HANDLER_CLASS);
IPackageFragment f = getPackageFragment(selection);
if(f != null) {
String name = "";
14 years, 8 months
JBoss Tools SVN: r21175 - workspace/snjeza/esbexamples.
by jbosstools-commits@lists.jboss.org
Author: snjeza
Date: 2010-03-31 16:55:39 -0400 (Wed, 31 Mar 2010)
New Revision: 21175
Modified:
workspace/snjeza/esbexamples/project-examples-test-esb.xml
Log:
https://jira.jboss.org/jira/browse/JBIDE-5645 Missing requirements description for Project Examples
Modified: workspace/snjeza/esbexamples/project-examples-test-esb.xml
===================================================================
--- workspace/snjeza/esbexamples/project-examples-test-esb.xml 2010-03-31 20:49:02 UTC (rev 21174)
+++ workspace/snjeza/esbexamples/project-examples-test-esb.xml 2010-03-31 20:55:39 UTC (rev 21175)
@@ -3,7 +3,7 @@
<category>ESB</category>
<name>helloworld</name>
- <included-projects>helloworld, helloworld_testclient</included-projects>
+ <included-projects>helloworld,helloworld_testclient</included-projects>
<shortDescription>JBoss ESB HelloWorld Example - **TEST**</shortDescription>
<description>This example is to prove that the ESB is is properly configured and happy.
As well as to demonstrate the needed minimal files to make a basic ESB component execute.
14 years, 8 months
JBoss Tools SVN: r21174 - workspace/snjeza/esbexamples.
by jbosstools-commits@lists.jboss.org
Author: snjeza
Date: 2010-03-31 16:49:02 -0400 (Wed, 31 Mar 2010)
New Revision: 21174
Added:
workspace/snjeza/esbexamples/.project
Modified:
workspace/snjeza/esbexamples/helloworldall.zip
Log:
https://jira.jboss.org/jira/browse/JBIDE-5645 Missing requirements description for Project Examples
Added: workspace/snjeza/esbexamples/.project
===================================================================
--- workspace/snjeza/esbexamples/.project (rev 0)
+++ workspace/snjeza/esbexamples/.project 2010-03-31 20:49:02 UTC (rev 21174)
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>esbexamples</name>
+ <comment></comment>
+ <projects>
+ </projects>
+ <buildSpec>
+ </buildSpec>
+ <natures>
+ </natures>
+</projectDescription>
Modified: workspace/snjeza/esbexamples/helloworldall.zip
===================================================================
(Binary files differ)
14 years, 8 months
JBoss Tools SVN: r21172 - in trunk/as/docs/reference/en-US/images: quick_start and 1 other directories.
by jbosstools-commits@lists.jboss.org
Author: abogachuk
Date: 2010-03-31 15:59:21 -0400 (Wed, 31 Mar 2010)
New Revision: 21172
Modified:
trunk/as/docs/reference/en-US/images/perspective/perspective_4.png
trunk/as/docs/reference/en-US/images/quick_start/quick_start_4a.png
trunk/as/docs/reference/en-US/images/quick_start/quick_start_4b.png
trunk/as/docs/reference/en-US/images/runtimes_servers/runtimes_servers_1.png
trunk/as/docs/reference/en-US/images/runtimes_servers/runtimes_servers_2.png
trunk/as/docs/reference/en-US/images/runtimes_servers/runtimes_servers_3.png
trunk/as/docs/reference/en-US/images/runtimes_servers/runtimes_servers_4.png
trunk/as/docs/reference/en-US/images/runtimes_servers/runtimes_servers_4c.png
trunk/as/docs/reference/en-US/images/runtimes_servers/runtimes_servers_6.png
trunk/as/docs/reference/en-US/images/runtimes_servers/runtimes_servers_7.png
Log:
https://jira.jboss.org/jira/browse/JBDS-1143 - Some screenshots was updated
Modified: trunk/as/docs/reference/en-US/images/perspective/perspective_4.png
===================================================================
(Binary files differ)
Modified: trunk/as/docs/reference/en-US/images/quick_start/quick_start_4a.png
===================================================================
(Binary files differ)
Modified: trunk/as/docs/reference/en-US/images/quick_start/quick_start_4b.png
===================================================================
(Binary files differ)
Modified: trunk/as/docs/reference/en-US/images/runtimes_servers/runtimes_servers_1.png
===================================================================
(Binary files differ)
Modified: trunk/as/docs/reference/en-US/images/runtimes_servers/runtimes_servers_2.png
===================================================================
(Binary files differ)
Modified: trunk/as/docs/reference/en-US/images/runtimes_servers/runtimes_servers_3.png
===================================================================
(Binary files differ)
Modified: trunk/as/docs/reference/en-US/images/runtimes_servers/runtimes_servers_4.png
===================================================================
(Binary files differ)
Modified: trunk/as/docs/reference/en-US/images/runtimes_servers/runtimes_servers_4c.png
===================================================================
(Binary files differ)
Modified: trunk/as/docs/reference/en-US/images/runtimes_servers/runtimes_servers_6.png
===================================================================
(Binary files differ)
Modified: trunk/as/docs/reference/en-US/images/runtimes_servers/runtimes_servers_7.png
===================================================================
(Binary files differ)
14 years, 8 months
JBoss Tools SVN: r21171 - workspace/snjeza/esbexamples.
by jbosstools-commits@lists.jboss.org
Author: snjeza
Date: 2010-03-31 15:45:58 -0400 (Wed, 31 Mar 2010)
New Revision: 21171
Added:
workspace/snjeza/esbexamples/helloworldall.zip
workspace/snjeza/esbexamples/project-examples-test-esb.xml
Log:
https://jira.jboss.org/jira/browse/JBIDE-5645 Missing requirements description for Project Examples
Added: workspace/snjeza/esbexamples/helloworldall.zip
===================================================================
(Binary files differ)
Property changes on: workspace/snjeza/esbexamples/helloworldall.zip
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: workspace/snjeza/esbexamples/project-examples-test-esb.xml
===================================================================
--- workspace/snjeza/esbexamples/project-examples-test-esb.xml (rev 0)
+++ workspace/snjeza/esbexamples/project-examples-test-esb.xml 2010-03-31 19:45:58 UTC (rev 21171)
@@ -0,0 +1,24 @@
+<projects>
+ <project>
+
+ <category>ESB</category>
+ <name>helloworld</name>
+ <included-projects>helloworld, helloworld_testclient</included-projects>
+ <shortDescription>JBoss ESB HelloWorld Example - **TEST**</shortDescription>
+ <description>This example is to prove that the ESB is is properly configured and happy.
+As well as to demonstrate the needed minimal files to make a basic ESB component execute.
+The example includes the helloworld and helloworld_testclient project. It requires JBoss SOA 4.3 </description>
+ <size>1081344</size>
+ <url>
+ http://anonsvn.jboss.org/repos/jbosstools/workspace/snjeza/esbexamples/he...
+ </url>
+ <fixes>
+ <fix type="wtpruntime">
+ <property name="allowed-types">org.jboss.ide.eclipse.as.runtime.eap.43</property>
+ <property name="eclipse-projects">helloworld</property>
+ <property name="required-component">esb</property>
+ <property name="description">This project example requires the JBoss SOA 4.3</property>
+ </fix>
+ </fixes>
+ </project>
+</projects>
\ No newline at end of file
14 years, 8 months
JBoss Tools SVN: r21168 - workspace/snjeza/esbexamples.
by jbosstools-commits@lists.jboss.org
Author: snjeza
Date: 2010-03-31 14:15:50 -0400 (Wed, 31 Mar 2010)
New Revision: 21168
Added:
workspace/snjeza/esbexamples/helloworldall.zip
Log:
Added: workspace/snjeza/esbexamples/helloworldall.zip
===================================================================
(Binary files differ)
Property changes on: workspace/snjeza/esbexamples/helloworldall.zip
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
14 years, 8 months