pom.xml 1.6 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
    <parent>
6 7
        <groupId>org.hongxi</groupId>
        <artifactId>whatsmars-parent</artifactId>
武汉红喜's avatar
武汉红喜 已提交
8
        <version>Rocket.S6</version>
武汉红喜's avatar
武汉红喜 已提交
9
    </parent>
武汉红喜's avatar
武汉红喜 已提交
10
    <modelVersion>4.0.0</modelVersion>
武汉红喜's avatar
武汉红喜 已提交
11

武汉红喜's avatar
武汉红喜 已提交
12 13 14 15 16 17
    <groupId>org.hongxi</groupId>
    <artifactId>whatsmars-spring-boot-samples</artifactId>
    <packaging>pom</packaging>
    <name>${project.artifactId}</name>
    <description>Spring Boot Samples</description>

武汉红喜's avatar
武汉红喜 已提交
18
    <modules>
武汉红喜's avatar
武汉红喜 已提交
19
        <module>whatsmars-boot-sample-aop</module>
武汉红喜's avatar
武汉红喜 已提交
20
        <module>whatsmars-boot-sample-session</module>
武汉红喜's avatar
武汉红喜 已提交
21
        <module>whatsmars-boot-sample-logback</module>
武汉红喜's avatar
武汉红喜 已提交
22
        <module>whatsmars-boot-sample-cache</module>
武汉红喜's avatar
mongodb  
武汉红喜 已提交
23
        <module>whatsmars-boot-sample-mongodb</module>
武汉红喜's avatar
redis  
武汉红喜 已提交
24
        <module>whatsmars-boot-sample-redis</module>
武汉红喜's avatar
武汉红喜 已提交
25
        <module>whatsmars-boot-sample-mybatis</module>
武汉红喜's avatar
武汉红喜 已提交
26 27
    </modules>

武汉红喜's avatar
武汉红喜 已提交
28 29 30 31 32 33 34 35
    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>

武汉红喜's avatar
武汉红喜 已提交
36
    <build>
武汉红喜's avatar
武汉红喜 已提交
37
        <finalName>${project.artifactId}</finalName>
武汉红喜's avatar
武汉红喜 已提交
38 39 40 41 42 43 44
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>
武汉红喜's avatar
武汉红喜 已提交
45 46 47


</project>