Re: Deploying web applications from one pom file using a simple goal

2012-04-16 Thread Piotr Skawinski
applications could be deployed in one go. On Mon, Apr 16, 2012 at 4:05 PM, Ron Wheeler rwhee...@artifact-software.com wrote: Wouldn't Ant do this for you rather nicely? Use the Antrun plug-in in its own maven project. Ron On 16/04/2012 9:34 AM, Piotr Skawinski wrote: Hi, Is there a way

Re: Deploying web applications from one pom file using a simple goal

2012-04-16 Thread Piotr Skawinski
Yeah, I thought of creating a single era file with all war files in it, but our client's weblogic is not licence to support ear deployments. On Mon, Apr 16, 2012 at 6:12 PM, Piotr Skawinski piotr.skawin...@gmail.comwrote: Originally we used ant-run, but I fall into this weblogic-maven-plugin

Re: Generating web project with java, webapp, and resource folder from archtype goal

2011-01-20 Thread Piotr Skawinski
No help on this ? :) On Wed, Jan 19, 2011 at 11:30 AM, Anders Hammar and...@hammar.net wrote: The list archives (nabble for example) are great for verifying that. /Anders On Wed, Jan 19, 2011 at 10:47, Piotr Skawinski piotr.skawinski.ma...@gmail.com wrote: It wasnt on purpose. I just

Generating web project with java, webapp, and resource folder from archtype goal

2011-01-19 Thread Piotr Skawinski
Hi, Is there a way in maven to generate a web project with java, resources, and webapp folders running the archtype goal. Maven suggest to create a multi project module with: multi-project |-- pom.xml |-- my-app |-- my-web-app by creating a multi project pom file and then running: mvn

Generating web project with java, webapp, and resource folder from archtype goal

2011-01-19 Thread Piotr Skawinski
Hi, Is there a way in maven to generate a web project with java, resources, and webapp folders running the archtype goal. Maven suggest to create a multi project module with: multi-project |-- pom.xml |-- my-app |-- my-web-app by creating a multi project pom file and then running: mvn

Re: Generating web project with java, webapp, and resource folder from archtype goal

2011-01-19 Thread Piotr Skawinski
is blocking you, but there is no need to spam the list. Give people a few days to respond (although you very often get a response quicker than that on this list). If nobody responds, it could be that there is no good answer. /Anders On Wed, Jan 19, 2011 at 10:30, Piotr Skawinski

Re: release:prepare does not inherit plugins from the parent project?

2010-12-22 Thread Piotr Skawinski
maven-release-plugin? The release works fine with generateReleasePoms=false. Piotr On Tue, Dec 21, 2010 at 5:31 PM, Ron Wheeler rwhee...@artifact-software.com wrote: On 21/12/2010 6:40 AM, Piotr Skawinski wrote: Hi Ron, There's actually no reference to 1.3, that is what what makes it strange

Re: release:prepare does not inherit plugins from the parent project?

2010-12-21 Thread Piotr Skawinski
wrote: Check the project's effective pom. mvn help:effective-pom Most likely what you think should be inherited isn't. How is m-compiler-p declared in the parent? /Anders On Mon, Dec 20, 2010 at 14:50, Piotr Skawinski piotr.skawinski.ma...@gmail.com wrote: Hi, I'm having problems

release:prepare does not inherit plugins from the parent project?

2010-12-20 Thread Piotr Skawinski
Hi, I'm having problems using release:prepare plugin on a project that inherits from a parent project. It seems that it cannot see the plugins from the parent project and fails on compiling java vesion 1.6 classes claiming that 1.3 version does not support annotations. It works fine with clean

Re: release:prepare does not inherit plugins from the parent project?

2010-12-20 Thread Piotr Skawinski
. mvn help:effective-pom Most likely what you think should be inherited isn't. How is m-compiler-p declared in the parent? /Anders On Mon, Dec 20, 2010 at 14:50, Piotr Skawinski piotr.skawinski.ma...@gmail.com wrote: Hi, I'm having problems using release:prepare plugin on a project

RE: UnsupportedClassVersionError on unit test using java 1.5

2007-06-01 Thread Piotr Skawinski
. See http://maven.apache.org/plugins/maven-surefire-plugin/test-mojo.html#jvm . -Original Message- From: Piotr Skawinski [mailto:[EMAIL PROTECTED] Sent: Thursday, May 31, 2007 12:09 PM To: Maven Users List Subject: RE: UnsupportedClassVersionError on unit test using java 1.5 I still

RE: Building files with different jdk versions

2007-06-01 Thread Piotr Skawinski
directory - and include that directory using this: http://mojo.codehaus.org/build-helper-maven-plugin/howto.html Called under a profile: http://sonatype.com/book/profiles.html Isn't diverging from the standard fun? ;-P Eric On 5/31/07, Piotr Skawinski [EMAIL PROTECTED] wrote:Hi,I need

Building files with different jdk versions

2007-05-31 Thread Piotr Skawinski
Hi, I need to build my project with the jdk1.5, but some of the files also need to be build with jdk1.4. Is it possible in a single pom.xml to specify the jdk version to be used to build the whole project and at the same time to specify other jdk version to be used to build only some files? If

Building files with different jdk versions

2007-05-31 Thread Piotr Skawinski
Hi,I need to build my project with the jdk1.5, but some of the files also need to be build with jdk1.4. Is it possible in a single pom.xml to specify the jdk version to be used to build the whole project and at the same time to specify other jdk version to be used to build only some files? If not

Building files with different jdk versions

2007-05-31 Thread Piotr Skawinski
Hi,I need to build my project with the jdk1.5, but some of the files also need to be build with jdk1.4. Is it possible in a single pom.xml to specify the jdk version to be used to build the whole project and at the same time to specify other jdk version to be used to build only some files? If not

UnsupportedClassVersionError on unit test using java 1.5

2007-05-31 Thread Piotr Skawinski
Hi,I'm using java 1.4 for general build (and so my JAVA_HOME points to the jdk 1.4). But one subproject is build with java 1.5 and this is specified in its pom.xml file:plugingroupIdorg.apache.maven.plugins/groupId artifactIdmaven-compiler-plugin/artifactIdconfiguration

RE: UnsupportedClassVersionError on unit test using java 1.5

2007-05-31 Thread Piotr Skawinski
I still get the same error -:( Date: Thu, 31 May 2007 08:49:33 -0700 From: [EMAIL PROTECTED] To: users@maven.apache.org Subject: Re: UnsupportedClassVersionError on unit test using java 1.5 On 5/31/07, Piotr Skawinski [EMAIL PROTECTED] wrote: Is it possible to specify in the pom.xml