how to stop pom downloads

2009-03-04 Thread Davis Ford
Hi, we have an internal repo here (using Archiva), and I manually deployed some jars to it. However, whenever I run a maven command it is constantly trying to check the pom against the server version. Example: Downloading:

Re: how to stop pom downloads

2009-03-04 Thread Tom Huybrechts
Did you deploy a pom too ? On Wed, Mar 4, 2009 at 11:48 PM, Davis Ford davisf...@zenoconsulting.biz wrote: Hi, we have an internal repo here (using Archiva), and I manually deployed some jars to it.  However, whenever I run a maven command it is constantly trying to check the pom against the

Re: how to stop pom downloads

2009-03-04 Thread Wendy Smoak
On Wed, Mar 4, 2009 at 3:48 PM, Davis Ford davisf...@zenoconsulting.biz wrote: Hi, we have an internal repo here (using Archiva), and I manually deployed some jars to it.  However, whenever I run a maven command it is constantly trying to check the pom against the server version. Example:

Re: how to stop pom downloads

2009-03-04 Thread Davis Ford
slaps-forehead -- I did mvn install:install-file -- can you make the install command generate a pom.xml? On Wed, Mar 4, 2009 at 5:51 PM, Wendy Smoak wsm...@gmail.com wrote: On Wed, Mar 4, 2009 at 3:48 PM, Davis Ford davisf...@zenoconsulting.biz wrote: Hi, we have an internal repo here (using

Re: how to stop pom downloads

2009-03-04 Thread Wendy Smoak
On Wed, Mar 4, 2009 at 3:56 PM, Davis Ford davisf...@zenoconsulting.biz wrote: slaps-forehead  -- I did mvn install:install-file -- can you make the install command generate a pom.xml? Install is for your _local_ repo. You need deploy:deploy-file, and yes, there's a parameter

Re: how to stop pom downloads

2009-03-04 Thread Nick Stolwijk
How did you use install:install-file to install something into Archiva? If you mean in your local repository: http://maven.apache.org/plugins/maven-install-plugin/install-file-mojo.html#generatePom Hth, Nick Stolwijk ~Java Developer~ Iprofs BV. Claus Sluterweg 125 2012 WS Haarlem

Re: how to stop pom downloads

2009-03-04 Thread David C. Hicks
Wendy Smoak wrote: On Wed, Mar 4, 2009 at 3:56 PM, Davis Ford davisf...@zenoconsulting.biz wrote: slaps-forehead -- I did mvn install:install-file -- can you make the install command generate a pom.xml? Install is for your _local_ repo. You need deploy:deploy-file, and yes,

Re: how to stop pom downloads

2009-03-04 Thread Wendy Smoak
On Wed, Mar 4, 2009 at 4:02 PM, David C. Hicks dhi...@i-hicks.org wrote: Does Archiva not have some kind of web interface from which you can do an install?  I know Nexus does.  It handles building the POM for you. Yes, it does have a web interface with a checkbox to generate the pom, so that's

Re: how to stop pom downloads

2009-03-04 Thread Davis Ford
Yes, archiva has a way to deploy through the web interface with generate pom option. I'm trying to use the weblogic-maven-plugin which requires all these silly jars from the weblogic install. I just did a manual install:install-file to my local repo to try to get it working. However, whenever I

Re: how to stop pom downloads

2009-03-04 Thread Wendy Smoak
On Wed, Mar 4, 2009 at 4:08 PM, Davis Ford davisf...@zenoconsulting.biz wrote: I have to wait a couple minutes while it hits the server to check for pom files.  I know how to fix it now.  I will deploy the jars to archiva, or else use the generatePom option for installing locally. The only

Re: how to stop pom downloads

2009-03-04 Thread Wayne Fay
The only annoying thing is that weblogic.jar is 53MB.  I tried deploying that to archiva and it just times out. There's no rule that says you can't break up a massive jar file like this into a series of jar files, and use dependencies to pull them all down and use them as needed... Wayne

Re: how to stop pom downloads

2009-03-04 Thread Davis Ford
True - although that would take me a long time. In any event, I ended up getting the 53MB weblogic.jar deployed to archiva - yay! On Wed, Mar 4, 2009 at 7:50 PM, Wayne Fay wayne...@gmail.com wrote: The only annoying thing is that weblogic.jar is 53MB.  I tried deploying that to archiva and it

Re: how to stop pom downloads

2009-03-04 Thread Barrie Treloar
On Thu, Mar 5, 2009 at 12:09 PM, Davis Ford davisf...@zenoconsulting.biz wrote: True - although that would take me a long time.  In any event, I ended up getting the 53MB weblogic.jar deployed to archiva - yay! BEWARE If you are using Weblogic 10 then you need to chase the dragons tail. As the

Re: how to stop pom downloads

2009-03-04 Thread Davis Ford
Bruce -- thanks a lot for this. I am just trying to use the plugin with 9.2, but I am hitting this issue: http://www.mail-archive.com/u...@mojo.codehaus.org/msg00503.html Is this issue one that you encountered also when trying the plugin with 10.x? I wouldn't mind having 10.x working, also.