123456789101112131415161718192021222324252627282930313233 |
- <?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>top.continew</groupId>
- <artifactId>continew-admin</artifactId>
- <version>${revision}</version>
- </parent>
- <groupId>top.continew</groupId>
- <artifactId>continew-module-coin-core</artifactId>
- <version>${revision}</version>
- <name>continew-module-coin-core</name>
- <description>continew-module-coin-core</description>
- <properties>
- <!-- 项目版本号 -->
- <revision>3.4.0</revision>
- </properties>
- <dependencies>
- <dependency>
- <groupId>top.continew</groupId>
- <artifactId>continew-common</artifactId>
- </dependency>
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>mybatis-plus-generator</artifactId>
- <version>3.5.8</version>
- </dependency>
- </dependencies>
- </project>
|