|
|
|
<?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>
|
|
|
|
<groupId>com.hnac.hzims</groupId>
|
|
|
|
<artifactId>hzims-back</artifactId>
|
|
|
|
<version>4.0.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>hzims-service-api</artifactId>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
<description>微服务API集合</description>
|
|
|
|
|
|
|
|
<modules>
|
|
|
|
<module>assets-api</module>
|
|
|
|
<module>equipment-api</module>
|
|
|
|
<module>basic-api</module>
|
|
|
|
<module>safeproduct-api</module>
|
|
|
|
<module>hzims-operational-api</module>
|
|
|
|
<module>inspect-api</module>
|
|
|
|
<module>ticket-api</module>
|
|
|
|
<module>weather-api</module>
|
|
|
|
<module>common-api</module>
|
|
|
|
<module>middle-api</module>
|
|
|
|
<module>alarm-api</module>
|
|
|
|
<module>big-model-api</module>
|
|
|
|
</modules>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springblade</groupId>
|
|
|
|
<artifactId>blade-common</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springblade</groupId>
|
|
|
|
<artifactId>blade-system-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.hnac.hzims</groupId>
|
|
|
|
<artifactId>hzims-biz-common</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-starter-openfeign</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.springfox</groupId>
|
|
|
|
<artifactId>springfox-swagger2</artifactId>
|
|
|
|
<version>2.10.5</version>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>io.swagger</groupId>
|
|
|
|
<artifactId>swagger-models</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.swagger</groupId>
|
|
|
|
<artifactId>swagger-models</artifactId>
|
|
|
|
<version>1.5.22</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<skip>true</skip>
|
|
|
|
<finalName>${project.name}</finalName>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|