Hi, i am setting up our company repositories. I have made 3 repositories (3rd party repo, snapshots repo, releases repo) . I want to make it available to the users to deploy archives to all 3 repositories.
How do i in my company.pom state this in the distributionmanagement, as it doesnt let me set 2 different repositories (3rd party and release): <distributionManagement> <repository> <id>3rdparty</id> <name>arr repo</name> <url> dav:http://linuxserver:8080/archiva/repository/3rdparty/ </url> </repository> <snapshotRepository> <uniqueVersion>false</uniqueVersion> <id>snapshots</id> <url> dav:http://linuxserver:8080/archiva/repository/snapshots/ </url> </snapshotRepository> </distributionManagement> </snapshotRepository> </distributionManagement>
