3cd520c4be67f17f614aef11a47f3d5251de8c82
[demos/httpresources] / pom.xml
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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
4         <modelVersion>4.0.0</modelVersion>
5         <parent>
6                 <groupId>org.springframework.boot</groupId>
7                 <artifactId>spring-boot-starter-parent</artifactId>
8                 <version>2.4.1</version>
9                 <relativePath/> <!-- lookup parent from repository -->
10         </parent>
11         <groupId>de.juplo.demo</groupId>
12         <artifactId>httpresources</artifactId>
13         <version>1.0.0-SNAPSHOT</version>
14         <name>HttpResources-Demo with Spring Boot</name>
15         <description>Example Application based on Spring Boot, that uses HttpResources to integrat remote-resources</description>
16
17         <properties>
18                 <java.version>11</java.version>
19         </properties>
20
21         <dependencies>
22                 <dependency>
23                         <groupId>org.springframework.boot</groupId>
24                         <artifactId>spring-boot-starter-web</artifactId>
25                 </dependency>
26                 <dependency>
27                         <groupId>de.juplo</groupId>
28                         <artifactId>http-resources</artifactId>
29                         <version>2.0.0</version>
30                 </dependency>
31                 <dependency>
32                         <groupId>org.apache.httpcomponents</groupId>
33                         <artifactId>httpclient</artifactId>
34                 </dependency>
35
36                 <dependency>
37                         <groupId>org.springframework.boot</groupId>
38                         <artifactId>spring-boot-devtools</artifactId>
39                         <scope>runtime</scope>
40                         <optional>true</optional>
41                 </dependency>
42                 <dependency>
43                         <groupId>org.springframework.boot</groupId>
44                         <artifactId>spring-boot-starter-test</artifactId>
45                         <scope>test</scope>
46                 </dependency>
47         </dependencies>
48
49         <build>
50                 <plugins>
51                         <plugin>
52                                 <groupId>org.springframework.boot</groupId>
53                                 <artifactId>spring-boot-maven-plugin</artifactId>
54                         </plugin>
55                 </plugins>
56         </build>
57
58 </project>