pom.xml 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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.taais</groupId>
  7. <artifactId>taais-modules</artifactId>
  8. <version>${revision}</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <packaging>jar</packaging>
  12. <artifactId>taais-system</artifactId>
  13. <description>
  14. system系统模块
  15. </description>
  16. <dependencies>
  17. <!-- 获取系统信息 -->
  18. <dependency>
  19. <groupId>com.github.oshi</groupId>
  20. <artifactId>oshi-core</artifactId>
  21. </dependency>
  22. <!-- 通用工具-->
  23. <dependency>
  24. <groupId>com.taais</groupId>
  25. <artifactId>taais-common-core</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.taais</groupId>
  29. <artifactId>taais-common-encrypt</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.taais</groupId>
  33. <artifactId>taais-common-excel</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.taais</groupId>
  37. <artifactId>taais-common-json</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.taais</groupId>
  41. <artifactId>taais-common-log</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.taais</groupId>
  45. <artifactId>taais-common-orm</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.taais</groupId>
  49. <artifactId>taais-common-oss</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.taais</groupId>
  53. <artifactId>taais-common-redis</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>com.taais</groupId>
  57. <artifactId>taais-common-security</artifactId>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.taais</groupId>
  61. <artifactId>taais-common-springdoc</artifactId>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.taais</groupId>
  65. <artifactId>taais-common-tenant</artifactId>
  66. </dependency>
  67. <dependency>
  68. <groupId>com.taais</groupId>
  69. <artifactId>taais-common-web</artifactId>
  70. </dependency>
  71. <dependency>
  72. <groupId>com.taais</groupId>
  73. <artifactId>taais-common-websocket</artifactId>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.springframework.boot</groupId>
  77. <artifactId>spring-boot-starter-test</artifactId>
  78. <scope>test</scope>
  79. </dependency>
  80. </dependencies>
  81. </project>