pom.xml 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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. <artifactId>base-common</artifactId>
  10. <packaging>pom</packaging>
  11. <description>
  12. base-common通用模块
  13. </description>
  14. <dependencies>
  15. <dependency>
  16. <groupId>org.projectlombok</groupId>
  17. <artifactId>lombok</artifactId>
  18. </dependency>
  19. <dependency>
  20. <groupId>org.apache.commons</groupId>
  21. <artifactId>commons-lang3</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>commons-io</groupId>
  25. <artifactId>commons-io</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>commons-beanutils</groupId>
  29. <artifactId>commons-beanutils</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.google.guava</groupId>
  33. <artifactId>guava</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>junit</groupId>
  37. <artifactId>junit</artifactId>
  38. <scope>test</scope>
  39. </dependency>
  40. </dependencies>
  41. <modules>
  42. <module>ruoyi-common-log</module>
  43. <module>ruoyi-common-core</module>
  44. <module>ruoyi-common-redis</module>
  45. <module>ruoyi-common-swagger</module>
  46. <module>ruoyi-common-security</module>
  47. <module>ruoyi-common-datascope</module>
  48. <module>ruoyi-common-datasource</module>
  49. </modules>
  50. </project>