Re: [m2] eclipse plugin - too many jar showing in package explorer

2006-10-30 Thread Man-Chi Leung
hi Daniel , thanks so much for your reply. today, I also come across the some solution blogged by Matt Riable at 2004 :-D http://raibledesigns.com/page/rd?anchor=eclipse_tips ~manchi On 2006-10-17 04:13:43 +0800, Daniel Serodio <[EMAIL PROTECTED]> said: Man-Chi Leung wrote: hi, a

Re: Maven2 & JUnit4

2006-10-03 Thread Man-Chi Leung
anyone has successfully run junit4 with m2? pls help ~manchi On 2006-09-27 18:06:21 +0800, Severin Ecker <[EMAIL PROTECTED]> said: Hi, i just wanted to ask if there are any news on the JUnit4 front. I've tried that unofficial plugin but it didn't work, so i was wondering if JUnit4 support is

[m2] eclipse plugin - too many jar showing in package explorer

2006-10-02 Thread Man-Chi Leung
hi, after I did "mvn eclipse:eclipse" and got the project imported to eclipse I found a very long list of jar showing in eclipse's Package Explorer. however, not all the jars that i am actually programming for , i believe , they are simply the dependencies of dependencies. in eclipse plugi

Re: [M2] maven-clean-plugin and multi-module build

2006-09-29 Thread Man-Chi Leung
hi , this is my pom.xml when I did "mvn clean" it cleaned up my /logs directory but the empty "logs" directory was not removed! may I know how to delete directory "logs" as well ? maven-clean-plugin

[m2] how to config exec-maven-plugin to run different java programs?

2006-09-29 Thread Man-Chi Leung
hi, i would like to a use mvn to exec different java programs between the same project directory just similarly like Ant tasks $ant prog1 (execute my first java program) $ant prog2 (execute my secound java program) this is my current setting in pom.xml: org.codehaus.mojo exec

Re: Need advice on version numbering convention

2006-04-06 Thread Man-Chi Leung
version, use the actual project's numbering scheme. I also like to use the *-alpha-1, *-beta-3, *-RC-1 style of naming. It works, its descriptive, and it lets users know if they're using a beta project right off the bat. I'd love the chat more, but the new episode of "

Need advice on version numbering convention

2006-04-04 Thread Man-Chi Leung
hi, sorry that it is not a direct question on Maven usage, but I really hope to improve my Release management process with Maven. I would like to understand more regarding version numbering convention, perhaps, the most commonly practice in Java community. 1) for subversion source tree.

[m2] what does par stand for?

2006-01-24 Thread Man-Chi Leung
hi, in package, there are jar, war, rar, ear, etc. there is one called PAR: http://cvs.peopleware.be/training/maven/maven2/ buildLifecyclePhases.html#par does it stand for ejb3's par module or (Perl Archive Toolkit)? ~manchi ---

Re: m2: I'd like some help with maven-proxy

2006-01-24 Thread Man-Chi Leung
this article is wonderful on setting up multiple repository on maven-proxy. http://cvs.peopleware.be/training/maven/maven2/repositories.html do a search from nabble: http://www.nabble.com/forum/Search.jtp?forum=178&local=y&query=maven- proxy I recalled that I had a number of Q & A on maven

Re: [m2] log4j.properties: where in the standard layout should this b e saved?

2006-01-24 Thread Man-Chi Leung
btw, I am also keen to know the different practice in both dir. any one can advise? src/main/resources src/main/config/ ~manchi On Jan 24, 2006, at 12:05 PM, Kathryn Huxtable wrote: On 1/23/06 7:44 PM, "Treloar, Barrie (SAPOL)" <[EMAIL PROTECTED]> wrote: Where in the standard layout sho

Re: AW: Worst documentation in the whole apache projects

2006-01-23 Thread Man-Chi Leung
yes, I read thru the documentation on at peopleware.be too. this is pretty good, including some tips and best practice. ~manchi On Jan 23, 2006, at 8:29 PM, Lutz Fechner wrote: Your wiki linked to the Maven wiki hosted by codehaus.org which linked to http://cvs.peopleware.be/training/maven

Re: Worst documentation in the whole apache projects

2006-01-19 Thread Man-Chi Leung
hi, I do suggest a wiki page to document the "BEST PRACTICE" for maven 2. I agree an idea that a good tool does not need much documentation; btw, anyone needs a manual for iPod ? so, I hope m2 should be as seamless and intuitive as possible. (yes, M2 is heading the right direction. that w

Re: deploying 3rd party jars

2006-01-18 Thread Man-Chi Leung
for remote repository *check wagon-ssh-external-1.0-alpha-5.jar in your $MAVEN_HOME/lib *check your settling.xml *make sure u have this in setting.xml my-repository myname 664 775 1. $mvn deploy:deploy-file -U (to get deploy-plugin downloaded)

[m2] any good practice to run/skip junitperf testcase?

2006-01-16 Thread Man-Chi Leung
hi, anyone is using junitperf often with m2? yes, usually, junitperf test case takes very long time to run and I usually prefer to turn it off BUT having standard Junit testcase to run as normal. I am putting : junit testcase at /src/test/java junitperf at /src/test/junitperf ( i avoid p

[m2] putting configuration in settings.xml or in pom.xml?

2006-01-15 Thread Man-Chi Leung
hi , I am puzzled whether to put & configuration in settings.xml or in pom.xml ! any best practice guideline? ~manchi - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Installing 3rd party JARs, how generating the pom?

2006-01-12 Thread Man-Chi Leung
yesterday, I just came across this wonderful document regarding maven repository and Design http://cvs.peopleware.be/training/maven/maven2/repositories.html ~manchi On Jan 13, 2006, at 7:39 AM, Treloar, Barrie (SAPOL) wrote: -Original Message- From: Man-Chi Leung [mailto:[EMAIL

Re: Installing 3rd party JARs, how generating the pom?

2006-01-12 Thread Man-Chi Leung
anchi On Jan 13, 2006, at 7:39 AM, Treloar, Barrie (SAPOL) wrote: -Original Message- From: Man-Chi Leung [mailto:[EMAIL PROTECTED] Sent: Friday, 13 January 2006 2:24 AM To: Maven Users List Subject: Re: Installing 3rd party JARs, how generating the pom? to deploy in the local repository, d

Re: Installing 3rd party JARs, how generating the pom?

2006-01-12 Thread Man-Chi Leung
to deploy in the local repository, do the following: $mvn install:install-file -Dfile= -DgroupId= \ -DartifactId= -Dversion= - Dpackaging= for exmaple: mvn install:install-file -Dfile=easymock.jar -DgroupId=org.easymock - DartifactId=easymock -Dversion=2.0 -Dpackaging=jar -DgeneratePom=tr

Re: Using Maven Offline

2006-01-12 Thread Man-Chi Leung
I have got maven-proxy running happily. just get from here: http://maven-proxy.codehaus.org/ u may have different repositories for release, snapshot and thirdparty jar ~manchi On Jan 12, 2006, at 8:10 PM, Paul Hepworth wrote: I've tried that one already with no success. It still works t

Re: [m2] Deploying 3 Party Jar to Maven-Proxy

2006-01-11 Thread Man-Chi Leung
m. Or in your settings.xml as part of default profile. -D On 1/10/06, Man-Chi Leung <[EMAIL PROTECTED]> wrote: hi Dan, Thanks so much. !! everything works fine now. I am so excited today! M2+Maven-Proxy are what I have been dreaming to have for long. Cool! I cannot wait to dev

Re: Experience with maven-proxy.rb

2006-01-11 Thread Man-Chi Leung
i found the site here: https://is-micro.myip.hu/projects/ismicro- commons/proximity/ btw, I just managed to get maven-proxy running. how different is Proximity vs Maven-proxy? ~manchi On Jan 11, 2006, at 3:45 PM, Jason Dillon wrote: FYI, I have been testing out Proximity today... And I noti

Re: [m2] Deploying 3 Party Jar to Maven-Proxy

2006-01-10 Thread Man-Chi Leung
-external.html there are plenty of examples looking at the root poms of existing projects -D On 1/9/06, Man-Chi Leung <[EMAIL PROTECTED]> wrote: hi Dan, thanks, it is great! deploy:deploy-file is working fine! I am able to deploy third party jar to my maven-proxy 's repositor

Re: Exception with Maven under MacOS X 10.4

2006-01-10 Thread Man-Chi Leung
I am running PB with 10.4 too but I do not have problem like yours my java -version: java version "1.5.0_05" Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_05-64) Java HotSpot(TM) Client VM (build 1.5.0_05-43, mixed mode, sharing) I am able to execute this without a problem $ mvn

Re: [m2] what should I set for Plugin Repository URL?

2006-01-10 Thread Man-Chi Leung
/org/apache/maven/plugins/ maven-jar-plugin/2.0-alpha-3/ (latest version) what is happening here? ~manchi On Jan 10, 2006, at 3:03 PM, Man-Chi Leung wrote: it seems that there are a several sites that I can get plugin. which one is the correct setting? 1) http://www.ibiblio.org/maven2/ 2)

Re: [m2] what should I set for Plugin Repository URL?

2006-01-09 Thread Man-Chi Leung
/plugins/ maven-jar-plugin/2.0-alpha-3/ (latest version) what is happening here? ~manchi On Jan 10, 2006, at 3:03 PM, Man-Chi Leung wrote: it seems that there are a several sites that I can get plugin. which one is the correct setting? 1) http://www.ibiblio.org/maven2/ 2) http

[m2] what should I set for Plugin Repository URL?

2006-01-09 Thread Man-Chi Leung
it seems that there are a several sites that I can get plugin. which one is the correct setting? 1) http://www.ibiblio.org/maven2/ 2) http://www.ibiblio.org/maven2/plugins/ 4) http://snapshots.maven.codehaus.org/maven2 5) http://snapshots.maven.codehaus.org/maven2/plugins what is the default?

[maven-proxy] any shutdown script?

2006-01-09 Thread Man-Chi Leung
hi i started maven-proxy from solaris box $java -jar maven-proxy-standalone-SNAPSHOT-app.jar maven- proxy.properties when ever I need to stop it, the only way is to kill the process any better way to do it? any shutdown script? ~manchi ---

Re: [m2] Deploying 3 Party Jar to Maven-Proxy

2006-01-09 Thread Man-Chi Leung
ll. it is uploading to "snapshots" at repo1.maven.org. how can i change that? pls help! ~manchi On Jan 9, 2006, at 1:41 PM, Allan Ramirez wrote: Hi there, Copy your wagon-ssh-external jar to your %M2_HOME%/lib. Hope this works. -allan Man-Chi Leung wrote: hi Dan, thx for ad

Re: [m2] Deploying 3 Party Jar to Maven-Proxy

2006-01-08 Thread Man-Chi Leung
em do you have right now? -D On 1/4/06, Man-Chi Leung <[EMAIL PROTECTED]> wrote: since there is a problem doing remote jar deployment. now, what I can do is to login to my maven-proxy server, and perform jar installation locally ! Should I do this ---

Re: aspectj w/M2???

2006-01-08 Thread Man-Chi Leung
i got my aspectj plugin working fine: check out from svn://svn.codehaus.org/mojo/scm/trunk/mojo/mojo- sandbox/aspectj-maven-plugin anyway, from the spectj-maven-plugin/pom.xml I updated all 1.5.0_M5 to 1.5.0 (since 1.5.0 is the latest release on 20th Dec 05') -

Re: [m2] how to change maven-jar-plugin's basedir ?

2006-01-08 Thread Man-Chi Leung
hi Brett, thanks so much the following tag is working fine! ${project.build.directory}/lib firstly, I would like to thanks to all Maven's developer for the hard work. M2 is exactly what I am dreaming to have for a long time. I just hope m2 could be more towards "zero configuration" based on

Re: [m2] how to change maven-jar-plugin's basedir ?

2006-01-05 Thread Man-Chi Leung
doing such complexity in maven !! ) ~manchi On Jan 6, 2006, at 9:49 AM, Brett Porter wrote: It's intentional. It's meant to be the location of the project. What should go in JIRA is the ability to change the output location. - Brett On 1/6/06, Henry Isidro <[EMAIL PROTECTED]&g

Re: [m2] how to change maven-jar-plugin's basedir ?

2006-01-05 Thread Man-Chi Leung
: Henry Isidro wrote: Man-Chi Leung wrote: how can I change the generated jar location from default /target/ to /target/lib? org.apache.maven.plugins maven-jar-plugin /target/lib < I want to do something like t

Re: m2 plugin config problems with eclipse

2006-01-05 Thread Man-Chi Leung
eclipse plugin is already come with m2 by default the following command will create .classpath and .project files for eclipse. $mvn eclipse:eclipse u also need to add your .m2/repository parameter to eclipse as the following: $mvn -Declipse.workspace= eclipse:add- maven-repo from eclips

Re: RE : [m2] how to remove jar from .m2/repository

2006-01-05 Thread Man-Chi Leung
t;[EMAIL PROTECTED]> wrote: As of now, the only way to remove the jar is to delete it manually from your repository folder. The repository can be found in ~/.m2/repository by default. Man-Chi Leung wrote: after install a jar to local repository, how can I remove it? $>mvn install:insta

Re: possible to do a search on maven mailing archive ?

2006-01-04 Thread Man-Chi Leung
yes, i got this link b4. there is only browse . no search http://mail-archives.apache.org/mod_mbox/maven-users/ On Jan 5, 2006, at 12:09 PM, Brian E. Fox wrote: See the links at the bottom of this page: http://maven.apache.org/where-is-it.html -Original Message- From: Man-Chi Leung

Re: possible to do a search on maven mailing archive ?

2006-01-04 Thread Man-Chi Leung
i still could not find a site to do a Search on maven mailing list archive any pointer? bcos I always afraid I was repeating the answered question. On Dec 27, 2005, at 10:23 PM, Man-Chi Leung wrote: hi, is it possible to do a search on maven mailing archive ? Regards, Manchi

[m2] how to change maven-jar-plugin's basedir ?

2006-01-04 Thread Man-Chi Leung
how can I change the generated jar location from default /target/ to /target/lib? org.apache.maven.plugins maven-jar-plugin /target/lib < I want to do something like this. but ERROR!

Re: [m2] Deploying 3 Party Jar to Maven-Proxy

2006-01-04 Thread Man-Chi Leung
On Jan 4, 2006, at 3:56 AM, dan tran wrote: On 1/3/06, Man-Chi Leung <[EMAIL PROTECTED]> wrote: hi I have successfully setup maven-proxy, based on the following website. http://maven-proxy.codehaus.org/ Q1) now, the only problem is deploying 3rd Party jars from our deployment

Re: [m2] Deploying 3 Party Jar to Maven-Proxy

2006-01-03 Thread Man-Chi Leung
encountered the followings Error: [INFO] A required plugin was not found: Plugin could not be found - check that the goal name is correct: Unable to download the artifact from any repository On Jan 4, 2006, at 3:56 AM, dan tran wrote: On 1/3/06, Man-Chi Leung <[EMAIL PROTECTED]>

Re: M1 or M2?

2006-01-03 Thread Man-Chi Leung
hi , more documentation can be found from here: http://cvs.peopleware.be/training/maven/maven2/index.html On Jan 4, 2006, at 11:50 AM, Timothy Bennett wrote: Babak Farhang wrote: I am new to maven and am attempting to start using it instead of ant as my primary build tool. But I'm finding

Re: [m2] Deploying 3 Party Jar to Maven-Proxy

2006-01-03 Thread Man-Chi Leung
On Jan 4, 2006, at 3:56 AM, dan tran wrote: On 1/3/06, Man-Chi Leung <[EMAIL PROTECTED]> wrote: hi I have successfully setup maven-proxy, based on the following website. http://maven-proxy.codehaus.org/ Q1) now, the only problem is deploying 3rd Party jars from our deployment

[m2] Deploying 3 Party Jar to Maven-Proxy

2006-01-03 Thread Man-Chi Leung
hi I have successfully setup maven-proxy, based on the following website. http://maven-proxy.codehaus.org/ Q1) now, the only problem is deploying 3rd Party jars from our deployment pc to maven-proxy I followed this instruction from maven's FAQ but with no luck. http://docs.codehaus.org/pages

Re: [m2] where to get sun.jdk:tools:jar:1.4.0 on MacOSX?

2006-01-03 Thread Man-Chi Leung
mac os On 02/01/06, Man-Chi Leung <[EMAIL PROTECTED]> wrote: hi Kaare, thanks for advice. I managed to solve my problem on aspectj-maven- plugin installation !! yes, there is no tools.jar on MacOSX. /System/Library/Frameworks/ JavaVM.framework/Classes/classes.jar will be the equivalent

Re: [m2] auto completion using BASH does not work on MacOSX

2006-01-03 Thread Man-Chi Leung
I go it from fink and put the bash script at /sw/etc/bash_completion.d/ it is so cool! thanks Ralph. On Jan 4, 2006, at 12:03 AM, Ralph Pöllath wrote: On 03.01.2006, at 16:44, Man-Chi Leung wrote: I followed the following instruction, but it does not work on my MacOSX 's bash

[m2] auto completion using BASH does not work on MacOSX

2006-01-03 Thread Man-Chi Leung
hi I followed the following instruction, but it does not work on my MacOSX 's bash shell. anyone has a better luck? Guide to Maven 2.x auto completion using BASH http://maven.apache.org/guides/mini/guide-bash-m2-completion.html Regards, manchi --

Re: How to specify external jars

2006-01-03 Thread Man-Chi Leung
can u list down what exactly u have do for "mvn install:install-file" ? regards ~manchi On Jan 3, 2006, at 8:10 PM, Pagadala Baskar, Kiran Kumar ((Cognizant)) wrote: Hi, I have a couple of external jars that I need for my Project compilation. I have uploaded them to the local reposito

Re: How to use M2 with AspectJ?

2006-01-03 Thread Man-Chi Leung
i got my aspectj plugin working fine: check out from svn://svn.codehaus.org/mojo/scm/trunk/mojo/mojo- sandbox/aspectj-maven-plugin anyway, from the spectj-maven-plugin/pom.xml I updated all 1.5.0_M5 to 1.5.0 (since 1.5.0 is the latest release on 20th Dec 05') -

Re: Copy Jar?

2006-01-03 Thread Man-Chi Leung
hi for m2 , I am doing this configuration to copy *.jar to my target directory as well as tar to my assembled file. /pom.xml org.codehaus.mojo dependency-maven-plugin copy-dependenci

Re: [m2] where to get sun.jdk:tools:jar:1.4.0 on MacOSX?

2006-01-02 Thread Man-Chi Leung
ayout. :-D ~manchi On Jan 2, 2006, at 6:13 PM, Kaare Nilsen wrote: Are there any java.home set or something. i would need it to make a general path for mac os On 02/01/06, Man-Chi Leung <[EMAIL PROTECTED]> wrote: hi Kaare, thanks for advice. I managed to solve my problem on aspectj-ma

Re: [m2] Standard Directory Layout for AspectJ in m2?

2006-01-02 Thread Man-Chi Leung
fully assume your message belongs to the previous thread and display it threre, which is quite annoying for people using this feature. Thanks, -Ralph. On 02.01.2006, at 06:17, Man-Chi Leung wrote: hi, just a very coffee-like question! as maven community encourages standard directory layout,

Re: [m2] where to get sun.jdk:tools:jar:1.4.0 on MacOSX?

2006-01-02 Thread Man-Chi Leung
ere is no tools.jar on a mac. The classes are included in the normal java runtime. IMO you should try to remove the dependency completely. thanks david jencks On Jan 1, 2006, at 7:15 PM, Man-Chi Leung wrote: hi, I checked out aspectj-maven-plugin from mojo sandbox, and I was trying to build it

[m2] surefire-report + surefire = exception?

2006-01-01 Thread Man-Chi Leung
hi when I run my surefire-report-plugin 2.0 & default surefire 1.5 (bundled with maven 2.0.1). i encountered the following xml validation error. anyone is having the same problem too? [INFO] Generate "Maven Surefire Report" report.java.lang.Exception: Failure to parse file at: ~/myproject

[m2] where to get sun.jdk:tools:jar:1.4.0 on MacOSX?

2006-01-01 Thread Man-Chi Leung
hi, I checked out aspectj-maven-plugin from mojo sandbox, and I was trying to build it. however, I encountered an error saying that tools.jar was not found. to my understand, we need to install Sun's Jar separately due to the license issue. em.. ok! but there is no tools.jar for Mac in

Re: [m2] where to get sun.jdk:tools:jar:1.4.0 on MacOSX?

2006-01-01 Thread Man-Chi Leung
-Chi Leung wrote: hi, I checked out aspectj-maven-plugin from mojo sandbox, and I was trying to build it. however, I encountered an error saying that tools.jar was not found. to my understand, we need to install Sun's Jar separately due to the license issue. em.. ok! but there

[m2] how to remove jar from .m2/repository

2006-01-01 Thread Man-Chi Leung
after install a jar to local repository, how can I remove it? $>mvn install:install-file -Dfile=easymock.jar -DgroupId=easymock - DartifactId=easymock -Dversion=2.0 -Dpackaging=jar -DgeneratePom=true I check the documentation, there are only 2 goal for install, any goal for removal of jar?

[m2] Standard Directory Layout for AspectJ in m2?

2006-01-01 Thread Man-Chi Leung
hi, just a very coffee-like question! as maven community encourages standard directory layout, I am very curious on the convention for aspectj files 1) /src/aspect 2) /src/main/aspect 3) /src/main/resources/aspect I opted for number 2 anyone can share with me your convention? Regards, man

Re: maven jar plugin: Manifest Entries?

2005-12-30 Thread Man-Chi Leung
this is my pom, it works fine! org.apache.maven.plugins maven-jar-plugin

[m2] anyone is doing m2 with cruisecontrol?

2005-12-30 Thread Man-Chi Leung
in my case, I tried to download continuum on my MacOSX and Solaris. very sadly, Continuum did not even start it up, without any error message!!! so, I think I have only one choice , thinking to integrate m2 with cruise control now anyone has a success story? btw, what is the different bet

[m2] how to use mvn to check out from subversion?

2005-12-30 Thread Man-Chi Leung
how to use mvn to perform common operation for subversion? * co * update * add * move * delete * commit? may I know the plugin configure that I need to put in pom.xml? Regards, ~manchi - To unsubscribe, e-mail: [EMAIL PROTECTED

[m2] anyone is running groovy plugin on m2?

2005-12-29 Thread Man-Chi Leung
hi, i checked out the groovy plugin from svn checkout svn://svn.codehaus.org/mojo/scm/trunk/mojo/mojo-sandbox/ maven-groovy-plugin maven-groovy-plugin it seems that the classpath is not recognized in groovy. anyone is having the same problem? $>mvn groovy:groovy -e -DfileName=/src/main/g

[m2] Re: How to use M2 with AspectJ?

2005-12-29 Thread Man-Chi Leung
hi u may check out from mojo sandbox http://svn.mojo.codehaus.org/trunk/mojo/mojo-sandbox/ I just got this, thinking to write a m2 plug-in to implement logging with AspectJ via mvn something like the plugin sample in Maven Developer's Notebook, however, which is based on M1. I would lik

[m2] how can I add more source directory?

2005-12-29 Thread Man-Chi Leung
I would like to add more source directory for groovy script. but if I add the following in pom.xml, the default setting of src/ main/java will be removed! src/main/groovy ... YES ! the following will caused xml syntax error!! src/main/groovy: src/main/groov

[m2] any one is running JunitPerf test?

2005-12-29 Thread Man-Chi Leung
in M2, surefire seems skipping TestSuite. when I do default 'mvn compile'. JunitPerf will not run at all! --- My Junit Perf test case: --- public class ExampleTimedTest { public static final long toleranceInMillis = 100;

[m2] any 'maven console' equivalent in M2?

2005-12-28 Thread Man-Chi Leung
hi, any 'maven console' equivalent in M2? Regards, manchi - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: anyone is running surefire-report-plugin 2.1 on m2?

2005-12-27 Thread Man-Chi Leung
y for plugins in 2.0+ of Maven. - Brett On 12/28/05, Nik Gonzalez <[EMAIL PROTECTED]> wrote: Man-Chi Leung, Build the maven-surefire-plugin-2.1 that you checked out again but this time using "mvn install -DupdateReleaseInfo=true. This will update your plugin registry and the next

Re: Any easy way to list all goals available for a plugin?

2005-12-27 Thread Man-Chi Leung
you must include the plugin report : org.apache.maven.plugins maven-plugin-plugin Hope this helps, -- Yann 2005/12/27, Man-Chi Leung <[EMAIL PROTECTED]>: hi, after anyway new plug-in installation, I will very much rely on "mvn site" t

Any easy way to list all goals available for a plugin?

2005-12-27 Thread Man-Chi Leung
hi, after anyway new plug-in installation, I will very much rely on "mvn site" to generate a html site for checking out all Goals available. sometimes, there is nothing. very often, I need to dig all the way to view a plug-in's source code. yes, look at the @goal annotation stated for t

anyone is using Groovy plugin for unit testing?

2005-12-27 Thread Man-Chi Leung
hi , anyone is using Groovy plugin for writing Junit test cases on M2? this article mentioned about using groovy for junit , but with maven 1. http://www-128.ibm.com/developerworks/java/library/j-pg11094/ i got the groovy plugin from mojo.codehuas but having the questions I will not able to us

How to update surefire plugin from 1.5 to 2.1

2005-12-26 Thread Man-Chi Leung
hi as i know the default m2 is configured with surefire 1.5 by default. i believe 1.5 is having validation problem on generated xml file. i also checked out snapshot 2.1from Mojo.codehaus and did a build , then installed to my repository. but how can I config m2 to use surefire 2.1 instead

anyone is running surefire-report-plugin 2.1 on m2?

2005-12-26 Thread Man-Chi Leung
hi, surefire-report-plugin 2.1 is having Failure to parse Surefire 1.5 xml file I used surefire-report plugin to parse surefire generated xml file but encountered the following exception. I checked out surefire-report jira, and got a reply that it is due to the invalid xml format in suref