[ANN] Apache Maven War Plugin 2.4 Released

2013-07-09 Thread Olivier Lamy
The Apache Maven team is pleased to announce the release of the Apache Maven War Plugin, version 2.4 The WAR Plugin is responsible for collecting all artifact dependencies, classes and resources of the web application and packaging them into a web application archive. http://maven.apache.org/plug

RE: [ANN] Apache Maven War Plugin 2.4 Released

2013-07-09 Thread Richard Sand
Thanks Olivier! I can confirm that 192 is fixed, I can now build WAR artifacts with "resolve workspace dependencies" checked. Best regards, Richard Sand | CEO IDF Connect, Inc. 2207 Concord Ave, #359 Wilmington | Delaware 19803 | USA Office: +1 302 425 0516 | Fax: +1 856 866 1899 Mobile: +1 267

How to get an instance of MavenProjectHelper in a Maven3.0 plugin?

2013-07-09 Thread Richard Sand
Hi all - I'm trying to write a Maven 3.0 plugin and cannot figure out how to get an instance of MavenProjectHelper. First, just taking a stab in the dark, I tried to get it the same way I got MavenProject, e.g. as a parameter populated by Maven: @Parameter(defaultValue="${projecthelper}", r

Re: How to get an instance of MavenProjectHelper in a Maven3.0 plugin?

2013-07-09 Thread Mirko Friedenhagen
Hello, I think @Component without a role is sufficient. Besides, I guess role should be an interface and not the concrete class. DefaultMavenProjectHelper is the implementation of MavenProjectHelper :-). Regards Mirko -- Sent from my mobile On Jul 9, 2013 6:18 PM, "Richard Sand" wrote: > Hi al

Maven and JPA/EclipseLink Configuration...

2013-07-09 Thread John Patrick
I'm working on a project that uses JPA EclipseLink, everything started of fine with Jetty for developers development and WebLogic and Oracle proper ear deployments. EclipseLink has two values that need to be set in persistence.xml depending upon your Application Server and Database; eclipselink.ta

RE: maven-changelog-plugin not working...

2013-07-09 Thread Zanzerkia, Robert
Anyone from changelog developers have any suggestion? Thanks, Robert -Original Message- From: Zanzerkia, Robert Sent: Tuesday, July 02, 2013 9:52 AM To: users@maven.apache.org Subject: maven-changelog-plugin not working... Hi, I am trying to use the changelog plugin. With maven3 it wasn

RE: maven-changelog-plugin not working...

2013-07-09 Thread Anders Hammar
Try the latest version v2.2 and see if it produces the same error. /Anders (mobile) Den 9 jul 2013 19:15 skrev "Zanzerkia, Robert" : > Anyone from changelog developers have any suggestion? > > Thanks, > Robert > > -Original Message- > From: Zanzerkia, Robert > Sent: Tuesday, July 02, 2013

RE: How to get an instance of MavenProjectHelper in a Maven3.0 plugin?

2013-07-09 Thread Richard Sand
Ah, simple solutions... :-) Now I'm onto the next similar problem, getting a JarArchiver. I'm getting 1) No implementation for org.codehaus.plexus.archiver.jar.JarArchiver was bound. In the 2.0 plugin I'm attempting to migrate, it has the comment-style annotation: * @parameter express

Re: How to get an instance of MavenProjectHelper in a Maven3.0 plugin?

2013-07-09 Thread Stuart McCulloch
On 9 Jul 2013, at 18:47, Richard Sand wrote: > Ah, simple solutions... :-) > > Now I'm onto the next similar problem, getting a JarArchiver. I'm getting 1) > No implementation for org.codehaus.plexus.archiver.jar.JarArchiver was bound. > In the 2.0 plugin I'm attempting to migrate, it has the c

Re: Maven and JPA/EclipseLink Configuration...

2013-07-09 Thread Richard Vowles
On Wed, Jul 10, 2013 at 4:50 AM, John Patrick wrote: > I'm working on a project that uses JPA EclipseLink, everything started of > fine with Jetty for developers development and WebLogic and Oracle proper > ear deployments. > > People still do that? Wow, thats educational in and of itself. -- --

Re: Maven and JPA/EclipseLink Configuration...

2013-07-09 Thread Baptiste MATHUS
If those properties are specific to eclipselink, then I think it's ok and simpler to just leave them in the persistence.xml even if they're actually not used when EclipseLink isn't the provider. Then package only one ear. Cheers 2013/7/9 John Patrick > I'm working on a project that uses JPA Ec

Accessing *reactor* build path in an Ant-Maven-plugin

2013-07-09 Thread Mirko Friedenhagen
Hello, I inherited a Maven plugin written by an Ant-master which currently execs mvn dependency:build-classpath to inspect files. (Rewrite almost impossible as there are no tests). This leads to problems during the first run of verify (e.g. while release:prepare). Any hint how to get the *reacto