springfox-swagger-common-2.8.0.pom 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>io.springfox</groupId>
  5. <artifactId>springfox-swagger-common</artifactId>
  6. <version>2.8.0</version>
  7. <dependencies>
  8. <dependency>
  9. <groupId>io.swagger</groupId>
  10. <artifactId>swagger-annotations</artifactId>
  11. <version>1.5.14</version>
  12. <scope>compile</scope>
  13. </dependency>
  14. <dependency>
  15. <groupId>io.swagger</groupId>
  16. <artifactId>swagger-models</artifactId>
  17. <version>1.5.14</version>
  18. <scope>compile</scope>
  19. </dependency>
  20. <dependency>
  21. <groupId>io.springfox</groupId>
  22. <artifactId>springfox-spi</artifactId>
  23. <version>2.8.0</version>
  24. <scope>compile</scope>
  25. </dependency>
  26. <dependency>
  27. <groupId>io.springfox</groupId>
  28. <artifactId>springfox-schema</artifactId>
  29. <version>2.8.0</version>
  30. <scope>compile</scope>
  31. </dependency>
  32. <dependency>
  33. <groupId>io.springfox</groupId>
  34. <artifactId>springfox-spring-web</artifactId>
  35. <version>2.8.0</version>
  36. <scope>compile</scope>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.google.guava</groupId>
  40. <artifactId>guava</artifactId>
  41. <version>20.0</version>
  42. <scope>compile</scope>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.fasterxml</groupId>
  46. <artifactId>classmate</artifactId>
  47. <version>1.3.4</version>
  48. <scope>compile</scope>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.slf4j</groupId>
  52. <artifactId>slf4j-api</artifactId>
  53. <version>1.7.24</version>
  54. <scope>compile</scope>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.springframework.plugin</groupId>
  58. <artifactId>spring-plugin-core</artifactId>
  59. <version>1.2.0.RELEASE</version>
  60. <scope>compile</scope>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.springframework.plugin</groupId>
  64. <artifactId>spring-plugin-metadata</artifactId>
  65. <version>1.2.0.RELEASE</version>
  66. <scope>compile</scope>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.springframework</groupId>
  70. <artifactId>spring-core</artifactId>
  71. <version>4.3.9.RELEASE</version>
  72. <scope>provided</scope>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.springframework</groupId>
  76. <artifactId>spring-web</artifactId>
  77. <version>4.3.9.RELEASE</version>
  78. <scope>provided</scope>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.springframework</groupId>
  82. <artifactId>spring-webmvc</artifactId>
  83. <version>4.3.9.RELEASE</version>
  84. <scope>provided</scope>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.springframework</groupId>
  88. <artifactId>spring-context</artifactId>
  89. <version>4.3.9.RELEASE</version>
  90. <scope>provided</scope>
  91. </dependency>
  92. <dependency>
  93. <groupId>javax.servlet</groupId>
  94. <artifactId>javax.servlet-api</artifactId>
  95. <version>3.1.0</version>
  96. <scope>provided</scope>
  97. </dependency>
  98. <dependency>
  99. <groupId>com.fasterxml.jackson.core</groupId>
  100. <artifactId>jackson-core</artifactId>
  101. <version>2.9.3</version>
  102. <scope>provided</scope>
  103. </dependency>
  104. <dependency>
  105. <groupId>com.fasterxml.jackson.core</groupId>
  106. <artifactId>jackson-databind</artifactId>
  107. <version>2.9.3</version>
  108. <scope>provided</scope>
  109. </dependency>
  110. <dependency>
  111. <groupId>joda-time</groupId>
  112. <artifactId>joda-time</artifactId>
  113. <version>2.9.9</version>
  114. <scope>provided</scope>
  115. </dependency>
  116. </dependencies>
  117. <name>springfox-swagger-common</name>
  118. <url>https://github.com/springfox/springfox</url>
  119. <description>JSON API documentation for spring based applications</description>
  120. <scm>
  121. <url>scm:git:git@github.com:springfox/springfox.git</url>
  122. <connection>scm:git:git@github.com:springfox/springfox.git</connection>
  123. <developerConnection>scm:git:git@github.com:springfox/springfox.git</developerConnection>
  124. </scm>
  125. <licenses>
  126. <license>
  127. <name>The Apache Software License, Version 2.0</name>
  128. <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
  129. <distribution>repo</distribution>
  130. </license>
  131. </licenses>
  132. <developers>
  133. <developer>
  134. <id>martypitt@me.com</id>
  135. <name>Marty Pitt</name>
  136. <organization>The Mango Factory</organization>
  137. <email>martypitt@me.com</email>
  138. </developer>
  139. <developer>
  140. <id>dilipkrish</id>
  141. <name>Dilip Krishnan</name>
  142. <organization>The Container Store</organization>
  143. <email>dilipkrish_subscriptions@yahoo.com</email>
  144. </developer>
  145. <developer>
  146. <id>adrianbk</id>
  147. <name>Adrian Kelly</name>
  148. <organization>DiUS Computing</organization>
  149. <email>adrianbkelly+swagger@gmail.com</email>
  150. </developer>
  151. </developers>
  152. </project>