What is the minimal set of information for matching dependency reference against a dependencymanagement section?
Answer Posted / Najim Ali
The minimal set of information for matching a dependency reference against a DependencyManagement section in Apache Maven includes the groupId, artifactId, and version. For example: `<dependencyManagement> <dependencies> <dependency> <groupId>com.example</groupId> <artifactId>my-project-dep</artifactId> <version>1.0.0</version> </dependency> </dependencies> </dependencyManagement>`
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers