芯が強い人になるESTJ-A

# Failed to resolve org.junit.platform:junit-platform-launcher:1.7.2问题处理

IT開発 Tags: 无标签 阅读: 209

springboot项目,使用ApplicationTests做测试时提示错误如下:

上午 11:47 Error running 'ShiroDemoApplicationTests.contextLoads': Failed to resolve org.junit.platform:junit-platform-launcher:1.7.2

解决方案,导入包

        <dependency>
            <groupId>org.junit.platform</groupId>
            <artifactId>junit-platform-launcher</artifactId>
            <scope>test</scope>
        </dependency>