How to add a POM dependency to Maven
POM as dependency in dependencyManagement
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcomponents-parent</artifactId>
<version>13</version>
</dependency>
Choose a version of org.apache.httpcomponents : httpcomponents-parent to add to Maven - Latest Versions:
Version | Vulnerabilities | Updated | |
---|---|---|---|
13 |
httpcomponents-parent-13
|
||
12 |
httpcomponents-parent-12
|
||
11 |
httpcomponents-parent-11
|
||
10 |
httpcomponents-parent-10
|
||
9 |
httpcomponents-parent-9
|
POM as dependency in dependencyManagement
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcomponents-parent</artifactId>
<version>13</version>
</dependency>
Advertisement