Hi,
I was going through the
maven tutorial in apache site,
maven in 5 minutes
I created a project 'my-app' using the command:
mvn archetype:create -DgroupId=com.mycompany.app -DartifactId=my-app
I packaged it using the command :
mvn package. The result showed BUILD SUCCESSFUL.
When I try to deploy it using : mvn deploy, it throws an exception, which is given below:
The pom.xml file is like below:
I know the <distributionManagement> tag information i provided is wrong, especially the <url>. I don't know what should be value.
Can anybody help me with it?
Thanks in advance,
Teena