pom.xml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <parent>
  5. <groupId>com.usky</groupId>
  6. <artifactId>uskycloud</artifactId>
  7. <version>0.0.1</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>base-common</artifactId>
  11. <packaging>pom</packaging>
  12. <description>
  13. base-common通用模块
  14. </description>
  15. <dependencies>
  16. <dependency>
  17. <groupId>org.projectlombok</groupId>
  18. <artifactId>lombok</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.apache.commons</groupId>
  22. <artifactId>commons-lang3</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>commons-io</groupId>
  26. <artifactId>commons-io</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>commons-beanutils</groupId>
  30. <artifactId>commons-beanutils</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.google.guava</groupId>
  34. <artifactId>guava</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>junit</groupId>
  38. <artifactId>junit</artifactId>
  39. <scope>test</scope>
  40. </dependency>
  41. </dependencies>
  42. <modules>
  43. <module>ruoyi-common-log</module>
  44. <module>ruoyi-common-core</module>
  45. <module>ruoyi-common-redis</module>
  46. <module>ruoyi-common-swagger</module>
  47. <module>ruoyi-common-security</module>
  48. <module>ruoyi-common-datascope</module>
  49. <module>ruoyi-common-datasource</module>
  50. <module>common-cloud-starter</module>
  51. <module>usky-common-core</module>
  52. <module>usky-common-mvc</module>
  53. <module>usky-common-spring</module>
  54. </modules>
  55. </project>