RE: Test case failure caused to build failure

2006-04-10 Thread Krishnan A S
There is a tag testFailureIgnoretrue/testFailureIgnore which prevents the running of tests. This should be done in pom.xml; inside the maven-surefire plugin under build plugins plugin : : :

RE: Question about skipping tests

2006-04-10 Thread Krishnan A S
Your solution will definitely do :) but u may need to define a maven-surefire-plugin inside build/plugins and there you define testFailureIgnoretrue/tFI Thanks Regards, A.S.KRISHNAN, AZTEC, BANGALORE. -Original Message- From: Todd Nine [mailto:[EMAIL PROTECTED] Sent: Monday, April 10,

RE: maven-war-plugin howto add files to WEB-INF

2006-03-28 Thread Krishnan A S
Place under webapp/WEB-INF/zoo/foo.xml in ur build structure Thanks Regards, A.S.KRISHNAN, AZTEC, BANGALORE. -Original Message- From: Raymond Domingo [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 28, 2006 2:14 PM To: users@maven.apache.org Subject: maven-war-plugin howto add files to

RE: how to instal internal repository?

2006-03-17 Thread Krishnan A S
I hope this will help u ... repositories repository idjasperServer/id nameBase repository for Jasper Server/name urlfile://D:/JSProject/jasperserver-repo/url /repository /repositories do it in settings.xml

RE: m202 How to package ear with our version numbers for the included artifiacts

2006-03-06 Thread Krishnan A S
Add a build finalNamejarName/finalName /build in the pom.xml for the JAR project. Same can be applied for the WAR also. You can observe the result in the target - directory of each module. Thanks Regards, A.S.KRISHNAN, AZTEC, BANGALORE. -Original Message- From: Gautham

RE: War's - How to exclude bundling of jars in WEB-INF/lib? They are caused because of transitive depedencies

2006-02-28 Thread Krishnan A S
Try scope = compile ... only for scope=runtime it will be picked up :) Thanks Regards, A.S.KRISHNAN, AZTEC, BANGALORE. -Original Message- From: Domsch, Christian [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 01, 2006 2:28 AM To: Maven Users List Subject: AW: War's - How to exclude

RE: How to use external jar's while compiling

2006-02-26 Thread Krishnan A S
Use a dependency tag like below ... dependencies dependency groupIdjunit/groupId artifactIdjunit/artifactId version3.8.1/version scopetest/scope /dependency /dependencies change your groupId, artifactId, version and scope to compile ... as per ur need Thanks

RE: how to use my own jar as dependencies

2006-02-24 Thread Krishnan A S
If you have configured your groupId, artifactId, version and scope (as compile) it will automatically download to your local repo. You need to configure your remote repository in your HOME_DIR/settings.xml Thanks Regards, A.S.KRISHNAN, AZTEC, BANGALORE. -Original Message- From:

RE: how to use my own jar as dependencies

2006-02-24 Thread Krishnan A S
scopecompile/scope /dependency but http://www.ibiblio.org/maven2 repositry dosen't contain struts-portlet jar Krishnan A S [EMAIL PROTECTED] wrote: If you have configured your groupId, artifactId, version and scope (as compile) it will automatically download to your local repo. You need to configure

RE: Mvn deploy

2006-02-24 Thread Krishnan A S
You have maven-deploy-plugin which u can configure to deploy to a appserver or use tomcat-maven-plugin Thanks Regards, A.S.KRISHNAN, AZTEC, BANGALORE. -Original Message- From: Tom Joad [mailto:[EMAIL PROTECTED] Sent: Friday, February 24, 2006 10:21 PM To: Maven Users List Subject: Mvn

RE: There were test failures

2006-02-24 Thread Krishnan A S
Try using maven-surefire-plugin which generates report files as txt and xml under test/target directories for the respective project :) Thanks Regards, A.S.KRISHNAN, AZTEC, BANGALORE. -Original Message- From: Graham Leggett [mailto:[EMAIL PROTECTED] Sent: Friday, February 24, 2006

RE: Error in deploy:deploy-file

2006-02-24 Thread Krishnan A S
Check if the user has rights/permissions to create a directory in your UNIX machine ... Thanks Regards, A.S.KRISHNAN, AZTEC, BANGALORE. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Saturday, February 25, 2006 4:27 AM To: users@maven.apache.org Subject:

RE: [m2] Cannot generate test report with failing tests

2006-02-22 Thread Krishnan A S
? Krishnan A S wrote: Hope the Reports get generated if tests are failed or passed. U can set some configurations for test like 'testFailureIgnoretrue/tFI which continues the successive lifecycle even if test fails :) Try out this option. Thanks Regards, A.S.KRISHNAN, AZTEC, BANGALORE

RE: [m2] Cannot generate test report with failing tests

2006-02-22 Thread Krishnan A S
on occasion. Why they say that it is not recommended? Krishnan A S wrote: Hope the Reports get generated if tests are failed or passed. U can set some configurations for test like 'testFailureIgnoretrue/tFI which continues the successive lifecycle even if test fails :) Try out this option

RE: [m2] Cannot generate test report with failing tests

2006-02-21 Thread Krishnan A S
Hope the Reports get generated if tests are failed or passed. U can set some configurations for test like 'testFailureIgnoretrue/tFI which continues the successive lifecycle even if test fails :) Try out this option. Thanks Regards, A.S.KRISHNAN, AZTEC, BANGALORE. -Original Message-

RE: [m2] site: copying generated files into target/site for deployment to web

2006-02-20 Thread Krishnan A S
Download tomcat-maven-plugin which deploys into app server the final war file or ... Thanks Regards, A.S.KRISHNAN, AZTEC, BANGALORE. -Original Message- From: Brian E. Fox [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 21, 2006 9:10 AM To: Maven Users List Subject: RE: [m2] site:

RE: Lifecycle management

2006-02-16 Thread Krishnan A S
Try updatetrue/update in the configurationin the deploy plugin (if there are any options). Its thr in Tomcat maven plugin Thanks Regards, A.S.KRISHNAN, AZTEC, BANGALORE. -Original Message- From: Domsch, Christian [mailto:[EMAIL PROTECTED] Sent: Thursday, February 16, 2006 2:56 PM To:

RE: Excluding jars from ear

2006-02-16 Thread Krishnan A S
Keep the jar-s of dependencies in the 'compile' scope and remove the runtime scope. Thanks Regards, A.S.KRISHNAN, AZTEC, BANGALORE. -Original Message- From: Mike Darretta [mailto:[EMAIL PROTECTED] Sent: Friday, February 17, 2006 6:21 AM To: Maven Users List Subject: Excluding jars from

RE: [m2] Antrun-Plugin javac not working

2006-02-15 Thread Krishnan A S
I need to run the HttpUnitTests (part of test/*.java) against the deployed WAR file. Normally it runs 'test' before deployment itself. I know how to build and deploy the WAR into Tomcat (using tomcat-maven-plugin). I need to run the HttpUnit tests after deployment to Tomcat 5.x since they

RE: [M2] Runtime dependencies not being found

2006-02-15 Thread Krishnan A S
Try with compile option or test option :) Thanks Regards, A.S.KRISHNAN, AZTEC, BANGALORE. -Original Message- From: Tim Davies [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 15, 2006 6:17 PM To: users@maven.apache.org Subject: [M2] Runtime dependencies not being found Hi, Ive got

RE: Maven2 EAR

2006-02-15 Thread Krishnan A S
Create a pom.xml for ear - file and include this ejb - jarfile as one of the modules ... create another pom.xml describing the ejb project . Thanks Regards, A.S.KRISHNAN, AZTEC, BANGALORE. -Original Message- From: Kohinoor Lal Verma (HF/EAB) [mailto:[EMAIL PROTECTED] Sent: Wednesday,