quarkus: Running test on 0.13.0 fails FilterBuildItem not found
Running mvnw package on git clone https://github.com/quarkusio/quarkus-quickstarts.git fails with:
[ERROR] Tests run: 1, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 1.914 s <<< FAILURE! - in org.acme.config.GreetingResourceTest
[ERROR] testHelloEndpoint Time elapsed: 0.008 s <<< ERROR!
org.junit.jupiter.api.extension.TestInstantiationException: TestInstanceFactory [io.quarkus.test.junit.QuarkusTestExtension] failed to instantiate test class [org.acme.config.GreetingResourceTest]: io/quarkus/undertow/deployment/FilterBuildItem
Caused by: java.lang.NoClassDefFoundError: io/quarkus/undertow/deployment/FilterBuildItem
Caused by: java.lang.ClassNotFoundException: io.quarkus.undertow.deployment.FilterBuildItem
My other < 0.13 projects that I upgraded to 0.13.0 are failing in the same way.
About this issue
- Original URL
- State: closed
- Created 5 years ago
- Reactions: 1
- Comments: 19 (13 by maintainers)
Commits related to this issue
- Fix for #1918, unless there are repositories configured in the settings.xml, use maven central as the default one — committed to aloubyansky/quarkus by aloubyansky 5 years ago
- Merge pull request #1931 from aloubyansky/1918 Fix for #1918, default to maven central unless settings.xml is configured with different repos — committed to quarkusio/quarkus by stuartwdouglas 5 years ago
- Fix for #1918, always add central maven repo unless it's already configured — committed to aloubyansky/quarkus by deleted user 5 years ago
- Fix for #1918, always add central maven repo unless it's already configured — committed to aloubyansky/quarkus by deleted user 5 years ago
- Merge pull request #1946 from aloubyansky/required-default-repo Fix for #1918, always add central maven repo unless it's already configured — committed to quarkusio/quarkus by gsmet 5 years ago
Ok, I see it. I had to start clean, not just remove io/quarkus. Thanks. Looking into it.