添加下
<artifactId>spring-boot-starter-test</artifactId> <scope>test</scope>
以下排除:
<scope>test</scope> <exclusions> <exclusion> <groupId>com.vaadin.external.google</groupId> <artifactId>android-json</artifactId> </exclusion> </exclusions>
同样,对于Gradle项目:
testCompile("org.springframework.boot:spring-boot-starter-test") { exclude group: "com.vaadin.external.google", module:"android-json"}


