1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <parent>
- <artifactId>qhiot-app</artifactId>
- <groupId>com.qhiot</groupId>
- <version>1.0.1</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <groupId>com.qhiot</groupId>
- <artifactId>qhiot-api</artifactId>
- <version>1.0.1</version>
- <modules>
- <module>qhiot-api-core</module>
- <module>qhiot-api-link</module>
- <module>qhiot-api-wechat</module>
- <module>qhiot-api-insight</module>
- <module>qhiot-api-ws</module>
- <module>qhiot-api-detect</module>
- <module>qhiot-api-datareport</module>
- <module>qhiot-api-gis</module>
- </modules>
- <packaging>pom</packaging>
- <properties>
- <swagger.version>1.5.16</swagger.version>
- </properties>
- <dependencies>
- <dependency>
- <groupId>com.qhiot</groupId>
- <artifactId>qhiot-webcore</artifactId>
- <version>1.0.1</version>
- </dependency>
- <dependency>
- <groupId>io.springfox</groupId>
- <artifactId>springfox-swagger2</artifactId>
- <version>2.7.0</version>
- </dependency>
- <dependency>
- <groupId>io.swagger</groupId>
- <artifactId>swagger-annotations</artifactId>
- <version>${swagger.version}</version>
- </dependency>
- <dependency>
- <groupId>io.swagger</groupId>
- <artifactId>swagger-core</artifactId>
- <version>${swagger.version}</version>
- </dependency>
- <dependency>
- <groupId>io.swagger</groupId>
- <artifactId>swagger-models</artifactId>
- <version>${swagger.version}</version>
- </dependency>
- <dependency>
- <groupId>com.fasterxml.jackson.core</groupId>
- <artifactId>jackson-annotations</artifactId>
- <version>${jackson.version}</version>
- </dependency>
- <dependency>
- <groupId>javax</groupId>
- <artifactId>javaee-api</artifactId>
- <version>7.0</version>
- <scope>provided</scope>
- </dependency>
- </dependencies>
- <distributionManagement>
- <repository>
- <id>releases</id>
- <url>http://116.62.67.134:9000/nexus/content/repositories/releases</url>
- </repository>
- </distributionManagement>
- </project>
|