pom.xml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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.apache.httpcomponents</groupId>-->
  51. <!-- <artifactId>httpclient</artifactId>-->
  52. <!-- <version>4.5.14</version>-->
  53. <!-- </dependency>-->
  54. </dependencies>
  55. </project>