pom.xml 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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>qhiot-app</artifactId>
  7. <groupId>com.qhiot</groupId>
  8. <version>1.0.1</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <groupId>com.qhiot</groupId>
  12. <artifactId>qhiot-api</artifactId>
  13. <version>1.0.1</version>
  14. <modules>
  15. <module>qhiot-api-core</module>
  16. <module>qhiot-api-link</module>
  17. <module>qhiot-api-wechat</module>
  18. <module>qhiot-api-insight</module>
  19. <module>qhiot-api-ws</module>
  20. <module>qhiot-api-detect</module>
  21. <module>qhiot-api-datareport</module>
  22. <module>qhiot-api-gis</module>
  23. </modules>
  24. <packaging>pom</packaging>
  25. <properties>
  26. <swagger.version>1.5.16</swagger.version>
  27. </properties>
  28. <dependencies>
  29. <dependency>
  30. <groupId>com.qhiot</groupId>
  31. <artifactId>qhiot-webcore</artifactId>
  32. <version>1.0.1</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>io.springfox</groupId>
  36. <artifactId>springfox-swagger2</artifactId>
  37. <version>2.7.0</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>io.swagger</groupId>
  41. <artifactId>swagger-annotations</artifactId>
  42. <version>${swagger.version}</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>io.swagger</groupId>
  46. <artifactId>swagger-core</artifactId>
  47. <version>${swagger.version}</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>io.swagger</groupId>
  51. <artifactId>swagger-models</artifactId>
  52. <version>${swagger.version}</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.fasterxml.jackson.core</groupId>
  56. <artifactId>jackson-annotations</artifactId>
  57. <version>${jackson.version}</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>javax</groupId>
  61. <artifactId>javaee-api</artifactId>
  62. <version>7.0</version>
  63. <scope>provided</scope>
  64. </dependency>
  65. </dependencies>
  66. <distributionManagement>
  67. <repository>
  68. <id>releases</id>
  69. <url>http://116.62.67.134:9000/nexus/content/repositories/releases</url>
  70. </repository>
  71. </distributionManagement>
  72. </project>