I've got this in my pom:
<distributionManagement>
<repository>
<uniqueVersion>false</uniqueVersion>
<id>release</id>
<url>file:/temp/testdeploy</url>
<layout>default</layout>
</repository>
</distributionManagement>
When I execute "mvn deploy", the artifacts do get deployed to the
local directory. However, I was expecting to see something like this
in the deployed pom:
<distributionManagement>
<status>deployed</status>
</distributionManagement>
But I see the same <distributionManagement> section as the original.
The pom reference page says that "like a baby bird in a nest" the
<status> section should not be touched by human hands :) So how do I
get maven to do it?
Thanks!
Jeff Butler
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]