Re: [jbosstools-dev] Jboss adaptor patch for new module type
by Denny Xu
Done,
here is the link: https://jira.jboss.org/jira/browse/JBIDE-2717
Denny
Max Rydahl Andersen wrote:
> Hi Denny,
>
> Looks good - put the patch in jira ;)
>
> /max
>
> ----- "Denny Xu" <dxu(a)redhat.com> wrote:
>
>
>> Hi Rob
>>
>> I have created a new module type for esb project, I need jboss
>> server
>> adapter to support the new project type, so I made some changes in
>> your org.jboss.ide.eclipse.as.core plugin and create a patch , please
>>
>> have a look at it when you have a chance, to see if it is also ok to
>> you, thanks.
>>
>> Denny
>>
>> Index:
>> /home/fugang/workspaces/esb/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/publishers/JstPublisher.java
>> ===================================================================
>> ---
>> /home/fugang/workspaces/esb/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/publishers/JstPublisher.java
>> (revision 9932)
>> +++
>> /home/fugang/workspaces/esb/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/publishers/JstPublisher.java
>> (working copy)
>> @@ -200,7 +200,9 @@
>> root = root.append("WEB-INF").append("lib").append(name +
>> ".jar");
>> else if( "jst.connector".equals(type)) {
>> root = root.append(name + ".rar");
>> - } else
>> + } else if( "jst.jboss.esb".equals(type)){
>> + root = root.append(name + ".esb");
>> + }else
>> root = root.append(name + ".jar");
>> }
>> return root;
>> Index:
>> /home/fugang/workspaces/esb/org.jboss.ide.eclipse.as.core/plugin.xml
>> ===================================================================
>> ---
>> /home/fugang/workspaces/esb/org.jboss.ide.eclipse.as.core/plugin.xml
>> (revision 9932)
>> +++
>> /home/fugang/workspaces/esb/org.jboss.ide.eclipse.as.core/plugin.xml
>> (working copy)
>> @@ -148,7 +148,11 @@
>> versions="1.0"/>
>> <moduleType
>> types="jboss.singlefile"
>> - versions="1.0"/>
>> + versions="1.0"/>
>> + <moduleType
>> + types="jst.jboss.esb"
>> + versions="4.2,4.3,4.4,5.0">
>> + </moduleType>
>> </runtimeType>
>> <runtimeType
>> vendor="%providerName"
>> @@ -178,6 +182,10 @@
>> <moduleType
>> types="jboss.singlefile"
>> versions="1.0"/>
>> + <moduleType
>> + types="jst.jboss.esb"
>> + versions="4.2,4.3,4.4,5.0">
>> + </moduleType>
>> </runtimeType>
>> <runtimeType
>> vendor="%providerName"
>> @@ -207,6 +215,10 @@
>> <moduleType
>> types="jboss.singlefile"
>> versions="1.0"/>
>> + <moduleType
>> + types="jst.jboss.esb"
>> + versions="4.2,4.3,4.4,5.0">
>> + </moduleType>
>> </runtimeType>
>>
>>
>> @@ -239,6 +251,10 @@
>> <moduleType
>> types="jboss.singlefile"
>> versions="1.0"/>
>> + <moduleType
>> + types="jst.jboss.esb"
>> + versions="4.2,4.3,4.4,5.0">
>> + </moduleType>
>> </runtimeType>
>> </extension>
>>
>>
>> _______________________________________________
>> jbosstools-dev mailing list
>> jbosstools-dev(a)lists.jboss.org
>> https://lists.jboss.org/mailman/listinfo/jbosstools-dev
>>
16 years, 4 months
a rough esb project wizard is ready
by Denny Xu
Hi all
I commit esb project wizard plugins into svn in the esb module. it has
the following basic function :
- JBoss ESB project creation wizard
It will create default project structure, and set classpath
according the runtimes that the user selected, a default empty
jboss-esb.xml will be created.
- Project package and deployment
Users just need add the project the a jboss server adaptor
through a wtp server view or jboss view just like a Web project and
publish it, then the packaging and deployment is finished.
for now, jboss server adaptor does not support the new type, I
have created a patch add this support, if someone want to play with
before Rob add it to jboss server adaptor,
you should also check out the org.jboss.ide.eclipse.as.core
plugin from svn in as module and apply the patch
- Preference page for configuration of esb runtimes.
for now, if users select a esb runtime for a esb project, only
jars in jbossesb.esb and jbossesb.sar will be added the classpath of the
project, not sure if it's necessary to add jars of other esb component
such as "spring.esb" and "smooks.esb" to classpath project classpath.
please have a look at what the esb project wizard looks like if you
have interesting and your feedback is quite welcome.
Denny
Index: /home/fugang/workspaces/esb/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/publishers/JstPublisher.java
===================================================================
--- /home/fugang/workspaces/esb/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/publishers/JstPublisher.java (revision 9932)
+++ /home/fugang/workspaces/esb/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/publishers/JstPublisher.java (working copy)
@@ -200,7 +200,9 @@
root = root.append("WEB-INF").append("lib").append(name + ".jar");
else if( "jst.connector".equals(type)) {
root = root.append(name + ".rar");
- } else
+ } else if( "jst.jboss.esb".equals(type)){
+ root = root.append(name + ".esb");
+ }else
root = root.append(name + ".jar");
}
return root;
Index: /home/fugang/workspaces/esb/org.jboss.ide.eclipse.as.core/plugin.xml
===================================================================
--- /home/fugang/workspaces/esb/org.jboss.ide.eclipse.as.core/plugin.xml (revision 9932)
+++ /home/fugang/workspaces/esb/org.jboss.ide.eclipse.as.core/plugin.xml (working copy)
@@ -148,7 +148,11 @@
versions="1.0"/>
<moduleType
types="jboss.singlefile"
- versions="1.0"/>
+ versions="1.0"/>
+ <moduleType
+ types="jst.jboss.esb"
+ versions="4.2,4.3,4.4,5.0">
+ </moduleType>
</runtimeType>
<runtimeType
vendor="%providerName"
@@ -178,6 +182,10 @@
<moduleType
types="jboss.singlefile"
versions="1.0"/>
+ <moduleType
+ types="jst.jboss.esb"
+ versions="4.2,4.3,4.4,5.0">
+ </moduleType>
</runtimeType>
<runtimeType
vendor="%providerName"
@@ -207,6 +215,10 @@
<moduleType
types="jboss.singlefile"
versions="1.0"/>
+ <moduleType
+ types="jst.jboss.esb"
+ versions="4.2,4.3,4.4,5.0">
+ </moduleType>
</runtimeType>
@@ -239,6 +251,10 @@
<moduleType
types="jboss.singlefile"
versions="1.0"/>
+ <moduleType
+ types="jst.jboss.esb"
+ versions="4.2,4.3,4.4,5.0">
+ </moduleType>
</runtimeType>
</extension>
16 years, 4 months
Jboss adaptor patch for new module type
by Denny Xu
Hi Rob
I have created a new module type for esb project, I need jboss server
adapter to support the new project type, so I made some changes in
your org.jboss.ide.eclipse.as.core plugin and create a patch , please
have a look at it when you have a chance, to see if it is also ok to
you, thanks.
Denny
Index: /home/fugang/workspaces/esb/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/publishers/JstPublisher.java
===================================================================
--- /home/fugang/workspaces/esb/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/publishers/JstPublisher.java (revision 9932)
+++ /home/fugang/workspaces/esb/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/publishers/JstPublisher.java (working copy)
@@ -200,7 +200,9 @@
root = root.append("WEB-INF").append("lib").append(name + ".jar");
else if( "jst.connector".equals(type)) {
root = root.append(name + ".rar");
- } else
+ } else if( "jst.jboss.esb".equals(type)){
+ root = root.append(name + ".esb");
+ }else
root = root.append(name + ".jar");
}
return root;
Index: /home/fugang/workspaces/esb/org.jboss.ide.eclipse.as.core/plugin.xml
===================================================================
--- /home/fugang/workspaces/esb/org.jboss.ide.eclipse.as.core/plugin.xml (revision 9932)
+++ /home/fugang/workspaces/esb/org.jboss.ide.eclipse.as.core/plugin.xml (working copy)
@@ -148,7 +148,11 @@
versions="1.0"/>
<moduleType
types="jboss.singlefile"
- versions="1.0"/>
+ versions="1.0"/>
+ <moduleType
+ types="jst.jboss.esb"
+ versions="4.2,4.3,4.4,5.0">
+ </moduleType>
</runtimeType>
<runtimeType
vendor="%providerName"
@@ -178,6 +182,10 @@
<moduleType
types="jboss.singlefile"
versions="1.0"/>
+ <moduleType
+ types="jst.jboss.esb"
+ versions="4.2,4.3,4.4,5.0">
+ </moduleType>
</runtimeType>
<runtimeType
vendor="%providerName"
@@ -207,6 +215,10 @@
<moduleType
types="jboss.singlefile"
versions="1.0"/>
+ <moduleType
+ types="jst.jboss.esb"
+ versions="4.2,4.3,4.4,5.0">
+ </moduleType>
</runtimeType>
@@ -239,6 +251,10 @@
<moduleType
types="jboss.singlefile"
versions="1.0"/>
+ <moduleType
+ types="jst.jboss.esb"
+ versions="4.2,4.3,4.4,5.0">
+ </moduleType>
</runtimeType>
</extension>
16 years, 4 months
Re: [jbosstools-dev] Dev irc chats
by Snjezana Peco
Sorry, I won't be able to attend due to other commitments.
Snjeza
Max Rydahl Andersen wrote:
> Alexey kindly reminded me that it is Labor day today in US.
>
> Let us reschedule this for Wednesday at the same time and place.
>
> /max
>
> ----- "Max Rydahl Andersen" <manderse(a)redhat.com> wrote:
>
>
>> FYI: This chat started 20 minutes ago...
>> /max
>>
>> ----- "Max Rydahl Andersen" <max.andersen(a)redhat.com> wrote:
>>
>>
>>> Hi,
>>>
>>> Following up on the talks last week we will revive our devel IRC
>>>
>> chats
>>
>>>
>>> where anyone doing development on JBoss Tools is invited to join.
>>>
>>> We mostly discuss current jira issues, but other topics are also to
>>>
>> be
>>
>>>
>>> discussed.
>>>
>>> I'll be travelling this week so I suggest we start next Monday at
>>> 16:00
>>> CET (14:00 UTC) in #jbosstools at irc.freenode.org
>>>
>>> --
>>> -max
>>> _______________________________________________
>>> jbosstools-dev mailing list
>>> jbosstools-dev(a)lists.jboss.org
>>> https://lists.jboss.org/mailman/listinfo/jbosstools-dev
>>>
>
>
16 years, 4 months