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

com.guicedee.guicedpersistence.readers.hibernateproperties.HibernateModuleExclusions Maven / Gradle / Ivy

package com.guicedee.guicedpersistence.readers.hibernateproperties;


import javax.validation.constraints.NotNull;
import java.util.HashSet;
import java.util.Set;

public class HibernateModuleExclusions
		implements com.guicedee.guicedinjection.interfaces.IGuiceScanJarExclusions,
				           com.guicedee.guicedinjection.interfaces.IGuiceScanModuleExclusions
{
	@Override
	public @NotNull Set excludeJars()
	{
		Set strings = new HashSet<>();
		strings.add("guiced-persistence-hibernateproperties-reader-*");
		return strings;
	}

	@Override
	public @NotNull Set excludeModules()
	{
		Set strings = new HashSet<>();
		strings.add("com.guicedee.guicedpersistence.readers.hibernateproperties");
		return strings;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy