Hi

I am traveling all week and wont have much chance to test this until
sunday when I am back.

However it would be good if anyone had the time to test the RC with
the Camel in Action 2 source code:
https://github.com/camelinaction/camelinaction2

You would need to update the Camel version in the pom.xml, and also we
have 2.18.0-SNAPSHOT in some places where we cover new stuff. So they
all need updated. A PR is welcome.

And then you can do a

   mvn clean install

And have patience as some of the tests are running for minutes as they
were intended as interactive with the reader. But they timeout after a
while. So just run the tests while you do other work.

To make it easy to test a RC then you can have a maven profile named
staging in the .m2/settings,xml, that adds the repository for the RC
jars. I have copied it below (last
time I tested AMQ)

And then you enable the profile, eg

    mvn clean install -Pstaging


<profile>
  <id>staging</id>
  <repositories>
    <repository>
          <id>repo.apache.staging</id>
          
<url>https://repository.apache.org/content/repositories/orgapacheactivemq-1108/</url>
          <snapshots>
            <enabled>false</enabled>
          </snapshots>
          <releases>
            <enabled>true</enabled>
          </releases>
     </repository>
   </repositories>
      <pluginRepositories>
        <pluginRepository>
          <id>repo.apache.staging</id>
          
<url>https://repository.apache.org/content/repositories/orgapacheactivemq-1108/</url>
          <snapshots>
            <enabled>false</enabled>
          </snapshots>
          <releases>
            <enabled>true</enabled>
          </releases>
        </pluginRepository>
      </pluginRepositories>
     </profile>


On Wed, Oct 5, 2016 at 10:54 AM, Gregor Zurowski
<gre...@list.zurowski.org> wrote:
> Hi Everyone:
>
> This is a vote to release Apache Camel 2.18.0, the first release that
> requires Java 8, comes with a much-improved Spring Boot support, and
> ships with numerous new features and improvements. (For further
> details please see
> http://www.davsclaus.com/2016/06/apache-camel-218-highlights-of-what-is.html.)
>
> Release notes: 
> https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12334759&projectId=12311211
>
> Staging repository:
> https://repository.apache.org/content/repositories/orgapachecamel-1059/
>
> Tarballs: 
> https://repository.apache.org/content/repositories/orgapachecamel-1059/org/apache/camel/apache-camel/2.18.0/
>
> Tag: 
> https://git-wip-us.apache.org/repos/asf?p=camel.git;a=tag;h=e278cf0a1fe689d43e913009e88688c591e291b2
>
> Please test this release candidate and cast your vote.
> [ ] +1 Release the binary as Apache Camel 2.18.0
> [ ] -1 Veto the release (provide specific comments)
>
> The vote is open for at least 72 hours.  Due to the bigger changes
> introduced with this release, it would be beneficial if we could get
> as many Camel riders involved in testing this RC as possible.
>
> Thanks,
> Gregor



-- 
Claus Ibsen
-----------------
http://davsclaus.com @davsclaus
Camel in Action 2: https://www.manning.com/ibsen2

Reply via email to