Re: [ANN] Maven Project Info Reports Plugin 2.2 Released

2010-05-21 Thread Ravi Luthra
We've got the same problem in our enterprise pom. I just ran mvn dependency:resolve-plugins and discovered that there are many different versions of "doxia" that output: [dependency:resolve] Plugin Resolved: findbugs-maven-plugin-2.3.1.jar     Plugin Dependency Resolved: maven-reporting-impl-2.0.ja

Re: lock down plugin versions in enterprise poms?

2010-05-07 Thread Ravi Luthra
Thanks all, we know where to go from here! On Tue, May 4, 2010 at 6:03 PM, Jesse Farinacci wrote: > Hi Ravi, > > On Tue, May 4, 2010 at 7:01 PM, Ravi Luthra wrote: > > > > I've heard that locking down the plugin version is a bad practice mostly > > because

lock down plugin versions in enterprise poms?

2010-05-04 Thread Ravi Luthra
At our company we maintain a top-level enterprise pom that all projects inherit. We're considering adding versions to lock down our plugin versions. What we are trying to avoid is having our build break because of a third-party plugin upgrading on us unexpectedly. I've heard that locking down the

Re: [ANN] Maven Javadoc Plugin 2.6 Released

2009-08-03 Thread Ravi Luthra
Any word on the release date of 2.6.1, all of our builds in Hudson failed this weekend upon the release of 2.6. Thank you though for your work on this, I know its terrible to put in all the effort improving all of our lives and get bitten by it by random people like me. Thanks, Ravi On Fri, Jul 3

Re: [PLEASE TEST] Maven 2.0.10-RC11

2008-08-28 Thread Ravi Luthra
Yes it was inside Hudson. I just tested in Netbeans using external Maven, and the warnings are not there. On Thu, Aug 28, 2008 at 7:37 AM, John Casey <[EMAIL PROTECTED]> wrote: > Are you running this build in hudson, or in some sort of modified maven > environment? > > Ravi Lu

Re: [PLEASE TEST] Maven 2.0.10-RC11

2008-08-27 Thread Ravi Luthra
I don't know what this means: [WARNING] WARNING This Maven runtime contains a LifecycleExecutor component with an incomplete configuration. LifecycleExecutor class: org.apache.maven.lifecycle.LifecycleExecutorInterceptor Missing component requirement: org.apache.maven.p

Profile activation by time range?

2008-01-23 Thread Ravi Luthra
Does anyone know how to activate a profile in maven if the time is between a certain hour of the day? I'm using a CI to build during every checkin, which also deploys the code. However the build server does the entire site generation and has about 10 plugins connected to it, This makes our builds

Re: Debugging Maven in Netbeans

2007-09-25 Thread Ravi Luthra
I get the same Exception when I try to set a main class in the properties of a project. Almost all of the projects I open are not created from the archetype, but custom edited. Same configuration too 5.5.1 and latest Mevenide listed on the Mevenide 2 website. I actually upgraded from 5.5 to see if

Re: Which technology stack are you using?

2007-07-06 Thread Ravi Luthra
During the last 5 months I have been slowly transitioning us from ANT+CVS to SVN+Maven+Hudson+Proximity... One large problem was the source repo. It is all in one big com/... tree. All jars are built from this one tree. So it doesn't use the typical concept of many source trees, one per Jar sourc

Re: Hudson

2007-07-06 Thread Ravi Luthra
I use Hudson mainly because the interface is very awesome. The AJAX controls make the process very nice. Also setting up Hudson is literally automatic. Just save the war file in Tomcat's webapps directory. So easy. Software is getting easier and easier to install. I can't wait till we are back to

Maven embedder examples

2007-06-28 Thread Ravi Luthra
I want to use the Maven Embedder but I am having trouble with the online example. The dependencies I have on my project are: org.apache.maven maven-core 2.0.7 org.apache.maven maven-project 2.0.7

Re: WSDL2Java execution failed

2007-05-30 Thread Ravi Luthra
If these artifacts are already in the main remote repository you didn't even need to touch jar/pom files relating to those artifacts. You're misunderstanding something. .m2\repository\javax.activation and .m2\repository\javax.mail directories should be removed if you made them by hand. However do

Re: A beginner´s question

2007-05-15 Thread Ravi Luthra
It isn't always a bad thing to just check in changes no matter what. I mean you still benefit from Maven's versioning so if you find yourself barking up the wrong tree with a bunch of bad commits, your users will still be happy using the stable or earlier versions of your code. The nice thing abou

Re: Creating a Repository in weblogic server

2007-05-15 Thread Ravi Luthra
Here is a web application we use as our companies internal repository. It doubles as an open source cache too: http://proximity.abstracthorizon.org/ On 5/15/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: Hello, I want to create my own repository in my weblogic server like http://localhost:70

Re: Extra directory level being created by Assembly in Maven 2.0.6, as compared with 2.0.4

2007-05-11 Thread Ravi Luthra
I reported this to Mevenide and should be fixed in future versions. A work around is to lock down the assembly version you are using: ... maven-assembly-plugin 2.1 ... Maven does not require all artifact-

Embedder for normal application use?

2007-05-10 Thread Ravi Luthra
Does anyone have any code that demonstrates using the MavenEmbedder to read the classpath for /META-INF/maven/path/to/pom.xml to expand all dependencies, download if necessary and modify the classpath such that an application can run without copying Jars everywhere. In other words, I want to ke