2020-12-11 10:18:48 +00: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">
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
|
|
<parent>
|
2024-06-29 16:41:59 +00:00
|
|
|
|
<groupId>com.javaguns.roses</groupId>
|
2020-12-11 10:18:48 +00:00
|
|
|
|
<artifactId>kernel-d-scanner</artifactId>
|
2024-11-11 14:44:24 +00:00
|
|
|
|
<version>8.3.2</version>
|
2020-12-11 10:18:48 +00:00
|
|
|
|
<relativePath>../pom.xml</relativePath>
|
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
|
|
<artifactId>scanner-api</artifactId>
|
|
|
|
|
|
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
2021-09-28 09:20:59 +00:00
|
|
|
|
<!--ResourceDefinition解析需要转化时间-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
|
<artifactId>jackson-annotations</artifactId>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2020-12-11 10:18:48 +00:00
|
|
|
|
<!--web-->
|
2023-05-09 10:35:49 +00:00
|
|
|
|
<!--ResourceReportApi会用到web,用在提供feign接口时-->
|
2020-12-11 10:18:48 +00:00
|
|
|
|
<dependency>
|
2024-08-03 08:21:05 +00:00
|
|
|
|
<groupId>jakarta.servlet</groupId>
|
|
|
|
|
<artifactId>jakarta.servlet-api</artifactId>
|
2020-12-11 10:18:48 +00:00
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-web</artifactId>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2024-08-07 06:36:46 +00:00
|
|
|
|
<!--测试需要的包-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-validation</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2024-08-07 08:41:36 +00:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.javaguns.roses</groupId>
|
|
|
|
|
<artifactId>db-api</artifactId>
|
|
|
|
|
<version>${roses.version}</version>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2024-08-07 06:36:46 +00:00
|
|
|
|
|
2020-12-11 10:18:48 +00:00
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
</project>
|