Re: Documentation on profile activation by property

2008-04-11 Thread Matt Campbell
I've found a little documentation and a blog posting that may be of help to you. http://maven.apache.org/guides/introduction/introduction-to-profiles.html http://techpolesen.blogspot.com/2007/08/maven-profiles-activation-by-property.html On 4/11/08, Trevor Torrez [EMAIL PROTECTED] wrote: Is

[M2] Referencing Project Modules in plugin

2006-11-15 Thread Matt Campbell
I need my plugin to make an arraylist out of the modules in the parent pom. I'm creating a List out of them. I'm trying [EMAIL PROTECTED] expression=${project.modules} But i get an error saying I didnt specify configuration ... childrenVALUE/children /configuration. Is there a way to

[M2] Maven Plugin Phases

2006-11-08 Thread Matt Campbell
I'm having some trouble understanding how to get my plugin I created to execute specific plugins that it depends on. When my plugin executes I need it to run compile and ear on the project. My plugin than takes the ear, deploys it to a server, and runs a few scripts. Is there a way I can tell

Re: [M2] Maven Plugin Phases

2006-11-08 Thread Matt Campbell
running the plugin for, or do I put the configured plugin settings in my plugins pom.xml? On 11/8/06, Matt Campbell [EMAIL PROTECTED] wrote: I'm having some trouble understanding how to get my plugin I created to execute specific plugins that it depends on. When my plugin executes I need it to run

Re: MOJO Paramater Question

2006-11-07 Thread Matt Campbell
The @parameter refers to the pom configuration or system properties so if you had @parameter expression=${project.build.resources} the could either mean your looking for a system property named project.build.resources or your looking for the resources listed in the pom, which would be

Re: mvn site running test cases twice

2006-11-07 Thread Matt Campbell
From what i read on the maven site plugin, it forks the different report plugins into separate lifecycles. So since both of the plugins require the test cases to be compiled, both lifecycles are going to have to compile them in there own lifecycles. Not sure as I havent done much research on

Maven 2 jasper-reports-plugin

2006-07-17 Thread Matt Campbell
Could someone that is currently using this plugin give me some information on setting it up. Were having problems getting the plugin downloaded. What repository are you currently using to download the plugin from? The mojo plugin repository seems to be missing it.

Maven 1.0.2 Updating a jar automatically

2006-06-28 Thread Matt Campbell
Hello, all my projects pull in a jar file that is stored on my company repository. This jar is constantly updated, and i want all the projects that build it to automatically grab the jar from the company repository rather than grabbing the one in their local repository. Is there a maven property

Maven 1.0.2 Junit problem

2006-05-30 Thread Matt Campbell
When running maven test goal, i receive the following errors. Has anyone had this problem or know how to solve this problem. The tests work fine when ran from ant 1.6.5. build:start: console: console:help: java:prepare-filesystem: java:compile: [echo] Compiling to build/classes

Re: Maven 1.0.2 Junit problem

2006-05-30 Thread Matt Campbell
which version of ant optional should i be using. The most recent version in ibibio is 1.5 On 5/30/06, Lukas Theussl [EMAIL PROTECTED] wrote: You need to add ant-optional to your dependencies. HTH, -Lukas Matt Campbell wrote: When running maven test goal, i receive the following errors

Re: OutOfMemoryError when creating Javadoc

2006-02-24 Thread Matt Campbell
Where you running maven within an IDE such as MyEclipse? Today i attemped it inside MyEclipse and always received an OutOfMemoryError. Ran it within command prompt and had no problems. On 2/24/06, Yann Le Du [EMAIL PROTECTED] wrote: OK, so the problem is not about 256 Mo then. Still the memory

Edit read only properties of plugins

2006-02-20 Thread Matt Campbell
Hello, im having problems customizing some of the plugins. A few plugins have properties i cannot change. I wanted to change the outputDirectory property for the plugin maven-compiler-plugin. When i run mvn compile i get the Build Error : Cannot Override Read-Only parameter: outputDirectory in