Re: Profile activation via environment?

2007-03-12 Thread ossi petz
hallo what is the command line and path you used to fire up maven? and where did you put these profiles? Christian Goetze schrieb: Why does this not work? proxy env.MAVEN_PROXY_URL proxy Maven proxy defined by environment

Re: Best place to put deployment hook

2007-03-12 Thread Emmanuel Venisse
David Leangen a écrit : Hello! I am wondering what the intended procedure is, or the best practice, or whatever, for inserting a deployment hook. Are there hooks in Continuum itself, such as "do this if build successful, do this otherwise"? Or should I be creating maven plugins for such case

Re: Projects do not get created in project group when adding modules to the POM

2007-03-12 Thread Emmanuel Venisse
Olivier Dehon a écrit : Great, sounds good. Can you tell me if the 1.1 will also include the XMLRPC methods to handle project groups? Probably, but patches are welcome ;) http://svn.apache.org/viewvc/maven/sandbox/trunk/continuum/continuum-client/ At the moment, I only seem to be able to d

Re: cron job

2007-03-12 Thread Emmanuel Venisse
0 0 0 * * ? 0 30 12 * * ? http://www.opensymphony.com/quartz/api/org/quartz/CronTrigger.html AyoContinuum a écrit : What are the cron syntax's for to run a build at midnight every day of the month, and 12:30 am every day? thanks

Re: [m2] Assembly Plugin 2.2 - fileMode behaviour

2007-03-12 Thread kalebral
I'm still stuck on this problem, I have the following in my assembly.xml file and am using maven-assembly-plugin 2.1. Tried it with 2.2 and still see the same problem. src/main/scripts/searchTestCaseEvaluator.bat 0755

Re: Add compilation date in the manifest

2007-03-12 Thread Marcos Silva Pereira
I really don't know if maven already has such property/variable, but is a quite simple write a plugin to set it in the project properties. Your plugin could have code like the snipped below: /** * @parameter default-value="${project}" * @required * @readonly */ private MavenProject project; /**

[m1] using dotuml with maven 1.1?

2007-03-12 Thread Jeff Jensen
Is anyone successfully using the SourceForge maven-plugins' dotuml plugin with m1.1? I have not successfully made it work yet...wondering if there is a version problem with 1.1. Alternatively...we want to generate diagrams with the site gen, class diagrams at minimum. Anyone have tool/plugin sug

Best place to put deployment hook

2007-03-12 Thread David Leangen
Hello! I am wondering what the intended procedure is, or the best practice, or whatever, for inserting a deployment hook. Are there hooks in Continuum itself, such as "do this if build successful, do this otherwise"? Or should I be creating maven plugins for such cases? Or, more specifically

RE: Purging depending on a given profile

2007-03-12 Thread David Leangen
Thanks, Brian, What I mean to do is clean out my local cache before my build, so I can do a clean build. Is that not what this dependency:clean-local-cache is intended for? Any ideas how I can do this ("properly")? Currenlty, I include it in the parent pom as below, but this does not work as

Re: Projects do not get created in project group when adding modules to the POM

2007-03-12 Thread Olivier Dehon
Great, sounds good. Can you tell me if the 1.1 will also include the XMLRPC methods to handle project groups? At the moment, I only seem to be able to deal with projects through the XMLRPC, and adding a project adds it to the default group. It'd be nice to be able to select the project group t

Profile activation via environment?

2007-03-12 Thread Christian Goetze
Why does this not work? proxy env.MAVEN_PROXY_URL proxy Maven proxy defined by environment ${env.MAVEN_PROXY_URL} proxy Maven proxy defined by environment ${env.MAVEN_PROX

Re: [m2] Is it possible to have application-specific properties in settings.xml?

2007-03-12 Thread Wayne Fay
Have you considered using a profiles.xml file (checked into SCM) which contains settings specific to each person's environment? Then you would use -Pmrmac which would specify the SQL server on another box, while -Pmrxp would specify a local SQL server etc. This profiles.xml file would be availabl

Re: [m2] Is it possible to have application-specific properties in settings.xml?

2007-03-12 Thread mraible
Thanks for the tip - I was able to use a profiles.xml file in my local project directory to get the behavior I wanted. Now I'm only overriding the property for a single project, and as long as I don't check it in to SVN, everyone else retains the default behavior from pom.xml. Another thing I tri

Build path generated by eclipse plug-in

2007-03-12 Thread Grzegorz Kossakowski
Hello, I would like to ask if there is any way to configure eclipse plug-in to add only direct dependencies to the project's build path? I think this is far more desired because this way IDE will tell us if we have some dependency in our code that is not specified directly in project's pom. It's

Re: [m2] Is it possible to have application-specific properties in settings.xml?

2007-03-12 Thread mraible
I've read this page quite a few times and the answer still doesn't jump out at me. If I have two Maven projects that are completely unrelated, but they use the same property name - how do I override this property's value for one project, but not for the other? In other words, I want "jdbc.url" t

Re: How to stop Maven downloading a particular jar under any circumstances

2007-03-12 Thread Rod Mclaughlin
Thanks Tamas. I have got the Proximity web app running in Tomcat and preventing the download of cglib-full with Maven Reloaded in IDEA by putting anything which thinks it needs cglib-full in $TOMCAT-USER-HOME/proximity/ext-free/storage eg. sudo mvn deploy:deploy-file -Durl=file:///var/root/pro

Re: [m2] Is it possible to have application-specific properties in settings.xml?

2007-03-12 Thread Wayne Fay
It might be useful to review this documentation to make sure you're doing it "the one true way". ;-) http://maven.apache.org/guides/introduction/introduction-to-profiles.html Wayne On 3/12/07, mraible <[EMAIL PROTECTED]> wrote: Don't worry - I am doing things "The Maven Way" with properties i

Re: [m2] Is it possible to have application-specific properties in settings.xml?

2007-03-12 Thread mraible
Don't worry - I am doing things "The Maven Way" with properties in the root pom.xml. However, for this particular application, I need to override a property in settings.xml (I'm on a Mac and need to connect to a SQL Server instance not on "localhost"). The problem is, I have another application t

Re: release:prepare fails with subversion error

2007-03-12 Thread Nick Stolwijk
I guess that at one time during release:prepare the clean phase is executed, which causes the target directory to be deleted. (Including your working copy information i.e. .svn directory) In my experience it is better to exclude the target directory from version control, as it is a working copy

Re: dependency:unpack and symlinks in tar files?

2007-03-12 Thread Steinar Bang
> "Brian E. Fox" <[EMAIL PROTECTED]>: > There is currently no configuration for symlinks. Since the dependency > plugin uses the plexus archiver/unarchiver, I'd have to see how symlinks > are supported and was configuration might be needed. File a Jira for > this and I'll take a look. Great!

cron job

2007-03-12 Thread AyoContinuum
What are the cron syntax's for to run a build at midnight every day of the month, and 12:30 am every day? thanks -- View this message in context: http://www.nabble.com/cron-job-tf3392367.html#a9443659 Sent from the Continuum - Users mailing list archive at Nabble.com.

Re: [m2] Is it possible to have application-specific properties in settings.xml?

2007-03-12 Thread Wayne Fay
You are really not encouraged to use application-specific properties in a settings.xml file, as your builds will not be portable. Instead, these kinds of properties should be placed directly in the pom (parent or children as appropriate) of the project you are working on. I use a similar process

Re: Surefire problem with "test-jar" in a reactor

2007-03-12 Thread Mykel Alvis
Any idea on the resolution of this in a released Maven? On 9/13/06, _Seb_ <[EMAIL PROTECTED]> wrote: This problem is due to some limitation in the core of maven. Here is a jira about this : http://jira.codehaus.org/browse/MNG-2398 I submitted a patch with this issue that solve the problem.

Re: Faster release:perform

2007-03-12 Thread Wayne Fay
You can probably achieve what you're looking for with 2 profiles: one that you use when when you want to do release:perform and another for all other times. I don't believe the site plugin has a skip configuration element like maven.test.skip but I've discussed adding a skip property to all plugi

Re: [m2] Preventing transitive snapshot downloading

2007-03-12 Thread Wayne Fay
A good point. Perhaps this * functionality needs some rework in 2.0.6? ;-) Wayne On 3/12/07, Tamás Cservenák <[EMAIL PROTECTED]> wrote: This puzzles me too :) ~t~ > By convention, snapshots and releases are in separate repositories. > So how is this going to work in practice? I don't hav

Re: [m2] Preventing transitive snapshot downloading

2007-03-12 Thread Tamás Cservenák
This puzzles me too :) ~t~ By convention, snapshots and releases are in separate repositories. So how is this going to work in practice? I don't have *one* repository that can proxy all other repos. - To unsubscribe, e-m

RE: Maven2 plugin for eclipse

2007-03-12 Thread Hayes, Peter
Yes, you will not have to manage the .classpath manually. Make sure to remove any entries defined in there that are now redundant based on the m2eclipse plugin's classpath management. I generally have the following in my .classpath files :

Re: [m2] Is it possible to have application-specific properties in settings.xml?

2007-03-12 Thread mraible
Since there's been no answers to this question, I'll assume the answer is "No, it's not possible to use settings.xml to have application-specific properties." Matt mraible wrote: > > I have a number of properties for database settings in my root pom.xml: > > > > org.dbunit.da

RE: Maven2 plugin for eclipse

2007-03-12 Thread Marouane Amraoui
I didn't have enabled my project maven . so If I enable it we don't need to execute eclipse:eclipse inorder to synchronize the pom dependency and .classpth -Message d'origine- De : Hayes, Peter [mailto:[EMAIL PROTECTED] Envoyé : lundi 12 mars 2007 19:22 À : Maven Users List Objet :

Faster release:perform

2007-03-12 Thread neil hart
By default release:perform does a site:deploy-site. This builds all of the reports, etc. I'd like to limit it to do just deploying the jars that are created by: - mvn jar:jar - mvn jar:test-jar - mvn source:jar - mvn source:test-jar Basically override the goals. How do I do tha

Wix

2007-03-12 Thread Libby, Cynthia
Anyone using Maven and Wix to create install packages? --- Cynthia Libby [EMAIL PROTECTED] Senior SCM Engineer 5601 Headquarters Drive Plano, TX 75024-2262 214-387-2573 x72573

RE: Maven2 plugin for eclipse

2007-03-12 Thread Hayes, Peter
Sorry, make sure that you enable the plugin on your project. You have to right-click the project and there should be a Maven2 menu. Select enable. Pete -Original Message- From: Hayes, Peter Sent: Monday, March 12, 2007 3:20 PM To: Maven Users List Subject: RE: Maven2 plugin for eclip

RE: Maven2 plugin for eclipse

2007-03-12 Thread Marouane Amraoui
Exactly :) We add in pom and we call from eclipse:eclipse using the plugin external tools fro eclipse. Thx . -Message d'origine- De : Steffen Mazanek [mailto:[EMAIL PROTECTED] Envoyé : lundi 12 mars 2007 19:01 À : Maven Users List Objet : Re: Maven2 plugin for eclipse mvn eclipse:ecl

RE: Maven2 plugin for eclipse

2007-03-12 Thread Hayes, Peter
http://m2eclipse.codehaus.org/ This plugin keeps your classpath in synch with your pom file via an Eclipse classpath container. It's very good. -Original Message- From: Marouane Amraoui [mailto:[EMAIL PROTECTED] Sent: Monday, March 12, 2007 2:05 PM To: Maven Users List Subject: Maven

Generate sources using program in same project

2007-03-12 Thread Steffen Mazanek
Hello, our project consists of multiple subprojects. One subproject implements a code generator, that takes an xml and generates java. Another subproject is called examples and consists of several subprojects (basically just the xml-files for the generator). How should I invoke the generator? How

Re: Maven2 plugin for eclipse

2007-03-12 Thread Steffen Mazanek
mvn eclipse:eclipse? http://maven.apache.org/guides/mini/guide-ide-eclipse.html Hope this helps. Steffen Marouane Amraoui schrieb: I m using Maven2 plugin for eclipse . Version plugin is : 0.0.10. I created a maven project . I added dependency using the plugin. when I add the depend

Re: stop a build from GUI in version 1.1

2007-03-12 Thread Emmanuel Venisse
with 1.0.3, kill the process that hang if it isn't done yet, restart continuum and push the build all button. Emmanuel [EMAIL PROTECTED] a écrit : so what's the way to stop the build now? I'm asking because I can't get rid of my hanging builds (see my build hangs with exception stack trace >

Re: stop a build from GUI in version 1.1

2007-03-12 Thread Emmanuel Venisse
yes, if you use the default value, but it can be configured L. J. a écrit : Thanks. We have a nightly build runs almost 2 hours every night, will it stop the nightly build automatically after 1 hour? Thanks. LJ On 3/12/07, Emmanuel Venisse <[EMAIL PROTECTED]> wrote: I don't know, but in 1.1

Re: Any Archiva download soon?

2007-03-12 Thread Wendy Smoak
On 3/12/07, Marziou, Gael <[EMAIL PROTECTED]> wrote: Thanks Thomas, it did work. I have generated the war file and deployed it on Tomcat 5.5.23 using the procedure in: http://maven.apache.org/archiva/guides/getting-started/index.html That's missing two data sources... I updated the page in sv

Maven2 plugin for eclipse

2007-03-12 Thread Marouane Amraoui
I m using Maven2 plugin for eclipse . Version plugin is : 0.0.10. I created a maven project . I added dependency using the plugin. when I add the dependency it only added in pom file and note in eclipse file .classpath this obligate me to do A double work There is a sol

Re: stop a build from GUI in version 1.1

2007-03-12 Thread L. J.
Thanks. We have a nightly build runs almost 2 hours every night, will it stop the nightly build automatically after 1 hour? Thanks. LJ On 3/12/07, Emmanuel Venisse <[EMAIL PROTECTED]> wrote: I don't know, but in 1.1 code, we actually stop automatically a build if it isn't finished after 1h.

Execution of parent POM

2007-03-12 Thread Aidan O'Donnell
Hi, I have a parent POM with modules. How do I get my parent POM to execute its install step after all of the modules have executed? Aidan _ MSN Hotmail is evolving - check out the new Windows Live Mail. http://ideas.live.co.u

Re: [M2] Site in portuguese

2007-03-12 Thread Dennis Lundberg
Roberto UserList wrote: Hi all ! What can I do in orde to generate project's site in portuguese? See the internationalization section on this page: http://maven.apache.org/guides/mini/guide-site.html Both the project-info-reports-plugin and the site-plugin has Brazilian Portuguese translati

release:prepare fails with subversion error

2007-03-12 Thread ossi petz
hallooo i am trying to get me thorugh the release steps using maven 2.0.5 and subversion. i have created several modules (pretty similar to the spring migration example from the book) abd done a checkout. within the directory of the parent pom i execute: # mvn release:prepare this fails w

RE: stop a build from GUI in version 1.1

2007-03-12 Thread Tilman.Rossmy
so what's the way to stop the build now? I'm asking because I can't get rid of my hanging builds (see my build hangs with exception stack trace > 8192 chars mail) Do I have to delete them from the database? If so, maybe you can post the sql -Original Message- From: L. J. [mailto:[EMAIL

RE: Any Archiva download soon?

2007-03-12 Thread Marziou, Gael
Thanks Thomas, it did work. I have generated the war file and deployed it on Tomcat 5.5.23 using the procedure in: http://maven.apache.org/archiva/guides/getting-started/index.html It failed with the error below. Thanks, Gael 2007-03-12 18:17:47,125 [Thread-1] INFO PlexusContainer

Re: [M2] Site

2007-03-12 Thread Dennis Lundberg
Roberto UserList wrote: Hi, all ! What can I do not to include "Project Information" in the site genarated byMaven2? See the documentation for maven-project-info-reports-plugin: http://maven.apache.org/plugins/maven-project-info-reports-plugin/index.html Where can I find a complete descripti

Re: [m2] included features with PDE-maven-plugin

2007-03-12 Thread Dan Tran
Thanks for the test files, I will take a look at the build tonight. -D On 3/12/07, Magali Helene <[EMAIL PROTECTED]> wrote: Actually, the features are not independants : a plugin of the second feature needs a plugin of the first one to compile. Magali P.S. : here is a test.zip which is an

Re: [m2] included features with PDE-maven-plugin

2007-03-12 Thread Magali Helene
Actually, the features are not independants : a plugin of the second feature needs a plugin of the first one to compile. Magali P.S. : here is a test.zip which is an example of my problem. Each of the feature repositories contains a pom.xml. The Core project is the first one. I can compile the f

archiva and classifiers

2007-03-12 Thread John J. Franey
Hi, Can I expect archiva to proxy artifacts of different classifiers? I deployed an artifact with classifier 'zip' into a managed repository. The artifact was built using assembly:attached.. Also, a regular jar artifact with the same artifactId and groupId was also deployed in the managed repo

Re: Maven PMD plugin configuration

2007-03-12 Thread Wayne Fay
I did have to figure out that the tag is invalid when used in the reporting/plugins/plugin section. I had to refer to it in the build section. Ah yes, sorry about that, you're right. I just edited the pom configuration in your email directly without actually testing it. Wayne

Re: handling missing *.pom files

2007-03-12 Thread Wayne Fay
Ideally you would ask the organization responsible for the artifact to kindly create and submit a proper pom for each of these artifacts which are missing pom files. This has the benefit of not only directly helping you and your projects but also indirectly helping everyone else who uses Maven. T

Re: [m2] weird surefire test failure while all tests succeed

2007-03-12 Thread kapadia
Has anybody figured this issue out? I'm experiencing the exact same problem and I looked at the surefire reports and did not find any failures... Also I have over 1200 unit tests so trying to isolate one is not feasible (plus I do not believe there are actually any failures). Any help would be

Re: [m2] Tools.jar & Apple

2007-03-12 Thread Ryan Cuprak
Got my stuff working. Added the repository: java.net https://maven-repository.dev.java.net/nonav/ repository legacy (deleted entries javax entries and .m2 and re-downloaded - only had to download the jsr 181 jar separately.) and the

[M2] Site in portuguese

2007-03-12 Thread Roberto UserList
Hi all ! What can I do in orde to generate project's site in portuguese? Thanks in advance for the help. Regards, Roberto.

RE: dependency:unpack and symlinks in tar files?

2007-03-12 Thread Brian E. Fox
There is currently no configuration for symlinks. Since the dependency plugin uses the plexus archiver/unarchiver, I'd have to see how symlinks are supported and was configuration might be needed. File a Jira for this and I'll take a look. Thanks, Brian -Original Message- From: news [mail

RE: Purging depending on a given profile

2007-03-12 Thread Brian E. Fox
The artifact was deleted from your local repository. That means you'll need to rebuild/install it before this will be able to resolve it. I'm not sure purging sibling artifacts is what you really mean to do. -Original Message- From: David Leangen [mailto:[EMAIL PROTECTED] Sent: Monday, Ma

Re: [m2] use mvn install inside POM.xml

2007-03-12 Thread Thorsten Heit
Hi, > Now, regarding the ant task for Maven, I have been trying "Antlib for > Maven > 2.0" [http://maven.apache.org/ant-tasks.html].. Unfortunately, this isn't > working for me. I am facing two issues with it. The following is a short snippet taken from one of my pom.xml's that works quite well

dependency:unpack and symlinks in tar files?

2007-03-12 Thread Steinar Bang
Platform: maven-2.0.4 maven-dependency-plugin 2.0-alpha-2-SNAPSHOT (the maven dependency report variant checked out from subversion) I'm trying to use dependency:unpack to download and unpack a tgz file containing shared libs and symlinks between different versions of the share

Re: [m2] two projects.. invoke install for first project from another

2007-03-12 Thread sirji
Thanks a lot Neeraj. I have resolved this issue by adding a parent pom.xml file in the directory above the other two and it is working perfectly fine. Neeraj Bisht wrote: > > use multiproject build to do your task > On 3/11/07, sirji <[EMAIL PROTECTED]> wrote: >> >> >> Hi all, >> >> I have t

Re: build hangs with exception stack trace > 8192 chars

2007-03-12 Thread Stephane Nicoll
Hi, On 3/12/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: sorry hit the send button by mistake, so one more time: I get this exception in a build Caused by: javax.jdo.JDOFatalUserException: Attempt to store value "org.apache.axis.InternalException: ...in column "EXCEPTIONSTRING" that has ma

Re: [m2] use mvn install inside POM.xml

2007-03-12 Thread sirji
Thanks alot Neeraj for your response.. :) I believe you understood my issue. Our requirement doesn't allow us to use manual procedure. :( Now, regarding the ant task for Maven, I have been trying "Antlib for Maven 2.0" [http://maven.apache.org/ant-tasks.html].. Unfortunately, this isn't working

RE: build hangs with exception stack trace > 8192 chars

2007-03-12 Thread Tilman.Rossmy
sorry hit the send button by mistake, so one more time: I get this exception in a build Caused by: javax.jdo.JDOFatalUserException: Attempt to store value "org.apache.axis.InternalException: ...in column "EXCEPTIONSTRING" that has maximum length of 8192. Please correct your data! then continuum

How to change smtp host in Continuum Maestro

2007-03-12 Thread Gunnar.Bostrom
Hi, I've tried to change the smtp host for Continuum in Maestro 1.1 but the log says that it tries to connect to localhost and not the host I set in the page for Continnum services. Any suggestion? Regards Gunnar - To unsubscri

build hangs with exception stack trace > 8192 chars

2007-03-12 Thread Tilman.Rossmy
in column "EXCEPTIONSTRING" that has maximum length of 8192. Please correct your data! Tilman Rossmy MC-TO-CPT-POA-IMD Swisscom Mobile Waldeggstrasse 51 3097 Liebefeld BE Phone: +41795932871

Re: two projects.. invoke install for first project from another

2007-03-12 Thread Neeraj Bisht
use multiproject build to do your task On 3/11/07, sirji <[EMAIL PROTECTED]> wrote: Hi all, I have two projects, first is JAR project and second is webapp project. I want to invoke the install goal for the first project from the POM file of second project and expect it to move into the Lib dir

Re: use mvn install inside POM.xml

2007-03-12 Thread Neeraj Bisht
There are two solution 1)put that jar manually in the Repository 2) or use ANT task inside the Pom.xml (use copy task of ant) On 3/12/07, Gregory Kick <[EMAIL PROTECTED]> wrote: It doesn't look like it because you can't override artifactId, groupId, file, etc. On 3/12/07, sirji <[EMAIL PROTE

[M2] Site

2007-03-12 Thread Roberto UserList
Hi, all ! What can I do not to include "Project Information" in the site genarated byMaven2? Where can I find a complete description of "site.xml" file? Thanks in advance for the help, Regards, Roberto de Castro.

Installing a jar and its source jar with deploy:deploy-file

2007-03-12 Thread Stig Inge Lea Bjørnsen
Hi! What is the correct way for deploying a jar file and its source jar with deploy:deploy-file? I am having trouble installing a jar file and its source jar into my remote repository with deploy:deploy-file. The following commands are being used for deployment of the files: mvn deploy:deploy-fi

Re: use mvn install inside POM.xml

2007-03-12 Thread Gregory Kick
It doesn't look like it because you can't override artifactId, groupId, file, etc. On 3/12/07, sirji <[EMAIL PROTECTED]> wrote: Hi all, I have project requirement where we need to install custom jar file (generated using another project) into the maven local repository using mvn install comman

use mvn install inside POM.xml

2007-03-12 Thread sirji
Hi all, I have project requirement where we need to install custom jar file (generated using another project) into the maven local repository using mvn install command. My question is: How can we run mvn install command from POM.xml? Kindly let me know if this is not possible. Thanks & regards,

Re: Any Archiva download soon?

2007-03-12 Thread Thomas Colin de Verdière
I did have the same problem, and i modified the pom of the project : 'archiva-repository-layer' : I add the dependency : org.codehaus.plexus plexus-utils And i modified the version of the dependency : org.slf4j slf4j-log4j12 1.2 Marziou, Gael a écrit :

[M2] extending profiles from parent pom -> BUG in maven-help-plugin??

2007-03-12 Thread CodingPlayer
Hi all, i just split my parent pom into two distinct poms. One containing only generic informations, like used plugins, repositories (maven, codehaus), ...), while the second one contains company specific settings (issues, developers, organization, ...) Some of the elements are needed in both p

Handling to certain kind of dependent artifacts?

2007-03-12 Thread Adrian Shum
Dear all, For example, in my company, I would like to develop a kind of lib, but apart from normal classes etc, it also includes some special resources file (e.g. in myRes/ directory under the JAR). For the app using such lib, I need to extract those special resources file, prepare it base on

mirroring polluting local repository?

2007-03-12 Thread Nigel Magnay
I have an annoying problem. I have an artifactory mirror running, and it seems to be working correctly. I have various mirrors set up, one of which is for the apache-m2-snapshots. This all works correctly, and files are getting placed in the right repositories. However In my local repo, I'm gett

handling missing *.pom files

2007-03-12 Thread Tilman.Rossmy
With a lot of libs I seem to get this kind of error: Downloading: http://repo1.maven.org/maven2/wss4j/wss4j/1.5.0/wss4j-1.5.0.pom [WARNING] Unable to get resource from repository central (http://repo1.maven.org /maven2) [ERROR] BUILD ERROR [INFO] ---

mvn 2.0.5 doesn't downlado plugin when missing ?

2007-03-12 Thread Jerome Lacoste
mvn idea:idea failed on me this morning: [INFO] [ERROR] BUILD ERROR [INFO] [INFO] The plugin 'org.apache.maven.plugins:maven-idea-plugin' does not exis