Re: convincing Workplace to use Maven

2007-09-30 Thread Tony Ambrozie
This is not a comparison to other options, but from my perspective I would say standardization of code artifacts and structure, advanced dependency management, descriptive vs. programmatic builds, enforcement of enterprise conventions through super pom's, rich plugin ecosystem, project site that

Re: [ANN] jaxws-maven-plugin relocation

2007-03-18 Thread Tony Ambrozie
+1 On 3/18/07, Dan Tran [EMAIL PROTECTED] wrote: Per agreement between org.codehaus.mojo and jax*-ws-commons.dev.java.net* jaxws-maven-plugin has been transferred to https://jax-ws-commons.dev.java.net/jaxws-maven-plugin/ and version 1.0 is officially released. -Dan

Re: Pass params from command line to Junit test

2007-03-18 Thread Tony Ambrozie
You may want to have a look at maven-surefire-plugin: http://maven.apache.org/plugins/maven-surefire-plugin/index.html You can also pass the desired string as a system property in the cmd line, and your test class can retrieve it in setUp. On 3/16/07, lanchez [EMAIL PROTECTED] wrote: How

Re: Plugin does not exist or no valid version could be found

2007-03-02 Thread Tony Ambrozie
If the proxy requires authentication, you will need to add: usernameyour_usernameusername passwordyour_password/password to your proxy settings. Thanks' On 3/2/07, Thorsten Elfert [EMAIL PROTECTED] wrote: Hi, it's the first time I'd like to use Maven. However, I am already

Re: Mojos in languages other than Java

2007-02-24 Thread Tony Ambrozie
On 2/24/07, Martin Gilday [EMAIL PROTECTED] wrote: Thanks for the pointers. There doesn't seem to be any instructions with the groovy-maven-plugin as there are with the jruby one. Any chances you may formalize your findings in a similar fashion with the ruby doc :-) I, for one, would find

Re: [ANN] First release of Patchwork coverage maven plugin

2007-02-24 Thread Tony Ambrozie
Arnaud, thanks for sharing this. To better support the community and its feedback, I would recommend that you provide a project mailing list/forum and a bug reporting facility. As an note, I tried the mvn plugin and I got a java.lang.ClassNotFoundException:

Re: unused dependencies

2007-02-21 Thread Tony Ambrozie
I believe the correct locations are: https://svn.apache.org/repos/asf/maven/sandbox/trunk/plugins/maven-dependency-analyzer-plugin/ and https://svn.apache.org/repos/asf/maven/sandbox/trunk/shared/maven-dependency-analyzer/ Thanks' On 2/21/07, Mark Hobson [EMAIL PROTECTED] wrote: On

Re: Built-On date for my manifest

2007-02-18 Thread Tony Ambrozie
You could try to use the buildnumber plugin: http://commons.ucalgary.ca/projects/maven-buildnumber-plugin/howto.html Thanks' On 2/18/07, Brandon Goodin [EMAIL PROTECTED] wrote: I want to get the current date/time to add to my manifest file. Is there a simple property i can use to retrieve

Re: maven 2 and ear creation problem

2007-02-18 Thread Tony Ambrozie
Can you post the relevant section of the mvn output? You may want to enable stacktraces (mvn ...-X...) Thanks On 2/18/07, xyz [EMAIL PROTECTED] wrote: Hi all, We are using maven 2.0.4 and when we build the ear file with the pom.xml, we get a null pointer exception. Can some one please tell

Re: Can I get a timestamp?

2007-02-06 Thread Tony Ambrozie
I am using the buildnumber plugin successfully to tag my assembly releases with a timestamp (for example, for assembly, finalName${ project.artifactId}-${project.version}-r${buildNumber}/finalName), just as Greg suggested. Need to make sure to invoke the plugin create goal, for example mvn

Re: Plugin to create source distribution?

2007-01-30 Thread Tony Ambrozie
Have you tried the assembly plugin (maven-assembly-plugin, version 2.2 or 2.2-SNAPSHOT if you want whole project functionality)? On 1/30/07, Phillip Rhodes [EMAIL PROTECTED] wrote: I would like to create a distribution of my project. I would like the distribution to include sources, maven

Re: M2 dashboard plug-in found

2007-01-29 Thread Tony Ambrozie
I have been using dashboard for mvn 2 for a couple of weeks to aggregate Cobertura/Surefire/Checkstyle/PMD/CPD Reports without having to build and install it manually (limits the distributability of pom), here is my pom entry (very last report plugin in the pom): [] plugin

Re: Can't find artifact when building offline

2007-01-29 Thread Tony Ambrozie
What version of surefire are you specifying in your pom? Do you specify one? Not sure what the issue is as I cannot replicate it, I can only suspect that some dependency/plugin looks for the latest release and finds a pom with this name somewhere, but no associated jar. You may want to specify

Re: clover report not generated

2007-01-17 Thread Tony Ambrozie
David, this seems to be working for me: build . plugin groupIdorg.apache.maven.plugins/groupId artifactIdmaven-clover-plugin/artifactId version2.3/version configuration targetPercentage50%/targetPercentage /configuration executions