I'm using bamboo and we've started using branches now but we're having issues around the version control.
I'd like branch builds to be separate from release builds when pushed to nexus as I build a branch and if someone builds master later there is a naming clash.
Can someone guide me in resolving this? Or I need to post some other code I can.
Thanks for help
my pom is
<artifactId>sys-service</artifactId>
<version>1.0.18-SNAPSHOT</version>
<distributionManagement>
<repository>
<id>nexus</id>
<name>Internal Releases</name>
<url>https://nexus.com/repository/release/</url>
</repository>
<snapshotRepository>
<id>nexus</id>
<name>Nexus Snapshots</name>
<url>https://nexus.com/repository/snapshot/</url>
</snapshotRepository>
</distributionManagement>
<pluginRepositories>
<pluginRepository>
<id>nexus</id>
<name>mule-repo</name>
<layout>default</layout>
<url>https://nexus.com/repository/mule-repo/</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>