|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 4 | + <modelVersion>4.0.0</modelVersion> |
| 5 | + <artifactId>spring-rest-http</artifactId> |
| 6 | + <version>0.1-SNAPSHOT</version> |
| 7 | + <name>spring-rest-http</name> |
| 8 | + <packaging>war</packaging> |
| 9 | + |
| 10 | + <parent> |
| 11 | + <groupId>com.baeldung</groupId> |
| 12 | + <artifactId>parent-boot-2</artifactId> |
| 13 | + <version>0.0.1-SNAPSHOT</version> |
| 14 | + <relativePath>../parent-boot-2</relativePath> |
| 15 | + </parent> |
| 16 | + |
| 17 | + <dependencies> |
| 18 | + |
| 19 | + <dependency> |
| 20 | + <groupId>org.springframework.boot</groupId> |
| 21 | + <artifactId>spring-boot-starter-web</artifactId> |
| 22 | + </dependency> |
| 23 | + <dependency> |
| 24 | + <groupId>org.springframework</groupId> |
| 25 | + <artifactId>spring-oxm</artifactId> |
| 26 | + </dependency> |
| 27 | + <dependency> |
| 28 | + <groupId>com.thoughtworks.xstream</groupId> |
| 29 | + <artifactId>xstream</artifactId> |
| 30 | + <version>${xstream.version}</version> |
| 31 | + </dependency> |
| 32 | + <dependency> |
| 33 | + <groupId>org.springframework.boot</groupId> |
| 34 | + <artifactId>spring-boot-starter-actuator</artifactId> |
| 35 | + </dependency> |
| 36 | + <dependency> |
| 37 | + <groupId>org.springframework.boot</groupId> |
| 38 | + <artifactId>spring-boot-devtools</artifactId> |
| 39 | + </dependency> |
| 40 | + <dependency> |
| 41 | + <groupId>org.springframework.boot</groupId> |
| 42 | + <artifactId>spring-boot-starter-test</artifactId> |
| 43 | + </dependency> |
| 44 | + |
| 45 | + </dependencies> |
| 46 | + |
| 47 | + |
| 48 | + <properties> |
| 49 | + <xstream.version>1.4.9</xstream.version> |
| 50 | + </properties> |
| 51 | + |
| 52 | +</project> |
0 commit comments