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

com.guicedee.guicedpersistence.btm.implementation.BTMModuleExclusions Maven / Gradle / Ivy

Go to download

A complete JPA 2.1/2.2 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.btm.implementation;

import com.guicedee.guicedinjection.interfaces.IGuiceScanModuleExclusions;

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

public class BTMModuleExclusions
		implements IGuiceScanModuleExclusions
{
	@Override
	public @NotNull Set excludeModules()
	{
		Set strings = new HashSet<>();
		strings.add("com.guicedee.guicedpersistence.btm");

		strings.add("btm");
		strings.add("java.sql");
		strings.add("java.persistence");
		strings.add("java.transaction");
		return strings;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy