Re: surefire failure JDK 8

2015-07-24 Thread Quentin Caillard
Hi, try to add memory to surefire plugin. You must configure the plugin, and not only maven memory. https://maven.apache.org/surefire/maven-surefire-plugin/test-mojo.html argLine parameter On Fri, Jul 24, 2015 at 11:26 PM, cogmission (David Ray) < cognitionmiss...@gmail.com> wrote: > Hi, > > I

Fwd: surefire failure JDK 8

2015-07-24 Thread cogmission (David Ray)
Hi, I do not call System.exit() and can compile fine using Gradle - but "mvn clean install" fails telling me that the surefire plugin has detected a System.exit() call which is not true at all. Also, it seems after running several times, the failure is intermittent - meaning I try deleting my targ

Fwd: Announcing Program for ApacheCon™: Core Europe –REGISTRATION NOW OPEN!

2015-07-24 Thread Hervé BOUTEMY
Hi, This year, at ApacheCON Europe, Arnaud Héritier and I will give a talk about Maven to manage multiple JDK versions https://apacheconcore2015.sched.org/event/21dc5f1df9a512107775b50c455994d1#.VbKsmXWx2dA I hope we'll see a lot of Maven addicts :) Regards, Hervé -- Message transmit

Re: build error on strutsel

2015-07-24 Thread Paul Benedict
Agreed. There's no point in using Struts-EL anymore. There was a time, as David said, when EL was a tag-only solution. But since JSP 2.0, the servlet container understands EL natively so every tag can use EL. Cheers, Paul On Fri, Jul 24, 2015 at 4:20 PM, David Karr wrote: > One thing I should

Re: build error on strutsel

2015-07-24 Thread David Karr
One thing I should mention about your use of the "Struts-EL" library (which I wrote, like, 15 years ago). It was a stopgap solution to somewhat integrate Struts with JSP expressions, but only in JSP 1.2 containers. If you use it in a JSP 2.0 or newer container, you'll likely get confusing results.

Re: build error on strutsel

2015-07-24 Thread Curtis Rueden
Hi Hector, Maybe you are depending on the wrong version of those libraries? API change and evolve; you have to depend on a version compatible with what was originally coded against. -Curtis On Fri, Jul 24, 2015 at 3:04 PM, Magnanao, Hector wrote: > Hi Curtis, > > I have these remaining errors

RE: build error on strutsel

2015-07-24 Thread Magnanao, Hector
Hi Curtis, I have these remaining errors on my compilation. I can't figure out if this is code or package errors. Can you help me out ? [ERROR] COMPILATION ERROR : [INFO] - [ERROR] /C:/Foundation/foundation/src/main/java/com/mycompan

Re: build error on strutsel

2015-07-24 Thread Curtis Rueden
Hi Hector, > package com.aspose.cells does not exist Looks like Aspose.Cells is in its own Maven repo from that company: http://www.aspose.com/blogs/aspose-products/aspose-total-product-family/archive/2014/08/12/aspose-for-maven-aspose-cloud-maven-repository.html Found by searching Google for "

RE: build error on strutsel

2015-07-24 Thread Magnanao, Hector
Hi Curtis, that’s ok, I got past that error. Now I get this one. [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.1:compile (default-compile) on project foundation: Compilation failure: Compilation failure: [ERROR] /C:/Foundation/foundation/src/main/java/com/myc

Re: build error on strutsel

2015-07-24 Thread Curtis Rueden
Hi Hector, > I clicked on the link and it returns nothing. > How do I search for it in the repository ? That's baffling. I see this: [image: Inline image 1] I have no clue why it would be different for you... Regards, Curtis On Fri, Jul 24, 2015 at 12:31 PM, Magnanao, Hector wrote: > Hi Cur

RE: build error on strutsel

2015-07-24 Thread Magnanao, Hector
Hi Curtis, I clicked on the link and it returns nothing. How do I search for it in the repository ? -Original Message- From: ctrueden.w...@gmail.com [mailto:ctrueden.w...@gmail.com] On Behalf Of Curtis Rueden Sent: Friday, July 24, 2015 12:17 PM To: Maven Users List Subject: Re: build

Re: build error on strutsel

2015-07-24 Thread Curtis Rueden
Hi Hector, > I can't find it in the maven repository. http://search.maven.org/#search%7Cga%7C1%7Cfc%3A%22org.apache.strutsel.taglib.utils%22 -Curtis On Fri, Jul 24, 2015 at 12:11 PM, Magnanao, Hector wrote: > How do I resolve this package error ? I can't find it in the maven > repository. >

build error on strutsel

2015-07-24 Thread Magnanao, Hector
How do I resolve this package error ? I can't find it in the maven repository. ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.1:compile (default-compile) on project foundation: Compilation failure: Compilation failure: ERROR] /C:/Foundation/foundation/src/main/j

Re: How to delete certain snapshots from Nexus

2015-07-24 Thread Curtis Rueden
Hi Dave, > 1. I didn't set requireReproducibleBuilds as I wasn't sure how or if > that is done internally by the verify-no-snapshots goal. (Worked > really well w/o setting it.) Use either the verify-no-snapshots goal (as you are doing now), _or_ the scijava-maven-plugin as a set of extra enforc

Re: How to delete certain snapshots from Nexus

2015-07-24 Thread David Hoffer
Hi Curtis, First I want to say this plugin works great, I added it to the build and it caught a number of issues before we went to release. I do have a few questions. First I'm not sure I have it fully configured correctly, my usage is below. With this usage it found all the cases where the bui

Re: fixing an almost Maven project

2015-07-24 Thread V. Mark Lehky
It sounds like this would be a good solutions for us, until we fully move towards the correct versioning, described by Paul B. and you in the other mail. Thank You all! Mark. On 23 July 2015 at 21:44, Barrie Treloar wrote: > On 24 July 2015 at 13:33, V. Mark Lehky wrote: > >> Our release proces

Re: build compile error

2015-07-24 Thread Gail Stewart
http://mvnrepository.com/artifact/javax.servlet/servlet-api The jar is in maven central. I assume the dependency is of class "provided". On Fri, Jul 24, 2015 at 11:26 AM, Magnanao, Hector wrote: > How do I resolve these package errors ? > > [ERROR] Failed to execute goal > org.apache.maven.plug

Re: fixing an almost Maven project

2015-07-24 Thread V. Mark Lehky
Thanx for the vote of confidence. Good to know that I am on the right path. And yes: mailing this list, I am all in drinking the kool-aid. ;) On 23 July 2015 at 21:35, Barrie Treloar wrote: > On 24 July 2015 at 13:39, V. Mark Lehky wrote: > >> I should have added: >> Before I came along, everyth

build compile error

2015-07-24 Thread Magnanao, Hector
How do I resolve these package errors ? [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.1:compile (default-compile) on project foundation: Compilation failure: Compilation failure: [ERROR] /C:/Foundation/foundation/src/main/java/com/mycompany/app/dev/PropertiesMu