pom.xml 2.3 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 20
    </modules>

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

武汉红喜's avatar
武汉红喜 已提交
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
    <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>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>
武汉红喜's avatar
武汉红喜 已提交
45

武汉红喜's avatar
武汉红喜 已提交
46
    <!--<repositories>
武汉红喜's avatar
武汉红喜 已提交
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
        <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
武汉红喜 已提交
71
    </pluginRepositories>-->
武汉红喜's avatar
武汉红喜 已提交
72

武汉红喜's avatar
武汉红喜 已提交
73 74

</project>