DevOps / Maven Interview questions II
What is Maven relocation?
Maven relocation identifies the projects/artifacts that are relocated or moved on the repository.
<project> <modelVersion>4.0.0</modelVersion> <groupId>bar</groupId> <artifactId>foo</artifactId> <version>1.0</version> <distributionManagement> <relocation> <groupId>org.bar</groupId> </relocation> </distributionManagement> </project>
More Related questions...