pom.xml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <groupId>com.tduck</groupId>
  7. <artifactId>tduck-platform</artifactId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>tduck-form</artifactId>
  12. <description>表单模块</description>
  13. <packaging>jar</packaging>
  14. <dependencies>
  15. <!-- 测试数据生成 -->
  16. <!-- https://github.com/yindz/common-random-->
  17. <dependency>
  18. <groupId>com.apifan.common</groupId>
  19. <artifactId>common-random</artifactId>
  20. <version>1.0.7</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.tduck</groupId>
  24. <artifactId>tduck-common</artifactId>
  25. <version>0.0.1-SNAPSHOT</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.tduck</groupId>
  29. <artifactId>tduck-storage</artifactId>
  30. <version>0.0.1-SNAPSHOT</version>
  31. </dependency>
  32. </dependencies>
  33. </project>