pom.xml 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>cn.superdesk.uniorder</groupId>
  7. <artifactId>superdesk-operation-center</artifactId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. </parent>
  10. <artifactId>superdesk-uniorder-openapicall</artifactId>
  11. <dependencies>
  12. <!-- 标记 -->
  13. <dependency>
  14. <groupId>org.springframework.boot</groupId>
  15. <artifactId>spring-boot-starter-web</artifactId>
  16. </dependency>
  17. <!--
  18. <dependency>
  19. <groupId>org.springframework.cloud</groupId>
  20. <artifactId>spring-cloud-starter-config</artifactId>
  21. <version>2.1.0.RELEASE</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-starter-actuator</artifactId>
  26. </dependency>
  27. -->
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-test</artifactId>
  31. <version>${spring-boot.version}</version>
  32. <scope>test</scope>
  33. </dependency>
  34. <!-- 数据库 start -->
  35. <dependency>
  36. <groupId>org.mybatis.spring.boot</groupId>
  37. <artifactId>mybatis-spring-boot-starter</artifactId>
  38. <version>2.1.2</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-starter-data-jpa</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>mysql</groupId>
  46. <artifactId>mysql-connector-java</artifactId>
  47. <version>${mysql.version}</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.alibaba</groupId>
  51. <artifactId>druid</artifactId>
  52. <version>${druid.version}</version>
  53. </dependency>
  54. <!-- druid -->
  55. <dependency>
  56. <groupId>com.alibaba</groupId>
  57. <artifactId>druid-spring-boot-starter</artifactId>
  58. <version>1.1.21</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.springframework.boot</groupId>
  62. <artifactId>spring-boot-starter-test</artifactId>
  63. <scope>test</scope>
  64. </dependency>
  65. <!-- 数据库 end -->
  66. <!-- -->
  67. <dependency>
  68. <groupId>com.github.lianjiatech</groupId>
  69. <artifactId>retrofit-spring-boot-starter</artifactId>
  70. <version>2.2.14</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>com.squareup.okhttp3</groupId>
  74. <artifactId>logging-interceptor</artifactId>
  75. <version>3.14.9</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>com.squareup.okhttp3</groupId>
  79. <artifactId>okhttp</artifactId>
  80. <version>3.14.9</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>com.squareup.okio</groupId>
  84. <artifactId>okio</artifactId>
  85. <version>1.17.5</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>com.squareup.retrofit2</groupId>
  89. <artifactId>retrofit</artifactId>
  90. <version>2.9.0</version>
  91. </dependency>
  92. <dependency>
  93. <groupId>com.squareup.retrofit2</groupId>
  94. <artifactId>converter-jackson</artifactId>
  95. <version>2.9.0</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>com.github.xiaoymin</groupId>
  99. <artifactId>knife4j-spring-boot-starter</artifactId>
  100. <version>${knife4j.version}</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>cn.superdesk.uniorder</groupId>
  104. <artifactId>superdesk-uniorder-dto</artifactId>
  105. <version>${project.parent.version}</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>cn.superdesk.uniorder</groupId>
  109. <artifactId>superdesk-uniorder-openapicall-thirdpart-szhtxx-electronicInvoice-dto</artifactId>
  110. <version>${project.parent.version}</version>
  111. </dependency>
  112. <!-- <dependency>-->
  113. <!-- <groupId>cn.superdesk.uniorder</groupId>-->
  114. <!-- <artifactId>superdesk-uniorder-openapicall-thirdpart-szhtxx-electronicInvoice-dto</artifactId>-->
  115. <!-- <version>0.0.1-SNAPSHOT</version>-->
  116. <!-- <scope>compile</scope>-->
  117. <!-- </dependency>-->
  118. </dependencies>
  119. </project>