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>cn.stylefeng.roses</groupId>
|
|
|
|
|
<artifactId>kernel-d-scanner</artifactId>
|
2023-02-23 03:44:50 +00:00
|
|
|
|
<version>7.3.4</version>
|
2020-12-11 10:18:48 +00:00
|
|
|
|
<relativePath>../pom.xml</relativePath>
|
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
|
|
<artifactId>scanner-sdk-scanner</artifactId>
|
|
|
|
|
|
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
|
|
<!--资源模块的api-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>cn.stylefeng.roses</groupId>
|
|
|
|
|
<artifactId>scanner-api</artifactId>
|
2021-06-05 04:07:45 +00:00
|
|
|
|
<version>${roses.version}</version>
|
2020-12-11 10:18:48 +00:00
|
|
|
|
</dependency>
|
|
|
|
|
|
2022-04-02 06:42:17 +00:00
|
|
|
|
<!--jwt模块,汇报资源需要生成token用-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>cn.stylefeng.roses</groupId>
|
|
|
|
|
<artifactId>jwt-sdk</artifactId>
|
|
|
|
|
<version>${roses.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2020-12-11 10:18:48 +00:00
|
|
|
|
<!--spring-web-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-web</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
</project>
|