<?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>safe-platform</artifactId>
|
<groupId>com.gkhy.safePlatfrom</groupId>
|
<version>1.0-SNAPSHOT</version>
|
</parent>
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>safePlatfrom-out-web</artifactId>
|
|
<dependencies>
|
<dependency>
|
<groupId>com.gkhy.safePlatfrom</groupId>
|
<artifactId>commons</artifactId>
|
<version>1.0-SNAPSHOT</version>
|
</dependency>
|
|
<dependency>
|
<groupId>com.gkhy.safePlatfrom</groupId>
|
<artifactId>emergency-rpc-provider</artifactId>
|
<version>1.0-SNAPSHOT</version>
|
</dependency>
|
<dependency>
|
<groupId>com.gkhy.safePlatfrom</groupId>
|
<artifactId>emergency-service</artifactId>
|
<version>1.0-SNAPSHOT</version>
|
</dependency>
|
<dependency>
|
<groupId>com.gkhy.safePlatfrom</groupId>
|
<artifactId>goal-manage-service</artifactId>
|
<version>1.0-SNAPSHOT</version>
|
</dependency>
|
<dependency>
|
<groupId>com.gkhy.safePlatfrom</groupId>
|
<artifactId>goal-manage-rpc-provider</artifactId>
|
<version>1.0-SNAPSHOT</version>
|
</dependency>
|
<!-- <dependency>-->
|
<!-- <groupId>com.gkhy.safePlatfrom</groupId>-->
|
<!-- <artifactId>equipment</artifactId>-->
|
<!-- <version>1.0-SNAPSHOT</version>-->
|
<!-- </dependency>-->
|
<dependency>
|
<groupId>com.gkhy.safePlatfrom</groupId>
|
<artifactId>equipment-service</artifactId>
|
<version>1.0-SNAPSHOT</version>
|
</dependency>
|
<dependency>
|
<groupId>com.gkhy.safePlatfrom</groupId>
|
<artifactId>equipment-rpc-provider</artifactId>
|
<version>1.0-SNAPSHOT</version>
|
</dependency>
|
<dependency>
|
<groupId>com.gkhy.safePlatfrom</groupId>
|
<artifactId>incident-manage-service</artifactId>
|
<version>1.0-SNAPSHOT</version>
|
</dependency>
|
<dependency>
|
<groupId>com.gkhy.safePlatfrom</groupId>
|
<artifactId>incident-manage-rpc-provider</artifactId>
|
<version>1.0-SNAPSHOT</version>
|
</dependency>
|
<dependency>
|
<groupId>org.aspectj</groupId>
|
<artifactId>aspectjweaver</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>com.alibaba.cloud</groupId>
|
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
|
<version>2021.0.1.0</version>
|
</dependency>
|
<dependency>
|
<groupId>com.alibaba.cloud</groupId>
|
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.projectlombok</groupId>
|
<artifactId>lombok</artifactId>
|
</dependency>
|
|
|
</dependencies>
|
|
|
<build>
|
<plugins>
|
<plugin>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
<configuration>
|
<mainClass>com.gkhy.safePlatform.Application</mainClass>
|
</configuration>
|
<executions>
|
<execution>
|
<goals>
|
<goal>repackage</goal>
|
</goals>
|
</execution>
|
</executions>
|
</plugin>
|
</plugins>
|
</build>
|
|
|
</project>
|