pom.xml 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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>yudao-module-pms</artifactId>
  7. <groupId>cn.iocoder.boot</groupId>
  8. <version>${revision}</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <packaging>jar</packaging>
  12. <artifactId>yudao-module-pms-biz</artifactId>
  13. <name>${project.artifactId}</name>
  14. <description>
  15. </description>
  16. <dependencies>
  17. <dependency>
  18. <groupId>cn.iocoder.boot</groupId>
  19. <artifactId>yudao-module-pms-api</artifactId>
  20. <version>${revision}</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>cn.iocoder.boot</groupId>
  24. <artifactId>yudao-module-bpm-api</artifactId>
  25. <version>${revision}</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>cn.iocoder.boot</groupId>
  29. <artifactId>yudao-module-system-api</artifactId>
  30. <version>2.4.2-jdk8-SNAPSHOT</version>
  31. </dependency>
  32. <!-- Web 相关 -->
  33. <dependency>
  34. <groupId>cn.iocoder.boot</groupId>
  35. <artifactId>yudao-spring-boot-starter-web</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>cn.iocoder.boot</groupId>
  39. <artifactId>yudao-spring-boot-starter-security</artifactId>
  40. </dependency>
  41. <!-- DB 相关 -->
  42. <dependency>
  43. <groupId>cn.iocoder.boot</groupId>
  44. <artifactId>yudao-spring-boot-starter-mybatis</artifactId>
  45. </dependency>
  46. <!-- Test 测试相关 -->
  47. <dependency>
  48. <groupId>cn.iocoder.boot</groupId>
  49. <artifactId>yudao-spring-boot-starter-test</artifactId>
  50. </dependency>
  51. <!-- 工具类相关 -->
  52. <dependency>
  53. <groupId>cn.iocoder.boot</groupId>
  54. <artifactId>yudao-spring-boot-starter-excel</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>cn.iocoder.boot</groupId>
  58. <artifactId>yudao-module-supplier-biz</artifactId>
  59. <version>2.4.1-jdk8-SNAPSHOT</version>
  60. <scope>compile</scope>
  61. </dependency>
  62. <!--TDEngine相关配置-->
  63. <!--pom.xml-->
  64. <dependency>
  65. <groupId>org.springframework.boot</groupId>
  66. <artifactId>spring-boot-starter-jdbc</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>com.taosdata.jdbc</groupId>
  70. <artifactId>taos-jdbcdriver</artifactId>
  71. <version>3.5.1</version>
  72. </dependency>
  73. <!--pom.xml-->
  74. <dependency>
  75. <groupId>com.alibaba</groupId>
  76. <artifactId>druid-spring-boot-starter</artifactId>
  77. <version>1.2.6</version>
  78. </dependency>
  79. </dependencies>
  80. </project>