pom.xml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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. <dependency>
  13. <groupId>org.springframework.boot</groupId>
  14. <artifactId>spring-boot-starter-test</artifactId>
  15. <version>${spring-boot.version}</version>
  16. <scope>test</scope>
  17. </dependency>
  18. <!-- -->
  19. <dependency>
  20. <groupId>com.github.lianjiatech</groupId>
  21. <artifactId>retrofit-spring-boot-starter</artifactId>
  22. <version>2.2.14</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.squareup.okhttp3</groupId>
  26. <artifactId>logging-interceptor</artifactId>
  27. <version>3.14.9</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.squareup.okhttp3</groupId>
  31. <artifactId>okhttp</artifactId>
  32. <version>3.14.9</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.squareup.okio</groupId>
  36. <artifactId>okio</artifactId>
  37. <version>1.17.5</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.squareup.retrofit2</groupId>
  41. <artifactId>retrofit</artifactId>
  42. <version>2.9.0</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.squareup.retrofit2</groupId>
  46. <artifactId>converter-jackson</artifactId>
  47. <version>2.9.0</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>cn.superdesk.uniorder</groupId>
  51. <artifactId>superdesk-uniorder-dto</artifactId>
  52. <version>${project.parent.version}</version>
  53. </dependency>
  54. </dependencies>
  55. </project>