2022-06-20 16:26:51 +08:00
|
|
|
<?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>ym-pass</artifactId>
|
|
|
|
<groupId>com.cnbm</groupId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<artifactId>ym-gateway</artifactId>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<maven.compiler.source>8</maven.compiler.source>
|
|
|
|
<maven.compiler.target>8</maven.compiler.target>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.cnbm</groupId>
|
|
|
|
<artifactId>ym-common</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.cnbm</groupId>
|
|
|
|
<artifactId>ym-admin</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.cnbm</groupId>
|
2022-06-22 10:23:56 +08:00
|
|
|
<artifactId>ym-baisc</artifactId>
|
2022-06-20 16:26:51 +08:00
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
</dependency>
|
2022-07-04 08:32:21 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.cnbm</groupId>
|
|
|
|
<artifactId>ym-influx</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
</dependency>
|
2022-07-13 16:41:43 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.cnbm</groupId>
|
|
|
|
<artifactId>ym-quality-planning</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
</dependency>
|
2022-07-20 15:33:30 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.cnbm</groupId>
|
|
|
|
<artifactId>ym-process-inspection</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- <dependency>-->
|
2022-07-04 08:32:21 +08:00
|
|
|
<!-- <groupId>org.springframework.boot</groupId>-->
|
|
|
|
<!-- <artifactId>spring-boot-actuator-autoconfigure</artifactId>-->
|
|
|
|
<!-- <version>2.7.0</version>-->
|
|
|
|
<!-- <optional>true</optional>-->
|
|
|
|
<!-- <exclusions>-->
|
|
|
|
<!-- <exclusion>-->
|
|
|
|
<!-- <groupId>com.fasterxml.jackson.core</groupId>-->
|
|
|
|
<!-- <artifactId>jackson-databind</artifactId>-->
|
|
|
|
<!-- </exclusion>-->
|
|
|
|
<!-- </exclusions>-->
|
|
|
|
<!-- </dependency>-->
|
|
|
|
|
|
|
|
|
|
|
|
|
2022-06-24 10:27:11 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.cnbm</groupId>
|
|
|
|
<artifactId>ym-schedule-task</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
</dependency>
|
2022-06-21 13:40:35 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.springfox</groupId>
|
|
|
|
<artifactId>springfox-boot-starter</artifactId>
|
|
|
|
<version>3.0.0</version>
|
2022-06-21 14:35:50 +08:00
|
|
|
<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.21</version>
|
2022-06-21 13:40:35 +08:00
|
|
|
</dependency>
|
2022-06-20 16:26:51 +08:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|