Re: "How to test latest TomEE 7.0.5 snapshots (w or without Arquilian) ?"

2017-10-12 Thread Andy Gumbrecht
Thanks Alex, Really appreciate all your feedback though. It helps us get better and better. It would be great if you could summarize your thoughts on learning to hack on and around TomEE. Maybe a small "Getting Started by Alex" kind of article? We could add it to the site and help others.

Re: "How to test latest TomEE 7.0.5 snapshots (w or without Arquilian) ?"

2017-10-12 Thread Alex The Rocker
Hello Andy, I got it, thank you very much for the clarification,I'm going to stick to your recommandations! Best regards, Alexandre 2017-10-12 1:08 GMT+02:00 agumbrecht : > Hi Alex, > > Running a git pull and then mvn install ensures you have the latest version >

Re: "How to test latest TomEE 7.0.5 snapshots (w or without Arquilian) ?"

2017-10-11 Thread agumbrecht
Hi Alex, Running a git pull and then mvn install ensures you have the latest version available to your local machine. The maven central repo is *never ever* going to be up to date - *Never* rely on a snapshot from any other source than your own local machine. The buildbot takes many hours, and

Re: "How to test latest TomEE 7.0.5 snapshots (w or without Arquilian) ?"

2017-10-11 Thread Alex The Rocker
Hello All, Some good news: 1/ I was able to build TomEE latest from scratch using git & maven, it's definitely based on Tomcat 8.5.23, just like the binaries of the snapshot directory https://repository.apache.org/content/groups/snapshots/org/apache/tomee/apache-tomee/7.0.5-SNAPSHOT/ 2/ I ran 1/

Re: "How to test latest TomEE 7.0.5 snapshots (w or without Arquilian) ?"

2017-10-11 Thread Romain Manni-Bucau
git clone https://github.com/apache/tomee.git Romain Manni-Bucau @rmannibucau | Blog | Old Blog | Github | LinkedIn 2017-10-11 11:34 GMT+02:00 Alex The Rocker : > Okay so how do I get access to latest TomEE 7.0.5 sources? > > Alexandre > > > > 2017-10-11 10:57 GMT+02:00

Re: "How to test latest TomEE 7.0.5 snapshots (w or without Arquilian) ?"

2017-10-11 Thread Jonathan Gallimore
A 'git clone https://git-wip-us.apache.org/repos/asf/tomee.git tomee-master' should get you the latest master (7.0.5-SNAPSHOT). Jon On Wed, Oct 11, 2017 at 10:34 AM, Alex The Rocker wrote: > Okay so how do I get access to latest TomEE 7.0.5 sources? > > Alexandre > > > >

Re: "How to test latest TomEE 7.0.5 snapshots (w or without Arquilian) ?"

2017-10-11 Thread Alex The Rocker
Okay so how do I get access to latest TomEE 7.0.5 sources? Alexandre 2017-10-11 10:57 GMT+02:00 Romain Manni-Bucau : > Hi Alex, > > this command was for tomee source directory, > > sources (master) look good so can be a deployment thing, building > locally will say us

Re: "How to test latest TomEE 7.0.5 snapshots (w or without Arquilian) ?"

2017-10-11 Thread Romain Manni-Bucau
Hi Alex, this command was for tomee source directory, sources (master) look good so can be a deployment thing, building locally will say us quickly Romain Manni-Bucau @rmannibucau | Blog | Old Blog | Github | LinkedIn 2017-10-11 10:38 GMT+02:00 Alex The Rocker : > Hello

Re: "How to test latest TomEE 7.0.5 snapshots (w or without Arquilian) ?"

2017-10-11 Thread Alex The Rocker
Hello Romain, I'm still confused, do you mean that tomee-embeded isn't up to date on master? Also I tried to run the command for local build, but it fails: E:\nosave\Arquilian\GettingStarted\arquillian-tutorial>mvn clean install -DskipTests -T4 -pl tomee/tomee-embedded -am [INFO] Scanning for

Re: "How to test latest TomEE 7.0.5 snapshots (w or without Arquilian) ?"

2017-10-11 Thread Romain Manni-Bucau
doesn't look so on master, maybe give a quick try to build locally (mvn clean install -DskipTests -T4 -pl tomee/tomee-embedded -am) Romain Manni-Bucau @rmannibucau | Blog | Old Blog | Github | LinkedIn 2017-10-11 10:25 GMT+02:00 Alex The Rocker : > Hello Romain, > > I

Re: "How to test latest TomEE 7.0.5 snapshots (w or without Arquilian) ?"

2017-10-11 Thread Alex The Rocker
Hello Romain, I just ran "mvn dependency:tree -Dverbose" from the root directory of my project. Looks like Tomcat 8.5.21 is taken from org.apache.tomee:tomee-embedded:jar:7.0.5-SNAPSHOT, so that further dependencies on Tomcat 8.5.23 are ignored by Maven, see the output of dependency check below.

Re: "How to test latest TomEE 7.0.5 snapshots (w or without Arquilian) ?"

2017-10-11 Thread Alex The Rocker
Hello, I am confused : I have updated my pom.xml for my tests based on Arquilian with tomee-embedded to point to 7.0.5-SNAPSHOT version, but it's still resolving Tomcat dependencies to 8.5.21. Whereas on

Re: "How to test latest TomEE 7.0.5 snapshots (w or without Arquilian) ?"

2017-10-10 Thread Alex The Rocker
Hello All, Thank you very much, with your answers I was able to both: * Update my Arquilian tomee embedded-based tests to lastest TomEE 7.0.5 Snapshot * Download binary artifacts of latest TomEE 7.0.5 Best regards, Alexandre 2017-10-10 18:33 GMT+02:00 Romain Manni-Bucau :

Re: "How to test latest TomEE 7.0.5 snapshots (w or without Arquilian) ?"

2017-10-10 Thread Romain Manni-Bucau
small typo: actual snapshot repo is repository.apache.org/snapshots/, not central Romain Manni-Bucau @rmannibucau | Blog | Old Blog | Github | LinkedIn

Re: "How to test latest TomEE 7.0.5 snapshots (w or without Arquilian) ?"

2017-10-10 Thread agumbrecht
The deploy bot is here https://ci.apache.org/builders/tomee-trunk-deploy It was hung a while back, but as you can see it has been fine recently - This means that the 7.0.5-SNAPSHOT should be in maven central nightly. The snapshot versions are not linked on the TomEE site, as that is not allowed.

Re: "How to test latest TomEE 7.0.5 snapshots (w or without Arquilian) ?"

2017-10-10 Thread Romain Manni-Bucau
Think you need asf snapshot repo @Jon: did you get a chance to check why our daily deployment fails? Le 10 oct. 2017 13:45, "Jonathan Gallimore" a écrit : > Good shout. Let me deploy the latest snapshot for you. Then you should just > need to use 7.0.5-SNAPSHOT as

Re: "How to test latest TomEE 7.0.5 snapshots (w or without Arquilian) ?"

2017-10-10 Thread Alex The Rocker
Hello Jonathan, Thank you very much, I'll use it as soon as it's available. Any idea when it could be available for maven? What would be the path of 7.0.5 snapshot binaries of the standalone usual tomee-plus / tomee-jaxrs, etc ? Best regards, Alexandre 2017-10-10 14:45 GMT+02:00 Jonathan

Re: "How to test latest TomEE 7.0.5 snapshots (w or without Arquilian) ?"

2017-10-10 Thread Jonathan Gallimore
Good shout. Let me deploy the latest snapshot for you. Then you should just need to use 7.0.5-SNAPSHOT as your version number, and you shouldn't need the . Jon On Tue, Oct 10, 2017 at 1:39 PM, Alex The Rocker wrote: > Hello, > > I saw that work on TomEE 7.0.5 already

"How to test latest TomEE 7.0.5 snapshots (w or without Arquilian) ?"

2017-10-10 Thread Alex The Rocker
Hello, I saw that work on TomEE 7.0.5 already began, with an upgrade of Tomcat dependency, which is good because this newer Tomcat fixes couple of CVEs. I'd like starting to test our webapps agains latest TomEE 7.0.5 builds. Questions: * Where can I find TomEE 7.0.5 binary artifacts in order to