pom.xml 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>railway</artifactId>
  7. <groupId>com.railway</groupId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>railway-system</artifactId>
  12. <description>system系统模块</description>
  13. <dependencies>
  14. <!-- 通用工具-->
  15. <dependency>
  16. <groupId>com.railway</groupId>
  17. <artifactId>railway-common</artifactId>
  18. </dependency>
  19. <!-- lombok -->
  20. <dependency>
  21. <groupId>org.projectlombok</groupId>
  22. <artifactId>lombok</artifactId>
  23. </dependency>
  24. <!-- 文件上传工具类 -->
  25. <dependency>
  26. <groupId>commons-fileupload</groupId>
  27. <artifactId>commons-fileupload</artifactId>
  28. </dependency>
  29. <!-- FastDFS 分布式文件系统 -->
  30. <dependency>
  31. <groupId>com.github.tobato</groupId>
  32. <artifactId>fastdfs-client</artifactId>
  33. </dependency>
  34. <!-- Minio -->
  35. <dependency>
  36. <groupId>io.minio</groupId>
  37. <artifactId>minio</artifactId>
  38. </dependency>
  39. </dependencies>
  40. </project>