pom.xml 2.98 KB
Newer Older
1
<?xml version="1.0" encoding="UTF-8"?>
2
<!--
Johannes Edmeier committed
3
  ~ Copyright 2014-2018 the original author or authors.
4 5 6 7 8 9 10 11 12 13 14 15 16 17
  ~
  ~ Licensed under the Apache License, Version 2.0 (the "License");
  ~ you may not use this file except in compliance with the License.
  ~ You may obtain a copy of the License at
  ~
  ~     http://www.apache.org/licenses/LICENSE-2.0
  ~
  ~ Unless required by applicable law or agreed to in writing, software
  ~ distributed under the License is distributed on an "AS IS" BASIS,
  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  ~ See the License for the specific language governing permissions and
  ~ limitations under the License.
  -->

Dennis Schulte committed
18
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
20
    <modelVersion>4.0.0</modelVersion>
Johannes Edmeier committed
21 22 23
    <artifactId>spring-boot-admin-sample-reactive</artifactId>
    <name>Spring Boot Admin Sample Reactive</name>
    <description>Spring Boot Admin Sample Reactive</description>
24 25 26
    <parent>
        <groupId>de.codecentric</groupId>
        <artifactId>spring-boot-admin-samples</artifactId>
27
        <version>${revision}</version>
28 29 30 31 32
        <relativePath>..</relativePath>
    </parent>
    <dependencies>
        <dependency>
            <groupId>de.codecentric</groupId>
33
            <artifactId>spring-boot-admin-starter-server</artifactId>
34 35
        </dependency>
        <dependency>
36 37 38 39 40
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-security</artifactId>
        </dependency>
        <dependency>
            <groupId>de.codecentric</groupId>
41
            <artifactId>spring-boot-admin-starter-client</artifactId>
42
        </dependency>
Johannes Edmeier committed
43
        <!-- Test -->
44 45
        <dependency>
            <groupId>org.springframework.boot</groupId>
46 47
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
48
        </dependency>
49 50
        <dependency>
            <groupId>org.springframework.boot</groupId>
Johannes Edmeier committed
51 52
            <artifactId>spring-boot-devtools</artifactId>
            <optional>true</optional>
53
        </dependency>
54 55 56 57 58 59 60 61 62 63 64
    </dependencies>
    <build>
        <finalName>${project.artifactId}</finalName>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
                <executions>
                    <execution>
                        <goals>
                            <goal>repackage</goal>
65
                            <goal>build-info</goal>
66 67 68 69 70
                        </goals>
                    </execution>
                </executions>
                <configuration>
                    <mainClass>de.codecentric.boot.admin.SpringBootAdminApplication</mainClass>
joshiste committed
71
                    <addResources>false</addResources>
72 73 74 75
                </configuration>
            </plugin>
        </plugins>
    </build>
joshiste committed
76
</project>