pom.xml 3.73 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-servlet</artifactId>
    <name>Spring Boot Admin Sample Servlet</name>
    <description>Spring Boot Admin Sample Servlet</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
        </dependency>
35 36 37 38
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-security</artifactId>
        </dependency>
39 40
        <dependency>
            <groupId>org.springframework.boot</groupId>
41
            <artifactId>spring-boot-starter-web</artifactId>
42
        </dependency>
Johannes Edmeier committed
43 44 45 46
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-mail</artifactId>
        </dependency>
47 48
        <dependency>
            <groupId>de.codecentric</groupId>
49
            <artifactId>spring-boot-admin-starter-client</artifactId>
50 51
        </dependency>
        <dependency>
52 53
            <groupId>org.springframework.session</groupId>
            <artifactId>spring-session-core</artifactId>
54
        </dependency>
55 56 57 58 59 60 61 62
        <dependency>
            <groupId>org.springframework.session</groupId>
            <artifactId>spring-session-jdbc</artifactId>
        </dependency>
        <dependency>
            <groupId>org.hsqldb</groupId>
            <artifactId>hsqldb</artifactId>
        </dependency>
Johannes Edmeier committed
63
        <!-- Test -->
64 65 66 67 68
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
Johannes Edmeier committed
69 70 71 72 73
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-devtools</artifactId>
            <optional>true</optional>
        </dependency>
74 75 76 77 78 79 80 81 82 83 84
    </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>
85
                            <goal>build-info</goal>
86 87 88 89 90
                        </goals>
                    </execution>
                </executions>
                <configuration>
                    <mainClass>de.codecentric.boot.admin.SpringBootAdminApplication</mainClass>
joshiste committed
91
                    <addResources>false</addResources>
92 93 94 95
                </configuration>
            </plugin>
        </plugins>
    </build>
joshiste committed
96
</project>