You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
84 lines
2.5 KiB
84 lines
2.5 KiB
3 months ago
|
<?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>org.springblade</groupId>
|
||
|
<artifactId>HZInfo-RIS</artifactId>
|
||
|
<version>5.1.3.RELEASE</version>
|
||
|
</parent>
|
||
|
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
||
|
<artifactId>hzinfo-ris-service-api</artifactId>
|
||
|
<name>${project.artifactId}</name>
|
||
|
<version>5.1.3.RELEASE</version>
|
||
|
|
||
|
<modules>
|
||
|
<module>dam-safety-monitor-service-api</module>
|
||
|
<module>water-quality-monitor-service-api</module>
|
||
|
<module>reservoir-baseinfo-service-api</module>
|
||
|
<module>water-rain-monitor-service-api</module>
|
||
|
<module>forecast-scheduling-service-api</module>
|
||
|
<module>engineering-management-service-api</module>
|
||
|
<module>general-dispatching-service-api</module>
|
||
|
<module>video-image-service-api</module>
|
||
|
<module>flood-defense-service-api</module>
|
||
|
<module>hzinfo-inspect-service-api</module>
|
||
|
<module>hzinfo-ris-common-service-api</module>
|
||
|
<module>hz3000-real-data-service-api</module>
|
||
|
<module>message-alarm-center-service-api</module>
|
||
|
<module>hzinfo-user-log-service-api</module>
|
||
|
</modules>
|
||
|
|
||
|
<packaging>pom</packaging>
|
||
|
|
||
|
<properties>
|
||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
</properties>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>org.springblade</groupId>
|
||
|
<artifactId>blade-common</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springblade</groupId>
|
||
|
<artifactId>blade-system-api</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>
|