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

persistence.guiced-persistence-jpa.62.source-code.module-info Maven / Gradle / Ivy

Go to download

A complete JPA 2.1 implementation for Standalone or EE Implementation. Enables Multiple Persistence units with annotated injection support aPerfect for Guice implementations, test suites, and Guice enabled Web Applications or EAR Projects. Requires JDK 8 and up

The newest version!
module com.guicedee.guicedpersistence.jpa {
	exports com.guicedee.guicedpersistence.jpa;

	requires aopalliance;
	requires java.logging;
	requires java.persistence;
	requires com.guicedee.guicedinjection;
	requires com.google.guice;
	requires transitive com.guicedee.guicedpersistence;
	requires com.guicedee.logmaster;
	requires java.sql;
	requires java.transaction;
	requires com.google.guice.extensions.persist;
	requires java.validation;

	exports com.guicedee.guicedpersistence.jpa.implementations to com.guicedee.guicedinjection;

	provides com.guicedee.guicedpersistence.services.ITransactionHandler with com.guicedee.guicedpersistence.jpa.implementations.JPAAutomatedTransactionHandler;

	provides com.guicedee.guicedinjection.interfaces.IGuiceScanModuleExclusions with com.guicedee.guicedpersistence.jpa.implementations.JPAModuleExclusions;
	provides com.guicedee.guicedinjection.interfaces.IGuiceScanJarExclusions with com.guicedee.guicedpersistence.jpa.implementations.JPAModuleExclusions;

	opens com.guicedee.guicedpersistence.jpa to com.fasterxml.jackson.databind, com.google.guice;
	opens com.guicedee.guicedpersistence.jpa.implementations to com.fasterxml.jackson.databind, com.google.guice;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy