-
Notifications
You must be signed in to change notification settings - Fork 242
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
Build failure on project common-utils: groups/excludedGroups require TestNG or JUnit48+ on project test classpath #205
Comments
How did you manage to solve this problem? I also faced with it |
I am also facing the same issue can someone tell me how to resolve it? |
I am also facing similar issue.
|
@Kaurgurjot @anhtv08 I was able to get around this error by adding junit as a dependency in
however this was in the context of smaller avro registry maven project I'm getting up and running and not related to this common-utils project. Not sure if this is the valid solution but thought I'd share how I got through it! |
If you're using junit 5, the addition of the following dependency should solve the problem. <dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.7.0</version>
<scope>test</scope>
</dependency> |
Just had same problem, one module failed on build. |
If you delete the target folder it works. |
On the master branch:
I have successfully built Kafka with
./gradlew installAll
. Any troubleshooting tips?The text was updated successfully, but these errors were encountered: