1234567891011121314151617181920212223242526272829303132333435 |
- <?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.tduck</groupId>
- <artifactId>tduck-platform</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>tduck-form</artifactId>
- <description>表单模块</description>
- <packaging>jar</packaging>
- <dependencies>
- <!-- 测试数据生成 -->
- <!-- https://github.com/yindz/common-random-->
- <dependency>
- <groupId>com.apifan.common</groupId>
- <artifactId>common-random</artifactId>
- <version>1.0.7</version>
- </dependency>
- <dependency>
- <groupId>com.tduck</groupId>
- <artifactId>tduck-common</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.tduck</groupId>
- <artifactId>tduck-storage</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
- </dependencies>
- </project>
|