What is pluginManagement in Maven’s pom.xml?
This is a snippet of my pom file. …. <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <version>2.4</version> <executions> <execution> <phase>install</phase> <goals> <goal>copy-dependencies</goal> </goals> <configuration> …… </configuration> … Read more