4
Co to jest pluginManagement w pom.xml Maven?
To jest fragment mojego pliku pom. .... <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> </execution> </executions> </plugin> </plugins> ... Używam go z powodzeniem z poleceniem mvn install Ale kiedy próbuję zawrzeć go w tagu „pluginManagement”, maven-dependency-pluginprzestaje działać, kiedy uruchamiam installcel. Dlaczego znacznik „pluginManagement” …