মাভেনের pom.xML এ প্লাগইন ম্যানেজমেন্ট কী?
এটি আমার পম ফাইলের একটি স্নিপেট। .... <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> ... কমান্ড দিয়ে আমি এটি সফলভাবে ব্যবহার করি mvn install কিন্তু, যখন আমি এটিকে "প্লাগইন ম্যানেজমেন্ট" ট্যাগের সাথে সংযুক্ত করার চেষ্টা maven-dependency-pluginকরি, installলক্ষ্যটি চালু করি …