I have a shared pom which uses the spring api.
pom.xml :
<project>
<groupId>com.spring</groupId>
<artifactId>spring</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>pom</packaging>
<modelVersion>4.0.0</modelVersion>
<profiles>
<profile>
<id>profile</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<distributionManagement>
<snapshotRepository>
<id>nexus-snapshot</id>
<url>https://mynexusrepo</url>
</snapshotRepository>
</distributionManagement>
</profile>
</profiles>
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-aop</artifactId>
<version>3.0.6.RELEASE</version>
</dependency>
</dependencies>
</project>
When I try to upload the pom file to the snapshot nexus repository I receive the error :
ReasonPhrase:Forbidden. -
I have uploaded other pom files but they were jar's - <packaging>jar</packaging>
where here I am uploading a pom - <packaging>pom</packaging>
How can I upload a shared pom to Nexus so that other projects can reference it? Is this standard practice ? Pom file is shortened, most of dependencies have been removed.