Files
2023-09-13 18:32:27 +08:00

41 lines
1.5 KiB
XML
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<groupId>com.krishna.framework</groupId>
<artifactId>framework-public</artifactId>
<version>4.12.2</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>framework-model</artifactId>
<dependencies>
<dependency>
<groupId>com.krishna.basic</groupId>
<artifactId>framework-core</artifactId>
</dependency>
<dependency>
<groupId>io.swagger</groupId>
<artifactId>swagger-annotations</artifactId>
</dependency>
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-annotation</artifactId>
</dependency>
</dependencies>
<build>
<resources>
<!-- 必须将constant下的源文件打包进去否则代码生成器无法正常工作 -->
<resource>
<directory>src/main/java</directory>
<includes>
<include>top/krishna/framework/model/constant/*.java</include>
</includes>
<filtering>true</filtering>
</resource>
</resources>
</build>
</project>