Spring boot SpringBoot管理示例作为SpringCloudStarterGatewayJAR的一部分提供,无法将其排除在外

Spring boot SpringBoot管理示例作为SpringCloudStarterGatewayJAR的一部分提供,无法将其排除在外,spring-boot,maven,spring-boot-admin,Spring Boot,Maven,Spring Boot Admin,我创建了一个项目,包括SpringCloudStarterGatewayJAR,目前由于NexusforSpringBoot管理示例反应式jar中的漏洞而失败,尽管在Eclipse的依赖层次结构中,我没有看到这个jar,也无法排除它。所以我很困惑在什么时候添加这个漏洞,因为在我从pom中删除这个jar之后,这个漏洞没有被报告 下面是我的项目的pom <parent> <groupId>org.springframework.boot</groupId

我创建了一个项目,包括SpringCloudStarterGatewayJAR,目前由于NexusforSpringBoot管理示例反应式jar中的漏洞而失败,尽管在Eclipse的依赖层次结构中,我没有看到这个jar,也无法排除它。所以我很困惑在什么时候添加这个漏洞,因为在我从pom中删除这个jar之后,这个漏洞没有被报告

下面是我的项目的pom

<parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.3.2.RELEASE</version>
</parent>

<dependencies>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-security</artifactId>
    </dependency>       
    <dependency>
        <groupId>org.springframework.cloud</groupId>
        <artifactId>spring-cloud-starter-gateway</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-test</artifactId>
        <scope>test</scope>
        <exclusions>
            <exclusion>
                <groupId>org.junit.vintage</groupId>
                <artifactId>junit-vintage-engine</artifactId>
            </exclusion>
        </exclusions>
    </dependency>
    <dependency>
        <groupId>org.springframework.security</groupId>
        <artifactId>spring-security-test</artifactId>
        <scope>test</scope>
    </dependency>
</dependencies>

<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-dependencies</artifactId>
            <version>${spring-cloud.version}</version>
            <scope>import</scope>
            <type>pom</type>
        </dependency>
    </dependencies>
</dependencyManagement>

<build>
    <plugins>
        <plugin>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-maven-plugin</artifactId>
        </plugin>
    </plugins>
</build>

org.springframework.boot
spring启动程序父级
2.3.2.2发布
org.springframework.boot
弹簧启动安全
org.springframework.cloud
SpringCloudStarter网关
org.springframework.boot
弹簧起动试验
测试
org.junit.vintage
朱尼特老式发动机
org.springframework.security
弹簧安全性试验
测试
org.springframework.cloud
spring云依赖关系
${spring cloud.version}
进口
聚甲醛
org.springframework.boot
springbootmaven插件