You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

75 lines
2.4 KiB
XML

<?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>
<artifactId>jpower</artifactId>
<groupId>top.jpower</groupId>
<version>2.1.9</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>jpower-core-server</artifactId>
<packaging>pom</packaging>
<modules>
<module>jpower-system</module>
<module>jpower-user</module>
<module>jpower-file</module>
</modules>
<dependencies>
<dependency>
<groupId>top.jpower</groupId>
<artifactId>common-tool</artifactId>
<version>${com.jpower.version}</version>
</dependency>
<dependency>
<groupId>top.jpower</groupId>
<artifactId>common-swagger</artifactId>
<version>${com.jpower.version}</version>
</dependency>
<dependency>
<groupId>top.jpower</groupId>
<artifactId>common-redis</artifactId>
<version>${com.jpower.version}</version>
</dependency>
<dependency>
<groupId>top.jpower</groupId>
<artifactId>common-log</artifactId>
<version>${com.jpower.version}</version>
</dependency>
<dependency>
<groupId>top.jpower</groupId>
<artifactId>common-nacos</artifactId>
<version>${com.jpower.version}</version>
</dependency>
<dependency>
<groupId>top.jpower</groupId>
<artifactId>common-deploy</artifactId>
<version>${com.jpower.version}</version>
</dependency>
</dependencies>
<build>
<resources>
<!-- 编译 src/main/java 目录下的 mapper 文件 -->
<resource>
<directory>src/main/java</directory>
<includes>
<include>**/*.xml</include>
</includes>
<filtering>false</filtering>
</resource>
<resource>
<directory>src/main/resources</directory>
</resource>
<!-- ......用于扫描 dao 文件下的mapper 文件................. end -->
</resources>
</build>
</project>