While searching the maven plugins for a goal to automatically upload a created
artifact to a repository, I ran across the maven artifact plugin.  This plugin
seems to have the necessary functionality needed for automatically uploading
artifacts, and indeed, I can accomplish what I need if I add this to my
maven.xml:

   <goal name="artifact:deploy">
     <artifact:deploy artifact="${maven.build.dir}/${maven.final.name}.jar"
type="jar" project="${pom}"/>
   </goal>

Is there any reason why such a goal isn't included in the artifact plugin to
being with?  Can we add this goal to the artifact plugin?  I will submit a
patch if people think this is a good idea.


                
_______________________________
Do you Yahoo!?
Declare Yourself - Register online to vote today!
http://vote.yahoo.com

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to