pom.xml 2.6 KB
Newer Older
武汉红喜's avatar
武汉红喜 已提交
1 2 3 4 5
<?xml version="1.0" encoding="UTF-8"?>
<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">
    <parent>
武汉红喜's avatar
武汉红喜 已提交
6
        <groupId>org.hongxi</groupId>
武汉红喜's avatar
武汉红喜 已提交
7 8
        <artifactId>whatsmars-parent</artifactId>
        <version>1.0-SNAPSHOT</version>
武汉红喜's avatar
武汉红喜 已提交
9 10 11 12 13 14 15 16
    </parent>
    <modelVersion>4.0.0</modelVersion>

    <artifactId>whatsmars-spring-boot-samples</artifactId>
    <packaging>pom</packaging>
    <name>${project.artifactId}</name>
    <description>Spring Boot Samples</description>
    <modules>
武汉红喜's avatar
武汉红喜 已提交
17
        <module>whatsmars-boot-sample-aop</module>
武汉红喜's avatar
武汉红喜 已提交
18
        <module>whatsmars-boot-sample-session</module>
武汉红喜's avatar
武汉红喜 已提交
19
        <module>whatsmars-boot-sample-logback</module>
武汉红喜's avatar
武汉红喜 已提交
20
        <module>whatsmars-boot-sample-cache</module>
武汉红喜's avatar
武汉红喜 已提交
21 22
    </modules>

武汉红喜's avatar
武汉红喜 已提交
23
    <!--<properties>
武汉红喜's avatar
武汉红喜 已提交
24
        <spring-boot.version>2.0.0.M7</spring-boot.version>
武汉红喜's avatar
武汉红喜 已提交
25
    </properties>-->
武汉红喜's avatar
武汉红喜 已提交
26

武汉红喜's avatar
武汉红喜 已提交
27 28 29 30 31 32 33 34 35 36 37 38
    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-dependencies</artifactId>
                <version>${spring-boot.version}</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
        </dependencies>
    </dependencyManagement>

武汉红喜's avatar
武汉红喜 已提交
39 40 41 42 43 44 45 46 47
    <dependencies>
        <!-- Test -->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>

武汉红喜's avatar
武汉红喜 已提交
48 49 50 51 52 53 54 55
    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>
武汉红喜's avatar
武汉红喜 已提交
56

武汉红喜's avatar
武汉红喜 已提交
57
    <!--<repositories>
武汉红喜's avatar
武汉红喜 已提交
58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
        <repository>
            <id>spring-repo</id>
            <name>Spring Repo</name>
            <url>http://repo.spring.io/milestone/</url>
            <releases>
                <enabled>true</enabled>
            </releases>
            <snapshots>
                <enabled>false</enabled>
            </snapshots>
        </repository>
    </repositories>
    <pluginRepositories>
        <pluginRepository>
            <id>spring-repo</id>
            <name>Spring Repo</name>
            <url>http://repo.spring.io/milestone/</url>
            <releases>
                <enabled>true</enabled>
            </releases>
            <snapshots>
                <enabled>false</enabled>
            </snapshots>
        </pluginRepository>
武汉红喜's avatar
武汉红喜 已提交
82
    </pluginRepositories>-->
武汉红喜's avatar
武汉红喜 已提交
83

武汉红喜's avatar
武汉红喜 已提交
84 85

</project>