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 <repository>.
Jon On Tue, Oct 10, 2017 at 1:39 PM, Alex The Rocker <[email protected]> wrote: > 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 perform a > standalone install? > * How can I setup my maven pom.xml file in order to upgrade my tests > based on Arquilan embedded tomee from 7.0.4 to 7.0.5 latest? > > Here's what I tried with my pom.xml, but fails to resolve: > > <profile> > <id>tomee-embedded</id> > <activation> > <activeByDefault>true</activeByDefault> > </activation> > <dependencies> > <dependency> > <groupId>org.apache.tomee</groupId> > <artifactId>arquillian-tomee-embedded</artifactId> > <version>7.0.5</version> <!--Current version --> > </dependency> > <dependency> > <groupId>org.apache.tomee</groupId> > <artifactId>tomee-embedded</artifactId> > <version>7.0.5</version> > </dependency> > <!--Required for WebServices and RESTful WebServices --> > <dependency> > <groupId>org.apache.tomee</groupId> > <artifactId>tomee-webservices</artifactId> > <version>7.0.5</version> > </dependency> > <dependency> > <groupId>org.apache.tomee</groupId> > <artifactId>tomee-jaxrs</artifactId> > <version>7.0.5</version> > </dependency> > </dependencies> > </profile> > > given that I also added previously this repository, but I still don't > understand how to find 7.0.5's repo: > > <repositories> > <repository> > <id>my-tomee704repo</id> > <name>TomEE704 repo</name> > <url>https://repository.apache.org/content/ > repositories/orgapachetomee-1107/</url> > </repository> > </repositories> > > > Best regards, > Alexandre >
