Hi ,
I am in process of implementing continuous integration. I amUsing GIT repository to manage source code.I've created a project using apache maven . In POM.xml file I've included distribution management tag and specified the path to remote repository where I want to store my builds generated by maven.
<distributionManagement> <repository> <id>GIT</id> <name>GIT repository</name> <url>https://github.com/sameerchandekar/deploy.git</url> </repository> </distributionManagement>
now when I execute the deploy goal i get following error
INFO] --- maven-deploy-plugin:2.7:deploy (default-deploy) @ KEDB ---Downloading: https://github.com/sameerchandekar/deploy.git/com/kedb/KEDB/0.0.1-SNAPSHOT/maven-metadata.xmlUploading: https://github.com/sameerchandekar/deploy.git/com/kedb/KEDB/0.0.1-SNAPSHOT/KEDB-0.0.1-20141005.131802-1.warUploading: https://github.com/sameerchandekar/deploy.git/com/kedb/KEDB/0.0.1-SNAPSHOT/KEDB-0.0.1-20141005.131802-1.pom[INFO]
I am in process of implementing continuous integration. I amUsing GIT repository to manage source code.I've created a project using apache maven . In POM.xml file I've included distribution management tag and specified the path to remote repository where I want to store my builds generated by maven.
<distributionManagement> <repository> <id>GIT</id> <name>GIT repository</name> <url>https://github.com/sameerchandekar/deploy.git</url> </repository> </distributionManagement>
now when I execute the deploy goal i get following error
INFO] --- maven-deploy-plugin:2.7:deploy (default-deploy) @ KEDB ---Downloading: https://github.com/sameerchandekar/deploy.git/com/kedb/KEDB/0.0.1-SNAPSHOT/maven-metadata.xmlUploading: https://github.com/sameerchandekar/deploy.git/com/kedb/KEDB/0.0.1-SNAPSHOT/KEDB-0.0.1-20141005.131802-1.warUploading: https://github.com/sameerchandekar/deploy.git/com/kedb/KEDB/0.0.1-SNAPSHOT/KEDB-0.0.1-20141005.131802-1.pom[INFO]