Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <project>
- <groupId>groupId</groupId>
- <artifactId>artifactId</artifactId>
- <name>parent</name>
- <version>v1</version>
- <packaging>pom</packaging>
- <properties>
- <jersey-version>2.35</jersey-version>
- <lombok-version>1.18.24</lombok-version>
- </properties>
- <dependencyManagement>
- <dependency>
- <groupId>org.glassfish.jersey.core</groupId>
- <artifactId>jersey-server</artifactId>
- <version>${jersey-version}</version>
- </dependency>
- <dependency>
- <groupId>org.glassfish.jersey.core</groupId>
- <artifactId>jersey-common</artifactId>
- <version>${jersey-version}</version>
- </dependency>
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- <version>${lombok-version}</version>
- </dependency>
- </dependencyManagement>
- </project>
Advertisement
Add Comment
Please, Sign In to add comment