How to add a POM dependency to Maven
POM as dependency in dependencyManagement
<dependency>
<groupId>jakarta.ws.rs</groupId>
<artifactId>all</artifactId>
<version>3.1.0</version>
</dependency>
Choose a version of jakarta.ws.rs : all to add to Maven - Latest Versions:
Version | Vulnerabilities | Updated | |
---|---|---|---|
3.1.x |
all-3.1.0
|
POM as dependency in dependencyManagement
<dependency>
<groupId>jakarta.ws.rs</groupId>
<artifactId>all</artifactId>
<version>3.1.0</version>
</dependency>
Advertisement