pom.xml 2.3 KB
Newer Older
武汉红喜's avatar
武汉红喜 已提交
1 2 3 4
<?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">
武汉红喜's avatar
武汉红喜 已提交
5

武汉红喜's avatar
武汉红喜 已提交
6 7
    <modelVersion>4.0.0</modelVersion>

武汉红喜's avatar
武汉红喜 已提交
8
    <groupId>org.hongxi</groupId>
武汉红喜's avatar
武汉红喜 已提交
9
    <artifactId>whatsmars-spring-boot-samples</artifactId>
武汉红喜's avatar
武汉红喜 已提交
10
    <version>1.0-SNAPSHOT</version>
武汉红喜's avatar
武汉红喜 已提交
11 12 13
    <packaging>pom</packaging>
    <name>${project.artifactId}</name>
    <description>Spring Boot Samples</description>
武汉红喜's avatar
武汉红喜 已提交
14 15 16 17 18 19 20 21

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.0.6.RELEASE</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>

武汉红喜's avatar
武汉红喜 已提交
22
    <modules>
武汉红喜's avatar
武汉红喜 已提交
23
        <module>whatsmars-boot-sample-aop</module>
武汉红喜's avatar
武汉红喜 已提交
24
        <module>whatsmars-boot-sample-session</module>
武汉红喜's avatar
武汉红喜 已提交
25
        <module>whatsmars-boot-sample-logback</module>
武汉红喜's avatar
武汉红喜 已提交
26
        <module>whatsmars-boot-sample-cache</module>
武汉红喜's avatar
mongodb  
武汉红喜 已提交
27
        <module>whatsmars-boot-sample-mongodb</module>
武汉红喜's avatar
武汉红喜 已提交
28
        <module>whatsmars-boot-sample-elasticsearch</module>
武汉红喜's avatar
武汉红喜 已提交
29 30
    </modules>

武汉红喜's avatar
武汉红喜 已提交
31 32 33 34 35 36 37 38 39
    <dependencies>
        <!-- Test -->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>

武汉红喜's avatar
武汉红喜 已提交
40 41 42 43 44 45 46 47
    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>
武汉红喜's avatar
武汉红喜 已提交
48

武汉红喜's avatar
武汉红喜 已提交
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
    <!--<repositories>-->
        <!--<repository>-->
            <!--<id>spring-snapshots</id>-->
            <!--<name>Spring Snapshots</name>-->
            <!--<url>https://repo.spring.io/snapshot</url>-->
            <!--<snapshots>-->
                <!--<enabled>true</enabled>-->
            <!--</snapshots>-->
        <!--</repository>-->
        <!--<repository>-->
            <!--<id>spring-milestones</id>-->
            <!--<name>Spring Milestones</name>-->
            <!--<url>https://repo.spring.io/milestone</url>-->
            <!--<snapshots>-->
                <!--<enabled>false</enabled>-->
            <!--</snapshots>-->
        <!--</repository>-->
    <!--</repositories>-->
武汉红喜's avatar
武汉红喜 已提交
67

武汉红喜's avatar
武汉红喜 已提交
68 69

</project>