|
1 | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
2 | | -xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
3 | | -<modelVersion>4.0.0</modelVersion> |
4 | | -<parent> |
5 | | -<groupId>de.codecentric</groupId> |
6 | | -<artifactId>spring-boot-admin</artifactId> |
7 | | -<version>1.5.0-SNAPSHOT</version> |
8 | | -<relativePath>..</relativePath> |
9 | | -</parent> |
10 | | -<artifactId>spring-boot-admin-server</artifactId> |
11 | | -<dependencies> |
| 2 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 3 | + <modelVersion>4.0.0</modelVersion> |
| 4 | + <parent> |
| 5 | + <groupId>de.codecentric</groupId> |
| 6 | + <artifactId>spring-boot-admin</artifactId> |
| 7 | + <version>1.5.0-SNAPSHOT</version> |
| 8 | + <relativePath>..</relativePath> |
| 9 | + </parent> |
| 10 | + <artifactId>spring-boot-admin-server</artifactId> |
| 11 | + <dependencies> |
12 | 12 | <dependency> |
13 | 13 | <groupId>org.springframework.boot</groupId> |
14 | 14 | <artifactId>spring-boot-starter-web</artifactId> |
15 | 15 | </dependency> |
16 | | -<dependency> |
17 | | -<groupId>org.springframework.boot</groupId> |
18 | | -<artifactId>spring-boot-starter-actuator</artifactId> |
19 | | -</dependency> |
20 | | -<dependency> |
21 | | -<groupId>com.fasterxml.jackson.core</groupId> |
22 | | -<artifactId>jackson-databind</artifactId> |
23 | | -</dependency> |
24 | | -<!-- Use Zuul WITHOUT archaius/Ribbon/Config Client --> |
25 | | -<dependency> |
26 | | -<groupId>com.netflix.zuul</groupId> |
27 | | -<artifactId>zuul-core</artifactId> |
28 | | -</dependency> |
29 | | -<dependency> |
30 | | -<groupId>com.netflix.hystrix</groupId> |
31 | | -<artifactId>hystrix-core</artifactId> |
32 | | -</dependency> |
33 | | -<dependency> |
34 | | -<groupId>org.springframework.cloud</groupId> |
35 | | -<artifactId>spring-cloud-netflix-core</artifactId> |
36 | | -</dependency> |
37 | | -<dependency> |
38 | | -<groupId>org.springframework.cloud</groupId> |
39 | | -<artifactId>spring-cloud-commons</artifactId> |
40 | | -</dependency> |
41 | | -<dependency> |
42 | | -<groupId>org.apache.httpcomponents</groupId> |
43 | | -<artifactId>httpclient</artifactId> |
44 | | -</dependency> |
45 | | -<!-- Optional Mail Starter for mail-notfications --> |
46 | | -<dependency> |
47 | | -<groupId>org.springframework.boot</groupId> |
48 | | -<artifactId>spring-boot-starter-mail</artifactId> |
49 | | -<optional>true</optional> |
50 | | -</dependency> |
51 | | -<!-- Optional Discovery Client --> |
52 | | -<dependency> |
53 | | -<groupId>org.springframework.cloud</groupId> |
54 | | -<artifactId>spring-cloud-starter</artifactId> |
55 | | -<optional>true</optional> |
56 | | -</dependency> |
57 | | -<!-- Optional Eureka Discovery Client --> |
58 | | -<dependency> |
59 | | -<groupId>org.springframework.cloud</groupId> |
60 | | -<artifactId>spring-cloud-starter-eureka</artifactId> |
61 | | -<optional>true</optional> |
62 | | -</dependency> |
63 | | -<!-- Optional Hazelcast-Support --> |
64 | | -<dependency> |
65 | | -<groupId>com.hazelcast</groupId> |
66 | | -<artifactId>hazelcast</artifactId> |
67 | | -<optional>true</optional> |
68 | | -</dependency> |
69 | | -<!-- Optional Configuration Processor for metadata --> |
70 | | -<dependency> |
71 | | -<groupId>org.springframework.boot</groupId> |
72 | | -<artifactId>spring-boot-configuration-processor</artifactId> |
73 | | -<optional>true</optional> |
74 | | -</dependency> |
75 | | -<!-- Test --> |
76 | | -<dependency> |
77 | | -<groupId>org.springframework.boot</groupId> |
78 | | -<artifactId>spring-boot-starter-test</artifactId> |
79 | | -<scope>test</scope> |
80 | | -</dependency> |
81 | | -<dependency> |
82 | | -<groupId>com.jayway.jsonpath</groupId> |
83 | | -<artifactId>json-path</artifactId> |
84 | | -<scope>test</scope> |
85 | | -</dependency> |
86 | | -</dependencies> |
87 | | -<build> |
88 | | -<finalName>${project.artifactId}</finalName> |
89 | | -<resources> |
90 | | -<resource> |
91 | | -<directory>src/main/resources</directory> |
92 | | -</resource> |
93 | | -<resource> |
94 | | -<directory>src/main/resources</directory> |
95 | | -<filtering>true</filtering> |
96 | | -<includes> |
97 | | -<include>application.properties</include> |
98 | | -</includes> |
99 | | -</resource> |
100 | | -</resources> |
101 | | -</build> |
| 16 | + <dependency> |
| 17 | + <groupId>org.springframework.boot</groupId> |
| 18 | + <artifactId>spring-boot-starter-actuator</artifactId> |
| 19 | + </dependency> |
| 20 | + <dependency> |
| 21 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 22 | + <artifactId>jackson-databind</artifactId> |
| 23 | + </dependency> |
| 24 | + <!-- Use Zuul WITHOUT archaius/Ribbon/Config Client --> |
| 25 | + <dependency> |
| 26 | + <groupId>com.netflix.zuul</groupId> |
| 27 | + <artifactId>zuul-core</artifactId> |
| 28 | + </dependency> |
| 29 | + <dependency> |
| 30 | + <groupId>com.netflix.hystrix</groupId> |
| 31 | + <artifactId>hystrix-core</artifactId> |
| 32 | + </dependency> |
| 33 | + <dependency> |
| 34 | + <groupId>org.springframework.cloud</groupId> |
| 35 | + <artifactId>spring-cloud-netflix-core</artifactId> |
| 36 | + </dependency> |
| 37 | + <dependency> |
| 38 | + <groupId>org.springframework.cloud</groupId> |
| 39 | + <artifactId>spring-cloud-commons</artifactId> |
| 40 | + </dependency> |
| 41 | + <dependency> |
| 42 | + <groupId>org.apache.httpcomponents</groupId> |
| 43 | + <artifactId>httpclient</artifactId> |
| 44 | + </dependency> |
| 45 | + <!-- Optional Mail Starter for mail-notfications --> |
| 46 | + <dependency> |
| 47 | + <groupId>org.springframework.boot</groupId> |
| 48 | + <artifactId>spring-boot-starter-mail</artifactId> |
| 49 | + <optional>true</optional> |
| 50 | + </dependency> |
| 51 | + <!-- Optional Discovery Client --> |
| 52 | + <dependency> |
| 53 | + <groupId>org.springframework.cloud</groupId> |
| 54 | + <artifactId>spring-cloud-starter</artifactId> |
| 55 | + <optional>true</optional> |
| 56 | + </dependency> |
| 57 | + <!-- Optional Eureka Discovery Client --> |
| 58 | + <dependency> |
| 59 | + <groupId>org.springframework.cloud</groupId> |
| 60 | + <artifactId>spring-cloud-starter-eureka</artifactId> |
| 61 | + <optional>true</optional> |
| 62 | + </dependency> |
| 63 | + <!-- Optional Hazelcast-Support --> |
| 64 | + <dependency> |
| 65 | + <groupId>com.hazelcast</groupId> |
| 66 | + <artifactId>hazelcast</artifactId> |
| 67 | + <optional>true</optional> |
| 68 | + </dependency> |
| 69 | + <!-- Optional Configuration Processor for metadata --> |
| 70 | + <dependency> |
| 71 | + <groupId>org.springframework.boot</groupId> |
| 72 | + <artifactId>spring-boot-configuration-processor</artifactId> |
| 73 | + <optional>true</optional> |
| 74 | + </dependency> |
| 75 | + <!-- Test --> |
| 76 | + <dependency> |
| 77 | + <groupId>org.springframework.boot</groupId> |
| 78 | + <artifactId>spring-boot-starter-test</artifactId> |
| 79 | + <scope>test</scope> |
| 80 | + </dependency> |
| 81 | + <dependency> |
| 82 | + <groupId>com.jayway.jsonpath</groupId> |
| 83 | + <artifactId>json-path</artifactId> |
| 84 | + <scope>test</scope> |
| 85 | + </dependency> |
| 86 | + </dependencies> |
| 87 | + <build> |
| 88 | + <finalName>${project.artifactId}</finalName> |
| 89 | + <resources> |
| 90 | + <resource> |
| 91 | + <directory>src/main/resources</directory> |
| 92 | + </resource> |
| 93 | + <resource> |
| 94 | + <directory>src/main/resources</directory> |
| 95 | + <filtering>true</filtering> |
| 96 | + <includes> |
| 97 | + <include>application.properties</include> |
| 98 | + </includes> |
| 99 | + </resource> |
| 100 | + </resources> |
| 101 | + </build> |
102 | 102 | </project> |
0 commit comments