mirror of
https://github.com/apache/druid.git
synced 2025-02-25 04:16:07 +00:00
fix powermock classloader issues with Java 9 and above
This commit is contained in:
parent
c948422f32
commit
5c7803fe6b
@ -69,7 +69,9 @@ import java.util.Map;
|
||||
CacheScheduler.VersionedCache.class,
|
||||
CacheScheduler.Entry.class
|
||||
})
|
||||
@PowerMockIgnore("javax.net.ssl.*")
|
||||
// defer classloading of the following classes to the system classloader
|
||||
// since they need to be loaded in the right Java module in JDK9 and above
|
||||
@PowerMockIgnore({"javax.net.ssl.*", "javax.xml.*", "com.sun.xml.*"})
|
||||
public class NamespaceLookupExtractorFactoryTest
|
||||
{
|
||||
private final ObjectMapper mapper = new DefaultObjectMapper();
|
||||
|
Loading…
x
Reference in New Issue
Block a user