pom.xml 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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>smsb-orchestration-manager</artifactId>
  7. <groupId>com.inspur</groupId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>smsb-orchestration-manager-client</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.projectlombok</groupId>
  15. <artifactId>lombok</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>org.springframework.boot</groupId>
  19. <artifactId>spring-boot-starter-validation</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-json</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.google.guava</groupId>
  27. <artifactId>guava</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.alibaba.cola</groupId>
  31. <artifactId>cola-component-dto</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.alibaba.cola</groupId>
  35. <artifactId>cola-component-exception</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.baomidou</groupId>
  39. <artifactId>mybatis-plus-annotation</artifactId>
  40. <version>3.4.3.4</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>javax.xml.bind</groupId>
  44. <artifactId>jaxb-api</artifactId>
  45. <version>2.3.0-b170201.1204</version>
  46. </dependency>
  47. <!-- https://mvnrepository.com/artifact/javax.activation/activation -->
  48. <dependency>
  49. <groupId>javax.activation</groupId>
  50. <artifactId>activation</artifactId>
  51. <version>1.1</version>
  52. </dependency>
  53. <!-- https://mvnrepository.com/artifact/org.glassfish.jaxb/jaxb-runtime -->
  54. <dependency>
  55. <groupId>org.glassfish.jaxb</groupId>
  56. <artifactId>jaxb-runtime</artifactId>
  57. <version>2.3.0-b170127.1453</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>cn.hutool</groupId>
  61. <artifactId>hutool-all</artifactId>
  62. <version>5.3.2</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>io.swagger</groupId>
  66. <artifactId>swagger-annotations</artifactId>
  67. <version>1.5.19</version>
  68. <scope>compile</scope>
  69. </dependency>
  70. <!--http请求-->
  71. <dependency>
  72. <groupId>org.apache.httpcomponents</groupId>
  73. <artifactId>httpmime</artifactId>
  74. <version>4.5.12</version>
  75. </dependency>
  76. <!--xml操作-->
  77. <dependency>
  78. <groupId>dom4j</groupId>
  79. <artifactId>dom4j</artifactId>
  80. <version>1.6.1</version>
  81. </dependency>
  82. <!--xpath功能-->
  83. <dependency>
  84. <groupId>jaxen</groupId>
  85. <artifactId>jaxen</artifactId>
  86. <version>1.2.0</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>commons-io</groupId>
  90. <artifactId>commons-io</artifactId>
  91. <version>2.5</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.apache.commons</groupId>
  95. <artifactId>commons-compress</artifactId>
  96. <version>1.21</version>
  97. </dependency>
  98. </dependencies>
  99. </project>