roses/kernel-d-scanner/scanner-api/pom.xml

43 lines
1.3 KiB
XML
Raw Normal View History

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>
<groupId>com.javaguns.roses</groupId>
2020-12-11 10:18:48 +00:00
<artifactId>kernel-d-scanner</artifactId>
2024-06-05 03:38:11 +00:00
<version>8.1.8</version>
2020-12-11 10:18:48 +00:00
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>scanner-api</artifactId>
<packaging>jar</packaging>
<dependencies>
<!--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-->
<!--ResourceReportApi会用到web用在提供feign接口时-->
2020-12-11 10:18:48 +00:00
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
</project>