2021-02-15 13:35:32 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2021-05-13 13:16:18 -04:00
|
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2021-02-24 12:34:42 -05:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2021-05-13 13:16:18 -04:00
|
|
|
<groupId>com.baeldung.boot</groupId>
|
|
|
|
<artifactId>spring-boot-jersey</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
2021-02-15 13:35:32 -05:00
|
|
|
|
2021-02-24 12:34:42 -05:00
|
|
|
<parent>
|
2021-08-15 10:41:09 -04:00
|
|
|
<groupId>com.baeldung.spring-boot-modules</groupId>
|
|
|
|
<artifactId>spring-boot-mvc-jersey</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
2021-02-24 12:34:42 -05:00
|
|
|
</parent>
|
2021-02-15 13:35:32 -05:00
|
|
|
|
2021-02-24 12:34:42 -05:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-jersey</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2021-02-15 13:35:32 -05:00
|
|
|
|
2021-02-24 12:34:42 -05:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2021-05-13 13:16:18 -04:00
|
|
|
|
|
|
|
</project>
|