You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@camel.apache.org by Claus Ibsen <cl...@gmail.com> on 2010/08/27 14:24:20 UTC

Camel 2.5 - Starts to look good for a relese

Hi

Its just 6-7 weeks ago we released Camel 2.4, and we already got
approx 150 tickets resolved on the road for Camel 2.5.

Camel 2.5 doesn't have a lot of new features, but it does have many
great improvements and bug fixes. So it becomes a great and stable
Camel release.
I have therefore started moving tickets with bigger new features to
Camel 2.6 or even 3.0.

I suggest that we release Camel 2.5 next month. For example in about 2
weeks time if that suites our release manager, Hadrian :)

We are currently having a couple of dependencies to OSGi bundles being
released at SMX.
The vote is currently in progress, and they should be out in central
maven repo next week.

What remains to be done is to trim the size of camel-web to remove the
unneeded stuff which has crept into it. See another mail on dev about
this.

If you got any must have features, bug fixes, improvements, then its
time to raise your voice.


You can see the current in progress release notes
http://camel.apache.org/camel-250-release.html

-- 
Claus Ibsen
Apache Camel Committer

Author of Camel in Action: http://www.manning.com/ibsen/
Open Source Integration: http://fusesource.com
Blog: http://davsclaus.blogspot.com/
Twitter: http://twitter.com/davsclaus

Re: Camel 2.5 - Starts to look good for a relese

Posted by Claus Ibsen <cl...@gmail.com>.
On Fri, Nov 5, 2010 at 11:45 AM, Henryk Konsek <he...@gmail.com> wrote:
> On Tue, Oct 12, 2010 at 9:53 PM, Henryk Konsek <he...@gmail.com> wrote:
>> When you release camel-apache, I'll release camel-extra 2.5 .
>
> This is my first time with Maven Release Plugin and it's tougher than
> I expected. Actually release:prepare doesn't work and I need to get
> deeper into the plugin to debug why this happens :)
>
> I'll let you know when I figure it out and release 2.5.
>

Ah great. Yeah good luck with Maven. When it works its great. But when
it don't you are sometimes a bit lost.


> --
> Henryk Konsek
>



-- 
Claus Ibsen
-----------------
FuseSource
Email: cibsen@fusesource.com
Web: http://fusesource.com
Twitter: davsclaus
Blog: http://davsclaus.blogspot.com/
Author of Camel in Action: http://www.manning.com/ibsen/

Re: Camel 2.5 - Starts to look good for a relese

Posted by Henryk Konsek <he...@gmail.com>.
On Tue, Oct 12, 2010 at 9:53 PM, Henryk Konsek <he...@gmail.com> wrote:
> When you release camel-apache, I'll release camel-extra 2.5 .

This is my first time with Maven Release Plugin and it's tougher than
I expected. Actually release:prepare doesn't work and I need to get
deeper into the plugin to debug why this happens :)

I'll let you know when I figure it out and release 2.5.

-- 
Henryk Konsek

Re: Camel 2.5 - Starts to look good for a relese

Posted by Daniel Kulp <dk...@apache.org>.
On Thursday 14 October 2010 12:23:09 pm Guillaume Nodet wrote:
> I'd rather use ant run and keep the sources if possible.  I really hate
> when you can't properly debug code in your IDE because the source jar is
> missing or incomplete.

OK.  I'll create a full patch for that and create a JIRA.

Dan


> On Thu, Oct 14, 2010 at 18:17, Daniel Kulp <dk...@apache.org> wrote:
> > On Thursday 14 October 2010 9:28:06 am Willem Jiang wrote:
> > > Hi Hadrian,
> > > 
> > > I saw the issue after import the project into Eclipse.
> > 
> > I've been trying to dig into this a bit.
> > 
> > From what I can tell, the ONLY reason the pom is doing this is to get the
> > sources for those classes into the sources jar.   The bundle plugin
> > already puts the .class files for those into the real jar so it's not
> > needed for compiling or anything.  Its JUST for the sources jar.
> > 
> > Thus, there are three coarses of action I can see:
> > 
> > 1) Ignore it and let the eclipse projects fail.   I don't like this.
> > 
> > 2) Remove this config from the pom.  The source jars just would not have
> > the
> > sources for these classes.   Not sure if thats a big deal.
> > 
> > 3) Change it to use antrun to add those extra sources in the package
> > phase. Patch for camel-spring below to look at.
> > 
> > Thoughts?
> > 
> > Dan
> > 
> > 
> > 
> > 
> > diff --git a/components/camel-spring/pom.xml
> > b/components/camel-spring/pom.xml
> > index b6404a2..bc944cb 100644
> > --- a/components/camel-spring/pom.xml
> > +++ b/components/camel-spring/pom.xml
> > @@ -275,6 +275,11 @@
> > 
> >                 <echo>Deleting unwanted resources from the
> >                 test-jar</echo> <delete
> >                 file="${project.build.directory}/test-
> > 
> > classes/log4j.properties" verbose="true" />
> > 
> >                 <delete
> >                 file="${project.build.directory}/test-classes/META-
> > 
> > INF/spring/*" verbose="true" />
> > +
> > +                <jar
> > destfile="${project.build.directory}/camel-spring-2.5-
> > SNAPSHOT-sources.jar" update="true">
> > +                  <fileset
> > dir="${basedir}/../camel-core-osgi/src/main/java"
> > includes="**/*"/>
> > +                  <fileset
> > dir="${basedir}/../camel-core-xml/src/main/java"
> > includes="**/*"/>
> > +                </jar>
> > 
> >               </tasks>
> >             
> >             </configuration>
> >             <goals>
> > 
> > @@ -290,19 +295,6 @@
> > 
> >         <artifactId>build-helper-maven-plugin</artifactId>
> >         <executions>
> >         
> >           <execution>
> > 
> > -            <id>add-source</id>
> > -            <phase>generate-sources</phase>
> > -            <goals>
> > -              <goal>add-source</goal>
> > -            </goals>
> > -            <configuration>
> > -              <sources>
> > -
> > 
> >  <source>${basedir}/../camel-core-osgi/src/main/java</source>
> > 
> > -
> > 
> >  <source>${basedir}/../camel-core-xml/src/main/java</source>
> > 
> > -              </sources>
> > -            </configuration>
> > -          </execution>
> > -          <execution>
> > 
> >             <id>attach-artifacts</id>
> >             <phase>package</phase>
> >             <goals>
> > > 
> > > On 10/14/10 8:01 PM, Hadrian Zbarcea wrote:
> > > > Thanks Dan.
> > > > 
> > > > Willem, try loading the generated .projects in eclipse, you'll know
> > 
> > what
> > 
> > > > I mean. Dan, it's because of the osgi support that moved between
> > > > components.
> > > > 
> > > > Hadrian
> > > > 
> > > > On Oct 14, 2010, at 7:43 AM, Daniel Kulp wrote:
> > > >> Just because it runs doesn't mean it works.   The generated projects
> > > >> cannot be imported into Eclipse.   You should not be pointing to src
> > > >> dirs outside the maven project.   That breaks all kinds of things,
> > > >> eclipse being one of them.
> > > >> 
> > > >> There are a couple solutions, but I have to ask why it's even doing
> > > >> that? Why can't the two affected modules just depend on the others?
> > > >> Why do they need to have to duplicate the classes in them?
> > > >> 
> > > >> Dan
> > > >> 
> > > >> On Thursday 14 October 2010 2:07:26 am Willem Jiang wrote:
> > > >>> I just run the mvn eclipse:eclipse on the latest chuck code, every
> > > >>> thing looks good.
> > > >>> 
> > > >>> Here is my system information.
> > > >>> 
> > > >>> localhost:trunk jiangning$ mvn -version
> > > >>> Apache Maven 2.2.1 (r801777; 2009-08-07 03:16:01+0800)
> > > >>> Java version: 1.6.0_20
> > > >>> Java home:
> > > >>> /System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home
> > > >>> Default locale: en_US, platform encoding: MacRoman
> > > >>> OS name: "mac os x" version: "10.6.4" arch: "x86_64" Family: "mac"
> > > >>> 
> > > >>> On 10/14/10 1:52 PM, Claus Ibsen wrote:
> > > >>>> On Thu, Oct 14, 2010 at 7:24 AM, Hadrian
> > > >>>> Zbarcea<hzbarcea@gmail.com
> > > >> 
> > > >> wrote:
> > > >>>>> Willem, it works fine now. The only issue we have now is with the
> > > >>>>> eclipse goal not working properly due to the
> > > >>>>> build-helper-maven-plugin in camel-spring and camel-blueprint.
> > > >>>>> It's not really a blocker, but it'd avoid releasing with this
> > > >>>>> broken if possible. I hope we could resolve this tomorrow. It's
> > > >>>>> the last
> > 
> > thing
> > 
> > > >>>>> I know of that should be done for the 2.5.0 release.
> > > >>>> 
> > > >>>> I think this is because of the Maven 3 changes. I did a full mvn
> > > >>>> eclipse:eclipse for the entire project when we upgraded all the
> > > >>>> versions in the pom.
> > > >>>> And it ran 100%.
> > > >>>> 
> > > >>>>> Cheers,
> > > >>>>> Hadrian
> > > >>>>> 
> > > >>>>> On Oct 14, 2010, at 12:58 AM, Willem Jiang wrote:
> > > >>>>>> Hi hadrian,
> > > >>>>>> 
> > > >>>>>> What's the problem of the camel-jetty build?
> > > >>>>>> Are they new build failures?
> > > >>>>>> 
> > > >>>>>> On 10/14/10 11:30 AM, Hadrian Zbarcea wrote:
> > > >>>>>>> Still a few errors to sort out. I got a couple of failures in
> > > >>>>>>> jetty, the eclipse goal is not working properly either yet in
> > > >>>>>>> spring and blueprint. Hadrian
> > > >>>>>>> 
> > > >>>>>>> On Oct 13, 2010, at 5:56 PM, Claus Ibsen wrote:
> > > >>>>>>>> Hadrian, how is the 2.5 release going?
> > > >>>>>>>> 
> > > >>>>>>>> On Tue, Oct 12, 2010 at 9:53 PM, Henryk Konsek<
> > 
> > hekonsek@gmail.com>
> > 
> > > >> wrote:
> > > >>>>>>>>> When you release camel-apache, I'll release camel-extra 2.5 .
> > > >>>>>>>>> 
> > > >>>>>>>>> On Tue, Oct 12, 2010 at 9:24 PM, Claus
> > > >>>>>>>>> Ibsen<cl...@gmail.com>
> > > >> 
> > > >> wrote:
> > > >>>>>>>>>> Okay all is set and we are ready for the 2.5 release.
> > > >>>>>>>>>> 
> > > >>>>>>>>>> Hadrian take it away.
> > > >>>>>>>>>> 
> > > >>>>>>>>>> On Tue, Oct 12, 2010 at 4:50 PM, Claus
> > > >>>>>>>>>> Ibsen<cl...@gmail.com>
> > > >> 
> > > >> wrote:
> > > >>>>>>>>>>> Hi
> > > >>>>>>>>>>> 
> > > >>>>>>>>>>> Last minute ticket which James Strachan would love to get
> > > >>>>>>>>>>> in https://issues.apache.org/activemq/browse/CAMEL-3222
> > > >>>>>>>>>>> 
> > > >>>>>>>>>>> I am running full test now with the fixes. Before
> > > >>>>>>>>>>> committing
> > 
> > to
> > 
> > > >>>>>>>>>>> trunk. I will let you know when its committed so we can
> > > >>>>>>>>>>> start the cut.
> > > >>>>>>>>>>> 
> > > >>>>>>>>>>> On Tue, Oct 12, 2010 at 3:22 PM, Hadrian
> > > >> 
> > > >> Zbarcea<hz...@gmail.com>     wrote:
> > > >>>>>>>>>>>> I did some sanity checks in the past days, and as I
> > 
> > mentioned
> > 
> > > >>>>>>>>>>>> earlier on the #camel channel, I already started the
> > > >>>>>>>>>>>> builds for the 2.5.0 release. I only encountered an
> > > >>>>>>>>>>>> intermittent problem with camel-ftp in the past days that
> > > >>>>>>>>>>>> may cause some problem (i hope not), other than that we
> > > >>>>>>>>>>>> should be able to start the vote today.
> > > >>>>>>>>>>>> 
> > > >>>>>>>>>>>> Cheers
> > > >>>>>>>>>>>> Hadrian
> > > >>>>>>>>>>>> 
> > > >>>>>>>>>>>> On Oct 12, 2010, at 12:24 AM, Claus Ibsen wrote:
> > > >>>>>>>>>>>>> Hi
> > > >>>>>>>>>>>>> 
> > > >>>>>>>>>>>>> We have upgraded to Scalate 1.3 and CXF 2.2.11. We should
> > 
> > be
> > 
> > > >>>>>>>>>>>>> all set in terms of dependencies.
> > > >>>>>>>>>>>>> 
> > > >>>>>>>>>>>>> Hadrian do you have time to do the 2.5 release?
> > > >>>>>>>>>>>>> It would be great to get it out really soon. Its been 3
> > > >>>>>>>>>>>>> months since the last release and we have a lot of
> > > >>>>>>>>>>>>> tickets resolved in this release.
> > > >>>>>>>>>>>>> 
> > > >>>>>>>>>>>>> 
> > > >>>>>>>>>>>>> --
> > > >>>>>>>>>>>>> Claus Ibsen
> > > >>>>>>>>>>>>> Apache Camel Committer
> > > >>>>>>>>>>>>> 
> > > >>>>>>>>>>>>> Author of Camel in Action: http://www.manning.com/ibsen/
> > > >>>>>>>>>>>>> Open Source Integration: http://fusesource.com
> > > >>>>>>>>>>>>> Blog: http://davsclaus.blogspot.com/
> > > >>>>>>>>>>>>> Twitter: http://twitter.com/davsclaus
> > > >>>>>>>>>>> 
> > > >>>>>>>>>>> --
> > > >>>>>>>>>>> Claus Ibsen
> > > >>>>>>>>>>> Apache Camel Committer
> > > >>>>>>>>>>> 
> > > >>>>>>>>>>> Author of Camel in Action: http://www.manning.com/ibsen/
> > > >>>>>>>>>>> Open Source Integration: http://fusesource.com
> > > >>>>>>>>>>> Blog: http://davsclaus.blogspot.com/
> > > >>>>>>>>>>> Twitter: http://twitter.com/davsclaus
> > > >>>>>>>>>> 
> > > >>>>>>>>>> --
> > > >>>>>>>>>> Claus Ibsen
> > > >>>>>>>>>> Apache Camel Committer
> > > >>>>>>>>>> 
> > > >>>>>>>>>> Author of Camel in Action: http://www.manning.com/ibsen/
> > > >>>>>>>>>> Open Source Integration: http://fusesource.com
> > > >>>>>>>>>> Blog: http://davsclaus.blogspot.com/
> > > >>>>>>>>>> Twitter: http://twitter.com/davsclaus
> > > >>>>>>>>> 
> > > >>>>>>>>> --
> > > >>>>>>>>> Henryk Konsek
> > > >>>>>>>> 
> > > >>>>>>>> --
> > > >>>>>>>> Claus Ibsen
> > > >>>>>>>> Apache Camel Committer
> > > >>>>>>>> 
> > > >>>>>>>> Author of Camel in Action: http://www.manning.com/ibsen/
> > > >>>>>>>> Open Source Integration: http://fusesource.com
> > > >>>>>>>> Blog: http://davsclaus.blogspot.com/
> > > >>>>>>>> Twitter: http://twitter.com/davsclaus
> > > >>>>>> 
> > > >>>>>> --
> > > >>>>>> Willem
> > > >>>>>> ----------------------------------
> > > >>>>>> Open Source Integration: http://www.fusesource.com
> > > >>>>>> Blog:    http://willemjiang.blogspot.com (English)
> > > >>>>>> 
> > > >>>>>>          http://jnn.javaeye.com (Chinese)
> > > >>>>>> 
> > > >>>>>> Twitter: http://twitter.com/willemjiang
> > > >> 
> > > >> --
> > > >> Daniel Kulp
> > > >> dkulp@apache.org
> > > >> http://dankulp.com/blog
> > 
> > --
> > Daniel Kulp
> > dkulp@apache.org
> > http://dankulp.com/blog

-- 
Daniel Kulp
dkulp@apache.org
http://dankulp.com/blog

Re: Camel 2.5 - Starts to look good for a relese

Posted by Guillaume Nodet <gn...@gmail.com>.
I'd rather use ant run and keep the sources if possible.  I really hate when
you can't properly debug code in your IDE because the source jar is missing
or incomplete.

On Thu, Oct 14, 2010 at 18:17, Daniel Kulp <dk...@apache.org> wrote:

> On Thursday 14 October 2010 9:28:06 am Willem Jiang wrote:
> > Hi Hadrian,
> >
> > I saw the issue after import the project into Eclipse.
>
> I've been trying to dig into this a bit.
>
> From what I can tell, the ONLY reason the pom is doing this is to get the
> sources for those classes into the sources jar.   The bundle plugin already
> puts the .class files for those into the real jar so it's not needed for
> compiling or anything.  Its JUST for the sources jar.
>
> Thus, there are three coarses of action I can see:
>
> 1) Ignore it and let the eclipse projects fail.   I don't like this.
>
> 2) Remove this config from the pom.  The source jars just would not have
> the
> sources for these classes.   Not sure if thats a big deal.
>
> 3) Change it to use antrun to add those extra sources in the package phase.
> Patch for camel-spring below to look at.
>
> Thoughts?
>
> Dan
>
>
>
>
> diff --git a/components/camel-spring/pom.xml
> b/components/camel-spring/pom.xml
> index b6404a2..bc944cb 100644
> --- a/components/camel-spring/pom.xml
> +++ b/components/camel-spring/pom.xml
> @@ -275,6 +275,11 @@
>                 <echo>Deleting unwanted resources from the test-jar</echo>
>                 <delete file="${project.build.directory}/test-
> classes/log4j.properties" verbose="true" />
>                 <delete file="${project.build.directory}/test-classes/META-
> INF/spring/*" verbose="true" />
> +
> +                <jar
> destfile="${project.build.directory}/camel-spring-2.5-
> SNAPSHOT-sources.jar" update="true">
> +                  <fileset
> dir="${basedir}/../camel-core-osgi/src/main/java"
> includes="**/*"/>
> +                  <fileset
> dir="${basedir}/../camel-core-xml/src/main/java"
> includes="**/*"/>
> +                </jar>
>               </tasks>
>             </configuration>
>             <goals>
> @@ -290,19 +295,6 @@
>         <artifactId>build-helper-maven-plugin</artifactId>
>         <executions>
>           <execution>
> -            <id>add-source</id>
> -            <phase>generate-sources</phase>
> -            <goals>
> -              <goal>add-source</goal>
> -            </goals>
> -            <configuration>
> -              <sources>
> -
>  <source>${basedir}/../camel-core-osgi/src/main/java</source>
> -
>  <source>${basedir}/../camel-core-xml/src/main/java</source>
> -              </sources>
> -            </configuration>
> -          </execution>
> -          <execution>
>             <id>attach-artifacts</id>
>             <phase>package</phase>
>             <goals>
>
>
>
> >
> > On 10/14/10 8:01 PM, Hadrian Zbarcea wrote:
> > > Thanks Dan.
> > >
> > > Willem, try loading the generated .projects in eclipse, you'll know
> what
> > > I mean. Dan, it's because of the osgi support that moved between
> > > components.
> > >
> > > Hadrian
> > >
> > > On Oct 14, 2010, at 7:43 AM, Daniel Kulp wrote:
> > >> Just because it runs doesn't mean it works.   The generated projects
> > >> cannot be imported into Eclipse.   You should not be pointing to src
> > >> dirs outside the maven project.   That breaks all kinds of things,
> > >> eclipse being one of them.
> > >>
> > >> There are a couple solutions, but I have to ask why it's even doing
> > >> that? Why can't the two affected modules just depend on the others?
> > >> Why do they need to have to duplicate the classes in them?
> > >>
> > >> Dan
> > >>
> > >> On Thursday 14 October 2010 2:07:26 am Willem Jiang wrote:
> > >>> I just run the mvn eclipse:eclipse on the latest chuck code, every
> > >>> thing looks good.
> > >>>
> > >>> Here is my system information.
> > >>>
> > >>> localhost:trunk jiangning$ mvn -version
> > >>> Apache Maven 2.2.1 (r801777; 2009-08-07 03:16:01+0800)
> > >>> Java version: 1.6.0_20
> > >>> Java home:
> > >>> /System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home
> > >>> Default locale: en_US, platform encoding: MacRoman
> > >>> OS name: "mac os x" version: "10.6.4" arch: "x86_64" Family: "mac"
> > >>>
> > >>> On 10/14/10 1:52 PM, Claus Ibsen wrote:
> > >>>> On Thu, Oct 14, 2010 at 7:24 AM, Hadrian Zbarcea<hzbarcea@gmail.com
> >
> > >>
> > >> wrote:
> > >>>>> Willem, it works fine now. The only issue we have now is with the
> > >>>>> eclipse goal not working properly due to the
> > >>>>> build-helper-maven-plugin in camel-spring and camel-blueprint. It's
> > >>>>> not really a blocker, but it'd avoid releasing with this broken if
> > >>>>> possible. I hope we could resolve this tomorrow. It's the last
> thing
> > >>>>> I know of that should be done for the 2.5.0 release.
> > >>>>
> > >>>> I think this is because of the Maven 3 changes. I did a full mvn
> > >>>> eclipse:eclipse for the entire project when we upgraded all the
> > >>>> versions in the pom.
> > >>>> And it ran 100%.
> > >>>>
> > >>>>> Cheers,
> > >>>>> Hadrian
> > >>>>>
> > >>>>> On Oct 14, 2010, at 12:58 AM, Willem Jiang wrote:
> > >>>>>> Hi hadrian,
> > >>>>>>
> > >>>>>> What's the problem of the camel-jetty build?
> > >>>>>> Are they new build failures?
> > >>>>>>
> > >>>>>> On 10/14/10 11:30 AM, Hadrian Zbarcea wrote:
> > >>>>>>> Still a few errors to sort out. I got a couple of failures in
> > >>>>>>> jetty, the eclipse goal is not working properly either yet in
> > >>>>>>> spring and blueprint. Hadrian
> > >>>>>>>
> > >>>>>>> On Oct 13, 2010, at 5:56 PM, Claus Ibsen wrote:
> > >>>>>>>> Hadrian, how is the 2.5 release going?
> > >>>>>>>>
> > >>>>>>>> On Tue, Oct 12, 2010 at 9:53 PM, Henryk Konsek<
> hekonsek@gmail.com>
> > >>
> > >> wrote:
> > >>>>>>>>> When you release camel-apache, I'll release camel-extra 2.5 .
> > >>>>>>>>>
> > >>>>>>>>> On Tue, Oct 12, 2010 at 9:24 PM, Claus
> > >>>>>>>>> Ibsen<cl...@gmail.com>
> > >>
> > >> wrote:
> > >>>>>>>>>> Okay all is set and we are ready for the 2.5 release.
> > >>>>>>>>>>
> > >>>>>>>>>> Hadrian take it away.
> > >>>>>>>>>>
> > >>>>>>>>>> On Tue, Oct 12, 2010 at 4:50 PM, Claus
> > >>>>>>>>>> Ibsen<cl...@gmail.com>
> > >>
> > >> wrote:
> > >>>>>>>>>>> Hi
> > >>>>>>>>>>>
> > >>>>>>>>>>> Last minute ticket which James Strachan would love to get in
> > >>>>>>>>>>> https://issues.apache.org/activemq/browse/CAMEL-3222
> > >>>>>>>>>>>
> > >>>>>>>>>>> I am running full test now with the fixes. Before committing
> to
> > >>>>>>>>>>> trunk. I will let you know when its committed so we can start
> > >>>>>>>>>>> the cut.
> > >>>>>>>>>>>
> > >>>>>>>>>>> On Tue, Oct 12, 2010 at 3:22 PM, Hadrian
> > >>
> > >> Zbarcea<hz...@gmail.com>     wrote:
> > >>>>>>>>>>>> I did some sanity checks in the past days, and as I
> mentioned
> > >>>>>>>>>>>> earlier on the #camel channel, I already started the builds
> > >>>>>>>>>>>> for the 2.5.0 release. I only encountered an intermittent
> > >>>>>>>>>>>> problem with camel-ftp in the past days that may cause some
> > >>>>>>>>>>>> problem (i hope not), other than that we should be able to
> > >>>>>>>>>>>> start the vote today.
> > >>>>>>>>>>>>
> > >>>>>>>>>>>> Cheers
> > >>>>>>>>>>>> Hadrian
> > >>>>>>>>>>>>
> > >>>>>>>>>>>> On Oct 12, 2010, at 12:24 AM, Claus Ibsen wrote:
> > >>>>>>>>>>>>> Hi
> > >>>>>>>>>>>>>
> > >>>>>>>>>>>>> We have upgraded to Scalate 1.3 and CXF 2.2.11. We should
> be
> > >>>>>>>>>>>>> all set in terms of dependencies.
> > >>>>>>>>>>>>>
> > >>>>>>>>>>>>> Hadrian do you have time to do the 2.5 release?
> > >>>>>>>>>>>>> It would be great to get it out really soon. Its been 3
> > >>>>>>>>>>>>> months since the last release and we have a lot of tickets
> > >>>>>>>>>>>>> resolved in this release.
> > >>>>>>>>>>>>>
> > >>>>>>>>>>>>>
> > >>>>>>>>>>>>> --
> > >>>>>>>>>>>>> Claus Ibsen
> > >>>>>>>>>>>>> Apache Camel Committer
> > >>>>>>>>>>>>>
> > >>>>>>>>>>>>> Author of Camel in Action: http://www.manning.com/ibsen/
> > >>>>>>>>>>>>> Open Source Integration: http://fusesource.com
> > >>>>>>>>>>>>> Blog: http://davsclaus.blogspot.com/
> > >>>>>>>>>>>>> Twitter: http://twitter.com/davsclaus
> > >>>>>>>>>>>
> > >>>>>>>>>>> --
> > >>>>>>>>>>> Claus Ibsen
> > >>>>>>>>>>> Apache Camel Committer
> > >>>>>>>>>>>
> > >>>>>>>>>>> Author of Camel in Action: http://www.manning.com/ibsen/
> > >>>>>>>>>>> Open Source Integration: http://fusesource.com
> > >>>>>>>>>>> Blog: http://davsclaus.blogspot.com/
> > >>>>>>>>>>> Twitter: http://twitter.com/davsclaus
> > >>>>>>>>>>
> > >>>>>>>>>> --
> > >>>>>>>>>> Claus Ibsen
> > >>>>>>>>>> Apache Camel Committer
> > >>>>>>>>>>
> > >>>>>>>>>> Author of Camel in Action: http://www.manning.com/ibsen/
> > >>>>>>>>>> Open Source Integration: http://fusesource.com
> > >>>>>>>>>> Blog: http://davsclaus.blogspot.com/
> > >>>>>>>>>> Twitter: http://twitter.com/davsclaus
> > >>>>>>>>>
> > >>>>>>>>> --
> > >>>>>>>>> Henryk Konsek
> > >>>>>>>>
> > >>>>>>>> --
> > >>>>>>>> Claus Ibsen
> > >>>>>>>> Apache Camel Committer
> > >>>>>>>>
> > >>>>>>>> Author of Camel in Action: http://www.manning.com/ibsen/
> > >>>>>>>> Open Source Integration: http://fusesource.com
> > >>>>>>>> Blog: http://davsclaus.blogspot.com/
> > >>>>>>>> Twitter: http://twitter.com/davsclaus
> > >>>>>>
> > >>>>>> --
> > >>>>>> Willem
> > >>>>>> ----------------------------------
> > >>>>>> Open Source Integration: http://www.fusesource.com
> > >>>>>> Blog:    http://willemjiang.blogspot.com (English)
> > >>>>>>
> > >>>>>>          http://jnn.javaeye.com (Chinese)
> > >>>>>>
> > >>>>>> Twitter: http://twitter.com/willemjiang
> > >>
> > >> --
> > >> Daniel Kulp
> > >> dkulp@apache.org
> > >> http://dankulp.com/blog
>
> --
> Daniel Kulp
> dkulp@apache.org
> http://dankulp.com/blog
>



-- 
Cheers,
Guillaume Nodet
------------------------
Blog: http://gnodet.blogspot.com/
------------------------
Open Source SOA
http://fusesource.com

Re: Camel 2.5 - Starts to look good for a relese (for real)

Posted by Claus Ibsen <cl...@gmail.com>.
Hi

Yay sounds good. I am all good.

On Fri, Oct 15, 2010 at 4:18 PM, Hadrian Zbarcea <hz...@gmail.com> wrote:
> From my point of view all the issues that needed fixing for the 2.5.0 release are resolved. I am planning on building the release candidate this afternoon.
> If there is any issue that you absolutely must push into the 2.5.0 release now is the time to shout.
>
> Cheers,
> Hadrian
>
>
> On Oct 14, 2010, at 8:28 PM, Willem Jiang wrote:
>
>> +1 for the option 3.
>>
>> Willem
>>
>> On 10/15/10 12:17 AM, Daniel Kulp wrote:
>>> On Thursday 14 October 2010 9:28:06 am Willem Jiang wrote:
>>>> Hi Hadrian,
>>>>
>>>> I saw the issue after import the project into Eclipse.
>>>
>>> I've been trying to dig into this a bit.
>>>
>>> From what I can tell, the ONLY reason the pom is doing this is to get the
>>> sources for those classes into the sources jar.   The bundle plugin already
>>> puts the .class files for those into the real jar so it's not needed for
>>> compiling or anything.  Its JUST for the sources jar.
>>>
>>> Thus, there are three coarses of action I can see:
>>>
>>> 1) Ignore it and let the eclipse projects fail.   I don't like this.
>>>
>>> 2) Remove this config from the pom.  The source jars just would not have the
>>> sources for these classes.   Not sure if thats a big deal.
>>>
>>> 3) Change it to use antrun to add those extra sources in the package phase.
>>> Patch for camel-spring below to look at.
>>>
>>> Thoughts?
>>>
>>> Dan
>>>
>>>
>>>
>>>
>>> diff --git a/components/camel-spring/pom.xml b/components/camel-spring/pom.xml
>>> index b6404a2..bc944cb 100644
>>> --- a/components/camel-spring/pom.xml
>>> +++ b/components/camel-spring/pom.xml
>>> @@ -275,6 +275,11 @@
>>>                  <echo>Deleting unwanted resources from the test-jar</echo>
>>>                  <delete file="${project.build.directory}/test-
>>> classes/log4j.properties" verbose="true" />
>>>                  <delete file="${project.build.directory}/test-classes/META-
>>> INF/spring/*" verbose="true" />
>>> +
>>> +<jar destfile="${project.build.directory}/camel-spring-2.5-
>>> SNAPSHOT-sources.jar" update="true">
>>> +<fileset dir="${basedir}/../camel-core-osgi/src/main/java"
>>> includes="**/*"/>
>>> +<fileset dir="${basedir}/../camel-core-xml/src/main/java"
>>> includes="**/*"/>
>>> +</jar>
>>>                </tasks>
>>>              </configuration>
>>>              <goals>
>>> @@ -290,19 +295,6 @@
>>>          <artifactId>build-helper-maven-plugin</artifactId>
>>>          <executions>
>>>            <execution>
>>> -<id>add-source</id>
>>> -<phase>generate-sources</phase>
>>> -<goals>
>>> -<goal>add-source</goal>
>>> -</goals>
>>> -<configuration>
>>> -<sources>
>>> -<source>${basedir}/../camel-core-osgi/src/main/java</source>
>>> -<source>${basedir}/../camel-core-xml/src/main/java</source>
>>> -</sources>
>>> -</configuration>
>>> -</execution>
>>> -<execution>
>>>              <id>attach-artifacts</id>
>>>              <phase>package</phase>
>>>              <goals>
>>>
>>>
>>>
>>>>
>>>> On 10/14/10 8:01 PM, Hadrian Zbarcea wrote:
>>>>> Thanks Dan.
>>>>>
>>>>> Willem, try loading the generated .projects in eclipse, you'll know what
>>>>> I mean. Dan, it's because of the osgi support that moved between
>>>>> components.
>>>>>
>>>>> Hadrian
>>>>>
>>>>> On Oct 14, 2010, at 7:43 AM, Daniel Kulp wrote:
>>>>>> Just because it runs doesn't mean it works.   The generated projects
>>>>>> cannot be imported into Eclipse.   You should not be pointing to src
>>>>>> dirs outside the maven project.   That breaks all kinds of things,
>>>>>> eclipse being one of them.
>>>>>>
>>>>>> There are a couple solutions, but I have to ask why it's even doing
>>>>>> that? Why can't the two affected modules just depend on the others?
>>>>>> Why do they need to have to duplicate the classes in them?
>>>>>>
>>>>>> Dan
>>>>>>
>>>>>> On Thursday 14 October 2010 2:07:26 am Willem Jiang wrote:
>>>>>>> I just run the mvn eclipse:eclipse on the latest chuck code, every
>>>>>>> thing looks good.
>>>>>>>
>>>>>>> Here is my system information.
>>>>>>>
>>>>>>> localhost:trunk jiangning$ mvn -version
>>>>>>> Apache Maven 2.2.1 (r801777; 2009-08-07 03:16:01+0800)
>>>>>>> Java version: 1.6.0_20
>>>>>>> Java home:
>>>>>>> /System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home
>>>>>>> Default locale: en_US, platform encoding: MacRoman
>>>>>>> OS name: "mac os x" version: "10.6.4" arch: "x86_64" Family: "mac"
>>>>>>>
>>>>>>> On 10/14/10 1:52 PM, Claus Ibsen wrote:
>>>>>>>> On Thu, Oct 14, 2010 at 7:24 AM, Hadrian Zbarcea<hz...@gmail.com>
>>>>>>
>>>>>> wrote:
>>>>>>>>> Willem, it works fine now. The only issue we have now is with the
>>>>>>>>> eclipse goal not working properly due to the
>>>>>>>>> build-helper-maven-plugin in camel-spring and camel-blueprint. It's
>>>>>>>>> not really a blocker, but it'd avoid releasing with this broken if
>>>>>>>>> possible. I hope we could resolve this tomorrow. It's the last thing
>>>>>>>>> I know of that should be done for the 2.5.0 release.
>>>>>>>>
>>>>>>>> I think this is because of the Maven 3 changes. I did a full mvn
>>>>>>>> eclipse:eclipse for the entire project when we upgraded all the
>>>>>>>> versions in the pom.
>>>>>>>> And it ran 100%.
>>>>>>>>
>>>>>>>>> Cheers,
>>>>>>>>> Hadrian
>>>>>>>>>
>>>>>>>>> On Oct 14, 2010, at 12:58 AM, Willem Jiang wrote:
>>>>>>>>>> Hi hadrian,
>>>>>>>>>>
>>>>>>>>>> What's the problem of the camel-jetty build?
>>>>>>>>>> Are they new build failures?
>>>>>>>>>>
>>>>>>>>>> On 10/14/10 11:30 AM, Hadrian Zbarcea wrote:
>>>>>>>>>>> Still a few errors to sort out. I got a couple of failures in
>>>>>>>>>>> jetty, the eclipse goal is not working properly either yet in
>>>>>>>>>>> spring and blueprint. Hadrian
>>>>>>>>>>>
>>>>>>>>>>> On Oct 13, 2010, at 5:56 PM, Claus Ibsen wrote:
>>>>>>>>>>>> Hadrian, how is the 2.5 release going?
>>>>>>>>>>>>
>>>>>>>>>>>> On Tue, Oct 12, 2010 at 9:53 PM, Henryk Konsek<he...@gmail.com>
>>>>>>
>>>>>> wrote:
>>>>>>>>>>>>> When you release camel-apache, I'll release camel-extra 2.5 .
>>>>>>>>>>>>>
>>>>>>>>>>>>> On Tue, Oct 12, 2010 at 9:24 PM, Claus
>>>>>>>>>>>>> Ibsen<cl...@gmail.com>
>>>>>>
>>>>>> wrote:
>>>>>>>>>>>>>> Okay all is set and we are ready for the 2.5 release.
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> Hadrian take it away.
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> On Tue, Oct 12, 2010 at 4:50 PM, Claus
>>>>>>>>>>>>>> Ibsen<cl...@gmail.com>
>>>>>>
>>>>>> wrote:
>>>>>>>>>>>>>>> Hi
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> Last minute ticket which James Strachan would love to get in
>>>>>>>>>>>>>>> https://issues.apache.org/activemq/browse/CAMEL-3222
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> I am running full test now with the fixes. Before committing to
>>>>>>>>>>>>>>> trunk. I will let you know when its committed so we can start
>>>>>>>>>>>>>>> the cut.
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> On Tue, Oct 12, 2010 at 3:22 PM, Hadrian
>>>>>>
>>>>>> Zbarcea<hz...@gmail.com>      wrote:
>>>>>>>>>>>>>>>> I did some sanity checks in the past days, and as I mentioned
>>>>>>>>>>>>>>>> earlier on the #camel channel, I already started the builds
>>>>>>>>>>>>>>>> for the 2.5.0 release. I only encountered an intermittent
>>>>>>>>>>>>>>>> problem with camel-ftp in the past days that may cause some
>>>>>>>>>>>>>>>> problem (i hope not), other than that we should be able to
>>>>>>>>>>>>>>>> start the vote today.
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> Cheers
>>>>>>>>>>>>>>>> Hadrian
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> On Oct 12, 2010, at 12:24 AM, Claus Ibsen wrote:
>>>>>>>>>>>>>>>>> Hi
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> We have upgraded to Scalate 1.3 and CXF 2.2.11. We should be
>>>>>>>>>>>>>>>>> all set in terms of dependencies.
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> Hadrian do you have time to do the 2.5 release?
>>>>>>>>>>>>>>>>> It would be great to get it out really soon. Its been 3
>>>>>>>>>>>>>>>>> months since the last release and we have a lot of tickets
>>>>>>>>>>>>>>>>> resolved in this release.
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> --
>>>>>>>>>>>>>>>>> Claus Ibsen
>>>>>>>>>>>>>>>>> Apache Camel Committer
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> Author of Camel in Action: http://www.manning.com/ibsen/
>>>>>>>>>>>>>>>>> Open Source Integration: http://fusesource.com
>>>>>>>>>>>>>>>>> Blog: http://davsclaus.blogspot.com/
>>>>>>>>>>>>>>>>> Twitter: http://twitter.com/davsclaus
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> --
>>>>>>>>>>>>>>> Claus Ibsen
>>>>>>>>>>>>>>> Apache Camel Committer
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> Author of Camel in Action: http://www.manning.com/ibsen/
>>>>>>>>>>>>>>> Open Source Integration: http://fusesource.com
>>>>>>>>>>>>>>> Blog: http://davsclaus.blogspot.com/
>>>>>>>>>>>>>>> Twitter: http://twitter.com/davsclaus
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> --
>>>>>>>>>>>>>> Claus Ibsen
>>>>>>>>>>>>>> Apache Camel Committer
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> Author of Camel in Action: http://www.manning.com/ibsen/
>>>>>>>>>>>>>> Open Source Integration: http://fusesource.com
>>>>>>>>>>>>>> Blog: http://davsclaus.blogspot.com/
>>>>>>>>>>>>>> Twitter: http://twitter.com/davsclaus
>>>>>>>>>>>>>
>>>>>>>>>>>>> --
>>>>>>>>>>>>> Henryk Konsek
>>>>>>>>>>>>
>>>>>>>>>>>> --
>>>>>>>>>>>> Claus Ibsen
>>>>>>>>>>>> Apache Camel Committer
>>>>>>>>>>>>
>>>>>>>>>>>> Author of Camel in Action: http://www.manning.com/ibsen/
>>>>>>>>>>>> Open Source Integration: http://fusesource.com
>>>>>>>>>>>> Blog: http://davsclaus.blogspot.com/
>>>>>>>>>>>> Twitter: http://twitter.com/davsclaus
>>>>>>>>>>
>>>>>>>>>> --
>>>>>>>>>> Willem
>>>>>>>>>> ----------------------------------
>>>>>>>>>> Open Source Integration: http://www.fusesource.com
>>>>>>>>>> Blog:    http://willemjiang.blogspot.com (English)
>>>>>>>>>>
>>>>>>>>>>          http://jnn.javaeye.com (Chinese)
>>>>>>>>>>
>>>>>>>>>> Twitter: http://twitter.com/willemjiang
>>>>>>
>>>>>> --
>>>>>> Daniel Kulp
>>>>>> dkulp@apache.org
>>>>>> http://dankulp.com/blog
>>>
>>
>>
>> --
>> Willem
>> ----------------------------------
>> Open Source Integration: http://www.fusesource.com
>> Blog:    http://willemjiang.blogspot.com (English)
>>         http://jnn.javaeye.com (Chinese)
>> Twitter: http://twitter.com/willemjiang
>
>



-- 
Claus Ibsen
Apache Camel Committer

Author of Camel in Action: http://www.manning.com/ibsen/
Open Source Integration: http://fusesource.com
Blog: http://davsclaus.blogspot.com/
Twitter: http://twitter.com/davsclaus

Re: Camel 2.5 - Starts to look good for a relese (for real)

Posted by Hadrian Zbarcea <hz...@gmail.com>.
From my point of view all the issues that needed fixing for the 2.5.0 release are resolved. I am planning on building the release candidate this afternoon.
If there is any issue that you absolutely must push into the 2.5.0 release now is the time to shout.

Cheers,
Hadrian


On Oct 14, 2010, at 8:28 PM, Willem Jiang wrote:

> +1 for the option 3.
> 
> Willem
> 
> On 10/15/10 12:17 AM, Daniel Kulp wrote:
>> On Thursday 14 October 2010 9:28:06 am Willem Jiang wrote:
>>> Hi Hadrian,
>>> 
>>> I saw the issue after import the project into Eclipse.
>> 
>> I've been trying to dig into this a bit.
>> 
>> From what I can tell, the ONLY reason the pom is doing this is to get the
>> sources for those classes into the sources jar.   The bundle plugin already
>> puts the .class files for those into the real jar so it's not needed for
>> compiling or anything.  Its JUST for the sources jar.
>> 
>> Thus, there are three coarses of action I can see:
>> 
>> 1) Ignore it and let the eclipse projects fail.   I don't like this.
>> 
>> 2) Remove this config from the pom.  The source jars just would not have the
>> sources for these classes.   Not sure if thats a big deal.
>> 
>> 3) Change it to use antrun to add those extra sources in the package phase.
>> Patch for camel-spring below to look at.
>> 
>> Thoughts?
>> 
>> Dan
>> 
>> 
>> 
>> 
>> diff --git a/components/camel-spring/pom.xml b/components/camel-spring/pom.xml
>> index b6404a2..bc944cb 100644
>> --- a/components/camel-spring/pom.xml
>> +++ b/components/camel-spring/pom.xml
>> @@ -275,6 +275,11 @@
>>                  <echo>Deleting unwanted resources from the test-jar</echo>
>>                  <delete file="${project.build.directory}/test-
>> classes/log4j.properties" verbose="true" />
>>                  <delete file="${project.build.directory}/test-classes/META-
>> INF/spring/*" verbose="true" />
>> +
>> +<jar destfile="${project.build.directory}/camel-spring-2.5-
>> SNAPSHOT-sources.jar" update="true">
>> +<fileset dir="${basedir}/../camel-core-osgi/src/main/java"
>> includes="**/*"/>
>> +<fileset dir="${basedir}/../camel-core-xml/src/main/java"
>> includes="**/*"/>
>> +</jar>
>>                </tasks>
>>              </configuration>
>>              <goals>
>> @@ -290,19 +295,6 @@
>>          <artifactId>build-helper-maven-plugin</artifactId>
>>          <executions>
>>            <execution>
>> -<id>add-source</id>
>> -<phase>generate-sources</phase>
>> -<goals>
>> -<goal>add-source</goal>
>> -</goals>
>> -<configuration>
>> -<sources>
>> -<source>${basedir}/../camel-core-osgi/src/main/java</source>
>> -<source>${basedir}/../camel-core-xml/src/main/java</source>
>> -</sources>
>> -</configuration>
>> -</execution>
>> -<execution>
>>              <id>attach-artifacts</id>
>>              <phase>package</phase>
>>              <goals>
>> 
>> 
>> 
>>> 
>>> On 10/14/10 8:01 PM, Hadrian Zbarcea wrote:
>>>> Thanks Dan.
>>>> 
>>>> Willem, try loading the generated .projects in eclipse, you'll know what
>>>> I mean. Dan, it's because of the osgi support that moved between
>>>> components.
>>>> 
>>>> Hadrian
>>>> 
>>>> On Oct 14, 2010, at 7:43 AM, Daniel Kulp wrote:
>>>>> Just because it runs doesn't mean it works.   The generated projects
>>>>> cannot be imported into Eclipse.   You should not be pointing to src
>>>>> dirs outside the maven project.   That breaks all kinds of things,
>>>>> eclipse being one of them.
>>>>> 
>>>>> There are a couple solutions, but I have to ask why it's even doing
>>>>> that? Why can't the two affected modules just depend on the others?
>>>>> Why do they need to have to duplicate the classes in them?
>>>>> 
>>>>> Dan
>>>>> 
>>>>> On Thursday 14 October 2010 2:07:26 am Willem Jiang wrote:
>>>>>> I just run the mvn eclipse:eclipse on the latest chuck code, every
>>>>>> thing looks good.
>>>>>> 
>>>>>> Here is my system information.
>>>>>> 
>>>>>> localhost:trunk jiangning$ mvn -version
>>>>>> Apache Maven 2.2.1 (r801777; 2009-08-07 03:16:01+0800)
>>>>>> Java version: 1.6.0_20
>>>>>> Java home:
>>>>>> /System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home
>>>>>> Default locale: en_US, platform encoding: MacRoman
>>>>>> OS name: "mac os x" version: "10.6.4" arch: "x86_64" Family: "mac"
>>>>>> 
>>>>>> On 10/14/10 1:52 PM, Claus Ibsen wrote:
>>>>>>> On Thu, Oct 14, 2010 at 7:24 AM, Hadrian Zbarcea<hz...@gmail.com>
>>>>> 
>>>>> wrote:
>>>>>>>> Willem, it works fine now. The only issue we have now is with the
>>>>>>>> eclipse goal not working properly due to the
>>>>>>>> build-helper-maven-plugin in camel-spring and camel-blueprint. It's
>>>>>>>> not really a blocker, but it'd avoid releasing with this broken if
>>>>>>>> possible. I hope we could resolve this tomorrow. It's the last thing
>>>>>>>> I know of that should be done for the 2.5.0 release.
>>>>>>> 
>>>>>>> I think this is because of the Maven 3 changes. I did a full mvn
>>>>>>> eclipse:eclipse for the entire project when we upgraded all the
>>>>>>> versions in the pom.
>>>>>>> And it ran 100%.
>>>>>>> 
>>>>>>>> Cheers,
>>>>>>>> Hadrian
>>>>>>>> 
>>>>>>>> On Oct 14, 2010, at 12:58 AM, Willem Jiang wrote:
>>>>>>>>> Hi hadrian,
>>>>>>>>> 
>>>>>>>>> What's the problem of the camel-jetty build?
>>>>>>>>> Are they new build failures?
>>>>>>>>> 
>>>>>>>>> On 10/14/10 11:30 AM, Hadrian Zbarcea wrote:
>>>>>>>>>> Still a few errors to sort out. I got a couple of failures in
>>>>>>>>>> jetty, the eclipse goal is not working properly either yet in
>>>>>>>>>> spring and blueprint. Hadrian
>>>>>>>>>> 
>>>>>>>>>> On Oct 13, 2010, at 5:56 PM, Claus Ibsen wrote:
>>>>>>>>>>> Hadrian, how is the 2.5 release going?
>>>>>>>>>>> 
>>>>>>>>>>> On Tue, Oct 12, 2010 at 9:53 PM, Henryk Konsek<he...@gmail.com>
>>>>> 
>>>>> wrote:
>>>>>>>>>>>> When you release camel-apache, I'll release camel-extra 2.5 .
>>>>>>>>>>>> 
>>>>>>>>>>>> On Tue, Oct 12, 2010 at 9:24 PM, Claus
>>>>>>>>>>>> Ibsen<cl...@gmail.com>
>>>>> 
>>>>> wrote:
>>>>>>>>>>>>> Okay all is set and we are ready for the 2.5 release.
>>>>>>>>>>>>> 
>>>>>>>>>>>>> Hadrian take it away.
>>>>>>>>>>>>> 
>>>>>>>>>>>>> On Tue, Oct 12, 2010 at 4:50 PM, Claus
>>>>>>>>>>>>> Ibsen<cl...@gmail.com>
>>>>> 
>>>>> wrote:
>>>>>>>>>>>>>> Hi
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> Last minute ticket which James Strachan would love to get in
>>>>>>>>>>>>>> https://issues.apache.org/activemq/browse/CAMEL-3222
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> I am running full test now with the fixes. Before committing to
>>>>>>>>>>>>>> trunk. I will let you know when its committed so we can start
>>>>>>>>>>>>>> the cut.
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> On Tue, Oct 12, 2010 at 3:22 PM, Hadrian
>>>>> 
>>>>> Zbarcea<hz...@gmail.com>      wrote:
>>>>>>>>>>>>>>> I did some sanity checks in the past days, and as I mentioned
>>>>>>>>>>>>>>> earlier on the #camel channel, I already started the builds
>>>>>>>>>>>>>>> for the 2.5.0 release. I only encountered an intermittent
>>>>>>>>>>>>>>> problem with camel-ftp in the past days that may cause some
>>>>>>>>>>>>>>> problem (i hope not), other than that we should be able to
>>>>>>>>>>>>>>> start the vote today.
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> Cheers
>>>>>>>>>>>>>>> Hadrian
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> On Oct 12, 2010, at 12:24 AM, Claus Ibsen wrote:
>>>>>>>>>>>>>>>> Hi
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> We have upgraded to Scalate 1.3 and CXF 2.2.11. We should be
>>>>>>>>>>>>>>>> all set in terms of dependencies.
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> Hadrian do you have time to do the 2.5 release?
>>>>>>>>>>>>>>>> It would be great to get it out really soon. Its been 3
>>>>>>>>>>>>>>>> months since the last release and we have a lot of tickets
>>>>>>>>>>>>>>>> resolved in this release.
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> --
>>>>>>>>>>>>>>>> Claus Ibsen
>>>>>>>>>>>>>>>> Apache Camel Committer
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> Author of Camel in Action: http://www.manning.com/ibsen/
>>>>>>>>>>>>>>>> Open Source Integration: http://fusesource.com
>>>>>>>>>>>>>>>> Blog: http://davsclaus.blogspot.com/
>>>>>>>>>>>>>>>> Twitter: http://twitter.com/davsclaus
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> --
>>>>>>>>>>>>>> Claus Ibsen
>>>>>>>>>>>>>> Apache Camel Committer
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> Author of Camel in Action: http://www.manning.com/ibsen/
>>>>>>>>>>>>>> Open Source Integration: http://fusesource.com
>>>>>>>>>>>>>> Blog: http://davsclaus.blogspot.com/
>>>>>>>>>>>>>> Twitter: http://twitter.com/davsclaus
>>>>>>>>>>>>> 
>>>>>>>>>>>>> --
>>>>>>>>>>>>> Claus Ibsen
>>>>>>>>>>>>> Apache Camel Committer
>>>>>>>>>>>>> 
>>>>>>>>>>>>> Author of Camel in Action: http://www.manning.com/ibsen/
>>>>>>>>>>>>> Open Source Integration: http://fusesource.com
>>>>>>>>>>>>> Blog: http://davsclaus.blogspot.com/
>>>>>>>>>>>>> Twitter: http://twitter.com/davsclaus
>>>>>>>>>>>> 
>>>>>>>>>>>> --
>>>>>>>>>>>> Henryk Konsek
>>>>>>>>>>> 
>>>>>>>>>>> --
>>>>>>>>>>> Claus Ibsen
>>>>>>>>>>> Apache Camel Committer
>>>>>>>>>>> 
>>>>>>>>>>> Author of Camel in Action: http://www.manning.com/ibsen/
>>>>>>>>>>> Open Source Integration: http://fusesource.com
>>>>>>>>>>> Blog: http://davsclaus.blogspot.com/
>>>>>>>>>>> Twitter: http://twitter.com/davsclaus
>>>>>>>>> 
>>>>>>>>> --
>>>>>>>>> Willem
>>>>>>>>> ----------------------------------
>>>>>>>>> Open Source Integration: http://www.fusesource.com
>>>>>>>>> Blog:    http://willemjiang.blogspot.com (English)
>>>>>>>>> 
>>>>>>>>>          http://jnn.javaeye.com (Chinese)
>>>>>>>>> 
>>>>>>>>> Twitter: http://twitter.com/willemjiang
>>>>> 
>>>>> --
>>>>> Daniel Kulp
>>>>> dkulp@apache.org
>>>>> http://dankulp.com/blog
>> 
> 
> 
> -- 
> Willem
> ----------------------------------
> Open Source Integration: http://www.fusesource.com
> Blog:    http://willemjiang.blogspot.com (English)
>         http://jnn.javaeye.com (Chinese)
> Twitter: http://twitter.com/willemjiang


Re: Camel 2.5 - Starts to look good for a relese

Posted by Willem Jiang <wi...@gmail.com>.
+1 for the option 3.

Willem

On 10/15/10 12:17 AM, Daniel Kulp wrote:
> On Thursday 14 October 2010 9:28:06 am Willem Jiang wrote:
>> Hi Hadrian,
>>
>> I saw the issue after import the project into Eclipse.
>
> I've been trying to dig into this a bit.
>
>  From what I can tell, the ONLY reason the pom is doing this is to get the
> sources for those classes into the sources jar.   The bundle plugin already
> puts the .class files for those into the real jar so it's not needed for
> compiling or anything.  Its JUST for the sources jar.
>
> Thus, there are three coarses of action I can see:
>
> 1) Ignore it and let the eclipse projects fail.   I don't like this.
>
> 2) Remove this config from the pom.  The source jars just would not have the
> sources for these classes.   Not sure if thats a big deal.
>
> 3) Change it to use antrun to add those extra sources in the package phase.
> Patch for camel-spring below to look at.
>
> Thoughts?
>
> Dan
>
>
>
>
> diff --git a/components/camel-spring/pom.xml b/components/camel-spring/pom.xml
> index b6404a2..bc944cb 100644
> --- a/components/camel-spring/pom.xml
> +++ b/components/camel-spring/pom.xml
> @@ -275,6 +275,11 @@
>                   <echo>Deleting unwanted resources from the test-jar</echo>
>                   <delete file="${project.build.directory}/test-
> classes/log4j.properties" verbose="true" />
>                   <delete file="${project.build.directory}/test-classes/META-
> INF/spring/*" verbose="true" />
> +
> +<jar destfile="${project.build.directory}/camel-spring-2.5-
> SNAPSHOT-sources.jar" update="true">
> +<fileset dir="${basedir}/../camel-core-osgi/src/main/java"
> includes="**/*"/>
> +<fileset dir="${basedir}/../camel-core-xml/src/main/java"
> includes="**/*"/>
> +</jar>
>                 </tasks>
>               </configuration>
>               <goals>
> @@ -290,19 +295,6 @@
>           <artifactId>build-helper-maven-plugin</artifactId>
>           <executions>
>             <execution>
> -<id>add-source</id>
> -<phase>generate-sources</phase>
> -<goals>
> -<goal>add-source</goal>
> -</goals>
> -<configuration>
> -<sources>
> -<source>${basedir}/../camel-core-osgi/src/main/java</source>
> -<source>${basedir}/../camel-core-xml/src/main/java</source>
> -</sources>
> -</configuration>
> -</execution>
> -<execution>
>               <id>attach-artifacts</id>
>               <phase>package</phase>
>               <goals>
>
>
>
>>
>> On 10/14/10 8:01 PM, Hadrian Zbarcea wrote:
>>> Thanks Dan.
>>>
>>> Willem, try loading the generated .projects in eclipse, you'll know what
>>> I mean. Dan, it's because of the osgi support that moved between
>>> components.
>>>
>>> Hadrian
>>>
>>> On Oct 14, 2010, at 7:43 AM, Daniel Kulp wrote:
>>>> Just because it runs doesn't mean it works.   The generated projects
>>>> cannot be imported into Eclipse.   You should not be pointing to src
>>>> dirs outside the maven project.   That breaks all kinds of things,
>>>> eclipse being one of them.
>>>>
>>>> There are a couple solutions, but I have to ask why it's even doing
>>>> that? Why can't the two affected modules just depend on the others?
>>>> Why do they need to have to duplicate the classes in them?
>>>>
>>>> Dan
>>>>
>>>> On Thursday 14 October 2010 2:07:26 am Willem Jiang wrote:
>>>>> I just run the mvn eclipse:eclipse on the latest chuck code, every
>>>>> thing looks good.
>>>>>
>>>>> Here is my system information.
>>>>>
>>>>> localhost:trunk jiangning$ mvn -version
>>>>> Apache Maven 2.2.1 (r801777; 2009-08-07 03:16:01+0800)
>>>>> Java version: 1.6.0_20
>>>>> Java home:
>>>>> /System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home
>>>>> Default locale: en_US, platform encoding: MacRoman
>>>>> OS name: "mac os x" version: "10.6.4" arch: "x86_64" Family: "mac"
>>>>>
>>>>> On 10/14/10 1:52 PM, Claus Ibsen wrote:
>>>>>> On Thu, Oct 14, 2010 at 7:24 AM, Hadrian Zbarcea<hz...@gmail.com>
>>>>
>>>> wrote:
>>>>>>> Willem, it works fine now. The only issue we have now is with the
>>>>>>> eclipse goal not working properly due to the
>>>>>>> build-helper-maven-plugin in camel-spring and camel-blueprint. It's
>>>>>>> not really a blocker, but it'd avoid releasing with this broken if
>>>>>>> possible. I hope we could resolve this tomorrow. It's the last thing
>>>>>>> I know of that should be done for the 2.5.0 release.
>>>>>>
>>>>>> I think this is because of the Maven 3 changes. I did a full mvn
>>>>>> eclipse:eclipse for the entire project when we upgraded all the
>>>>>> versions in the pom.
>>>>>> And it ran 100%.
>>>>>>
>>>>>>> Cheers,
>>>>>>> Hadrian
>>>>>>>
>>>>>>> On Oct 14, 2010, at 12:58 AM, Willem Jiang wrote:
>>>>>>>> Hi hadrian,
>>>>>>>>
>>>>>>>> What's the problem of the camel-jetty build?
>>>>>>>> Are they new build failures?
>>>>>>>>
>>>>>>>> On 10/14/10 11:30 AM, Hadrian Zbarcea wrote:
>>>>>>>>> Still a few errors to sort out. I got a couple of failures in
>>>>>>>>> jetty, the eclipse goal is not working properly either yet in
>>>>>>>>> spring and blueprint. Hadrian
>>>>>>>>>
>>>>>>>>> On Oct 13, 2010, at 5:56 PM, Claus Ibsen wrote:
>>>>>>>>>> Hadrian, how is the 2.5 release going?
>>>>>>>>>>
>>>>>>>>>> On Tue, Oct 12, 2010 at 9:53 PM, Henryk Konsek<he...@gmail.com>
>>>>
>>>> wrote:
>>>>>>>>>>> When you release camel-apache, I'll release camel-extra 2.5 .
>>>>>>>>>>>
>>>>>>>>>>> On Tue, Oct 12, 2010 at 9:24 PM, Claus
>>>>>>>>>>> Ibsen<cl...@gmail.com>
>>>>
>>>> wrote:
>>>>>>>>>>>> Okay all is set and we are ready for the 2.5 release.
>>>>>>>>>>>>
>>>>>>>>>>>> Hadrian take it away.
>>>>>>>>>>>>
>>>>>>>>>>>> On Tue, Oct 12, 2010 at 4:50 PM, Claus
>>>>>>>>>>>> Ibsen<cl...@gmail.com>
>>>>
>>>> wrote:
>>>>>>>>>>>>> Hi
>>>>>>>>>>>>>
>>>>>>>>>>>>> Last minute ticket which James Strachan would love to get in
>>>>>>>>>>>>> https://issues.apache.org/activemq/browse/CAMEL-3222
>>>>>>>>>>>>>
>>>>>>>>>>>>> I am running full test now with the fixes. Before committing to
>>>>>>>>>>>>> trunk. I will let you know when its committed so we can start
>>>>>>>>>>>>> the cut.
>>>>>>>>>>>>>
>>>>>>>>>>>>> On Tue, Oct 12, 2010 at 3:22 PM, Hadrian
>>>>
>>>> Zbarcea<hz...@gmail.com>      wrote:
>>>>>>>>>>>>>> I did some sanity checks in the past days, and as I mentioned
>>>>>>>>>>>>>> earlier on the #camel channel, I already started the builds
>>>>>>>>>>>>>> for the 2.5.0 release. I only encountered an intermittent
>>>>>>>>>>>>>> problem with camel-ftp in the past days that may cause some
>>>>>>>>>>>>>> problem (i hope not), other than that we should be able to
>>>>>>>>>>>>>> start the vote today.
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> Cheers
>>>>>>>>>>>>>> Hadrian
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> On Oct 12, 2010, at 12:24 AM, Claus Ibsen wrote:
>>>>>>>>>>>>>>> Hi
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> We have upgraded to Scalate 1.3 and CXF 2.2.11. We should be
>>>>>>>>>>>>>>> all set in terms of dependencies.
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> Hadrian do you have time to do the 2.5 release?
>>>>>>>>>>>>>>> It would be great to get it out really soon. Its been 3
>>>>>>>>>>>>>>> months since the last release and we have a lot of tickets
>>>>>>>>>>>>>>> resolved in this release.
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> --
>>>>>>>>>>>>>>> Claus Ibsen
>>>>>>>>>>>>>>> Apache Camel Committer
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> Author of Camel in Action: http://www.manning.com/ibsen/
>>>>>>>>>>>>>>> Open Source Integration: http://fusesource.com
>>>>>>>>>>>>>>> Blog: http://davsclaus.blogspot.com/
>>>>>>>>>>>>>>> Twitter: http://twitter.com/davsclaus
>>>>>>>>>>>>>
>>>>>>>>>>>>> --
>>>>>>>>>>>>> Claus Ibsen
>>>>>>>>>>>>> Apache Camel Committer
>>>>>>>>>>>>>
>>>>>>>>>>>>> Author of Camel in Action: http://www.manning.com/ibsen/
>>>>>>>>>>>>> Open Source Integration: http://fusesource.com
>>>>>>>>>>>>> Blog: http://davsclaus.blogspot.com/
>>>>>>>>>>>>> Twitter: http://twitter.com/davsclaus
>>>>>>>>>>>>
>>>>>>>>>>>> --
>>>>>>>>>>>> Claus Ibsen
>>>>>>>>>>>> Apache Camel Committer
>>>>>>>>>>>>
>>>>>>>>>>>> Author of Camel in Action: http://www.manning.com/ibsen/
>>>>>>>>>>>> Open Source Integration: http://fusesource.com
>>>>>>>>>>>> Blog: http://davsclaus.blogspot.com/
>>>>>>>>>>>> Twitter: http://twitter.com/davsclaus
>>>>>>>>>>>
>>>>>>>>>>> --
>>>>>>>>>>> Henryk Konsek
>>>>>>>>>>
>>>>>>>>>> --
>>>>>>>>>> Claus Ibsen
>>>>>>>>>> Apache Camel Committer
>>>>>>>>>>
>>>>>>>>>> Author of Camel in Action: http://www.manning.com/ibsen/
>>>>>>>>>> Open Source Integration: http://fusesource.com
>>>>>>>>>> Blog: http://davsclaus.blogspot.com/
>>>>>>>>>> Twitter: http://twitter.com/davsclaus
>>>>>>>>
>>>>>>>> --
>>>>>>>> Willem
>>>>>>>> ----------------------------------
>>>>>>>> Open Source Integration: http://www.fusesource.com
>>>>>>>> Blog:    http://willemjiang.blogspot.com (English)
>>>>>>>>
>>>>>>>>           http://jnn.javaeye.com (Chinese)
>>>>>>>>
>>>>>>>> Twitter: http://twitter.com/willemjiang
>>>>
>>>> --
>>>> Daniel Kulp
>>>> dkulp@apache.org
>>>> http://dankulp.com/blog
>


-- 
Willem
----------------------------------
Open Source Integration: http://www.fusesource.com
Blog:    http://willemjiang.blogspot.com (English)
          http://jnn.javaeye.com (Chinese)
Twitter: http://twitter.com/willemjiang

Re: Camel 2.5 - Starts to look good for a relese

Posted by Daniel Kulp <dk...@apache.org>.
On Thursday 14 October 2010 9:28:06 am Willem Jiang wrote:
> Hi Hadrian,
> 
> I saw the issue after import the project into Eclipse. 

I've been trying to dig into this a bit.

From what I can tell, the ONLY reason the pom is doing this is to get the 
sources for those classes into the sources jar.   The bundle plugin already 
puts the .class files for those into the real jar so it's not needed for 
compiling or anything.  Its JUST for the sources jar.

Thus, there are three coarses of action I can see:

1) Ignore it and let the eclipse projects fail.   I don't like this.

2) Remove this config from the pom.  The source jars just would not have the 
sources for these classes.   Not sure if thats a big deal.

3) Change it to use antrun to add those extra sources in the package phase.  
Patch for camel-spring below to look at.  

Thoughts?

Dan




diff --git a/components/camel-spring/pom.xml b/components/camel-spring/pom.xml
index b6404a2..bc944cb 100644
--- a/components/camel-spring/pom.xml
+++ b/components/camel-spring/pom.xml
@@ -275,6 +275,11 @@
                 <echo>Deleting unwanted resources from the test-jar</echo>
                 <delete file="${project.build.directory}/test-
classes/log4j.properties" verbose="true" />
                 <delete file="${project.build.directory}/test-classes/META-
INF/spring/*" verbose="true" />
+
+                <jar destfile="${project.build.directory}/camel-spring-2.5-
SNAPSHOT-sources.jar" update="true">
+                  <fileset dir="${basedir}/../camel-core-osgi/src/main/java" 
includes="**/*"/>
+                  <fileset dir="${basedir}/../camel-core-xml/src/main/java" 
includes="**/*"/>
+                </jar>
               </tasks>
             </configuration>
             <goals>
@@ -290,19 +295,6 @@
         <artifactId>build-helper-maven-plugin</artifactId>
         <executions>
           <execution>
-            <id>add-source</id>
-            <phase>generate-sources</phase>
-            <goals>
-              <goal>add-source</goal>
-            </goals>
-            <configuration>
-              <sources>
-                <source>${basedir}/../camel-core-osgi/src/main/java</source>
-                <source>${basedir}/../camel-core-xml/src/main/java</source>
-              </sources>
-            </configuration>
-          </execution>
-          <execution>
             <id>attach-artifacts</id>
             <phase>package</phase>
             <goals>



> 
> On 10/14/10 8:01 PM, Hadrian Zbarcea wrote:
> > Thanks Dan.
> > 
> > Willem, try loading the generated .projects in eclipse, you'll know what
> > I mean. Dan, it's because of the osgi support that moved between
> > components.
> > 
> > Hadrian
> > 
> > On Oct 14, 2010, at 7:43 AM, Daniel Kulp wrote:
> >> Just because it runs doesn't mean it works.   The generated projects
> >> cannot be imported into Eclipse.   You should not be pointing to src
> >> dirs outside the maven project.   That breaks all kinds of things,
> >> eclipse being one of them.
> >> 
> >> There are a couple solutions, but I have to ask why it's even doing
> >> that? Why can't the two affected modules just depend on the others? 
> >> Why do they need to have to duplicate the classes in them?
> >> 
> >> Dan
> >> 
> >> On Thursday 14 October 2010 2:07:26 am Willem Jiang wrote:
> >>> I just run the mvn eclipse:eclipse on the latest chuck code, every
> >>> thing looks good.
> >>> 
> >>> Here is my system information.
> >>> 
> >>> localhost:trunk jiangning$ mvn -version
> >>> Apache Maven 2.2.1 (r801777; 2009-08-07 03:16:01+0800)
> >>> Java version: 1.6.0_20
> >>> Java home:
> >>> /System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home
> >>> Default locale: en_US, platform encoding: MacRoman
> >>> OS name: "mac os x" version: "10.6.4" arch: "x86_64" Family: "mac"
> >>> 
> >>> On 10/14/10 1:52 PM, Claus Ibsen wrote:
> >>>> On Thu, Oct 14, 2010 at 7:24 AM, Hadrian Zbarcea<hz...@gmail.com>
> >> 
> >> wrote:
> >>>>> Willem, it works fine now. The only issue we have now is with the
> >>>>> eclipse goal not working properly due to the
> >>>>> build-helper-maven-plugin in camel-spring and camel-blueprint. It's
> >>>>> not really a blocker, but it'd avoid releasing with this broken if
> >>>>> possible. I hope we could resolve this tomorrow. It's the last thing
> >>>>> I know of that should be done for the 2.5.0 release.
> >>>> 
> >>>> I think this is because of the Maven 3 changes. I did a full mvn
> >>>> eclipse:eclipse for the entire project when we upgraded all the
> >>>> versions in the pom.
> >>>> And it ran 100%.
> >>>> 
> >>>>> Cheers,
> >>>>> Hadrian
> >>>>> 
> >>>>> On Oct 14, 2010, at 12:58 AM, Willem Jiang wrote:
> >>>>>> Hi hadrian,
> >>>>>> 
> >>>>>> What's the problem of the camel-jetty build?
> >>>>>> Are they new build failures?
> >>>>>> 
> >>>>>> On 10/14/10 11:30 AM, Hadrian Zbarcea wrote:
> >>>>>>> Still a few errors to sort out. I got a couple of failures in
> >>>>>>> jetty, the eclipse goal is not working properly either yet in
> >>>>>>> spring and blueprint. Hadrian
> >>>>>>> 
> >>>>>>> On Oct 13, 2010, at 5:56 PM, Claus Ibsen wrote:
> >>>>>>>> Hadrian, how is the 2.5 release going?
> >>>>>>>> 
> >>>>>>>> On Tue, Oct 12, 2010 at 9:53 PM, Henryk Konsek<he...@gmail.com>
> >> 
> >> wrote:
> >>>>>>>>> When you release camel-apache, I'll release camel-extra 2.5 .
> >>>>>>>>> 
> >>>>>>>>> On Tue, Oct 12, 2010 at 9:24 PM, Claus
> >>>>>>>>> Ibsen<cl...@gmail.com>
> >> 
> >> wrote:
> >>>>>>>>>> Okay all is set and we are ready for the 2.5 release.
> >>>>>>>>>> 
> >>>>>>>>>> Hadrian take it away.
> >>>>>>>>>> 
> >>>>>>>>>> On Tue, Oct 12, 2010 at 4:50 PM, Claus
> >>>>>>>>>> Ibsen<cl...@gmail.com>
> >> 
> >> wrote:
> >>>>>>>>>>> Hi
> >>>>>>>>>>> 
> >>>>>>>>>>> Last minute ticket which James Strachan would love to get in
> >>>>>>>>>>> https://issues.apache.org/activemq/browse/CAMEL-3222
> >>>>>>>>>>> 
> >>>>>>>>>>> I am running full test now with the fixes. Before committing to
> >>>>>>>>>>> trunk. I will let you know when its committed so we can start
> >>>>>>>>>>> the cut.
> >>>>>>>>>>> 
> >>>>>>>>>>> On Tue, Oct 12, 2010 at 3:22 PM, Hadrian
> >> 
> >> Zbarcea<hz...@gmail.com>     wrote:
> >>>>>>>>>>>> I did some sanity checks in the past days, and as I mentioned
> >>>>>>>>>>>> earlier on the #camel channel, I already started the builds
> >>>>>>>>>>>> for the 2.5.0 release. I only encountered an intermittent
> >>>>>>>>>>>> problem with camel-ftp in the past days that may cause some
> >>>>>>>>>>>> problem (i hope not), other than that we should be able to
> >>>>>>>>>>>> start the vote today.
> >>>>>>>>>>>> 
> >>>>>>>>>>>> Cheers
> >>>>>>>>>>>> Hadrian
> >>>>>>>>>>>> 
> >>>>>>>>>>>> On Oct 12, 2010, at 12:24 AM, Claus Ibsen wrote:
> >>>>>>>>>>>>> Hi
> >>>>>>>>>>>>> 
> >>>>>>>>>>>>> We have upgraded to Scalate 1.3 and CXF 2.2.11. We should be
> >>>>>>>>>>>>> all set in terms of dependencies.
> >>>>>>>>>>>>> 
> >>>>>>>>>>>>> Hadrian do you have time to do the 2.5 release?
> >>>>>>>>>>>>> It would be great to get it out really soon. Its been 3
> >>>>>>>>>>>>> months since the last release and we have a lot of tickets
> >>>>>>>>>>>>> resolved in this release.
> >>>>>>>>>>>>> 
> >>>>>>>>>>>>> 
> >>>>>>>>>>>>> --
> >>>>>>>>>>>>> Claus Ibsen
> >>>>>>>>>>>>> Apache Camel Committer
> >>>>>>>>>>>>> 
> >>>>>>>>>>>>> Author of Camel in Action: http://www.manning.com/ibsen/
> >>>>>>>>>>>>> Open Source Integration: http://fusesource.com
> >>>>>>>>>>>>> Blog: http://davsclaus.blogspot.com/
> >>>>>>>>>>>>> Twitter: http://twitter.com/davsclaus
> >>>>>>>>>>> 
> >>>>>>>>>>> --
> >>>>>>>>>>> Claus Ibsen
> >>>>>>>>>>> Apache Camel Committer
> >>>>>>>>>>> 
> >>>>>>>>>>> Author of Camel in Action: http://www.manning.com/ibsen/
> >>>>>>>>>>> Open Source Integration: http://fusesource.com
> >>>>>>>>>>> Blog: http://davsclaus.blogspot.com/
> >>>>>>>>>>> Twitter: http://twitter.com/davsclaus
> >>>>>>>>>> 
> >>>>>>>>>> --
> >>>>>>>>>> Claus Ibsen
> >>>>>>>>>> Apache Camel Committer
> >>>>>>>>>> 
> >>>>>>>>>> Author of Camel in Action: http://www.manning.com/ibsen/
> >>>>>>>>>> Open Source Integration: http://fusesource.com
> >>>>>>>>>> Blog: http://davsclaus.blogspot.com/
> >>>>>>>>>> Twitter: http://twitter.com/davsclaus
> >>>>>>>>> 
> >>>>>>>>> --
> >>>>>>>>> Henryk Konsek
> >>>>>>>> 
> >>>>>>>> --
> >>>>>>>> Claus Ibsen
> >>>>>>>> Apache Camel Committer
> >>>>>>>> 
> >>>>>>>> Author of Camel in Action: http://www.manning.com/ibsen/
> >>>>>>>> Open Source Integration: http://fusesource.com
> >>>>>>>> Blog: http://davsclaus.blogspot.com/
> >>>>>>>> Twitter: http://twitter.com/davsclaus
> >>>>>> 
> >>>>>> --
> >>>>>> Willem
> >>>>>> ----------------------------------
> >>>>>> Open Source Integration: http://www.fusesource.com
> >>>>>> Blog:    http://willemjiang.blogspot.com (English)
> >>>>>> 
> >>>>>>          http://jnn.javaeye.com (Chinese)
> >>>>>> 
> >>>>>> Twitter: http://twitter.com/willemjiang
> >> 
> >> --
> >> Daniel Kulp
> >> dkulp@apache.org
> >> http://dankulp.com/blog

-- 
Daniel Kulp
dkulp@apache.org
http://dankulp.com/blog

Re: Camel 2.5 - Starts to look good for a relese

Posted by Hadrian Zbarcea <hz...@gmail.com>.
We are working on closing down the trunk for the 2.5.0 release. If you don't have fixes that must go in 2.5.0 please delay your commits until we build the release candidate.

Thanks
Hadrian


On Oct 14, 2010, at 9:28 AM, Willem Jiang wrote:

> Hi Hadrian,
> 
> I saw the issue after import the project into Eclipse.
> 
> On 10/14/10 8:01 PM, Hadrian Zbarcea wrote:
>> Thanks Dan.
>> 
>> Willem, try loading the generated .projects in eclipse, you'll know what I mean.
>> Dan, it's because of the osgi support that moved between components.
>> 
>> Hadrian
>> 
>> 
>> On Oct 14, 2010, at 7:43 AM, Daniel Kulp wrote:
>> 
>>> 
>>> Just because it runs doesn't mean it works.   The generated projects cannot be
>>> imported into Eclipse.   You should not be pointing to src dirs outside the
>>> maven project.   That breaks all kinds of things, eclipse being one of them.
>>> 
>>> There are a couple solutions, but I have to ask why it's even doing that?
>>> Why can't the two affected modules just depend on the others?  Why do they
>>> need to have to duplicate the classes in them?
>>> 
>>> Dan
>>> 
>>> 
>>> On Thursday 14 October 2010 2:07:26 am Willem Jiang wrote:
>>>> I just run the mvn eclipse:eclipse on the latest chuck code, every thing
>>>> looks good.
>>>> 
>>>> Here is my system information.
>>>> 
>>>> localhost:trunk jiangning$ mvn -version
>>>> Apache Maven 2.2.1 (r801777; 2009-08-07 03:16:01+0800)
>>>> Java version: 1.6.0_20
>>>> Java home: /System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home
>>>> Default locale: en_US, platform encoding: MacRoman
>>>> OS name: "mac os x" version: "10.6.4" arch: "x86_64" Family: "mac"
>>>> 
>>>> On 10/14/10 1:52 PM, Claus Ibsen wrote:
>>>>> On Thu, Oct 14, 2010 at 7:24 AM, Hadrian Zbarcea<hz...@gmail.com>
>>> wrote:
>>>>>> Willem, it works fine now. The only issue we have now is with the
>>>>>> eclipse goal not working properly due to the build-helper-maven-plugin
>>>>>> in camel-spring and camel-blueprint. It's not really a blocker, but
>>>>>> it'd avoid releasing with this broken if possible. I hope we could
>>>>>> resolve this tomorrow. It's the last thing I know of that should be
>>>>>> done for the 2.5.0 release.
>>>>> 
>>>>> I think this is because of the Maven 3 changes. I did a full mvn
>>>>> eclipse:eclipse for the entire project when we upgraded all the
>>>>> versions in the pom.
>>>>> And it ran 100%.
>>>>> 
>>>>>> Cheers,
>>>>>> Hadrian
>>>>>> 
>>>>>> On Oct 14, 2010, at 12:58 AM, Willem Jiang wrote:
>>>>>>> Hi hadrian,
>>>>>>> 
>>>>>>> What's the problem of the camel-jetty build?
>>>>>>> Are they new build failures?
>>>>>>> 
>>>>>>> On 10/14/10 11:30 AM, Hadrian Zbarcea wrote:
>>>>>>>> Still a few errors to sort out. I got a couple of failures in jetty,
>>>>>>>> the eclipse goal is not working properly either yet in spring and
>>>>>>>> blueprint. Hadrian
>>>>>>>> 
>>>>>>>> On Oct 13, 2010, at 5:56 PM, Claus Ibsen wrote:
>>>>>>>>> Hadrian, how is the 2.5 release going?
>>>>>>>>> 
>>>>>>>>> On Tue, Oct 12, 2010 at 9:53 PM, Henryk Konsek<he...@gmail.com>
>>> wrote:
>>>>>>>>>> When you release camel-apache, I'll release camel-extra 2.5 .
>>>>>>>>>> 
>>>>>>>>>> On Tue, Oct 12, 2010 at 9:24 PM, Claus Ibsen<cl...@gmail.com>
>>> wrote:
>>>>>>>>>>> Okay all is set and we are ready for the 2.5 release.
>>>>>>>>>>> 
>>>>>>>>>>> Hadrian take it away.
>>>>>>>>>>> 
>>>>>>>>>>> On Tue, Oct 12, 2010 at 4:50 PM, Claus Ibsen<cl...@gmail.com>
>>> wrote:
>>>>>>>>>>>> Hi
>>>>>>>>>>>> 
>>>>>>>>>>>> Last minute ticket which James Strachan would love to get in
>>>>>>>>>>>> https://issues.apache.org/activemq/browse/CAMEL-3222
>>>>>>>>>>>> 
>>>>>>>>>>>> I am running full test now with the fixes. Before committing to
>>>>>>>>>>>> trunk. I will let you know when its committed so we can start the
>>>>>>>>>>>> cut.
>>>>>>>>>>>> 
>>>>>>>>>>>> On Tue, Oct 12, 2010 at 3:22 PM, Hadrian
>>> Zbarcea<hz...@gmail.com>     wrote:
>>>>>>>>>>>>> I did some sanity checks in the past days, and as I mentioned
>>>>>>>>>>>>> earlier on the #camel channel, I already started the builds for
>>>>>>>>>>>>> the 2.5.0 release. I only encountered an intermittent problem
>>>>>>>>>>>>> with camel-ftp in the past days that may cause some problem (i
>>>>>>>>>>>>> hope not), other than that we should be able to start the vote
>>>>>>>>>>>>> today.
>>>>>>>>>>>>> 
>>>>>>>>>>>>> Cheers
>>>>>>>>>>>>> Hadrian
>>>>>>>>>>>>> 
>>>>>>>>>>>>> On Oct 12, 2010, at 12:24 AM, Claus Ibsen wrote:
>>>>>>>>>>>>>> Hi
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> We have upgraded to Scalate 1.3 and CXF 2.2.11. We should be all
>>>>>>>>>>>>>> set in terms of dependencies.
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> Hadrian do you have time to do the 2.5 release?
>>>>>>>>>>>>>> It would be great to get it out really soon. Its been 3 months
>>>>>>>>>>>>>> since the last release and we have a lot of tickets resolved in
>>>>>>>>>>>>>> this release.
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> --
>>>>>>>>>>>>>> Claus Ibsen
>>>>>>>>>>>>>> Apache Camel Committer
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> Author of Camel in Action: http://www.manning.com/ibsen/
>>>>>>>>>>>>>> Open Source Integration: http://fusesource.com
>>>>>>>>>>>>>> Blog: http://davsclaus.blogspot.com/
>>>>>>>>>>>>>> Twitter: http://twitter.com/davsclaus
>>>>>>>>>>>> 
>>>>>>>>>>>> --
>>>>>>>>>>>> Claus Ibsen
>>>>>>>>>>>> Apache Camel Committer
>>>>>>>>>>>> 
>>>>>>>>>>>> Author of Camel in Action: http://www.manning.com/ibsen/
>>>>>>>>>>>> Open Source Integration: http://fusesource.com
>>>>>>>>>>>> Blog: http://davsclaus.blogspot.com/
>>>>>>>>>>>> Twitter: http://twitter.com/davsclaus
>>>>>>>>>>> 
>>>>>>>>>>> --
>>>>>>>>>>> Claus Ibsen
>>>>>>>>>>> Apache Camel Committer
>>>>>>>>>>> 
>>>>>>>>>>> Author of Camel in Action: http://www.manning.com/ibsen/
>>>>>>>>>>> Open Source Integration: http://fusesource.com
>>>>>>>>>>> Blog: http://davsclaus.blogspot.com/
>>>>>>>>>>> Twitter: http://twitter.com/davsclaus
>>>>>>>>>> 
>>>>>>>>>> --
>>>>>>>>>> Henryk Konsek
>>>>>>>>> 
>>>>>>>>> --
>>>>>>>>> Claus Ibsen
>>>>>>>>> Apache Camel Committer
>>>>>>>>> 
>>>>>>>>> Author of Camel in Action: http://www.manning.com/ibsen/
>>>>>>>>> Open Source Integration: http://fusesource.com
>>>>>>>>> Blog: http://davsclaus.blogspot.com/
>>>>>>>>> Twitter: http://twitter.com/davsclaus
>>>>>>> 
>>>>>>> --
>>>>>>> Willem
>>>>>>> ----------------------------------
>>>>>>> Open Source Integration: http://www.fusesource.com
>>>>>>> Blog:    http://willemjiang.blogspot.com (English)
>>>>>>> 
>>>>>>>         http://jnn.javaeye.com (Chinese)
>>>>>>> 
>>>>>>> Twitter: http://twitter.com/willemjiang
>>> 
>>> --
>>> Daniel Kulp
>>> dkulp@apache.org
>>> http://dankulp.com/blog
>> 
>> 
> 
> 
> -- 
> Willem
> ----------------------------------
> Open Source Integration: http://www.fusesource.com
> Blog:    http://willemjiang.blogspot.com (English)
>         http://jnn.javaeye.com (Chinese)
> Twitter: http://twitter.com/willemjiang


Re: Camel 2.5 - Starts to look good for a relese

Posted by Willem Jiang <wi...@gmail.com>.
Hi Hadrian,

I saw the issue after import the project into Eclipse.

On 10/14/10 8:01 PM, Hadrian Zbarcea wrote:
> Thanks Dan.
>
> Willem, try loading the generated .projects in eclipse, you'll know what I mean.
> Dan, it's because of the osgi support that moved between components.
>
> Hadrian
>
>
> On Oct 14, 2010, at 7:43 AM, Daniel Kulp wrote:
>
>>
>> Just because it runs doesn't mean it works.   The generated projects cannot be
>> imported into Eclipse.   You should not be pointing to src dirs outside the
>> maven project.   That breaks all kinds of things, eclipse being one of them.
>>
>> There are a couple solutions, but I have to ask why it's even doing that?
>> Why can't the two affected modules just depend on the others?  Why do they
>> need to have to duplicate the classes in them?
>>
>> Dan
>>
>>
>> On Thursday 14 October 2010 2:07:26 am Willem Jiang wrote:
>>> I just run the mvn eclipse:eclipse on the latest chuck code, every thing
>>> looks good.
>>>
>>> Here is my system information.
>>>
>>> localhost:trunk jiangning$ mvn -version
>>> Apache Maven 2.2.1 (r801777; 2009-08-07 03:16:01+0800)
>>> Java version: 1.6.0_20
>>> Java home: /System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home
>>> Default locale: en_US, platform encoding: MacRoman
>>> OS name: "mac os x" version: "10.6.4" arch: "x86_64" Family: "mac"
>>>
>>> On 10/14/10 1:52 PM, Claus Ibsen wrote:
>>>> On Thu, Oct 14, 2010 at 7:24 AM, Hadrian Zbarcea<hz...@gmail.com>
>> wrote:
>>>>> Willem, it works fine now. The only issue we have now is with the
>>>>> eclipse goal not working properly due to the build-helper-maven-plugin
>>>>> in camel-spring and camel-blueprint. It's not really a blocker, but
>>>>> it'd avoid releasing with this broken if possible. I hope we could
>>>>> resolve this tomorrow. It's the last thing I know of that should be
>>>>> done for the 2.5.0 release.
>>>>
>>>> I think this is because of the Maven 3 changes. I did a full mvn
>>>> eclipse:eclipse for the entire project when we upgraded all the
>>>> versions in the pom.
>>>> And it ran 100%.
>>>>
>>>>> Cheers,
>>>>> Hadrian
>>>>>
>>>>> On Oct 14, 2010, at 12:58 AM, Willem Jiang wrote:
>>>>>> Hi hadrian,
>>>>>>
>>>>>> What's the problem of the camel-jetty build?
>>>>>> Are they new build failures?
>>>>>>
>>>>>> On 10/14/10 11:30 AM, Hadrian Zbarcea wrote:
>>>>>>> Still a few errors to sort out. I got a couple of failures in jetty,
>>>>>>> the eclipse goal is not working properly either yet in spring and
>>>>>>> blueprint. Hadrian
>>>>>>>
>>>>>>> On Oct 13, 2010, at 5:56 PM, Claus Ibsen wrote:
>>>>>>>> Hadrian, how is the 2.5 release going?
>>>>>>>>
>>>>>>>> On Tue, Oct 12, 2010 at 9:53 PM, Henryk Konsek<he...@gmail.com>
>> wrote:
>>>>>>>>> When you release camel-apache, I'll release camel-extra 2.5 .
>>>>>>>>>
>>>>>>>>> On Tue, Oct 12, 2010 at 9:24 PM, Claus Ibsen<cl...@gmail.com>
>> wrote:
>>>>>>>>>> Okay all is set and we are ready for the 2.5 release.
>>>>>>>>>>
>>>>>>>>>> Hadrian take it away.
>>>>>>>>>>
>>>>>>>>>> On Tue, Oct 12, 2010 at 4:50 PM, Claus Ibsen<cl...@gmail.com>
>> wrote:
>>>>>>>>>>> Hi
>>>>>>>>>>>
>>>>>>>>>>> Last minute ticket which James Strachan would love to get in
>>>>>>>>>>> https://issues.apache.org/activemq/browse/CAMEL-3222
>>>>>>>>>>>
>>>>>>>>>>> I am running full test now with the fixes. Before committing to
>>>>>>>>>>> trunk. I will let you know when its committed so we can start the
>>>>>>>>>>> cut.
>>>>>>>>>>>
>>>>>>>>>>> On Tue, Oct 12, 2010 at 3:22 PM, Hadrian
>> Zbarcea<hz...@gmail.com>     wrote:
>>>>>>>>>>>> I did some sanity checks in the past days, and as I mentioned
>>>>>>>>>>>> earlier on the #camel channel, I already started the builds for
>>>>>>>>>>>> the 2.5.0 release. I only encountered an intermittent problem
>>>>>>>>>>>> with camel-ftp in the past days that may cause some problem (i
>>>>>>>>>>>> hope not), other than that we should be able to start the vote
>>>>>>>>>>>> today.
>>>>>>>>>>>>
>>>>>>>>>>>> Cheers
>>>>>>>>>>>> Hadrian
>>>>>>>>>>>>
>>>>>>>>>>>> On Oct 12, 2010, at 12:24 AM, Claus Ibsen wrote:
>>>>>>>>>>>>> Hi
>>>>>>>>>>>>>
>>>>>>>>>>>>> We have upgraded to Scalate 1.3 and CXF 2.2.11. We should be all
>>>>>>>>>>>>> set in terms of dependencies.
>>>>>>>>>>>>>
>>>>>>>>>>>>> Hadrian do you have time to do the 2.5 release?
>>>>>>>>>>>>> It would be great to get it out really soon. Its been 3 months
>>>>>>>>>>>>> since the last release and we have a lot of tickets resolved in
>>>>>>>>>>>>> this release.
>>>>>>>>>>>>>
>>>>>>>>>>>>>
>>>>>>>>>>>>> --
>>>>>>>>>>>>> Claus Ibsen
>>>>>>>>>>>>> Apache Camel Committer
>>>>>>>>>>>>>
>>>>>>>>>>>>> Author of Camel in Action: http://www.manning.com/ibsen/
>>>>>>>>>>>>> Open Source Integration: http://fusesource.com
>>>>>>>>>>>>> Blog: http://davsclaus.blogspot.com/
>>>>>>>>>>>>> Twitter: http://twitter.com/davsclaus
>>>>>>>>>>>
>>>>>>>>>>> --
>>>>>>>>>>> Claus Ibsen
>>>>>>>>>>> Apache Camel Committer
>>>>>>>>>>>
>>>>>>>>>>> Author of Camel in Action: http://www.manning.com/ibsen/
>>>>>>>>>>> Open Source Integration: http://fusesource.com
>>>>>>>>>>> Blog: http://davsclaus.blogspot.com/
>>>>>>>>>>> Twitter: http://twitter.com/davsclaus
>>>>>>>>>>
>>>>>>>>>> --
>>>>>>>>>> Claus Ibsen
>>>>>>>>>> Apache Camel Committer
>>>>>>>>>>
>>>>>>>>>> Author of Camel in Action: http://www.manning.com/ibsen/
>>>>>>>>>> Open Source Integration: http://fusesource.com
>>>>>>>>>> Blog: http://davsclaus.blogspot.com/
>>>>>>>>>> Twitter: http://twitter.com/davsclaus
>>>>>>>>>
>>>>>>>>> --
>>>>>>>>> Henryk Konsek
>>>>>>>>
>>>>>>>> --
>>>>>>>> Claus Ibsen
>>>>>>>> Apache Camel Committer
>>>>>>>>
>>>>>>>> Author of Camel in Action: http://www.manning.com/ibsen/
>>>>>>>> Open Source Integration: http://fusesource.com
>>>>>>>> Blog: http://davsclaus.blogspot.com/
>>>>>>>> Twitter: http://twitter.com/davsclaus
>>>>>>
>>>>>> --
>>>>>> Willem
>>>>>> ----------------------------------
>>>>>> Open Source Integration: http://www.fusesource.com
>>>>>> Blog:    http://willemjiang.blogspot.com (English)
>>>>>>
>>>>>>          http://jnn.javaeye.com (Chinese)
>>>>>>
>>>>>> Twitter: http://twitter.com/willemjiang
>>
>> --
>> Daniel Kulp
>> dkulp@apache.org
>> http://dankulp.com/blog
>
>


-- 
Willem
----------------------------------
Open Source Integration: http://www.fusesource.com
Blog:    http://willemjiang.blogspot.com (English)
          http://jnn.javaeye.com (Chinese)
Twitter: http://twitter.com/willemjiang

Re: Camel 2.5 - Starts to look good for a relese

Posted by Hadrian Zbarcea <hz...@gmail.com>.
Thanks Dan.

Willem, try loading the generated .projects in eclipse, you'll know what I mean.
Dan, it's because of the osgi support that moved between components.

Hadrian


On Oct 14, 2010, at 7:43 AM, Daniel Kulp wrote:

> 
> Just because it runs doesn't mean it works.   The generated projects cannot be 
> imported into Eclipse.   You should not be pointing to src dirs outside the 
> maven project.   That breaks all kinds of things, eclipse being one of them.
> 
> There are a couple solutions, but I have to ask why it's even doing that?   
> Why can't the two affected modules just depend on the others?  Why do they 
> need to have to duplicate the classes in them?
> 
> Dan
> 
> 
> On Thursday 14 October 2010 2:07:26 am Willem Jiang wrote:
>> I just run the mvn eclipse:eclipse on the latest chuck code, every thing
>> looks good.
>> 
>> Here is my system information.
>> 
>> localhost:trunk jiangning$ mvn -version
>> Apache Maven 2.2.1 (r801777; 2009-08-07 03:16:01+0800)
>> Java version: 1.6.0_20
>> Java home: /System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home
>> Default locale: en_US, platform encoding: MacRoman
>> OS name: "mac os x" version: "10.6.4" arch: "x86_64" Family: "mac"
>> 
>> On 10/14/10 1:52 PM, Claus Ibsen wrote:
>>> On Thu, Oct 14, 2010 at 7:24 AM, Hadrian Zbarcea<hz...@gmail.com>  
> wrote:
>>>> Willem, it works fine now. The only issue we have now is with the
>>>> eclipse goal not working properly due to the build-helper-maven-plugin
>>>> in camel-spring and camel-blueprint. It's not really a blocker, but
>>>> it'd avoid releasing with this broken if possible. I hope we could
>>>> resolve this tomorrow. It's the last thing I know of that should be
>>>> done for the 2.5.0 release.
>>> 
>>> I think this is because of the Maven 3 changes. I did a full mvn
>>> eclipse:eclipse for the entire project when we upgraded all the
>>> versions in the pom.
>>> And it ran 100%.
>>> 
>>>> Cheers,
>>>> Hadrian
>>>> 
>>>> On Oct 14, 2010, at 12:58 AM, Willem Jiang wrote:
>>>>> Hi hadrian,
>>>>> 
>>>>> What's the problem of the camel-jetty build?
>>>>> Are they new build failures?
>>>>> 
>>>>> On 10/14/10 11:30 AM, Hadrian Zbarcea wrote:
>>>>>> Still a few errors to sort out. I got a couple of failures in jetty,
>>>>>> the eclipse goal is not working properly either yet in spring and
>>>>>> blueprint. Hadrian
>>>>>> 
>>>>>> On Oct 13, 2010, at 5:56 PM, Claus Ibsen wrote:
>>>>>>> Hadrian, how is the 2.5 release going?
>>>>>>> 
>>>>>>> On Tue, Oct 12, 2010 at 9:53 PM, Henryk Konsek<he...@gmail.com>    
> wrote:
>>>>>>>> When you release camel-apache, I'll release camel-extra 2.5 .
>>>>>>>> 
>>>>>>>> On Tue, Oct 12, 2010 at 9:24 PM, Claus Ibsen<cl...@gmail.com>    
> wrote:
>>>>>>>>> Okay all is set and we are ready for the 2.5 release.
>>>>>>>>> 
>>>>>>>>> Hadrian take it away.
>>>>>>>>> 
>>>>>>>>> On Tue, Oct 12, 2010 at 4:50 PM, Claus Ibsen<cl...@gmail.com>    
> wrote:
>>>>>>>>>> Hi
>>>>>>>>>> 
>>>>>>>>>> Last minute ticket which James Strachan would love to get in
>>>>>>>>>> https://issues.apache.org/activemq/browse/CAMEL-3222
>>>>>>>>>> 
>>>>>>>>>> I am running full test now with the fixes. Before committing to
>>>>>>>>>> trunk. I will let you know when its committed so we can start the
>>>>>>>>>> cut.
>>>>>>>>>> 
>>>>>>>>>> On Tue, Oct 12, 2010 at 3:22 PM, Hadrian 
> Zbarcea<hz...@gmail.com>    wrote:
>>>>>>>>>>> I did some sanity checks in the past days, and as I mentioned
>>>>>>>>>>> earlier on the #camel channel, I already started the builds for
>>>>>>>>>>> the 2.5.0 release. I only encountered an intermittent problem
>>>>>>>>>>> with camel-ftp in the past days that may cause some problem (i
>>>>>>>>>>> hope not), other than that we should be able to start the vote
>>>>>>>>>>> today.
>>>>>>>>>>> 
>>>>>>>>>>> Cheers
>>>>>>>>>>> Hadrian
>>>>>>>>>>> 
>>>>>>>>>>> On Oct 12, 2010, at 12:24 AM, Claus Ibsen wrote:
>>>>>>>>>>>> Hi
>>>>>>>>>>>> 
>>>>>>>>>>>> We have upgraded to Scalate 1.3 and CXF 2.2.11. We should be all
>>>>>>>>>>>> set in terms of dependencies.
>>>>>>>>>>>> 
>>>>>>>>>>>> Hadrian do you have time to do the 2.5 release?
>>>>>>>>>>>> It would be great to get it out really soon. Its been 3 months
>>>>>>>>>>>> since the last release and we have a lot of tickets resolved in
>>>>>>>>>>>> this release.
>>>>>>>>>>>> 
>>>>>>>>>>>> 
>>>>>>>>>>>> --
>>>>>>>>>>>> Claus Ibsen
>>>>>>>>>>>> Apache Camel Committer
>>>>>>>>>>>> 
>>>>>>>>>>>> Author of Camel in Action: http://www.manning.com/ibsen/
>>>>>>>>>>>> Open Source Integration: http://fusesource.com
>>>>>>>>>>>> Blog: http://davsclaus.blogspot.com/
>>>>>>>>>>>> Twitter: http://twitter.com/davsclaus
>>>>>>>>>> 
>>>>>>>>>> --
>>>>>>>>>> Claus Ibsen
>>>>>>>>>> Apache Camel Committer
>>>>>>>>>> 
>>>>>>>>>> Author of Camel in Action: http://www.manning.com/ibsen/
>>>>>>>>>> Open Source Integration: http://fusesource.com
>>>>>>>>>> Blog: http://davsclaus.blogspot.com/
>>>>>>>>>> Twitter: http://twitter.com/davsclaus
>>>>>>>>> 
>>>>>>>>> --
>>>>>>>>> Claus Ibsen
>>>>>>>>> Apache Camel Committer
>>>>>>>>> 
>>>>>>>>> Author of Camel in Action: http://www.manning.com/ibsen/
>>>>>>>>> Open Source Integration: http://fusesource.com
>>>>>>>>> Blog: http://davsclaus.blogspot.com/
>>>>>>>>> Twitter: http://twitter.com/davsclaus
>>>>>>>> 
>>>>>>>> --
>>>>>>>> Henryk Konsek
>>>>>>> 
>>>>>>> --
>>>>>>> Claus Ibsen
>>>>>>> Apache Camel Committer
>>>>>>> 
>>>>>>> Author of Camel in Action: http://www.manning.com/ibsen/
>>>>>>> Open Source Integration: http://fusesource.com
>>>>>>> Blog: http://davsclaus.blogspot.com/
>>>>>>> Twitter: http://twitter.com/davsclaus
>>>>> 
>>>>> --
>>>>> Willem
>>>>> ----------------------------------
>>>>> Open Source Integration: http://www.fusesource.com
>>>>> Blog:    http://willemjiang.blogspot.com (English)
>>>>> 
>>>>>         http://jnn.javaeye.com (Chinese)
>>>>> 
>>>>> Twitter: http://twitter.com/willemjiang
> 
> -- 
> Daniel Kulp
> dkulp@apache.org
> http://dankulp.com/blog


Re: Camel 2.5 - Starts to look good for a relese

Posted by Willem Jiang <wi...@gmail.com>.
On 10/14/10 7:43 PM, Daniel Kulp wrote:
>
> Just because it runs doesn't mean it works.   The generated projects cannot be
> imported into Eclipse.   You should not be pointing to src dirs outside the
> maven project.   That breaks all kinds of things, eclipse being one of them.
>
> There are a couple solutions, but I have to ask why it's even doing that?
> Why can't the two affected modules just depend on the others?  Why do they
> need to have to duplicate the classes in them?
The camel-core-xml and camel-core-osgi are both used as the private 
packages in camel-spring and camel-blueprint.
The source codes are added into the source jar just for debugging.

If we shipped the camel-core-xml and camel-core-osgi as separated 
bundles, there will be too much new bundles to be used when we try to 
run some basic camel application.

>
> Dan
>
>
> On Thursday 14 October 2010 2:07:26 am Willem Jiang wrote:
>> I just run the mvn eclipse:eclipse on the latest chuck code, every thing
>> looks good.
>>
>> Here is my system information.
>>
>> localhost:trunk jiangning$ mvn -version
>> Apache Maven 2.2.1 (r801777; 2009-08-07 03:16:01+0800)
>> Java version: 1.6.0_20
>> Java home: /System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home
>> Default locale: en_US, platform encoding: MacRoman
>> OS name: "mac os x" version: "10.6.4" arch: "x86_64" Family: "mac"
>>
>> On 10/14/10 1:52 PM, Claus Ibsen wrote:
>>> On Thu, Oct 14, 2010 at 7:24 AM, Hadrian Zbarcea<hz...@gmail.com>
> wrote:
>>>> Willem, it works fine now. The only issue we have now is with the
>>>> eclipse goal not working properly due to the build-helper-maven-plugin
>>>> in camel-spring and camel-blueprint. It's not really a blocker, but
>>>> it'd avoid releasing with this broken if possible. I hope we could
>>>> resolve this tomorrow. It's the last thing I know of that should be
>>>> done for the 2.5.0 release.
>>>
>>> I think this is because of the Maven 3 changes. I did a full mvn
>>> eclipse:eclipse for the entire project when we upgraded all the
>>> versions in the pom.
>>> And it ran 100%.
>>>
>>>> Cheers,
>>>> Hadrian
>>>>
>>>> On Oct 14, 2010, at 12:58 AM, Willem Jiang wrote:
>>>>> Hi hadrian,
>>>>>
>>>>> What's the problem of the camel-jetty build?
>>>>> Are they new build failures?
>>>>>
>>>>> On 10/14/10 11:30 AM, Hadrian Zbarcea wrote:
>>>>>> Still a few errors to sort out. I got a couple of failures in jetty,
>>>>>> the eclipse goal is not working properly either yet in spring and
>>>>>> blueprint. Hadrian
>>>>>>
>>>>>> On Oct 13, 2010, at 5:56 PM, Claus Ibsen wrote:
>>>>>>> Hadrian, how is the 2.5 release going?
>>>>>>>
>>>>>>> On Tue, Oct 12, 2010 at 9:53 PM, Henryk Konsek<he...@gmail.com>
> wrote:
>>>>>>>> When you release camel-apache, I'll release camel-extra 2.5 .
>>>>>>>>
>>>>>>>> On Tue, Oct 12, 2010 at 9:24 PM, Claus Ibsen<cl...@gmail.com>
> wrote:
>>>>>>>>> Okay all is set and we are ready for the 2.5 release.
>>>>>>>>>
>>>>>>>>> Hadrian take it away.
>>>>>>>>>
>>>>>>>>> On Tue, Oct 12, 2010 at 4:50 PM, Claus Ibsen<cl...@gmail.com>
> wrote:
>>>>>>>>>> Hi
>>>>>>>>>>
>>>>>>>>>> Last minute ticket which James Strachan would love to get in
>>>>>>>>>> https://issues.apache.org/activemq/browse/CAMEL-3222
>>>>>>>>>>
>>>>>>>>>> I am running full test now with the fixes. Before committing to
>>>>>>>>>> trunk. I will let you know when its committed so we can start the
>>>>>>>>>> cut.
>>>>>>>>>>
>>>>>>>>>> On Tue, Oct 12, 2010 at 3:22 PM, Hadrian
> Zbarcea<hz...@gmail.com>     wrote:
>>>>>>>>>>> I did some sanity checks in the past days, and as I mentioned
>>>>>>>>>>> earlier on the #camel channel, I already started the builds for
>>>>>>>>>>> the 2.5.0 release. I only encountered an intermittent problem
>>>>>>>>>>> with camel-ftp in the past days that may cause some problem (i
>>>>>>>>>>> hope not), other than that we should be able to start the vote
>>>>>>>>>>> today.
>>>>>>>>>>>
>>>>>>>>>>> Cheers
>>>>>>>>>>> Hadrian
>>>>>>>>>>>
>>>>>>>>>>> On Oct 12, 2010, at 12:24 AM, Claus Ibsen wrote:
>>>>>>>>>>>> Hi
>>>>>>>>>>>>
>>>>>>>>>>>> We have upgraded to Scalate 1.3 and CXF 2.2.11. We should be all
>>>>>>>>>>>> set in terms of dependencies.
>>>>>>>>>>>>
>>>>>>>>>>>> Hadrian do you have time to do the 2.5 release?
>>>>>>>>>>>> It would be great to get it out really soon. Its been 3 months
>>>>>>>>>>>> since the last release and we have a lot of tickets resolved in
>>>>>>>>>>>> this release.
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>> --
>>>>>>>>>>>> Claus Ibsen
>>>>>>>>>>>> Apache Camel Committer
>>>>>>>>>>>>
>>>>>>>>>>>> Author of Camel in Action: http://www.manning.com/ibsen/
>>>>>>>>>>>> Open Source Integration: http://fusesource.com
>>>>>>>>>>>> Blog: http://davsclaus.blogspot.com/
>>>>>>>>>>>> Twitter: http://twitter.com/davsclaus
>>>>>>>>>>
>>>>>>>>>> --
>>>>>>>>>> Claus Ibsen
>>>>>>>>>> Apache Camel Committer
>>>>>>>>>>
>>>>>>>>>> Author of Camel in Action: http://www.manning.com/ibsen/
>>>>>>>>>> Open Source Integration: http://fusesource.com
>>>>>>>>>> Blog: http://davsclaus.blogspot.com/
>>>>>>>>>> Twitter: http://twitter.com/davsclaus
>>>>>>>>>
>>>>>>>>> --
>>>>>>>>> Claus Ibsen
>>>>>>>>> Apache Camel Committer
>>>>>>>>>
>>>>>>>>> Author of Camel in Action: http://www.manning.com/ibsen/
>>>>>>>>> Open Source Integration: http://fusesource.com
>>>>>>>>> Blog: http://davsclaus.blogspot.com/
>>>>>>>>> Twitter: http://twitter.com/davsclaus
>>>>>>>>
>>>>>>>> --
>>>>>>>> Henryk Konsek
>>>>>>>
>>>>>>> --
>>>>>>> Claus Ibsen
>>>>>>> Apache Camel Committer
>>>>>>>
>>>>>>> Author of Camel in Action: http://www.manning.com/ibsen/
>>>>>>> Open Source Integration: http://fusesource.com
>>>>>>> Blog: http://davsclaus.blogspot.com/
>>>>>>> Twitter: http://twitter.com/davsclaus
>>>>>
>>>>> --
>>>>> Willem
>>>>> ----------------------------------
>>>>> Open Source Integration: http://www.fusesource.com
>>>>> Blog:    http://willemjiang.blogspot.com (English)
>>>>>
>>>>>           http://jnn.javaeye.com (Chinese)
>>>>>
>>>>> Twitter: http://twitter.com/willemjiang
>


-- 
Willem
----------------------------------
Open Source Integration: http://www.fusesource.com
Blog:    http://willemjiang.blogspot.com (English)
          http://jnn.javaeye.com (Chinese)
Twitter: http://twitter.com/willemjiang

Re: Camel 2.5 - Starts to look good for a relese

Posted by Daniel Kulp <dk...@apache.org>.
Just because it runs doesn't mean it works.   The generated projects cannot be 
imported into Eclipse.   You should not be pointing to src dirs outside the 
maven project.   That breaks all kinds of things, eclipse being one of them.

There are a couple solutions, but I have to ask why it's even doing that?   
Why can't the two affected modules just depend on the others?  Why do they 
need to have to duplicate the classes in them?

Dan


On Thursday 14 October 2010 2:07:26 am Willem Jiang wrote:
> I just run the mvn eclipse:eclipse on the latest chuck code, every thing
> looks good.
> 
> Here is my system information.
> 
> localhost:trunk jiangning$ mvn -version
> Apache Maven 2.2.1 (r801777; 2009-08-07 03:16:01+0800)
> Java version: 1.6.0_20
> Java home: /System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home
> Default locale: en_US, platform encoding: MacRoman
> OS name: "mac os x" version: "10.6.4" arch: "x86_64" Family: "mac"
> 
> On 10/14/10 1:52 PM, Claus Ibsen wrote:
> > On Thu, Oct 14, 2010 at 7:24 AM, Hadrian Zbarcea<hz...@gmail.com>  
wrote:
> >> Willem, it works fine now. The only issue we have now is with the
> >> eclipse goal not working properly due to the build-helper-maven-plugin
> >> in camel-spring and camel-blueprint. It's not really a blocker, but
> >> it'd avoid releasing with this broken if possible. I hope we could
> >> resolve this tomorrow. It's the last thing I know of that should be
> >> done for the 2.5.0 release.
> > 
> > I think this is because of the Maven 3 changes. I did a full mvn
> > eclipse:eclipse for the entire project when we upgraded all the
> > versions in the pom.
> > And it ran 100%.
> > 
> >> Cheers,
> >> Hadrian
> >> 
> >> On Oct 14, 2010, at 12:58 AM, Willem Jiang wrote:
> >>> Hi hadrian,
> >>> 
> >>> What's the problem of the camel-jetty build?
> >>> Are they new build failures?
> >>> 
> >>> On 10/14/10 11:30 AM, Hadrian Zbarcea wrote:
> >>>> Still a few errors to sort out. I got a couple of failures in jetty,
> >>>> the eclipse goal is not working properly either yet in spring and
> >>>> blueprint. Hadrian
> >>>> 
> >>>> On Oct 13, 2010, at 5:56 PM, Claus Ibsen wrote:
> >>>>> Hadrian, how is the 2.5 release going?
> >>>>> 
> >>>>> On Tue, Oct 12, 2010 at 9:53 PM, Henryk Konsek<he...@gmail.com>    
wrote:
> >>>>>> When you release camel-apache, I'll release camel-extra 2.5 .
> >>>>>> 
> >>>>>> On Tue, Oct 12, 2010 at 9:24 PM, Claus Ibsen<cl...@gmail.com>    
wrote:
> >>>>>>> Okay all is set and we are ready for the 2.5 release.
> >>>>>>> 
> >>>>>>> Hadrian take it away.
> >>>>>>> 
> >>>>>>> On Tue, Oct 12, 2010 at 4:50 PM, Claus Ibsen<cl...@gmail.com>    
wrote:
> >>>>>>>> Hi
> >>>>>>>> 
> >>>>>>>> Last minute ticket which James Strachan would love to get in
> >>>>>>>> https://issues.apache.org/activemq/browse/CAMEL-3222
> >>>>>>>> 
> >>>>>>>> I am running full test now with the fixes. Before committing to
> >>>>>>>> trunk. I will let you know when its committed so we can start the
> >>>>>>>> cut.
> >>>>>>>> 
> >>>>>>>> On Tue, Oct 12, 2010 at 3:22 PM, Hadrian 
Zbarcea<hz...@gmail.com>    wrote:
> >>>>>>>>> I did some sanity checks in the past days, and as I mentioned
> >>>>>>>>> earlier on the #camel channel, I already started the builds for
> >>>>>>>>> the 2.5.0 release. I only encountered an intermittent problem
> >>>>>>>>> with camel-ftp in the past days that may cause some problem (i
> >>>>>>>>> hope not), other than that we should be able to start the vote
> >>>>>>>>> today.
> >>>>>>>>> 
> >>>>>>>>> Cheers
> >>>>>>>>> Hadrian
> >>>>>>>>> 
> >>>>>>>>> On Oct 12, 2010, at 12:24 AM, Claus Ibsen wrote:
> >>>>>>>>>> Hi
> >>>>>>>>>> 
> >>>>>>>>>> We have upgraded to Scalate 1.3 and CXF 2.2.11. We should be all
> >>>>>>>>>> set in terms of dependencies.
> >>>>>>>>>> 
> >>>>>>>>>> Hadrian do you have time to do the 2.5 release?
> >>>>>>>>>> It would be great to get it out really soon. Its been 3 months
> >>>>>>>>>> since the last release and we have a lot of tickets resolved in
> >>>>>>>>>> this release.
> >>>>>>>>>> 
> >>>>>>>>>> 
> >>>>>>>>>> --
> >>>>>>>>>> Claus Ibsen
> >>>>>>>>>> Apache Camel Committer
> >>>>>>>>>> 
> >>>>>>>>>> Author of Camel in Action: http://www.manning.com/ibsen/
> >>>>>>>>>> Open Source Integration: http://fusesource.com
> >>>>>>>>>> Blog: http://davsclaus.blogspot.com/
> >>>>>>>>>> Twitter: http://twitter.com/davsclaus
> >>>>>>>> 
> >>>>>>>> --
> >>>>>>>> Claus Ibsen
> >>>>>>>> Apache Camel Committer
> >>>>>>>> 
> >>>>>>>> Author of Camel in Action: http://www.manning.com/ibsen/
> >>>>>>>> Open Source Integration: http://fusesource.com
> >>>>>>>> Blog: http://davsclaus.blogspot.com/
> >>>>>>>> Twitter: http://twitter.com/davsclaus
> >>>>>>> 
> >>>>>>> --
> >>>>>>> Claus Ibsen
> >>>>>>> Apache Camel Committer
> >>>>>>> 
> >>>>>>> Author of Camel in Action: http://www.manning.com/ibsen/
> >>>>>>> Open Source Integration: http://fusesource.com
> >>>>>>> Blog: http://davsclaus.blogspot.com/
> >>>>>>> Twitter: http://twitter.com/davsclaus
> >>>>>> 
> >>>>>> --
> >>>>>> Henryk Konsek
> >>>>> 
> >>>>> --
> >>>>> Claus Ibsen
> >>>>> Apache Camel Committer
> >>>>> 
> >>>>> Author of Camel in Action: http://www.manning.com/ibsen/
> >>>>> Open Source Integration: http://fusesource.com
> >>>>> Blog: http://davsclaus.blogspot.com/
> >>>>> Twitter: http://twitter.com/davsclaus
> >>> 
> >>> --
> >>> Willem
> >>> ----------------------------------
> >>> Open Source Integration: http://www.fusesource.com
> >>> Blog:    http://willemjiang.blogspot.com (English)
> >>> 
> >>>          http://jnn.javaeye.com (Chinese)
> >>> 
> >>> Twitter: http://twitter.com/willemjiang

-- 
Daniel Kulp
dkulp@apache.org
http://dankulp.com/blog

Re: Camel 2.5 - Starts to look good for a relese

Posted by Willem Jiang <wi...@gmail.com>.
I just run the mvn eclipse:eclipse on the latest chuck code, every thing 
looks good.

Here is my system information.

localhost:trunk jiangning$ mvn -version
Apache Maven 2.2.1 (r801777; 2009-08-07 03:16:01+0800)
Java version: 1.6.0_20
Java home: /System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home
Default locale: en_US, platform encoding: MacRoman
OS name: "mac os x" version: "10.6.4" arch: "x86_64" Family: "mac"

On 10/14/10 1:52 PM, Claus Ibsen wrote:
> On Thu, Oct 14, 2010 at 7:24 AM, Hadrian Zbarcea<hz...@gmail.com>  wrote:
>> Willem, it works fine now. The only issue we have now is with the eclipse goal not working properly due to the build-helper-maven-plugin in camel-spring and camel-blueprint. It's not really a blocker, but it'd avoid releasing with this broken if possible. I hope we could resolve this tomorrow. It's the last thing I know of that should be done for the 2.5.0 release.
>>
>
> I think this is because of the Maven 3 changes. I did a full mvn
> eclipse:eclipse for the entire project when we upgraded all the
> versions in the pom.
> And it ran 100%.
>
>
>
>> Cheers,
>> Hadrian
>>
>>
>>
>> On Oct 14, 2010, at 12:58 AM, Willem Jiang wrote:
>>
>>> Hi hadrian,
>>>
>>> What's the problem of the camel-jetty build?
>>> Are they new build failures?
>>>
>>> On 10/14/10 11:30 AM, Hadrian Zbarcea wrote:
>>>> Still a few errors to sort out. I got a couple of failures in jetty, the eclipse goal is not working properly either yet in spring and blueprint.
>>>> Hadrian
>>>>
>>>> On Oct 13, 2010, at 5:56 PM, Claus Ibsen wrote:
>>>>
>>>>> Hadrian, how is the 2.5 release going?
>>>>>
>>>>>
>>>>> On Tue, Oct 12, 2010 at 9:53 PM, Henryk Konsek<he...@gmail.com>    wrote:
>>>>>> When you release camel-apache, I'll release camel-extra 2.5 .
>>>>>>
>>>>>> On Tue, Oct 12, 2010 at 9:24 PM, Claus Ibsen<cl...@gmail.com>    wrote:
>>>>>>> Okay all is set and we are ready for the 2.5 release.
>>>>>>>
>>>>>>> Hadrian take it away.
>>>>>>>
>>>>>>> On Tue, Oct 12, 2010 at 4:50 PM, Claus Ibsen<cl...@gmail.com>    wrote:
>>>>>>>> Hi
>>>>>>>>
>>>>>>>> Last minute ticket which James Strachan would love to get in
>>>>>>>> https://issues.apache.org/activemq/browse/CAMEL-3222
>>>>>>>>
>>>>>>>> I am running full test now with the fixes. Before committing to trunk.
>>>>>>>> I will let you know when its committed so we can start the cut.
>>>>>>>>
>>>>>>>>
>>>>>>>> On Tue, Oct 12, 2010 at 3:22 PM, Hadrian Zbarcea<hz...@gmail.com>    wrote:
>>>>>>>>> I did some sanity checks in the past days, and as I mentioned earlier on the #camel channel, I already started the builds for the 2.5.0 release.
>>>>>>>>> I only encountered an intermittent problem with camel-ftp in the past days that may cause some problem (i hope not), other than that we should be able to start the vote today.
>>>>>>>>>
>>>>>>>>> Cheers
>>>>>>>>> Hadrian
>>>>>>>>>
>>>>>>>>> On Oct 12, 2010, at 12:24 AM, Claus Ibsen wrote:
>>>>>>>>>
>>>>>>>>>> Hi
>>>>>>>>>>
>>>>>>>>>> We have upgraded to Scalate 1.3 and CXF 2.2.11. We should be all set
>>>>>>>>>> in terms of dependencies.
>>>>>>>>>>
>>>>>>>>>> Hadrian do you have time to do the 2.5 release?
>>>>>>>>>> It would be great to get it out really soon. Its been 3 months since
>>>>>>>>>> the last release and we have a lot of tickets resolved in this
>>>>>>>>>> release.
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> --
>>>>>>>>>> Claus Ibsen
>>>>>>>>>> Apache Camel Committer
>>>>>>>>>>
>>>>>>>>>> Author of Camel in Action: http://www.manning.com/ibsen/
>>>>>>>>>> Open Source Integration: http://fusesource.com
>>>>>>>>>> Blog: http://davsclaus.blogspot.com/
>>>>>>>>>> Twitter: http://twitter.com/davsclaus
>>>>>>>>>
>>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> --
>>>>>>>> Claus Ibsen
>>>>>>>> Apache Camel Committer
>>>>>>>>
>>>>>>>> Author of Camel in Action: http://www.manning.com/ibsen/
>>>>>>>> Open Source Integration: http://fusesource.com
>>>>>>>> Blog: http://davsclaus.blogspot.com/
>>>>>>>> Twitter: http://twitter.com/davsclaus
>>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>> --
>>>>>>> Claus Ibsen
>>>>>>> Apache Camel Committer
>>>>>>>
>>>>>>> Author of Camel in Action: http://www.manning.com/ibsen/
>>>>>>> Open Source Integration: http://fusesource.com
>>>>>>> Blog: http://davsclaus.blogspot.com/
>>>>>>> Twitter: http://twitter.com/davsclaus
>>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>> --
>>>>>> Henryk Konsek
>>>>>>
>>>>>
>>>>>
>>>>>
>>>>> --
>>>>> Claus Ibsen
>>>>> Apache Camel Committer
>>>>>
>>>>> Author of Camel in Action: http://www.manning.com/ibsen/
>>>>> Open Source Integration: http://fusesource.com
>>>>> Blog: http://davsclaus.blogspot.com/
>>>>> Twitter: http://twitter.com/davsclaus
>>>>
>>>>
>>>
>>>
>>> --
>>> Willem
>>> ----------------------------------
>>> Open Source Integration: http://www.fusesource.com
>>> Blog:    http://willemjiang.blogspot.com (English)
>>>          http://jnn.javaeye.com (Chinese)
>>> Twitter: http://twitter.com/willemjiang
>>
>>
>
>
>


-- 
Willem
----------------------------------
Open Source Integration: http://www.fusesource.com
Blog:    http://willemjiang.blogspot.com (English)
          http://jnn.javaeye.com (Chinese)
Twitter: http://twitter.com/willemjiang

Re: Camel 2.5 - Starts to look good for a relese

Posted by Claus Ibsen <cl...@gmail.com>.
On Thu, Oct 14, 2010 at 7:24 AM, Hadrian Zbarcea <hz...@gmail.com> wrote:
> Willem, it works fine now. The only issue we have now is with the eclipse goal not working properly due to the build-helper-maven-plugin in camel-spring and camel-blueprint. It's not really a blocker, but it'd avoid releasing with this broken if possible. I hope we could resolve this tomorrow. It's the last thing I know of that should be done for the 2.5.0 release.
>

I think this is because of the Maven 3 changes. I did a full mvn
eclipse:eclipse for the entire project when we upgraded all the
versions in the pom.
And it ran 100%.



> Cheers,
> Hadrian
>
>
>
> On Oct 14, 2010, at 12:58 AM, Willem Jiang wrote:
>
>> Hi hadrian,
>>
>> What's the problem of the camel-jetty build?
>> Are they new build failures?
>>
>> On 10/14/10 11:30 AM, Hadrian Zbarcea wrote:
>>> Still a few errors to sort out. I got a couple of failures in jetty, the eclipse goal is not working properly either yet in spring and blueprint.
>>> Hadrian
>>>
>>> On Oct 13, 2010, at 5:56 PM, Claus Ibsen wrote:
>>>
>>>> Hadrian, how is the 2.5 release going?
>>>>
>>>>
>>>> On Tue, Oct 12, 2010 at 9:53 PM, Henryk Konsek<he...@gmail.com>  wrote:
>>>>> When you release camel-apache, I'll release camel-extra 2.5 .
>>>>>
>>>>> On Tue, Oct 12, 2010 at 9:24 PM, Claus Ibsen<cl...@gmail.com>  wrote:
>>>>>> Okay all is set and we are ready for the 2.5 release.
>>>>>>
>>>>>> Hadrian take it away.
>>>>>>
>>>>>> On Tue, Oct 12, 2010 at 4:50 PM, Claus Ibsen<cl...@gmail.com>  wrote:
>>>>>>> Hi
>>>>>>>
>>>>>>> Last minute ticket which James Strachan would love to get in
>>>>>>> https://issues.apache.org/activemq/browse/CAMEL-3222
>>>>>>>
>>>>>>> I am running full test now with the fixes. Before committing to trunk.
>>>>>>> I will let you know when its committed so we can start the cut.
>>>>>>>
>>>>>>>
>>>>>>> On Tue, Oct 12, 2010 at 3:22 PM, Hadrian Zbarcea<hz...@gmail.com>  wrote:
>>>>>>>> I did some sanity checks in the past days, and as I mentioned earlier on the #camel channel, I already started the builds for the 2.5.0 release.
>>>>>>>> I only encountered an intermittent problem with camel-ftp in the past days that may cause some problem (i hope not), other than that we should be able to start the vote today.
>>>>>>>>
>>>>>>>> Cheers
>>>>>>>> Hadrian
>>>>>>>>
>>>>>>>> On Oct 12, 2010, at 12:24 AM, Claus Ibsen wrote:
>>>>>>>>
>>>>>>>>> Hi
>>>>>>>>>
>>>>>>>>> We have upgraded to Scalate 1.3 and CXF 2.2.11. We should be all set
>>>>>>>>> in terms of dependencies.
>>>>>>>>>
>>>>>>>>> Hadrian do you have time to do the 2.5 release?
>>>>>>>>> It would be great to get it out really soon. Its been 3 months since
>>>>>>>>> the last release and we have a lot of tickets resolved in this
>>>>>>>>> release.
>>>>>>>>>
>>>>>>>>>
>>>>>>>>> --
>>>>>>>>> Claus Ibsen
>>>>>>>>> Apache Camel Committer
>>>>>>>>>
>>>>>>>>> Author of Camel in Action: http://www.manning.com/ibsen/
>>>>>>>>> Open Source Integration: http://fusesource.com
>>>>>>>>> Blog: http://davsclaus.blogspot.com/
>>>>>>>>> Twitter: http://twitter.com/davsclaus
>>>>>>>>
>>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>> --
>>>>>>> Claus Ibsen
>>>>>>> Apache Camel Committer
>>>>>>>
>>>>>>> Author of Camel in Action: http://www.manning.com/ibsen/
>>>>>>> Open Source Integration: http://fusesource.com
>>>>>>> Blog: http://davsclaus.blogspot.com/
>>>>>>> Twitter: http://twitter.com/davsclaus
>>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>> --
>>>>>> Claus Ibsen
>>>>>> Apache Camel Committer
>>>>>>
>>>>>> Author of Camel in Action: http://www.manning.com/ibsen/
>>>>>> Open Source Integration: http://fusesource.com
>>>>>> Blog: http://davsclaus.blogspot.com/
>>>>>> Twitter: http://twitter.com/davsclaus
>>>>>>
>>>>>
>>>>>
>>>>>
>>>>> --
>>>>> Henryk Konsek
>>>>>
>>>>
>>>>
>>>>
>>>> --
>>>> Claus Ibsen
>>>> Apache Camel Committer
>>>>
>>>> Author of Camel in Action: http://www.manning.com/ibsen/
>>>> Open Source Integration: http://fusesource.com
>>>> Blog: http://davsclaus.blogspot.com/
>>>> Twitter: http://twitter.com/davsclaus
>>>
>>>
>>
>>
>> --
>> Willem
>> ----------------------------------
>> Open Source Integration: http://www.fusesource.com
>> Blog:    http://willemjiang.blogspot.com (English)
>>         http://jnn.javaeye.com (Chinese)
>> Twitter: http://twitter.com/willemjiang
>
>



-- 
Claus Ibsen
Apache Camel Committer

Author of Camel in Action: http://www.manning.com/ibsen/
Open Source Integration: http://fusesource.com
Blog: http://davsclaus.blogspot.com/
Twitter: http://twitter.com/davsclaus

Re: Camel 2.5 - Starts to look good for a relese

Posted by Hadrian Zbarcea <hz...@gmail.com>.
Willem, it works fine now. The only issue we have now is with the eclipse goal not working properly due to the build-helper-maven-plugin in camel-spring and camel-blueprint. It's not really a blocker, but it'd avoid releasing with this broken if possible. I hope we could resolve this tomorrow. It's the last thing I know of that should be done for the 2.5.0 release.

Cheers,
Hadrian



On Oct 14, 2010, at 12:58 AM, Willem Jiang wrote:

> Hi hadrian,
> 
> What's the problem of the camel-jetty build?
> Are they new build failures?
> 
> On 10/14/10 11:30 AM, Hadrian Zbarcea wrote:
>> Still a few errors to sort out. I got a couple of failures in jetty, the eclipse goal is not working properly either yet in spring and blueprint.
>> Hadrian
>> 
>> On Oct 13, 2010, at 5:56 PM, Claus Ibsen wrote:
>> 
>>> Hadrian, how is the 2.5 release going?
>>> 
>>> 
>>> On Tue, Oct 12, 2010 at 9:53 PM, Henryk Konsek<he...@gmail.com>  wrote:
>>>> When you release camel-apache, I'll release camel-extra 2.5 .
>>>> 
>>>> On Tue, Oct 12, 2010 at 9:24 PM, Claus Ibsen<cl...@gmail.com>  wrote:
>>>>> Okay all is set and we are ready for the 2.5 release.
>>>>> 
>>>>> Hadrian take it away.
>>>>> 
>>>>> On Tue, Oct 12, 2010 at 4:50 PM, Claus Ibsen<cl...@gmail.com>  wrote:
>>>>>> Hi
>>>>>> 
>>>>>> Last minute ticket which James Strachan would love to get in
>>>>>> https://issues.apache.org/activemq/browse/CAMEL-3222
>>>>>> 
>>>>>> I am running full test now with the fixes. Before committing to trunk.
>>>>>> I will let you know when its committed so we can start the cut.
>>>>>> 
>>>>>> 
>>>>>> On Tue, Oct 12, 2010 at 3:22 PM, Hadrian Zbarcea<hz...@gmail.com>  wrote:
>>>>>>> I did some sanity checks in the past days, and as I mentioned earlier on the #camel channel, I already started the builds for the 2.5.0 release.
>>>>>>> I only encountered an intermittent problem with camel-ftp in the past days that may cause some problem (i hope not), other than that we should be able to start the vote today.
>>>>>>> 
>>>>>>> Cheers
>>>>>>> Hadrian
>>>>>>> 
>>>>>>> On Oct 12, 2010, at 12:24 AM, Claus Ibsen wrote:
>>>>>>> 
>>>>>>>> Hi
>>>>>>>> 
>>>>>>>> We have upgraded to Scalate 1.3 and CXF 2.2.11. We should be all set
>>>>>>>> in terms of dependencies.
>>>>>>>> 
>>>>>>>> Hadrian do you have time to do the 2.5 release?
>>>>>>>> It would be great to get it out really soon. Its been 3 months since
>>>>>>>> the last release and we have a lot of tickets resolved in this
>>>>>>>> release.
>>>>>>>> 
>>>>>>>> 
>>>>>>>> --
>>>>>>>> Claus Ibsen
>>>>>>>> Apache Camel Committer
>>>>>>>> 
>>>>>>>> Author of Camel in Action: http://www.manning.com/ibsen/
>>>>>>>> Open Source Integration: http://fusesource.com
>>>>>>>> Blog: http://davsclaus.blogspot.com/
>>>>>>>> Twitter: http://twitter.com/davsclaus
>>>>>>> 
>>>>>>> 
>>>>>> 
>>>>>> 
>>>>>> 
>>>>>> --
>>>>>> Claus Ibsen
>>>>>> Apache Camel Committer
>>>>>> 
>>>>>> Author of Camel in Action: http://www.manning.com/ibsen/
>>>>>> Open Source Integration: http://fusesource.com
>>>>>> Blog: http://davsclaus.blogspot.com/
>>>>>> Twitter: http://twitter.com/davsclaus
>>>>>> 
>>>>> 
>>>>> 
>>>>> 
>>>>> --
>>>>> Claus Ibsen
>>>>> Apache Camel Committer
>>>>> 
>>>>> Author of Camel in Action: http://www.manning.com/ibsen/
>>>>> Open Source Integration: http://fusesource.com
>>>>> Blog: http://davsclaus.blogspot.com/
>>>>> Twitter: http://twitter.com/davsclaus
>>>>> 
>>>> 
>>>> 
>>>> 
>>>> --
>>>> Henryk Konsek
>>>> 
>>> 
>>> 
>>> 
>>> --
>>> Claus Ibsen
>>> Apache Camel Committer
>>> 
>>> Author of Camel in Action: http://www.manning.com/ibsen/
>>> Open Source Integration: http://fusesource.com
>>> Blog: http://davsclaus.blogspot.com/
>>> Twitter: http://twitter.com/davsclaus
>> 
>> 
> 
> 
> -- 
> Willem
> ----------------------------------
> Open Source Integration: http://www.fusesource.com
> Blog:    http://willemjiang.blogspot.com (English)
>         http://jnn.javaeye.com (Chinese)
> Twitter: http://twitter.com/willemjiang


Re: Camel 2.5 - Starts to look good for a relese

Posted by Willem Jiang <wi...@gmail.com>.
Hi hadrian,

What's the problem of the camel-jetty build?
Are they new build failures?

On 10/14/10 11:30 AM, Hadrian Zbarcea wrote:
> Still a few errors to sort out. I got a couple of failures in jetty, the eclipse goal is not working properly either yet in spring and blueprint.
> Hadrian
>
> On Oct 13, 2010, at 5:56 PM, Claus Ibsen wrote:
>
>> Hadrian, how is the 2.5 release going?
>>
>>
>> On Tue, Oct 12, 2010 at 9:53 PM, Henryk Konsek<he...@gmail.com>  wrote:
>>> When you release camel-apache, I'll release camel-extra 2.5 .
>>>
>>> On Tue, Oct 12, 2010 at 9:24 PM, Claus Ibsen<cl...@gmail.com>  wrote:
>>>> Okay all is set and we are ready for the 2.5 release.
>>>>
>>>> Hadrian take it away.
>>>>
>>>> On Tue, Oct 12, 2010 at 4:50 PM, Claus Ibsen<cl...@gmail.com>  wrote:
>>>>> Hi
>>>>>
>>>>> Last minute ticket which James Strachan would love to get in
>>>>> https://issues.apache.org/activemq/browse/CAMEL-3222
>>>>>
>>>>> I am running full test now with the fixes. Before committing to trunk.
>>>>> I will let you know when its committed so we can start the cut.
>>>>>
>>>>>
>>>>> On Tue, Oct 12, 2010 at 3:22 PM, Hadrian Zbarcea<hz...@gmail.com>  wrote:
>>>>>> I did some sanity checks in the past days, and as I mentioned earlier on the #camel channel, I already started the builds for the 2.5.0 release.
>>>>>> I only encountered an intermittent problem with camel-ftp in the past days that may cause some problem (i hope not), other than that we should be able to start the vote today.
>>>>>>
>>>>>> Cheers
>>>>>> Hadrian
>>>>>>
>>>>>> On Oct 12, 2010, at 12:24 AM, Claus Ibsen wrote:
>>>>>>
>>>>>>> Hi
>>>>>>>
>>>>>>> We have upgraded to Scalate 1.3 and CXF 2.2.11. We should be all set
>>>>>>> in terms of dependencies.
>>>>>>>
>>>>>>> Hadrian do you have time to do the 2.5 release?
>>>>>>> It would be great to get it out really soon. Its been 3 months since
>>>>>>> the last release and we have a lot of tickets resolved in this
>>>>>>> release.
>>>>>>>
>>>>>>>
>>>>>>> --
>>>>>>> Claus Ibsen
>>>>>>> Apache Camel Committer
>>>>>>>
>>>>>>> Author of Camel in Action: http://www.manning.com/ibsen/
>>>>>>> Open Source Integration: http://fusesource.com
>>>>>>> Blog: http://davsclaus.blogspot.com/
>>>>>>> Twitter: http://twitter.com/davsclaus
>>>>>>
>>>>>>
>>>>>
>>>>>
>>>>>
>>>>> --
>>>>> Claus Ibsen
>>>>> Apache Camel Committer
>>>>>
>>>>> Author of Camel in Action: http://www.manning.com/ibsen/
>>>>> Open Source Integration: http://fusesource.com
>>>>> Blog: http://davsclaus.blogspot.com/
>>>>> Twitter: http://twitter.com/davsclaus
>>>>>
>>>>
>>>>
>>>>
>>>> --
>>>> Claus Ibsen
>>>> Apache Camel Committer
>>>>
>>>> Author of Camel in Action: http://www.manning.com/ibsen/
>>>> Open Source Integration: http://fusesource.com
>>>> Blog: http://davsclaus.blogspot.com/
>>>> Twitter: http://twitter.com/davsclaus
>>>>
>>>
>>>
>>>
>>> --
>>> Henryk Konsek
>>>
>>
>>
>>
>> --
>> Claus Ibsen
>> Apache Camel Committer
>>
>> Author of Camel in Action: http://www.manning.com/ibsen/
>> Open Source Integration: http://fusesource.com
>> Blog: http://davsclaus.blogspot.com/
>> Twitter: http://twitter.com/davsclaus
>
>


-- 
Willem
----------------------------------
Open Source Integration: http://www.fusesource.com
Blog:    http://willemjiang.blogspot.com (English)
          http://jnn.javaeye.com (Chinese)
Twitter: http://twitter.com/willemjiang

Re: Camel 2.5 - Starts to look good for a relese

Posted by Hadrian Zbarcea <hz...@gmail.com>.
Still a few errors to sort out. I got a couple of failures in jetty, the eclipse goal is not working properly either yet in spring and blueprint.
Hadrian

On Oct 13, 2010, at 5:56 PM, Claus Ibsen wrote:

> Hadrian, how is the 2.5 release going?
> 
> 
> On Tue, Oct 12, 2010 at 9:53 PM, Henryk Konsek <he...@gmail.com> wrote:
>> When you release camel-apache, I'll release camel-extra 2.5 .
>> 
>> On Tue, Oct 12, 2010 at 9:24 PM, Claus Ibsen <cl...@gmail.com> wrote:
>>> Okay all is set and we are ready for the 2.5 release.
>>> 
>>> Hadrian take it away.
>>> 
>>> On Tue, Oct 12, 2010 at 4:50 PM, Claus Ibsen <cl...@gmail.com> wrote:
>>>> Hi
>>>> 
>>>> Last minute ticket which James Strachan would love to get in
>>>> https://issues.apache.org/activemq/browse/CAMEL-3222
>>>> 
>>>> I am running full test now with the fixes. Before committing to trunk.
>>>> I will let you know when its committed so we can start the cut.
>>>> 
>>>> 
>>>> On Tue, Oct 12, 2010 at 3:22 PM, Hadrian Zbarcea <hz...@gmail.com> wrote:
>>>>> I did some sanity checks in the past days, and as I mentioned earlier on the #camel channel, I already started the builds for the 2.5.0 release.
>>>>> I only encountered an intermittent problem with camel-ftp in the past days that may cause some problem (i hope not), other than that we should be able to start the vote today.
>>>>> 
>>>>> Cheers
>>>>> Hadrian
>>>>> 
>>>>> On Oct 12, 2010, at 12:24 AM, Claus Ibsen wrote:
>>>>> 
>>>>>> Hi
>>>>>> 
>>>>>> We have upgraded to Scalate 1.3 and CXF 2.2.11. We should be all set
>>>>>> in terms of dependencies.
>>>>>> 
>>>>>> Hadrian do you have time to do the 2.5 release?
>>>>>> It would be great to get it out really soon. Its been 3 months since
>>>>>> the last release and we have a lot of tickets resolved in this
>>>>>> release.
>>>>>> 
>>>>>> 
>>>>>> --
>>>>>> Claus Ibsen
>>>>>> Apache Camel Committer
>>>>>> 
>>>>>> Author of Camel in Action: http://www.manning.com/ibsen/
>>>>>> Open Source Integration: http://fusesource.com
>>>>>> Blog: http://davsclaus.blogspot.com/
>>>>>> Twitter: http://twitter.com/davsclaus
>>>>> 
>>>>> 
>>>> 
>>>> 
>>>> 
>>>> --
>>>> Claus Ibsen
>>>> Apache Camel Committer
>>>> 
>>>> Author of Camel in Action: http://www.manning.com/ibsen/
>>>> Open Source Integration: http://fusesource.com
>>>> Blog: http://davsclaus.blogspot.com/
>>>> Twitter: http://twitter.com/davsclaus
>>>> 
>>> 
>>> 
>>> 
>>> --
>>> Claus Ibsen
>>> Apache Camel Committer
>>> 
>>> Author of Camel in Action: http://www.manning.com/ibsen/
>>> Open Source Integration: http://fusesource.com
>>> Blog: http://davsclaus.blogspot.com/
>>> Twitter: http://twitter.com/davsclaus
>>> 
>> 
>> 
>> 
>> --
>> Henryk Konsek
>> 
> 
> 
> 
> -- 
> Claus Ibsen
> Apache Camel Committer
> 
> Author of Camel in Action: http://www.manning.com/ibsen/
> Open Source Integration: http://fusesource.com
> Blog: http://davsclaus.blogspot.com/
> Twitter: http://twitter.com/davsclaus


Re: Camel 2.5 - Starts to look good for a relese

Posted by Claus Ibsen <cl...@gmail.com>.
Hadrian, how is the 2.5 release going?


On Tue, Oct 12, 2010 at 9:53 PM, Henryk Konsek <he...@gmail.com> wrote:
> When you release camel-apache, I'll release camel-extra 2.5 .
>
> On Tue, Oct 12, 2010 at 9:24 PM, Claus Ibsen <cl...@gmail.com> wrote:
>> Okay all is set and we are ready for the 2.5 release.
>>
>> Hadrian take it away.
>>
>> On Tue, Oct 12, 2010 at 4:50 PM, Claus Ibsen <cl...@gmail.com> wrote:
>>> Hi
>>>
>>> Last minute ticket which James Strachan would love to get in
>>> https://issues.apache.org/activemq/browse/CAMEL-3222
>>>
>>> I am running full test now with the fixes. Before committing to trunk.
>>> I will let you know when its committed so we can start the cut.
>>>
>>>
>>> On Tue, Oct 12, 2010 at 3:22 PM, Hadrian Zbarcea <hz...@gmail.com> wrote:
>>>> I did some sanity checks in the past days, and as I mentioned earlier on the #camel channel, I already started the builds for the 2.5.0 release.
>>>> I only encountered an intermittent problem with camel-ftp in the past days that may cause some problem (i hope not), other than that we should be able to start the vote today.
>>>>
>>>> Cheers
>>>> Hadrian
>>>>
>>>> On Oct 12, 2010, at 12:24 AM, Claus Ibsen wrote:
>>>>
>>>>> Hi
>>>>>
>>>>> We have upgraded to Scalate 1.3 and CXF 2.2.11. We should be all set
>>>>> in terms of dependencies.
>>>>>
>>>>> Hadrian do you have time to do the 2.5 release?
>>>>> It would be great to get it out really soon. Its been 3 months since
>>>>> the last release and we have a lot of tickets resolved in this
>>>>> release.
>>>>>
>>>>>
>>>>> --
>>>>> Claus Ibsen
>>>>> Apache Camel Committer
>>>>>
>>>>> Author of Camel in Action: http://www.manning.com/ibsen/
>>>>> Open Source Integration: http://fusesource.com
>>>>> Blog: http://davsclaus.blogspot.com/
>>>>> Twitter: http://twitter.com/davsclaus
>>>>
>>>>
>>>
>>>
>>>
>>> --
>>> Claus Ibsen
>>> Apache Camel Committer
>>>
>>> Author of Camel in Action: http://www.manning.com/ibsen/
>>> Open Source Integration: http://fusesource.com
>>> Blog: http://davsclaus.blogspot.com/
>>> Twitter: http://twitter.com/davsclaus
>>>
>>
>>
>>
>> --
>> Claus Ibsen
>> Apache Camel Committer
>>
>> Author of Camel in Action: http://www.manning.com/ibsen/
>> Open Source Integration: http://fusesource.com
>> Blog: http://davsclaus.blogspot.com/
>> Twitter: http://twitter.com/davsclaus
>>
>
>
>
> --
> Henryk Konsek
>



-- 
Claus Ibsen
Apache Camel Committer

Author of Camel in Action: http://www.manning.com/ibsen/
Open Source Integration: http://fusesource.com
Blog: http://davsclaus.blogspot.com/
Twitter: http://twitter.com/davsclaus

Re: Camel 2.5 - Starts to look good for a relese

Posted by Henryk Konsek <he...@gmail.com>.
When you release camel-apache, I'll release camel-extra 2.5 .

On Tue, Oct 12, 2010 at 9:24 PM, Claus Ibsen <cl...@gmail.com> wrote:
> Okay all is set and we are ready for the 2.5 release.
>
> Hadrian take it away.
>
> On Tue, Oct 12, 2010 at 4:50 PM, Claus Ibsen <cl...@gmail.com> wrote:
>> Hi
>>
>> Last minute ticket which James Strachan would love to get in
>> https://issues.apache.org/activemq/browse/CAMEL-3222
>>
>> I am running full test now with the fixes. Before committing to trunk.
>> I will let you know when its committed so we can start the cut.
>>
>>
>> On Tue, Oct 12, 2010 at 3:22 PM, Hadrian Zbarcea <hz...@gmail.com> wrote:
>>> I did some sanity checks in the past days, and as I mentioned earlier on the #camel channel, I already started the builds for the 2.5.0 release.
>>> I only encountered an intermittent problem with camel-ftp in the past days that may cause some problem (i hope not), other than that we should be able to start the vote today.
>>>
>>> Cheers
>>> Hadrian
>>>
>>> On Oct 12, 2010, at 12:24 AM, Claus Ibsen wrote:
>>>
>>>> Hi
>>>>
>>>> We have upgraded to Scalate 1.3 and CXF 2.2.11. We should be all set
>>>> in terms of dependencies.
>>>>
>>>> Hadrian do you have time to do the 2.5 release?
>>>> It would be great to get it out really soon. Its been 3 months since
>>>> the last release and we have a lot of tickets resolved in this
>>>> release.
>>>>
>>>>
>>>> --
>>>> Claus Ibsen
>>>> Apache Camel Committer
>>>>
>>>> Author of Camel in Action: http://www.manning.com/ibsen/
>>>> Open Source Integration: http://fusesource.com
>>>> Blog: http://davsclaus.blogspot.com/
>>>> Twitter: http://twitter.com/davsclaus
>>>
>>>
>>
>>
>>
>> --
>> Claus Ibsen
>> Apache Camel Committer
>>
>> Author of Camel in Action: http://www.manning.com/ibsen/
>> Open Source Integration: http://fusesource.com
>> Blog: http://davsclaus.blogspot.com/
>> Twitter: http://twitter.com/davsclaus
>>
>
>
>
> --
> Claus Ibsen
> Apache Camel Committer
>
> Author of Camel in Action: http://www.manning.com/ibsen/
> Open Source Integration: http://fusesource.com
> Blog: http://davsclaus.blogspot.com/
> Twitter: http://twitter.com/davsclaus
>



-- 
Henryk Konsek

Re: Camel 2.5 - Starts to look good for a relese

Posted by Claus Ibsen <cl...@gmail.com>.
Okay all is set and we are ready for the 2.5 release.

Hadrian take it away.

On Tue, Oct 12, 2010 at 4:50 PM, Claus Ibsen <cl...@gmail.com> wrote:
> Hi
>
> Last minute ticket which James Strachan would love to get in
> https://issues.apache.org/activemq/browse/CAMEL-3222
>
> I am running full test now with the fixes. Before committing to trunk.
> I will let you know when its committed so we can start the cut.
>
>
> On Tue, Oct 12, 2010 at 3:22 PM, Hadrian Zbarcea <hz...@gmail.com> wrote:
>> I did some sanity checks in the past days, and as I mentioned earlier on the #camel channel, I already started the builds for the 2.5.0 release.
>> I only encountered an intermittent problem with camel-ftp in the past days that may cause some problem (i hope not), other than that we should be able to start the vote today.
>>
>> Cheers
>> Hadrian
>>
>> On Oct 12, 2010, at 12:24 AM, Claus Ibsen wrote:
>>
>>> Hi
>>>
>>> We have upgraded to Scalate 1.3 and CXF 2.2.11. We should be all set
>>> in terms of dependencies.
>>>
>>> Hadrian do you have time to do the 2.5 release?
>>> It would be great to get it out really soon. Its been 3 months since
>>> the last release and we have a lot of tickets resolved in this
>>> release.
>>>
>>>
>>> --
>>> Claus Ibsen
>>> Apache Camel Committer
>>>
>>> Author of Camel in Action: http://www.manning.com/ibsen/
>>> Open Source Integration: http://fusesource.com
>>> Blog: http://davsclaus.blogspot.com/
>>> Twitter: http://twitter.com/davsclaus
>>
>>
>
>
>
> --
> Claus Ibsen
> Apache Camel Committer
>
> Author of Camel in Action: http://www.manning.com/ibsen/
> Open Source Integration: http://fusesource.com
> Blog: http://davsclaus.blogspot.com/
> Twitter: http://twitter.com/davsclaus
>



-- 
Claus Ibsen
Apache Camel Committer

Author of Camel in Action: http://www.manning.com/ibsen/
Open Source Integration: http://fusesource.com
Blog: http://davsclaus.blogspot.com/
Twitter: http://twitter.com/davsclaus

Re: Camel 2.5 - Starts to look good for a relese

Posted by Claus Ibsen <cl...@gmail.com>.
Hi

Last minute ticket which James Strachan would love to get in
https://issues.apache.org/activemq/browse/CAMEL-3222

I am running full test now with the fixes. Before committing to trunk.
I will let you know when its committed so we can start the cut.


On Tue, Oct 12, 2010 at 3:22 PM, Hadrian Zbarcea <hz...@gmail.com> wrote:
> I did some sanity checks in the past days, and as I mentioned earlier on the #camel channel, I already started the builds for the 2.5.0 release.
> I only encountered an intermittent problem with camel-ftp in the past days that may cause some problem (i hope not), other than that we should be able to start the vote today.
>
> Cheers
> Hadrian
>
> On Oct 12, 2010, at 12:24 AM, Claus Ibsen wrote:
>
>> Hi
>>
>> We have upgraded to Scalate 1.3 and CXF 2.2.11. We should be all set
>> in terms of dependencies.
>>
>> Hadrian do you have time to do the 2.5 release?
>> It would be great to get it out really soon. Its been 3 months since
>> the last release and we have a lot of tickets resolved in this
>> release.
>>
>>
>> --
>> Claus Ibsen
>> Apache Camel Committer
>>
>> Author of Camel in Action: http://www.manning.com/ibsen/
>> Open Source Integration: http://fusesource.com
>> Blog: http://davsclaus.blogspot.com/
>> Twitter: http://twitter.com/davsclaus
>
>



-- 
Claus Ibsen
Apache Camel Committer

Author of Camel in Action: http://www.manning.com/ibsen/
Open Source Integration: http://fusesource.com
Blog: http://davsclaus.blogspot.com/
Twitter: http://twitter.com/davsclaus

Re: Camel 2.5 - Starts to look good for a relese

Posted by Hadrian Zbarcea <hz...@gmail.com>.
I did some sanity checks in the past days, and as I mentioned earlier on the #camel channel, I already started the builds for the 2.5.0 release.
I only encountered an intermittent problem with camel-ftp in the past days that may cause some problem (i hope not), other than that we should be able to start the vote today.

Cheers
Hadrian

On Oct 12, 2010, at 12:24 AM, Claus Ibsen wrote:

> Hi
> 
> We have upgraded to Scalate 1.3 and CXF 2.2.11. We should be all set
> in terms of dependencies.
> 
> Hadrian do you have time to do the 2.5 release?
> It would be great to get it out really soon. Its been 3 months since
> the last release and we have a lot of tickets resolved in this
> release.
> 
> 
> -- 
> Claus Ibsen
> Apache Camel Committer
> 
> Author of Camel in Action: http://www.manning.com/ibsen/
> Open Source Integration: http://fusesource.com
> Blog: http://davsclaus.blogspot.com/
> Twitter: http://twitter.com/davsclaus


Re: Camel 2.5 - Starts to look good for a relese

Posted by Claus Ibsen <cl...@gmail.com>.
Hi

We have upgraded to Scalate 1.3 and CXF 2.2.11. We should be all set
in terms of dependencies.

Hadrian do you have time to do the 2.5 release?
It would be great to get it out really soon. Its been 3 months since
the last release and we have a lot of tickets resolved in this
release.


-- 
Claus Ibsen
Apache Camel Committer

Author of Camel in Action: http://www.manning.com/ibsen/
Open Source Integration: http://fusesource.com
Blog: http://davsclaus.blogspot.com/
Twitter: http://twitter.com/davsclaus

Re: Camel 2.5 - Starts to look good for a relese

Posted by Willem Jiang <wi...@gmail.com>.
I will work on it this afternoon.

Willem

On 10/8/10 12:09 PM, Claus Ibsen wrote:
> On Fri, Oct 8, 2010 at 3:29 AM, Willem Jiang<wi...@gmail.com>  wrote:
>> Sorry, the voting CXF version is 2.2.11.
>>
>
> Can we change trunk to use the 2.2.11 .jar (from the staging repo) or
> something. So we can test with it already now?
> That gives us time to test Camel with it and also if we find some
> serious issue report it back to the vote.
>
> And if the vote passes and when CXF 2.2.11 is in central repo we can
> quickly switch to using it and start out Camel release thereafter.
>
>
>> On 10/8/10 8:59 AM, Willem Jiang wrote:
>>>
>>> CXF 2.2.10 is voting, it could be good to let Camel 2.5 use this
>>> version. If we can wait for another 72 hours :)
>>>
>>> Willem
>>>
>>> On 10/8/10 3:41 AM, Hadrian Zbarcea wrote:
>>>>
>>>> (whispering) Yay James! I'll get everything ready for the 2.5 release
>>>> then :)
>>>> Hadrian
>>>>
>>>>
>>>> On Oct 7, 2010, at 2:12 PM, James Strachan wrote:
>>>>
>>>>> On 29 September 2010 09:08, Claus Ibsen<cl...@gmail.com>  wrote:
>>>>>>
>>>>>> James will cut the scalate 1.3 release next week.
>>>>>
>>>>> Don't tell anyone, I'll be updating the site, blogging and announcing
>>>>> tomorrow, but the 1.3 scalate release is in the FuseSource repo and
>>>>> will be promoted to the central maven repo within the hour.
>>>>>
>>>>> --
>>>>> James
>>>>> -------
>>>>> http://macstrac.blogspot.com/
>>>>>
>>>>> Open Source Integration
>>>>> http://fusesource.com/
>>>>
>>>>
>>>
>>>
>>
>>
>> --
>> Willem
>> ----------------------------------
>> Open Source Integration: http://www.fusesource.com
>> Blog:    http://willemjiang.blogspot.com (English)
>>          http://jnn.javaeye.com (Chinese)
>> Twitter: http://twitter.com/willemjiang
>>
>
>
>


-- 
Willem
----------------------------------
Open Source Integration: http://www.fusesource.com
Blog:    http://willemjiang.blogspot.com (English)
          http://jnn.javaeye.com (Chinese)
Twitter: http://twitter.com/willemjiang

Re: Camel 2.5 - Starts to look good for a relese

Posted by Claus Ibsen <cl...@gmail.com>.
On Fri, Oct 8, 2010 at 3:29 AM, Willem Jiang <wi...@gmail.com> wrote:
> Sorry, the voting CXF version is 2.2.11.
>

Can we change trunk to use the 2.2.11 .jar (from the staging repo) or
something. So we can test with it already now?
That gives us time to test Camel with it and also if we find some
serious issue report it back to the vote.

And if the vote passes and when CXF 2.2.11 is in central repo we can
quickly switch to using it and start out Camel release thereafter.


> On 10/8/10 8:59 AM, Willem Jiang wrote:
>>
>> CXF 2.2.10 is voting, it could be good to let Camel 2.5 use this
>> version. If we can wait for another 72 hours :)
>>
>> Willem
>>
>> On 10/8/10 3:41 AM, Hadrian Zbarcea wrote:
>>>
>>> (whispering) Yay James! I'll get everything ready for the 2.5 release
>>> then :)
>>> Hadrian
>>>
>>>
>>> On Oct 7, 2010, at 2:12 PM, James Strachan wrote:
>>>
>>>> On 29 September 2010 09:08, Claus Ibsen<cl...@gmail.com> wrote:
>>>>>
>>>>> James will cut the scalate 1.3 release next week.
>>>>
>>>> Don't tell anyone, I'll be updating the site, blogging and announcing
>>>> tomorrow, but the 1.3 scalate release is in the FuseSource repo and
>>>> will be promoted to the central maven repo within the hour.
>>>>
>>>> --
>>>> James
>>>> -------
>>>> http://macstrac.blogspot.com/
>>>>
>>>> Open Source Integration
>>>> http://fusesource.com/
>>>
>>>
>>
>>
>
>
> --
> Willem
> ----------------------------------
> Open Source Integration: http://www.fusesource.com
> Blog:    http://willemjiang.blogspot.com (English)
>         http://jnn.javaeye.com (Chinese)
> Twitter: http://twitter.com/willemjiang
>



-- 
Claus Ibsen
Apache Camel Committer

Author of Camel in Action: http://www.manning.com/ibsen/
Open Source Integration: http://fusesource.com
Blog: http://davsclaus.blogspot.com/
Twitter: http://twitter.com/davsclaus

Re: Camel 2.5 - Starts to look good for a relese

Posted by Willem Jiang <wi...@gmail.com>.
Sorry, the voting CXF version is 2.2.11.

On 10/8/10 8:59 AM, Willem Jiang wrote:
> CXF 2.2.10 is voting, it could be good to let Camel 2.5 use this
> version. If we can wait for another 72 hours :)
>
> Willem
>
> On 10/8/10 3:41 AM, Hadrian Zbarcea wrote:
>> (whispering) Yay James! I'll get everything ready for the 2.5 release
>> then :)
>> Hadrian
>>
>>
>> On Oct 7, 2010, at 2:12 PM, James Strachan wrote:
>>
>>> On 29 September 2010 09:08, Claus Ibsen<cl...@gmail.com> wrote:
>>>> James will cut the scalate 1.3 release next week.
>>>
>>> Don't tell anyone, I'll be updating the site, blogging and announcing
>>> tomorrow, but the 1.3 scalate release is in the FuseSource repo and
>>> will be promoted to the central maven repo within the hour.
>>>
>>> --
>>> James
>>> -------
>>> http://macstrac.blogspot.com/
>>>
>>> Open Source Integration
>>> http://fusesource.com/
>>
>>
>
>


-- 
Willem
----------------------------------
Open Source Integration: http://www.fusesource.com
Blog:    http://willemjiang.blogspot.com (English)
          http://jnn.javaeye.com (Chinese)
Twitter: http://twitter.com/willemjiang

Re: Camel 2.5 - Starts to look good for a relese

Posted by Willem Jiang <wi...@gmail.com>.
CXF 2.2.10 is voting, it could be good to let Camel 2.5 use this 
version. If we can wait for another 72 hours :)

Willem

On 10/8/10 3:41 AM, Hadrian Zbarcea wrote:
> (whispering) Yay James! I'll get everything ready for the 2.5 release then :)
> Hadrian
>
>
> On Oct 7, 2010, at 2:12 PM, James Strachan wrote:
>
>> On 29 September 2010 09:08, Claus Ibsen<cl...@gmail.com>  wrote:
>>> James will cut the scalate 1.3 release next week.
>>
>> Don't tell anyone, I'll be updating the site, blogging and announcing
>> tomorrow, but the 1.3 scalate release is in the FuseSource repo and
>> will be promoted to the central maven repo within the hour.
>>
>> --
>> James
>> -------
>> http://macstrac.blogspot.com/
>>
>> Open Source Integration
>> http://fusesource.com/
>
>


-- 
Willem
----------------------------------
Open Source Integration: http://www.fusesource.com
Blog:    http://willemjiang.blogspot.com (English)
          http://jnn.javaeye.com (Chinese)
Twitter: http://twitter.com/willemjiang

Re: Camel 2.5 - Starts to look good for a relese

Posted by Hadrian Zbarcea <hz...@gmail.com>.
(whispering) Yay James! I'll get everything ready for the 2.5 release then :)
Hadrian


On Oct 7, 2010, at 2:12 PM, James Strachan wrote:

> On 29 September 2010 09:08, Claus Ibsen <cl...@gmail.com> wrote:
>> James will cut the scalate 1.3 release next week.
> 
> Don't tell anyone, I'll be updating the site, blogging and announcing
> tomorrow, but the 1.3 scalate release is in the FuseSource repo and
> will be promoted to the central maven repo within the hour.
> 
> -- 
> James
> -------
> http://macstrac.blogspot.com/
> 
> Open Source Integration
> http://fusesource.com/


Re: Camel 2.5 - Starts to look good for a relese

Posted by James Strachan <ja...@gmail.com>.
On 29 September 2010 09:08, Claus Ibsen <cl...@gmail.com> wrote:
> James will cut the scalate 1.3 release next week.

Don't tell anyone, I'll be updating the site, blogging and announcing
tomorrow, but the 1.3 scalate release is in the FuseSource repo and
will be promoted to the central maven repo within the hour.

-- 
James
-------
http://macstrac.blogspot.com/

Open Source Integration
http://fusesource.com/

Re: Camel 2.5 - Starts to look good for a relese

Posted by Claus Ibsen <cl...@gmail.com>.
James will cut the scalate 1.3 release next week.


On Fri, Sep 24, 2010 at 2:05 PM, Hadrian Zbarcea <hz...@gmail.com> wrote:
> Go James :). I'll build 2.5.0 as soon as you're done.
> Hadrian
>
>
> On Sep 24, 2010, at 4:02 AM, James Strachan wrote:
>
>> On 24 September 2010 08:55, Claus Ibsen <cl...@gmail.com> wrote:
>>> Hi
>>>
>>> Okay so Karaf 2.1 is now in its final stages of the vote, so hopefully
>>> that would go well so it can be released and available early next
>>> week.
>>>
>>> Then its a matter of having James Strachan do his Scalate 1.3 release,
>>> which should be the last dep. to be resolved.
>>> Then we can get started on the Camel 2.5 release.
>>>
>>> As usually you can help out by testing the latest source code from trunk.
>>> And Apache has caught up and the SNAPSHOT .jars is being published to
>>> the snapshot repo, so its easy for maven users to try and test.
>>>
>>> See more details here: http://camel.apache.org/download
>>
>> As soon as Karaf's out I'm gonna be shipping Scalate 1.3 as soon as I
>> manage to defeat "mvn release plugin" in our frequent battles...
>>
>> --
>> James
>> -------
>> http://macstrac.blogspot.com/
>>
>> Open Source Integration
>> http://fusesource.com/
>
>



-- 
Claus Ibsen
Apache Camel Committer

Author of Camel in Action: http://www.manning.com/ibsen/
Open Source Integration: http://fusesource.com
Blog: http://davsclaus.blogspot.com/
Twitter: http://twitter.com/davsclaus

Re: Camel 2.5 - Starts to look good for a relese

Posted by Hadrian Zbarcea <hz...@gmail.com>.
Go James :). I'll build 2.5.0 as soon as you're done.
Hadrian


On Sep 24, 2010, at 4:02 AM, James Strachan wrote:

> On 24 September 2010 08:55, Claus Ibsen <cl...@gmail.com> wrote:
>> Hi
>> 
>> Okay so Karaf 2.1 is now in its final stages of the vote, so hopefully
>> that would go well so it can be released and available early next
>> week.
>> 
>> Then its a matter of having James Strachan do his Scalate 1.3 release,
>> which should be the last dep. to be resolved.
>> Then we can get started on the Camel 2.5 release.
>> 
>> As usually you can help out by testing the latest source code from trunk.
>> And Apache has caught up and the SNAPSHOT .jars is being published to
>> the snapshot repo, so its easy for maven users to try and test.
>> 
>> See more details here: http://camel.apache.org/download
> 
> As soon as Karaf's out I'm gonna be shipping Scalate 1.3 as soon as I
> manage to defeat "mvn release plugin" in our frequent battles...
> 
> -- 
> James
> -------
> http://macstrac.blogspot.com/
> 
> Open Source Integration
> http://fusesource.com/


Re: Camel 2.5 - Starts to look good for a relese

Posted by James Strachan <ja...@gmail.com>.
On 24 September 2010 08:55, Claus Ibsen <cl...@gmail.com> wrote:
> Hi
>
> Okay so Karaf 2.1 is now in its final stages of the vote, so hopefully
> that would go well so it can be released and available early next
> week.
>
> Then its a matter of having James Strachan do his Scalate 1.3 release,
> which should be the last dep. to be resolved.
> Then we can get started on the Camel 2.5 release.
>
> As usually you can help out by testing the latest source code from trunk.
> And Apache has caught up and the SNAPSHOT .jars is being published to
> the snapshot repo, so its easy for maven users to try and test.
>
> See more details here: http://camel.apache.org/download

As soon as Karaf's out I'm gonna be shipping Scalate 1.3 as soon as I
manage to defeat "mvn release plugin" in our frequent battles...

-- 
James
-------
http://macstrac.blogspot.com/

Open Source Integration
http://fusesource.com/

Re: Camel 2.5 - Starts to look good for a relese

Posted by Claus Ibsen <cl...@gmail.com>.
Hi

Okay so Karaf 2.1 is now in its final stages of the vote, so hopefully
that would go well so it can be released and available early next
week.

Then its a matter of having James Strachan do his Scalate 1.3 release,
which should be the last dep. to be resolved.
Then we can get started on the Camel 2.5 release.

As usually you can help out by testing the latest source code from trunk.
And Apache has caught up and the SNAPSHOT .jars is being published to
the snapshot repo, so its easy for maven users to try and test.

See more details here: http://camel.apache.org/download


On Fri, Aug 27, 2010 at 2:24 PM, Claus Ibsen <cl...@gmail.com> wrote:
> Hi
>
> Its just 6-7 weeks ago we released Camel 2.4, and we already got
> approx 150 tickets resolved on the road for Camel 2.5.
>
> Camel 2.5 doesn't have a lot of new features, but it does have many
> great improvements and bug fixes. So it becomes a great and stable
> Camel release.
> I have therefore started moving tickets with bigger new features to
> Camel 2.6 or even 3.0.
>
> I suggest that we release Camel 2.5 next month. For example in about 2
> weeks time if that suites our release manager, Hadrian :)
>
> We are currently having a couple of dependencies to OSGi bundles being
> released at SMX.
> The vote is currently in progress, and they should be out in central
> maven repo next week.
>
> What remains to be done is to trim the size of camel-web to remove the
> unneeded stuff which has crept into it. See another mail on dev about
> this.
>
> If you got any must have features, bug fixes, improvements, then its
> time to raise your voice.
>
>
> You can see the current in progress release notes
> http://camel.apache.org/camel-250-release.html
>
> --
> Claus Ibsen
> Apache Camel Committer
>
> Author of Camel in Action: http://www.manning.com/ibsen/
> Open Source Integration: http://fusesource.com
> Blog: http://davsclaus.blogspot.com/
> Twitter: http://twitter.com/davsclaus
>



-- 
Claus Ibsen
Apache Camel Committer

Author of Camel in Action: http://www.manning.com/ibsen/
Open Source Integration: http://fusesource.com
Blog: http://davsclaus.blogspot.com/
Twitter: http://twitter.com/davsclaus

Re: Camel 2.5 - Starts to look good for a relese

Posted by Jaco van Tonder <ja...@tebabank.com>.
On 09/15/2010 05:56 PM, S. Ali Tokmen wrote:
> 
>> And in the camel-itest/camel-itest-osgi you can add OSGi unit test.
> 
> I don't have commit right, how can I add a test?

Create a JIRA here against Camel (or see if there is an existing one):
https://issues.apache.org/activemq/

Then attach your patch, and make sure you grant apache the right to use
your code.

Regards,
---Jaco




> 
> Cheers
> 
> S. Ali Tokmen
> savas-ali.tokmen@bull.net
> 
> Office: +33 4 76 29 76 19
> GSM:    +33 66 43 00 555
> 
> Bull, Architect of an Open World TM
> http://www.bull.com
> 
> 
> 


-- 
Jaco van Tonder
Software Developer
Teba Bank Ltd

Direct: +27 11 518 5166 :: Mobile: +27 83 417 5424 :: Fax: 0866 415 925
E-mail: jacovt@tebabank.com :: Web: http://www.tebabank.co.za/

/"\
\ /    ASCII Ribbon Campaign
 X   against HTML email & vCards & microsoft attachments
/ \



#####################################################################################
Attention:
The information contained in this message and or attachments is intended
only for the person or entity to which it is addressed and may contain
confidential and/or privileged material.  Any review, retransmission,
dissemination or other use of, or taking of any action in reliance upon,
this information by persons or entities other than the intended recipient
is prohibited. If you received this in error, please contact the sender and
delete the material from any system and destroy any copies.

Thank You.
#####################################################################################

#####################################################################################
This e-mail message has been scanned for Viruses and Content and cleared 
by MailMarshal
#####################################################################################

Re: Camel 2.5 - Starts to look good for a relese

Posted by "S. Ali Tokmen" <sa...@bull.net>.
  Hello

On 15/09/2010 17:38, Claus Ibsen wrote:
> If you think you spotted a bug then please dig more into it. At fist 
> confirm that it works outside OSGi, and thus its only an OSGi thing. 
> Also try with a regular file endpoint to see if it works on that one, 
> then we know its only related to camel-ftp.

You are absolutaly right: the delay parameter is also ignored for a 
regular file route. I expect the fix on a regular file route for OSGi 
would also fix the behavior on an FTP route.

> And in the camel-itest/camel-itest-osgi you can add OSGi unit test.

I don't have commit right, how can I add a test?

Cheers

S. Ali Tokmen
savas-ali.tokmen@bull.net

Office: +33 4 76 29 76 19
GSM:    +33 66 43 00 555

Bull, Architect of an Open World TM
http://www.bull.com



Re: Camel 2.5 - Starts to look good for a relese

Posted by Claus Ibsen <cl...@gmail.com>.
On Wed, Sep 15, 2010 at 5:32 PM, S. Ali Tokmen
<sa...@bull.net> wrote:
>  Hello
>
> It would be great if we can wait for Claus' final answer on my issue "The
> delay option seems not to be working in CAMEL-FTP (Java DSL mode, OSGi)"
>

I dont have a final saying. The community has :)

If you think you spotted a bug then please dig more into it. At fist
confirm that it works outside OSGi, and thus its only an OSGi thing.
Also try with a regular file endpoint to see if it works on that one,
then we know its only related to camel-ftp.

And in the camel-itest/camel-itest-osgi you can add OSGi unit test. So
that would be a good spot to try to create a Camel route with the ftp
component to see if you can reproduce the error in there. Then we can
use that as a test to track the problem, and have an unit test in the
future for it.


> Apart from that, nice work!
>
> S. Ali Tokmen
> savas-ali.tokmen@bull.net
>
> Office: +33 4 76 29 76 19
> GSM:    +33 66 43 00 555
>
> Bull, Architect of an Open World TM
> http://www.bull.com
>
>
> On 15/09/2010 15:05, Claus Ibsen wrote:
>>
>> Okay the number of releases we wait for is down to 2 now
>>  - Karaf 2.1.0
>>  - Scalate 1.3.0
>>
>> New hawt releases was done yesterday
>>
>>
>>
>> On Tue, Sep 14, 2010 at 12:49 PM, Claus Ibsen<cl...@gmail.com>
>>  wrote:
>>>
>>> Hi
>>>
>>> Okay we are closing in on the 2.5 release.
>>>
>>> We are dependent on a couple of projects to be release first
>>>
>>> - Karaf 2.1.0
>>> - Scalate 1.3.0
>>> - Hawtdb 1.4.1
>>> - Hawtbuf 1.1.1
>>>
>>> Hiram will do the hawt releases in the near future, so we should be safe
>>> there.
>>> And scalate awaits Karaf 2.1.0, so thats main project we are waiting for.
>>>
>>> As I understand Karaf 2.1.0 is being debated to be released in the near
>>> future.
>>>
>>>
>>> On Fri, Aug 27, 2010 at 2:24 PM, Claus Ibsen<cl...@gmail.com>
>>>  wrote:
>>>>
>>>> Hi
>>>>
>>>> Its just 6-7 weeks ago we released Camel 2.4, and we already got
>>>> approx 150 tickets resolved on the road for Camel 2.5.
>>>>
>>>> Camel 2.5 doesn't have a lot of new features, but it does have many
>>>> great improvements and bug fixes. So it becomes a great and stable
>>>> Camel release.
>>>> I have therefore started moving tickets with bigger new features to
>>>> Camel 2.6 or even 3.0.
>>>>
>>>> I suggest that we release Camel 2.5 next month. For example in about 2
>>>> weeks time if that suites our release manager, Hadrian :)
>>>>
>>>> We are currently having a couple of dependencies to OSGi bundles being
>>>> released at SMX.
>>>> The vote is currently in progress, and they should be out in central
>>>> maven repo next week.
>>>>
>>>> What remains to be done is to trim the size of camel-web to remove the
>>>> unneeded stuff which has crept into it. See another mail on dev about
>>>> this.
>>>>
>>>> If you got any must have features, bug fixes, improvements, then its
>>>> time to raise your voice.
>>>>
>>>>
>>>> You can see the current in progress release notes
>>>> http://camel.apache.org/camel-250-release.html
>>>>
>>>> --
>>>> Claus Ibsen
>>>> Apache Camel Committer
>>>>
>>>> Author of Camel in Action: http://www.manning.com/ibsen/
>>>> Open Source Integration: http://fusesource.com
>>>> Blog: http://davsclaus.blogspot.com/
>>>> Twitter: http://twitter.com/davsclaus
>>>>
>>>
>>>
>>> --
>>> Claus Ibsen
>>> Apache Camel Committer
>>>
>>> Author of Camel in Action: http://www.manning.com/ibsen/
>>> Open Source Integration: http://fusesource.com
>>> Blog: http://davsclaus.blogspot.com/
>>> Twitter: http://twitter.com/davsclaus
>>>
>>
>>
>
>



-- 
Claus Ibsen
Apache Camel Committer

Author of Camel in Action: http://www.manning.com/ibsen/
Open Source Integration: http://fusesource.com
Blog: http://davsclaus.blogspot.com/
Twitter: http://twitter.com/davsclaus

Re: Camel 2.5 - Starts to look good for a relese

Posted by "S. Ali Tokmen" <sa...@bull.net>.
  Hello

It would be great if we can wait for Claus' final answer on my issue 
"The delay option seems not to be working in CAMEL-FTP (Java DSL mode, 
OSGi)"

Apart from that, nice work!

S. Ali Tokmen
savas-ali.tokmen@bull.net

Office: +33 4 76 29 76 19
GSM:    +33 66 43 00 555

Bull, Architect of an Open World TM
http://www.bull.com


On 15/09/2010 15:05, Claus Ibsen wrote:
> Okay the number of releases we wait for is down to 2 now
>   - Karaf 2.1.0
>   - Scalate 1.3.0
>
> New hawt releases was done yesterday
>
>
>
> On Tue, Sep 14, 2010 at 12:49 PM, Claus Ibsen<cl...@gmail.com>  wrote:
>> Hi
>>
>> Okay we are closing in on the 2.5 release.
>>
>> We are dependent on a couple of projects to be release first
>>
>> - Karaf 2.1.0
>> - Scalate 1.3.0
>> - Hawtdb 1.4.1
>> - Hawtbuf 1.1.1
>>
>> Hiram will do the hawt releases in the near future, so we should be safe there.
>> And scalate awaits Karaf 2.1.0, so thats main project we are waiting for.
>>
>> As I understand Karaf 2.1.0 is being debated to be released in the near future.
>>
>>
>> On Fri, Aug 27, 2010 at 2:24 PM, Claus Ibsen<cl...@gmail.com>  wrote:
>>> Hi
>>>
>>> Its just 6-7 weeks ago we released Camel 2.4, and we already got
>>> approx 150 tickets resolved on the road for Camel 2.5.
>>>
>>> Camel 2.5 doesn't have a lot of new features, but it does have many
>>> great improvements and bug fixes. So it becomes a great and stable
>>> Camel release.
>>> I have therefore started moving tickets with bigger new features to
>>> Camel 2.6 or even 3.0.
>>>
>>> I suggest that we release Camel 2.5 next month. For example in about 2
>>> weeks time if that suites our release manager, Hadrian :)
>>>
>>> We are currently having a couple of dependencies to OSGi bundles being
>>> released at SMX.
>>> The vote is currently in progress, and they should be out in central
>>> maven repo next week.
>>>
>>> What remains to be done is to trim the size of camel-web to remove the
>>> unneeded stuff which has crept into it. See another mail on dev about
>>> this.
>>>
>>> If you got any must have features, bug fixes, improvements, then its
>>> time to raise your voice.
>>>
>>>
>>> You can see the current in progress release notes
>>> http://camel.apache.org/camel-250-release.html
>>>
>>> --
>>> Claus Ibsen
>>> Apache Camel Committer
>>>
>>> Author of Camel in Action: http://www.manning.com/ibsen/
>>> Open Source Integration: http://fusesource.com
>>> Blog: http://davsclaus.blogspot.com/
>>> Twitter: http://twitter.com/davsclaus
>>>
>>
>>
>> --
>> Claus Ibsen
>> Apache Camel Committer
>>
>> Author of Camel in Action: http://www.manning.com/ibsen/
>> Open Source Integration: http://fusesource.com
>> Blog: http://davsclaus.blogspot.com/
>> Twitter: http://twitter.com/davsclaus
>>
>
>


Re: Camel 2.5 - Starts to look good for a relese

Posted by Claus Ibsen <cl...@gmail.com>.
Okay the number of releases we wait for is down to 2 now
 - Karaf 2.1.0
 - Scalate 1.3.0

New hawt releases was done yesterday



On Tue, Sep 14, 2010 at 12:49 PM, Claus Ibsen <cl...@gmail.com> wrote:
> Hi
>
> Okay we are closing in on the 2.5 release.
>
> We are dependent on a couple of projects to be release first
>
> - Karaf 2.1.0
> - Scalate 1.3.0
> - Hawtdb 1.4.1
> - Hawtbuf 1.1.1
>
> Hiram will do the hawt releases in the near future, so we should be safe there.
> And scalate awaits Karaf 2.1.0, so thats main project we are waiting for.
>
> As I understand Karaf 2.1.0 is being debated to be released in the near future.
>
>
> On Fri, Aug 27, 2010 at 2:24 PM, Claus Ibsen <cl...@gmail.com> wrote:
>> Hi
>>
>> Its just 6-7 weeks ago we released Camel 2.4, and we already got
>> approx 150 tickets resolved on the road for Camel 2.5.
>>
>> Camel 2.5 doesn't have a lot of new features, but it does have many
>> great improvements and bug fixes. So it becomes a great and stable
>> Camel release.
>> I have therefore started moving tickets with bigger new features to
>> Camel 2.6 or even 3.0.
>>
>> I suggest that we release Camel 2.5 next month. For example in about 2
>> weeks time if that suites our release manager, Hadrian :)
>>
>> We are currently having a couple of dependencies to OSGi bundles being
>> released at SMX.
>> The vote is currently in progress, and they should be out in central
>> maven repo next week.
>>
>> What remains to be done is to trim the size of camel-web to remove the
>> unneeded stuff which has crept into it. See another mail on dev about
>> this.
>>
>> If you got any must have features, bug fixes, improvements, then its
>> time to raise your voice.
>>
>>
>> You can see the current in progress release notes
>> http://camel.apache.org/camel-250-release.html
>>
>> --
>> Claus Ibsen
>> Apache Camel Committer
>>
>> Author of Camel in Action: http://www.manning.com/ibsen/
>> Open Source Integration: http://fusesource.com
>> Blog: http://davsclaus.blogspot.com/
>> Twitter: http://twitter.com/davsclaus
>>
>
>
>
> --
> Claus Ibsen
> Apache Camel Committer
>
> Author of Camel in Action: http://www.manning.com/ibsen/
> Open Source Integration: http://fusesource.com
> Blog: http://davsclaus.blogspot.com/
> Twitter: http://twitter.com/davsclaus
>



-- 
Claus Ibsen
Apache Camel Committer

Author of Camel in Action: http://www.manning.com/ibsen/
Open Source Integration: http://fusesource.com
Blog: http://davsclaus.blogspot.com/
Twitter: http://twitter.com/davsclaus

Re: Camel 2.5 - Starts to look good for a relese

Posted by Claus Ibsen <cl...@gmail.com>.
Hi

Okay we are closing in on the 2.5 release.

We are dependent on a couple of projects to be release first

- Karaf 2.1.0
- Scalate 1.3.0
- Hawtdb 1.4.1
- Hawtbuf 1.1.1

Hiram will do the hawt releases in the near future, so we should be safe there.
And scalate awaits Karaf 2.1.0, so thats main project we are waiting for.

As I understand Karaf 2.1.0 is being debated to be released in the near future.


On Fri, Aug 27, 2010 at 2:24 PM, Claus Ibsen <cl...@gmail.com> wrote:
> Hi
>
> Its just 6-7 weeks ago we released Camel 2.4, and we already got
> approx 150 tickets resolved on the road for Camel 2.5.
>
> Camel 2.5 doesn't have a lot of new features, but it does have many
> great improvements and bug fixes. So it becomes a great and stable
> Camel release.
> I have therefore started moving tickets with bigger new features to
> Camel 2.6 or even 3.0.
>
> I suggest that we release Camel 2.5 next month. For example in about 2
> weeks time if that suites our release manager, Hadrian :)
>
> We are currently having a couple of dependencies to OSGi bundles being
> released at SMX.
> The vote is currently in progress, and they should be out in central
> maven repo next week.
>
> What remains to be done is to trim the size of camel-web to remove the
> unneeded stuff which has crept into it. See another mail on dev about
> this.
>
> If you got any must have features, bug fixes, improvements, then its
> time to raise your voice.
>
>
> You can see the current in progress release notes
> http://camel.apache.org/camel-250-release.html
>
> --
> Claus Ibsen
> Apache Camel Committer
>
> Author of Camel in Action: http://www.manning.com/ibsen/
> Open Source Integration: http://fusesource.com
> Blog: http://davsclaus.blogspot.com/
> Twitter: http://twitter.com/davsclaus
>



-- 
Claus Ibsen
Apache Camel Committer

Author of Camel in Action: http://www.manning.com/ibsen/
Open Source Integration: http://fusesource.com
Blog: http://davsclaus.blogspot.com/
Twitter: http://twitter.com/davsclaus

Re: Camel 2.5 - Starts to look good for a relese

Posted by Willem Jiang <wi...@gmail.com>.
Claus Ibsen wrote:
> On Fri, Aug 27, 2010 at 3:25 PM, Willem Jiang <wi...@gmail.com> wrote:
>> Hi Claus,
>>
>> I'm planing to implement this feature[1] into Camel 2.5 next week.
>>
>> [1]https://issues.apache.org/activemq/browse/CAMEL-3086
>>
> 
> Looks like a great feature. Lets get it in for 2.5.
> 
> BTW: I wonder if camel-cxf RS Producer (REST) supports the async CXF
> API as well?
> Looking into the source in CxfRsProducer it appears to be synchronous.
> 
> And it uses org.apache.cxf.jaxrs.client.WebClient as the client to
> send the request.
> Wonder if CXF has an async API for this client?

I just went through the WebClient, it's based on HttpURLConnetion to 
provide handy API to invoke the RESTful service.

I don't think it supports async API so far. Maybe we can add this API in 
the future version of CXF.

Willem


> 
> 
> 
>> Willem
>>
>> Claus Ibsen wrote:
>>> Hi
>>>
>>> Its just 6-7 weeks ago we released Camel 2.4, and we already got
>>> approx 150 tickets resolved on the road for Camel 2.5.
>>>
>>> Camel 2.5 doesn't have a lot of new features, but it does have many
>>> great improvements and bug fixes. So it becomes a great and stable
>>> Camel release.
>>> I have therefore started moving tickets with bigger new features to
>>> Camel 2.6 or even 3.0.
>>>
>>> I suggest that we release Camel 2.5 next month. For example in about 2
>>> weeks time if that suites our release manager, Hadrian :)
>>>
>>> We are currently having a couple of dependencies to OSGi bundles being
>>> released at SMX.
>>> The vote is currently in progress, and they should be out in central
>>> maven repo next week.
>>>
>>> What remains to be done is to trim the size of camel-web to remove the
>>> unneeded stuff which has crept into it. See another mail on dev about
>>> this.
>>>
>>> If you got any must have features, bug fixes, improvements, then its
>>> time to raise your voice.
>>>
>>>
>>> You can see the current in progress release notes
>>> http://camel.apache.org/camel-250-release.html
>>>
>>
> 
> 
> 


Re: Camel 2.5 - Starts to look good for a relese

Posted by Claus Ibsen <cl...@gmail.com>.
On Fri, Aug 27, 2010 at 3:25 PM, Willem Jiang <wi...@gmail.com> wrote:
> Hi Claus,
>
> I'm planing to implement this feature[1] into Camel 2.5 next week.
>
> [1]https://issues.apache.org/activemq/browse/CAMEL-3086
>

Looks like a great feature. Lets get it in for 2.5.

BTW: I wonder if camel-cxf RS Producer (REST) supports the async CXF
API as well?
Looking into the source in CxfRsProducer it appears to be synchronous.

And it uses org.apache.cxf.jaxrs.client.WebClient as the client to
send the request.
Wonder if CXF has an async API for this client?



> Willem
>
> Claus Ibsen wrote:
>>
>> Hi
>>
>> Its just 6-7 weeks ago we released Camel 2.4, and we already got
>> approx 150 tickets resolved on the road for Camel 2.5.
>>
>> Camel 2.5 doesn't have a lot of new features, but it does have many
>> great improvements and bug fixes. So it becomes a great and stable
>> Camel release.
>> I have therefore started moving tickets with bigger new features to
>> Camel 2.6 or even 3.0.
>>
>> I suggest that we release Camel 2.5 next month. For example in about 2
>> weeks time if that suites our release manager, Hadrian :)
>>
>> We are currently having a couple of dependencies to OSGi bundles being
>> released at SMX.
>> The vote is currently in progress, and they should be out in central
>> maven repo next week.
>>
>> What remains to be done is to trim the size of camel-web to remove the
>> unneeded stuff which has crept into it. See another mail on dev about
>> this.
>>
>> If you got any must have features, bug fixes, improvements, then its
>> time to raise your voice.
>>
>>
>> You can see the current in progress release notes
>> http://camel.apache.org/camel-250-release.html
>>
>
>



-- 
Claus Ibsen
Apache Camel Committer

Author of Camel in Action: http://www.manning.com/ibsen/
Open Source Integration: http://fusesource.com
Blog: http://davsclaus.blogspot.com/
Twitter: http://twitter.com/davsclaus

Re: Camel 2.5 - Starts to look good for a relese

Posted by Willem Jiang <wi...@gmail.com>.
Hi Claus,

I'm planing to implement this feature[1] into Camel 2.5 next week.

[1]https://issues.apache.org/activemq/browse/CAMEL-3086

Willem

Claus Ibsen wrote:
> Hi
> 
> Its just 6-7 weeks ago we released Camel 2.4, and we already got
> approx 150 tickets resolved on the road for Camel 2.5.
> 
> Camel 2.5 doesn't have a lot of new features, but it does have many
> great improvements and bug fixes. So it becomes a great and stable
> Camel release.
> I have therefore started moving tickets with bigger new features to
> Camel 2.6 or even 3.0.
> 
> I suggest that we release Camel 2.5 next month. For example in about 2
> weeks time if that suites our release manager, Hadrian :)
> 
> We are currently having a couple of dependencies to OSGi bundles being
> released at SMX.
> The vote is currently in progress, and they should be out in central
> maven repo next week.
> 
> What remains to be done is to trim the size of camel-web to remove the
> unneeded stuff which has crept into it. See another mail on dev about
> this.
> 
> If you got any must have features, bug fixes, improvements, then its
> time to raise your voice.
> 
> 
> You can see the current in progress release notes
> http://camel.apache.org/camel-250-release.html
> 


Re: Camel 2.5 - Starts to look good for a relese

Posted by Ashwin Karpe <ak...@fusesource.com>.
Hi All,

I have been building Camel 2.5-SNAPSHOT with 1.6 in my environment . It runs
great. I have not run into JDK specific issues.

Cool stuff. 

Cheers,

Ashwin...

-----
---------------------------------------------------------
Ashwin Karpe
Apache Camel Committer & Sr Principal Consultant
FUSESource (a Progress Software Corporation subsidiary)
http://fusesource.com http://fusesource.com 

Blog: http://opensourceknowledge.blogspot.com
http://opensourceknowledge.blogspot.com 
---------------------------------------------------------
-- 
View this message in context: http://camel.465427.n5.nabble.com/Camel-2-5-Starts-to-look-good-for-a-relese-tp2739902p2807976.html
Sent from the Camel Development mailing list archive at Nabble.com.

Re: Camel 2.5 - Starts to look good for a relese

Posted by Hadrian Zbarcea <hz...@gmail.com>.
I tried building with camel 1.6 and it builds fine. That is required only because of camel-web's dependency on jersey.
I didn't try if the built artifacts will work with java 5. I'll try that today.

Hadrian


On Sep 7, 2010, at 5:02 AM, Claus Ibsen wrote:

> Hi
> 
> Okay 2.5 looks really good now. The main features have been
> implemented and the important bugs fixed as well.
> The jasypt stuff is also in place now, so we are almost ready to go.
> 
> James Strachan promised to take a peek at the trimmed camel-web
> component to ensure that he got the pieces he want and that it works
> as expected.
> I did some tests yesterday and it works fine as far as I can see. We
> also removed some not needed JS libraries.
> 
> We may be able to remove dojo JS as well (it has a lot of JS files)
> and replace it with something lighter. All we need is some small
> pieces to syntax highlight the XML when viewing and editing routes.
> 
> Also the builds in TC looks great and are all green. So we should
> almost be ready to cut a release.
> 
> Hadrian it requires Maven 2.2.1 or better to build (please use 2.2.1
> as its what used by build servers).
> To build and include the camel-web you need to build with JDK 1.6. Did
> you try this out?
> There is a profile you need to set on the mvn cmd line to enable it.
> 
> See the pom.xml in components for details.
> 
> 
> 
> 
> On Fri, Aug 27, 2010 at 5:10 PM, Hadrian Zbarcea <hz...@gmail.com> wrote:
>> Absolutely.
>> 
>> It also looks to me that we have more contributors than in the past (many thanks to our community!) and I wonder if it wouldn't be a good thing to release more often.
>> We did some work on speeding up the builds (and we won't stop here :) ), and I am looking into even faster parallel builds, so the release time is becoming less of an issue.
>> 
>> In the past year and a half or so we had predictable once a quarter releases. The exception will be this quarter it seems where we'll have two releases.
>> Camel 2.x doesn't have minor releases (the 3rd digit in the version) and I would think having 2 releases per quarter (every 6 weeks), one major one minor, would probably be a good thing.
>> I will start a DISCUSS thread next week, so probably best is to just think about this (for now) and not hijack this thread.
>> 
>> The 2.5.0 release would also be just in time for the next board report due in Sep.
>> 
>> Cheers,
>> Hadrian
>> 
>> 
>> On Aug 27, 2010, at 8:24 AM, Claus Ibsen wrote:
>> 
>>> Hi
>>> 
>>> Its just 6-7 weeks ago we released Camel 2.4, and we already got
>>> approx 150 tickets resolved on the road for Camel 2.5.
>>> 
>>> Camel 2.5 doesn't have a lot of new features, but it does have many
>>> great improvements and bug fixes. So it becomes a great and stable
>>> Camel release.
>>> I have therefore started moving tickets with bigger new features to
>>> Camel 2.6 or even 3.0.
>>> 
>>> I suggest that we release Camel 2.5 next month. For example in about 2
>>> weeks time if that suites our release manager, Hadrian :)
>>> 
>>> We are currently having a couple of dependencies to OSGi bundles being
>>> released at SMX.
>>> The vote is currently in progress, and they should be out in central
>>> maven repo next week.
>>> 
>>> What remains to be done is to trim the size of camel-web to remove the
>>> unneeded stuff which has crept into it. See another mail on dev about
>>> this.
>>> 
>>> If you got any must have features, bug fixes, improvements, then its
>>> time to raise your voice.
>>> 
>>> 
>>> You can see the current in progress release notes
>>> http://camel.apache.org/camel-250-release.html
>>> 
>>> --
>>> Claus Ibsen
>>> Apache Camel Committer
>>> 
>>> Author of Camel in Action: http://www.manning.com/ibsen/
>>> Open Source Integration: http://fusesource.com
>>> Blog: http://davsclaus.blogspot.com/
>>> Twitter: http://twitter.com/davsclaus
>> 
>> 
> 
> 
> 
> -- 
> Claus Ibsen
> Apache Camel Committer
> 
> Author of Camel in Action: http://www.manning.com/ibsen/
> Open Source Integration: http://fusesource.com
> Blog: http://davsclaus.blogspot.com/
> Twitter: http://twitter.com/davsclaus


Re: Camel 2.5 - Starts to look good for a relese

Posted by Claus Ibsen <cl...@gmail.com>.
Hi

Okay 2.5 looks really good now. The main features have been
implemented and the important bugs fixed as well.
The jasypt stuff is also in place now, so we are almost ready to go.

James Strachan promised to take a peek at the trimmed camel-web
component to ensure that he got the pieces he want and that it works
as expected.
I did some tests yesterday and it works fine as far as I can see. We
also removed some not needed JS libraries.

We may be able to remove dojo JS as well (it has a lot of JS files)
and replace it with something lighter. All we need is some small
pieces to syntax highlight the XML when viewing and editing routes.

Also the builds in TC looks great and are all green. So we should
almost be ready to cut a release.

Hadrian it requires Maven 2.2.1 or better to build (please use 2.2.1
as its what used by build servers).
To build and include the camel-web you need to build with JDK 1.6. Did
you try this out?
There is a profile you need to set on the mvn cmd line to enable it.

See the pom.xml in components for details.




On Fri, Aug 27, 2010 at 5:10 PM, Hadrian Zbarcea <hz...@gmail.com> wrote:
> Absolutely.
>
> It also looks to me that we have more contributors than in the past (many thanks to our community!) and I wonder if it wouldn't be a good thing to release more often.
> We did some work on speeding up the builds (and we won't stop here :) ), and I am looking into even faster parallel builds, so the release time is becoming less of an issue.
>
> In the past year and a half or so we had predictable once a quarter releases. The exception will be this quarter it seems where we'll have two releases.
> Camel 2.x doesn't have minor releases (the 3rd digit in the version) and I would think having 2 releases per quarter (every 6 weeks), one major one minor, would probably be a good thing.
> I will start a DISCUSS thread next week, so probably best is to just think about this (for now) and not hijack this thread.
>
> The 2.5.0 release would also be just in time for the next board report due in Sep.
>
> Cheers,
> Hadrian
>
>
> On Aug 27, 2010, at 8:24 AM, Claus Ibsen wrote:
>
>> Hi
>>
>> Its just 6-7 weeks ago we released Camel 2.4, and we already got
>> approx 150 tickets resolved on the road for Camel 2.5.
>>
>> Camel 2.5 doesn't have a lot of new features, but it does have many
>> great improvements and bug fixes. So it becomes a great and stable
>> Camel release.
>> I have therefore started moving tickets with bigger new features to
>> Camel 2.6 or even 3.0.
>>
>> I suggest that we release Camel 2.5 next month. For example in about 2
>> weeks time if that suites our release manager, Hadrian :)
>>
>> We are currently having a couple of dependencies to OSGi bundles being
>> released at SMX.
>> The vote is currently in progress, and they should be out in central
>> maven repo next week.
>>
>> What remains to be done is to trim the size of camel-web to remove the
>> unneeded stuff which has crept into it. See another mail on dev about
>> this.
>>
>> If you got any must have features, bug fixes, improvements, then its
>> time to raise your voice.
>>
>>
>> You can see the current in progress release notes
>> http://camel.apache.org/camel-250-release.html
>>
>> --
>> Claus Ibsen
>> Apache Camel Committer
>>
>> Author of Camel in Action: http://www.manning.com/ibsen/
>> Open Source Integration: http://fusesource.com
>> Blog: http://davsclaus.blogspot.com/
>> Twitter: http://twitter.com/davsclaus
>
>



-- 
Claus Ibsen
Apache Camel Committer

Author of Camel in Action: http://www.manning.com/ibsen/
Open Source Integration: http://fusesource.com
Blog: http://davsclaus.blogspot.com/
Twitter: http://twitter.com/davsclaus

Re: Camel 2.5 - Starts to look good for a relese

Posted by Hadrian Zbarcea <hz...@gmail.com>.
Absolutely.

It also looks to me that we have more contributors than in the past (many thanks to our community!) and I wonder if it wouldn't be a good thing to release more often.
We did some work on speeding up the builds (and we won't stop here :) ), and I am looking into even faster parallel builds, so the release time is becoming less of an issue.

In the past year and a half or so we had predictable once a quarter releases. The exception will be this quarter it seems where we'll have two releases.
Camel 2.x doesn't have minor releases (the 3rd digit in the version) and I would think having 2 releases per quarter (every 6 weeks), one major one minor, would probably be a good thing.
I will start a DISCUSS thread next week, so probably best is to just think about this (for now) and not hijack this thread.

The 2.5.0 release would also be just in time for the next board report due in Sep.

Cheers,
Hadrian


On Aug 27, 2010, at 8:24 AM, Claus Ibsen wrote:

> Hi
> 
> Its just 6-7 weeks ago we released Camel 2.4, and we already got
> approx 150 tickets resolved on the road for Camel 2.5.
> 
> Camel 2.5 doesn't have a lot of new features, but it does have many
> great improvements and bug fixes. So it becomes a great and stable
> Camel release.
> I have therefore started moving tickets with bigger new features to
> Camel 2.6 or even 3.0.
> 
> I suggest that we release Camel 2.5 next month. For example in about 2
> weeks time if that suites our release manager, Hadrian :)
> 
> We are currently having a couple of dependencies to OSGi bundles being
> released at SMX.
> The vote is currently in progress, and they should be out in central
> maven repo next week.
> 
> What remains to be done is to trim the size of camel-web to remove the
> unneeded stuff which has crept into it. See another mail on dev about
> this.
> 
> If you got any must have features, bug fixes, improvements, then its
> time to raise your voice.
> 
> 
> You can see the current in progress release notes
> http://camel.apache.org/camel-250-release.html
> 
> -- 
> Claus Ibsen
> Apache Camel Committer
> 
> Author of Camel in Action: http://www.manning.com/ibsen/
> Open Source Integration: http://fusesource.com
> Blog: http://davsclaus.blogspot.com/
> Twitter: http://twitter.com/davsclaus