pom.xml 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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-biz</artifactId>
  13. <description>
  14. biz模块
  15. </description>
  16. <dependencies>
  17. <dependency>
  18. <groupId>com.taais</groupId>
  19. <artifactId>taais-common-core</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.taais</groupId>
  23. <artifactId>taais-common-web</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.taais</groupId>
  27. <artifactId>taais-common-springdoc</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.taais</groupId>
  31. <artifactId>taais-common-excel</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.taais</groupId>
  35. <artifactId>taais-common-log</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.taais</groupId>
  39. <artifactId>taais-system</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.google.code.gson</groupId>
  43. <artifactId>gson</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.springframework</groupId>
  47. <artifactId>spring-webflux</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.bytedeco</groupId>
  51. <artifactId>javacv-platform</artifactId>
  52. <version>1.5.7</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.apache.httpcomponents</groupId>
  56. <artifactId>httpclient</artifactId>
  57. <version>4.5.14</version>
  58. </dependency>
  59. <!-- <dependency>-->
  60. <!-- <groupId>org.apache.httpcomponents</groupId>-->
  61. <!-- <artifactId>httpclient</artifactId>-->
  62. <!-- <version>4.5.14</version>-->
  63. <!-- </dependency>-->
  64. </dependencies>
  65. </project>