81 lines
2.6 KiB
XML
81 lines
2.6 KiB
XML
|
|
<?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">
|
||
|
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
|
||
|
|
<parent>
|
||
|
|
<groupId>org.qinan</groupId>
|
||
|
|
<artifactId>safety-eval-service</artifactId>
|
||
|
|
<version>1.0-SNAPSHOT</version>
|
||
|
|
</parent>
|
||
|
|
|
||
|
|
<artifactId>safety-eval-start</artifactId>
|
||
|
|
<packaging>jar</packaging>
|
||
|
|
<name>safety-eval-start</name>
|
||
|
|
<description>启动模块 - Spring Boot启动类</description>
|
||
|
|
|
||
|
|
<dependencies>
|
||
|
|
<!-- Adapter层 -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.qinan</groupId>
|
||
|
|
<artifactId>safety-eval-adapter</artifactId>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- Spring Boot Starter -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- Spring Boot Actuator -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- Dubbo Spring Boot Starter -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.apache.dubbo</groupId>
|
||
|
|
<artifactId>dubbo-spring-boot-starter</artifactId>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- Nacos Discovery -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.alibaba.cloud</groupId>
|
||
|
|
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
|
||
|
|
<version>2021.0.5.0</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- Nacos Config -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.alibaba.cloud</groupId>
|
||
|
|
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
|
||
|
|
<version>2021.0.5.0</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- Spring Boot Test -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
||
|
|
<scope>test</scope>
|
||
|
|
</dependency>
|
||
|
|
</dependencies>
|
||
|
|
|
||
|
|
<build>
|
||
|
|
<plugins>
|
||
|
|
<plugin>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
||
|
|
<version>${spring-boot.version}</version>
|
||
|
|
<executions>
|
||
|
|
<execution>
|
||
|
|
<goals>
|
||
|
|
<goal>repackage</goal>
|
||
|
|
</goals>
|
||
|
|
</execution>
|
||
|
|
</executions>
|
||
|
|
</plugin>
|
||
|
|
</plugins>
|
||
|
|
</build>
|
||
|
|
</project>
|