Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update parent pom.xml to exclude junit-vintage-engine #161

Closed
akashsolanki opened this issue Aug 30, 2020 · 0 comments · Fixed by #162
Closed

Update parent pom.xml to exclude junit-vintage-engine #161

akashsolanki opened this issue Aug 30, 2020 · 0 comments · Fixed by #162

Comments

@akashsolanki
Copy link
Contributor

akashsolanki commented Aug 30, 2020

This change introduced spring-boot-starter-test dependency but it did not exclude junit-vintage-engine which is causing issues when running junits independently.

Below dependency should be changed from -

<dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-starter-test</artifactId>
                <version>${spring-boot.version}</version>
                <scope>test</scope>
                <exclusions>
                    <exclusion>
                    <groupId>junit</groupId>
                    <artifactId>junit</artifactId>
                    </exclusion>
                </exclusions>
            </dependency>

to

<dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-starter-test</artifactId>
                <version>${spring-boot.version}</version>
                <scope>test</scope>
                <exclusions>
			        <exclusion>
			            <groupId>org.junit.vintage</groupId>
			            <artifactId>junit-vintage-engine</artifactId>
			        </exclusion>
			    </exclusions>
            </dependency>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants