> For those new to Maven (like me), can anyone explain what this plugin > does? From the website, it says 'allow user to upload artifacts to > remote repository'.
It's what uploads your releases to the web server so others (perhaps inside your company) can download the releases automatically with Maven. > Does it allows user to upload files (project documents, etc) and it will > appear as a link in the generated website (with some magic thrown in)? That's maven site:deploy which at this point is the only goal not using the artifact plugin. > This is a feature I was looking for in Maven but doesn't seem to find > it. It seem to me maven can only be administer by a single user who is > allowed to upload files, generate site, build project, etc. No, anyone with access to the web server can do this. > How does maven help in a multiple developers projects (esp J2EE)? Lots of ways - but that's beyond this email :) > Does everyone need to have their own maven script (thats the case of > using ANT in our project)? No, the maven.xml is meant to go along with project. In many cases it isn't even necessary - the defaults are enough. - Brett --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
