All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jwebmp.guicedpersistence.scanners.GuiceInjectionMetaInfScannerExclusions Maven / Gradle / Ivy

package com.jwebmp.guicedpersistence.scanners;

import com.jwebmp.guicedinjection.interfaces.IPathContentsBlacklistScanner;

import java.util.HashSet;
import java.util.Set;

public class GuiceInjectionMetaInfScannerExclusions
		implements IPathContentsBlacklistScanner
{
	@Override
	public Set searchFor()
	{
		Set strings = new HashSet<>();
		strings.add("META-INF/resources");
		strings.add("META-INF/services");
		strings.add("META-INF/maven");
		return strings;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy