pom.xml 2.2 KB
Newer Older
X
xiongchun 已提交
1 2 3 4 5 6 7 8
<?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">
    <modelVersion>4.0.0</modelVersion>

    <parent>
        <groupId>com.gitee.pulanos.pangu</groupId>
9
        <artifactId>pangu-parent</artifactId>
10
        <version>5.0.7</version>
X
xiongchun 已提交
11 12 13 14 15 16 17 18 19 20 21 22 23
        <relativePath/>
    </parent>

    <groupId>com.gitee.pulanos.pangu</groupId>
    <artifactId>pangu-examples-dubbo-api</artifactId>
    <packaging>jar</packaging>
    <version>1.0.0</version>

    <dependencies>
        <dependency>
            <groupId>com.baomidou</groupId>
            <artifactId>mybatis-plus-annotation</artifactId>
            <version>${mybatis-plus.version}</version>
24
            <scope>provided</scope>
X
xiongchun 已提交
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>${maven-compiler-plugin.version}</version>
                <configuration>
                    <source>1.8</source>
                    <target>1.8</target>
                </configuration>
            </plugin>
            <plugin>
                <groupId>com.gitee.pulanos.pangu</groupId>
41
                <artifactId>pangu-generator-maven-plugin</artifactId>
42
                <version>5.0.7</version>
X
xiongchun 已提交
43
                <configuration>
X
xiongchun 已提交
44
                    <url>jdbc:mysql://127.0.0.1:3306/pangu-examples</url>
X
xiongchun 已提交
45 46 47 48 49 50 51 52 53 54 55 56 57
                    <user>root</user>
                    <password>root123456</password>
                    <tables>user</tables>
                    <author>普蓝开源社区</author>
                    <!-- 可以使用绝对路径 -->
                    <entityFilePath>${project.basedir}/src/main/java/com/gitee/pulanos/pangu/showcases/dubbo/api/entity</entityFilePath>
                    <entityPackageName>com.gitee.pulanos.pangu.showcases.dubbo.api.entity</entityPackageName>
                </configuration>
            </plugin>
        </plugins>
    </build>

</project>