-
Notifications
You must be signed in to change notification settings - Fork 41.5k
Closed
Closed
Copy link
Labels
for: external-projectFor an external project and not something we can fixFor an external project and not something we can fixstatus: duplicateA duplicate of another issueA duplicate of another issue
Description
A Spring Boot 2.0.1 web application will not start if the spring-boot-starter-test dependency is included.
It seems to be related to the spring-core dependency within spring-boot-starter-test. If that specific dependency is excluded, then Spring Boot starts up fine.
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
</exclusion>
</exclusions>
</dependency>
Metadata
Metadata
Assignees
Labels
for: external-projectFor an external project and not something we can fixFor an external project and not something we can fixstatus: duplicateA duplicate of another issueA duplicate of another issue