Re: SureFire (and surefire-reports) plugins

2006-08-03 Thread Tung Nguyen
You can configure the surefire plugin like this plugin groupIdorg.apache.maven.plugins/groupId artifactIdmaven-surefire-plugin/artifactId configuration testFailureIgnore true/testFailureIgnore /configuration /plugin HTH Tung

Re: SureFire (and surefire-reports) plugins

2006-08-03 Thread Tung Nguyen
AFAIK and as you said, JUnit is designed to complete a test suite even a test case is failed. So I think that your request would concern JUnit. Maybe all you need is find a way to tell your test suite fails when the first test case fails. The surefire plug-in is just a classloader to run test

Re: Super Pom

2006-07-27 Thread Tung Nguyen
Maybe this link response to your question: http://maven.apache.org/ref/current/maven-model/maven.html HTH Tung Nguyen - Original Message From: Lakshman Srilakshmanan [EMAIL PROTECTED] To: [EMAIL PROTECTED] Cc: users@maven.apache.org Sent: Thursday, July 27, 2006 2:03:58 AM Subject: RE

[m2]How to activate a profile for the test phase in maven life cycle

2006-07-19 Thread Tung Nguyen
Hi all, My question is because I want to inject some more dependencies when my tests are executed. I can't add them directly because of cyclic dependency Illus: B depend A C depend A A is tested with B.jar et C.jar Can anyone show me ? Thanks Regards

Re: [m2]How to activate a profile for the test phase in maven life cycle

2006-07-19 Thread Tung Nguyen
That was an error. Sorry for an urgly question. Sincerely. - Original Message From: Tung Nguyen [EMAIL PROTECTED] To: users@maven.apache.org Sent: Wednesday, July 19, 2006 5:44:31 PM Subject: [m2]How to activate a profile for the test phase in maven life cycle Hi all, My question

Re: How to create variable in pom file?

2006-07-18 Thread Tung Nguyen
You can use properties: properties variable-name1value1/variable-name1 variable-name2value2/variable-name2 . /properties - Original Message From: Kapil Gupta(CT) [EMAIL PROTECTED] To: users@maven.apache.org Sent: Tuesday, July 18, 2006

Re: [maven 2] duplicate class compilation error

2006-07-17 Thread Tung Nguyen
. - Original Message From: dan tran [EMAIL PROTECTED] To: Maven Users List users@maven.apache.org; Tung Nguyen [EMAIL PROTECTED] Sent: Thursday, July 13, 2006 6:35:33 PM Subject: Re: [maven 2] duplicate class compilation error show your pom On 7/13/06, Tung Nguyen [EMAIL PROTECTED

Re: [maven 2] duplicate class compilation error

2006-07-13 Thread Tung Nguyen
Anyone could help me please, I've just begun with maven and get stuck. - Original Message From: Tung Nguyen [EMAIL PROTECTED] To: users@maven.apache.org Sent: Thursday, July 13, 2006 10:33:51 AM Subject: [maven 2] duplicate class compilation error Hi all, I have another problem with M2

Re: [m2] How to configure the local repository

2006-07-11 Thread Tung Nguyen
@maven.apache.org; Tung Nguyen [EMAIL PROTECTED] Sent: Tuesday, July 11, 2006 4:09:41 PM Subject: RE: [m2] How to configure the local repository Within the settings.xml, you should be able to have an entry like this: localRepositorysome\path\you'd\like/localRepository -Original Message- From: Tung

Re: [m2] How to configure the local repository

2006-07-11 Thread Tung Nguyen
- From: Tung Nguyen [mailto:[EMAIL PROTECTED] Sent: 11 July 2006 14:59 To: users@maven.apache.org Subject: [m2] How to configure the local repository Hi everybody, I'm contrained to place the repository of maven in the same folder of my projet but I can't figure out how to do that. I tried to place

RE: [M2]How to compile with JDK 1.2

2006-05-10 Thread Tung Nguyen
JTeam b.v. -Original Message- From: Tung Nguyen [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 09, 2006 11:06 AM To: users@maven.apache.org Subject: [M2]How to compile with JDK 1.2 Hi everybody, I want to compile my source files with an external jdk1.2 : I've

[M2]How to compile with JDK 1.2

2006-05-09 Thread Tung Nguyen
Hi everybody, I want to compile my source files with an external jdk1.2 : I've tried this: build plugins plugin groupIdorg.apache.maven.plugins/groupId artifactIdmaven-compiler-plugin/artifactId configuration forktrue/fork