|
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 | | - <groupId>de.codecentric</groupId> |
5 | | - <artifactId>spring-boot-admin-sample-war</artifactId> |
6 | | - <version>1.3.0-SNAPSHOT</version> |
7 | | - <packaging>war</packaging> |
8 | | - <parent> |
9 | | - <groupId>de.codecentric</groupId> |
10 | | - <artifactId>spring-boot-admin-samples</artifactId> |
11 | | - <version>1.3.0-SNAPSHOT</version> |
12 | | - <relativePath>..</relativePath> |
13 | | - </parent> |
14 | | - <dependencies> |
15 | | - <dependency> |
16 | | - <groupId>org.springframework.boot</groupId> |
17 | | - <artifactId>spring-boot-starter-tomcat</artifactId> |
18 | | - <scope>provided</scope> |
19 | | - </dependency> |
20 | | - <dependency> |
21 | | - <groupId>de.codecentric</groupId> |
22 | | - <artifactId>spring-boot-admin-server</artifactId> |
23 | | - </dependency> |
24 | | - <dependency> |
25 | | - <groupId>de.codecentric</groupId> |
26 | | - <artifactId>spring-boot-admin-server-ui</artifactId> |
27 | | - </dependency> |
28 | | - <!-- FIX for missing dependency --> |
29 | | - <dependency> |
30 | | - <groupId>com.googlecode.json-simple</groupId> |
31 | | - <artifactId>json-simple</artifactId> |
32 | | - <version>1.1.1</version> |
33 | | - </dependency> |
34 | | - </dependencies> |
35 | | - <build> |
36 | | - <finalName>${project.artifactId}</finalName> |
37 | | - <plugins> |
38 | | - <plugin> |
39 | | - <groupId>org.springframework.boot</groupId> |
40 | | - <artifactId>spring-boot-maven-plugin</artifactId> |
41 | | - <executions> |
42 | | - <execution> |
43 | | - <goals> |
44 | | - <goal>repackage</goal> |
45 | | - </goals> |
46 | | - </execution> |
47 | | - </executions> |
48 | | - <configuration> |
49 | | - <addResources>false</addResources> |
50 | | - </configuration> |
51 | | - </plugin> |
52 | | - <plugin> |
53 | | - <groupId>org.apache.maven.plugins</groupId> |
54 | | - <artifactId>maven-eclipse-plugin</artifactId> |
55 | | - <configuration> |
56 | | - <wtpversion>2.0</wtpversion> |
57 | | - <jeeversion>6.0</jeeversion> |
58 | | - </configuration> |
59 | | - </plugin> |
60 | | - </plugins> |
61 | | - </build> |
| 1 | +<?xml version="1.0"?> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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 | + <groupId>de.codecentric</groupId> |
| 5 | + <artifactId>spring-boot-admin-sample-war</artifactId> |
| 6 | + <version>1.2.4-SNAPSHOT</version> |
| 7 | + <packaging>war</packaging> |
| 8 | + <parent> |
| 9 | + <groupId>de.codecentric</groupId> |
| 10 | + <artifactId>spring-boot-admin-samples</artifactId> |
| 11 | + <version>1.2.4-SNAPSHOT</version> |
| 12 | + <relativePath>..</relativePath> |
| 13 | + </parent> |
| 14 | + <dependencies> |
| 15 | + <dependency> |
| 16 | + <groupId>org.springframework.boot</groupId> |
| 17 | + <artifactId>spring-boot-starter-tomcat</artifactId> |
| 18 | + <scope>provided</scope> |
| 19 | + </dependency> |
| 20 | + <dependency> |
| 21 | + <groupId>de.codecentric</groupId> |
| 22 | + <artifactId>spring-boot-admin-server</artifactId> |
| 23 | + </dependency> |
| 24 | + <dependency> |
| 25 | + <groupId>de.codecentric</groupId> |
| 26 | + <artifactId>spring-boot-admin-server-ui</artifactId> |
| 27 | + </dependency> |
| 28 | + </dependencies> |
| 29 | + <build> |
| 30 | + <finalName>${project.artifactId}</finalName> |
| 31 | + <plugins> |
| 32 | + <plugin> |
| 33 | + <groupId>org.springframework.boot</groupId> |
| 34 | + <artifactId>spring-boot-maven-plugin</artifactId> |
| 35 | + <executions> |
| 36 | + <execution> |
| 37 | + <goals> |
| 38 | + <goal>repackage</goal> |
| 39 | + </goals> |
| 40 | + </execution> |
| 41 | + </executions> |
| 42 | + <configuration> |
| 43 | + <addResources>false</addResources> |
| 44 | + </configuration> |
| 45 | + </plugin> |
| 46 | + <plugin> |
| 47 | + <groupId>org.apache.maven.plugins</groupId> |
| 48 | + <artifactId>maven-eclipse-plugin</artifactId> |
| 49 | + <configuration> |
| 50 | + <wtpversion>2.0</wtpversion> |
| 51 | + <jeeversion>6.0</jeeversion> |
| 52 | + </configuration> |
| 53 | + </plugin> |
| 54 | + </plugins> |
| 55 | + </build> |
62 | 56 | </project> |
0 commit comments