pom.xml 2.0 KB
Newer Older
shuzheng5201314's avatar
shuzheng5201314 已提交
1 2
<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">
3 4
    <modelVersion>4.0.0</modelVersion>

shuzheng5201314's avatar
shuzheng5201314 已提交
5 6
    <parent>
        <groupId>com.zheng</groupId>
shuzheng5201314's avatar
shuzheng5201314 已提交
7
        <artifactId>zheng-cms</artifactId>
shuzheng5201314's avatar
shuzheng5201314 已提交
8 9 10
        <version>1.0.0</version>
    </parent>

shuzheng5201314's avatar
shuzheng5201314 已提交
11
    <artifactId>zheng-cms-dao</artifactId>
shuzheng5201314's avatar
shuzheng5201314 已提交
12 13
    <packaging>jar</packaging>

14
    <name>zheng-cms-dao</name>
shuzheng5201314's avatar
shuzheng5201314 已提交
15 16 17 18 19 20 21 22 23
    <url>http://www.zhangshuzheng.cn</url>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>

    <dependencies>
        <dependency>
            <groupId>com.zheng</groupId>
shuzheng5201314's avatar
shuzheng5201314 已提交
24
            <artifactId>zheng-common</artifactId>
shuzheng5201314's avatar
shuzheng5201314 已提交
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
            <version>1.0.0</version>
            <type>jar</type>
        </dependency>
    </dependencies>

    <build>
        <finalName>cms-dao</finalName>
        <resources>
            <resource>
                <directory>src/main/java</directory>
                <includes>
                    <include>**/*.xml</include>
                </includes>
                <filtering>true</filtering>
            </resource>
            <resource>
                <directory>src/main/resources</directory>
            </resource>
        </resources>
        <plugins>
            <plugin>
                <groupId>org.mybatis.generator</groupId>
                <artifactId>mybatis-generator-maven-plugin</artifactId>
                <version>1.3.2</version>
49 50 51
                <dependencies>
                    <dependency>
                        <groupId>com.zheng</groupId>
52
                        <artifactId>zheng-common</artifactId>
53 54 55
                        <version>1.0.0</version>
                    </dependency>
                </dependencies>
shuzheng5201314's avatar
shuzheng5201314 已提交
56 57 58 59 60 61 62 63
                <configuration>
                    <verbose>true</verbose>
                    <overwrite>true</overwrite>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>