Re: Why would Maven Not look in local repo?

2006-09-05 Thread Rahul Thakur
You can also set up a Maven Proxy on your network. See here: http://maven-proxy.codehaus.org/ HTH, Rahul - Original Message - From: Lakshman Srilakshmanan [EMAIL PROTECTED] To: Maven Users List users@maven.apache.org Sent: Wednesday, September 06, 2006 11:51 AM Subject: RE: Why

Re: Eclipse ALF compatibility

2006-09-06 Thread Rahul Thakur
I thought Eclipse Buckminster was the closest to Maven. I am interested to understand how and what aspects of ALF map to Maven... Cheers, Rahul - Original Message - From: [EMAIL PROTECTED] To: users@maven.apache.org Sent: Thursday, September 07, 2006 7:03 AM Subject: Eclipse ALF

Re: Can I get the user settings from a Mojo

2006-09-28 Thread Rahul Thakur
I think you can use something like this in your Mojo /** [EMAIL PROTECTED] expression=${settings} * @readonly */ MavenSettings settings; PS: pls check the name spelling for the Maven settings class. HTH, Rahul Laura Hinojosa wrote: Is it possible to access the Users

NoClassDefFoundError running Checkstyle reports

2006-10-26 Thread Rahul Thakur
Hi, I am getting the error below when run 'mvn site-deploy' and checkstyle reports are attempted. Any ideas? Cheers, Rahul snip [INFO] [site:site] [INFO] Generate Checkstyle report. [INFO] [ERROR] FATAL ERROR [INFO]

Re: configuring logging

2006-10-27 Thread Rahul Thakur
You are looking for the wrapper.conf file under continuum installation directory to do that. On windows, its located under: continuum-1.0.3\bin\win32 Update following properties as you need: wrapper.logfile.xxx HTH, Rahul - Original Message - From: Rajiv Kumar Poddar [EMAIL

Re: Release Rollback

2006-11-12 Thread Rahul Thakur
I don't think this is available as a Maven Mojo yet. But it would really cool to have. I hit similar situation at work where I needed to revert a release. The other alternate is to delete the release tag (referring to CVS, but not sure about other SCMs). Any one else has any ideas? May be

Re: Continue Build and Site Generation on Junit failure

2006-11-13 Thread Rahul Thakur
Have you tried passing -fn (fail never) option when you invoke a build? mvn test site -fn That should continue the build inspite of any failures. HTH, Rahul pjungwir wrote: Suppose you say this: mvn test mvn site That gives you a failure but not a site. And if you say this: mvn

Re: SQL scripts in webapp

2006-12-12 Thread Rahul Thakur
How are you deploying the app to a geronimo instance (Cargo Maven plugin?) You can use a profile and nest your plugin's configuration therein and invoke the profile using '-P profileName' when you want to invoke the deploy goal (I am assuming you are using Cargo for deployment). HTH, Rahul

[Fwd: Re: how to refer to a file properties starting from the pom.xml]

2006-12-14 Thread Rahul Thakur
Moving this to user list... I have the same question - How do I inject properties from an external file into pom.xml? I have use case where I need to inject some DB connection properties into pom.xml and I don't want to define them in the pom itself. I noticed some discussion about

Re: Cannot build maven project

2006-12-17 Thread Rahul Thakur
Has something changed in the settings.xml lately for the user account under with Continuum is running? Henrique Prange wrote: Hi List, I'm using Continuum for a time without problems. Today, however, my projects stop building with the following error:

Re: Custom Lifecycle

2007-01-07 Thread Rahul Thakur
Hi, I don't think there is documentation that explains in details about setting up custom lifecycle (others can correct me if I am wrong!) If you have the 'Better builds with Maven' book (http://www.mergere.com/resources_downloads.jsp) , have a look at Appendix A, it might give you some

Re: [Maven2] Question on profiles

2007-01-07 Thread Rahul Thakur
Any reason why you can't do following? mvn clean install -Dp1 -Dp2 Rahul - Original Message - From: Saminda Abeyruwan [EMAIL PROTECTED] To: users@maven.apache.org Sent: Monday, January 08, 2007 6:42 PM Subject: [Maven2] Question on profiles Hi All, I'm having the following use

Re: Deploying to snapshot repository: controlling accretion

2007-01-08 Thread Rahul Thakur
There's a bug logged on JIRA about 'uniqueVersion' property. I think its fixed for release 2.0.5 (not out yet). So until 2.0.5 is out its a manual process, I guess :-) cheers, Rahul - Original Message - From: Steven E. Harris [EMAIL PROTECTED] To: users@maven.apache.org Sent:

Re: [Maven2] Question on profiles

2007-01-08 Thread Rahul Thakur
; would do the above, in users perspective; it's really good. Saminda On 1/8/07, Rahul Thakur [EMAIL PROTECTED] wrote: Any reason why you can't do following? mvn clean install -Dp1 -Dp2 Rahul - Original Message - From: Saminda Abeyruwan [EMAIL PROTECTED] To: users@maven.apache.org

Re: Deploying to snapshot repository: controlling accretion

2007-01-08 Thread Rahul Thakur
Here: http://jira.codehaus.org/browse/MNG-1908 Rahul Steven E. Harris wrote: Rahul Thakur [EMAIL PROTECTED] writes: There's a bug logged on JIRA about 'uniqueVersion' property. I think its fixed for release 2.0.5 (not out yet). Do you happen to know the JIRA key, or perhaps its

Re: Deploying to snapshot repository: controlling accretion

2007-01-08 Thread Rahul Thakur
Message - From: Steven E. Harris [EMAIL PROTECTED] To: users@maven.apache.org Sent: Tuesday, January 09, 2007 11:17 AM Subject: Re: Deploying to snapshot repository: controlling accretion Rahul Thakur [EMAIL PROTECTED] writes: http://jira.codehaus.org/browse/MNG-1908 Thanks, but I don't see

Re: HOW TO - Use maven-eclipse-plugin to build a RCP Target Platform and an internal repository from an Eclipse installation

2007-01-08 Thread Rahul Thakur
Could I suggest: To have this resource linked from the eclipse plugin website as well; would be nice for users looking for Maven-Eclipse integration info. Cheers, Rahul - Original Message - From: Barrie Treloar [EMAIL PROTECTED] To: Maven Users List users@maven.apache.org Sent:

Re: Recommended way to add config files?

2007-01-14 Thread Rahul Thakur
I haven't used the assembly plugin but we have a similar scenario addressed like this: 1) for Eclipse we have resources with hard-coded values. This works well for running the app or tests from within IDE. 2) for packaging up using Maven, we use a combination of profiles and filters to

Re: continum newbie questions

2007-02-03 Thread Rahul Thakur
Continuum needs Maven to build projects that use Maven POM (Project Object Model). It would need Ant to build Ant based projects, Maven 1 to build projects that use Maven 1 POM so on and so forth... Dependency on a company's remote repo would depend on the dependencies that your project(s)

[ANN] OpenJPA Maven Plugin 1.0-alpha released

2007-02-05 Thread Rahul Thakur
Hi, I am pleased to announce the release of OpenJPA Maven Plugin version 1.0-alpha. This release includes: 1) Mojo to invoke OpenJPA PCEnhancer tool on mapped persistable classes. 2) Plugin documentation. Feedback and suggestions are welcome. Cheers, Rahul

[mojo-user] [ANN] OpenJPA Maven Plugin 1.0-alpha released

2007-02-06 Thread Rahul Thakur
Not sure why got filtered. Sending again... Hi, I am pleased to announce the release of OpenJPA Maven Plugin version 1.0-alpha. This release includes: 1) Mojo to invoke OpenJPA PCEnhancer tool on mapped persistable classes. 2) Plugin documentation. Feedback and suggestions are

Re: The OpenJPA Enhancer tool exited with a non-null exit code.

2007-11-18 Thread Rahul Thakur
Hi Julien, Can you try invoking the goal with -X (for debug)? Also, where is the persistence.xml located in your project? Rahul - Original Message - From: Julien Martin [EMAIL PROTECTED] To: Maven Users List users@maven.apache.org; [EMAIL PROTECTED] Sent: Wednesday, October 24, 2007

Re: state of maven support for Google Web Toolkit ?

2007-12-31 Thread Rahul Thakur
I find myself in the same boat while developing a GWT based webapp. Having used the Maven plugin(s) out there, I believe, they can be improved (not had good user experiences yet!). I think we should consolidate all efforts towards a GWT plugin. If you have and want to share some useful pieces

Re: How to disable Test during build

2008-02-06 Thread Rahul Thakur
pass property -Dmaven.test.skip=true Rahul Arun P Johny wrote: Hi, Can anybody tell me how to disable execution of test phase during maven2 build. I'm using maven 2.0.7 I don't want the test phase to execute when I gaves mvn release:prepare and mvn release:perform Thank You, Arun

Re: mvn clean site-deploy doesnt clean the remote site

2008-02-06 Thread Rahul Thakur
I don't think Maven can do this. You will need to delete the site manually from the remote machine. I think this is a common use-case and might be an idea opening a JIRA issue for this feature. Rahul Savita_p_m wrote: Hi mvn clean site-deploy doesn't delete the site on the remote machine

Re: Conceptual Confusion about build and release process using maven.

2008-02-06 Thread Rahul Thakur
Now my confusion over my own understanding and assumption is: 1) During the development process within an iteration, how to make sure that all the module owners dependent on a.jar keeps up to date with the changing versions of a.jar as the development goes on until Integration Testing. In my

Re: Maven Concepts

2008-02-09 Thread Rahul Thakur
You'd use dependencyManagement to baseline dependencies and their versions across various inheriting modules, while a dependency is, well, a dependency :-) Once specified in the dependencyManagement, you don't need to provider versions for those dependencies in child module's pom. HTH,

Re: Maven Concepts

2008-02-09 Thread Rahul Thakur
And at times you can use the '-U' option to force an update check for dependencies. Rahul Simon Kitching wrote: Stephen Connolly [EMAIL PROTECTED] schrieb: Redeploying a non-SNAPSHOT version is a _bad thing_ as Maven will not re-download it. Absolutely. Never overwrite an

Re: Maven Concepts

2008-02-09 Thread Rahul Thakur
From the following command: mvn -help I get this description for -U option: -U,--update-snapshots Forces a check for updated releases and snapshots on remote repositories I would imagine both SNAPSHOT and releases are checked for updates :-) Rahul Mark Struberg wrote: --- Rahul

Re: Maven Concepts

2008-02-09 Thread Rahul Thakur
, Rahul Thakur [EMAIL PROTECTED] wrote: From the following command: mvn -help I get this description for -U option: -U,--update-snapshots Forces a check for updated releases and snapshots on remote repositories I would imagine both SNAPSHOT and releases are checked for updates

Re: Need help

2007-04-03 Thread Rahul Thakur
You will be asked to set up an admin account the first time you access the Continuum console after you've started it. HTH, Rahul - Original Message - From: Vaidya, Raghavendra (GE Infra) [EMAIL PROTECTED] To: continuum-users@maven.apache.org Cc: Vaidya, Raghavendra (GE Infra) [EMAIL

Re: pom.xml URL - CVS access

2007-04-27 Thread Rahul Thakur
You want to know how to specify username password to add your pom.xml from CVS, correct? Something like: https://username:[EMAIL PROTECTED]/cgi-bin/cvsweb.cgi/~checkout~/module_path/file_name HTH, Rahul - Original Message - From: Rodrigo Gonçalves [EMAIL PROTECTED] To: [EMAIL

Maven 2.1 wish list page on MAVENUSER

2007-05-13 Thread Rahul Thakur
I think MavenUser wiki is a good place to gather ideas for Maven 2.1 rather than IRC (always a possibility that some items fall thru the cracks). I have, therefore, added a page here for users to chip in their wish list ideas for Maven 2.1:

Re: Maven 2.1 wish list page on MAVENUSER

2007-05-14 Thread Rahul Thakur
should be using the voting mechanism (something we keep agreeing on but not executing on). Does that sound like a better alternative? On 13/05/07, Rahul Thakur [EMAIL PROTECTED] wrote: I think MavenUser wiki is a good place to gather ideas for Maven 2.1 rather than IRC (always a possibility

Releasing multi-module project that uses svn:externals

2007-06-26 Thread Rahul Thakur
Hi, I am attempting to release a multi-module project which is set up something like this in an SVN repo: Parent (pom-only) | | _ _Core (linked via svn:externals to a different SVN location) | |_ _ Webapp (linked via svn:externals to a different SVN location) Now, when I run

Re: OSGi bundles as dependencies

2007-06-27 Thread Rahul Thakur
Hi Craig, You might want to poll Apache Felix list about Maven OSGi plugin. Cheers, Rahul Craig Ching wrote: Hi Steven, Thanks for the response, I very much appreciate the conceptual information. However, being a bit new to maven, I am looking for a more practical, though obviously less

[m2] eclipse-plugin how to reference other projects in a multi-module project?

2006-03-14 Thread Rahul Thakur
Hi, I have set up a reactor/multi-module project as follows. Parent (pom project) + A + B (depends on A) + C (depends on B) + D (depends on A, C) (A,B,C,D are the modules). When I run eclipse:eclipse goal the project dependencies are not setup in project's .classpath file.

Obtaining all profiles on a project - active/merged/inactive

2006-04-07 Thread Rahul Thakur
Hi, I am coding a Mojo that can display all Profiles available to a project and corresponding status (active/inactive). I tried project.getModel().getProfiles() to obtain all profiles, but don't seem to be getting all profiles set up in an external profiles.xml. How can I get a handle to

ToolChain, MavenSession and maven-compiler-plugin

2009-03-12 Thread Rahul Thakur
Greetings, Has anyone used maven-compiler-plugin to invoke Annotation processor on Java sources? I have a use case where I need to invoke an annotation processor via the maven-compiler-plugin. I need to pass in an option to the processor (done using -A option on 'javac' or 'apt'), but it

Re: New PMC Member

2010-05-15 Thread Rahul Thakur
Congratulations, Paul! Rahul On Sat, May 15, 2010 at 3:04 AM, Brian Fox bri...@infinity.nu wrote: The Maven PMC recently voted to invite Paul Gier to join us as a member of the PMC Committee. He accepted and is now officially part of the Maven PMC. Congratulations Paul! If you'd like to

Re: Failure to deploy: Cannot connect

2013-03-14 Thread Rahul Thakur
Can you try with debug logging enabled? See if this helps: http://stackoverflow.com/questions/6263630/jschexception-algorithm-negotiation-fail Cheers, Rahul On 3/14/2013 3:35 PM, DJViking wrote: I am trying to deploy my application. Before I try to deploy to the actual server, I am using

Re: maven properties of dependencies

2013-03-14 Thread Rahul Thakur
Hi Alejandro, What version of Maven are you writing your plugin with? What's the scenario - can you please elaborate? I am looking through the current master, it seems you could do something like: DependencyNode.getDependency().getArtifact().getProperties() I hope I understood your

Re: CI Server Poll

2008-02-28 Thread Rahul Thakur
hehe... I was hinting at working towards #1; votes would follow ;-) Rahul Martin Höller wrote: On Thursday 28 February 2008 wrote Emmanuel Venisse: thx Rahul for this link. We are #2 now :) Not sure how representative this poll is: just delete your cookie and you can vote a