com.guicedee.services.hibernate.GuiceInjectionMetaInfScannerExclusions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hibernate-core Show documentation
Show all versions of hibernate-core Show documentation
JPMS Module-Info's for a few of the Jakarta Libraries just until they add them in themselves
package com.guicedee.services.hibernate;
import com.guicedee.guicedinjection.interfaces.IPathContentsRejectListScanner;
import java.util.HashSet;
import java.util.Set;
public class GuiceInjectionMetaInfScannerExclusions
implements IPathContentsRejectListScanner
{
@Override
public Set searchFor()
{
Set strings = new HashSet<>();
strings.add("META-INF/services");
strings.add("META-INF/maven");
strings.add("META-INF/versions");
return strings;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy