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

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

Go to download

A complete JPA 2.1 implementation for Standalone or EE Implementation. Enables Multiple Persistence units with full JTA Support using BTM. Perfect for Guice implementations, test suites, and Guice enabled Web Applications or EAR Projects. Requires JDK 8

There is a newer version: 62
Show newest version
package com.guicedee.guicedpersistence.scanners;

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 - 2024 Weber Informatics LLC | Privacy Policy