pom.xml 3.14 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
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-security</artifactId>
        </dependency>
39 40 41
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-webflux</artifactId>
42
        </dependency>
43 44
        <dependency>
            <groupId>de.codecentric</groupId>
45
            <artifactId>spring-boot-admin-starter-client</artifactId>
46
        </dependency>
Johannes Edmeier committed
47
        <!-- Test -->
48 49
        <dependency>
            <groupId>org.springframework.boot</groupId>
50 51
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
52
        </dependency>
53 54
        <dependency>
            <groupId>org.springframework.boot</groupId>
Johannes Edmeier committed
55 56
            <artifactId>spring-boot-devtools</artifactId>
            <optional>true</optional>
57
        </dependency>
58 59 60 61 62 63 64 65 66 67 68
    </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>
69
                            <goal>build-info</goal>
70 71 72 73 74
                        </goals>
                    </execution>
                </executions>
                <configuration>
                    <mainClass>de.codecentric.boot.admin.SpringBootAdminApplication</mainClass>
joshiste committed
75
                    <addResources>false</addResources>
76 77 78 79
                </configuration>
            </plugin>
        </plugins>
    </build>
joshiste committed
80
</project>