guice-persist
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.jwebmp.inject.extensions</groupId> <artifactId>guice-persist</artifactId> <version>0.67.0.15</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.jwebmp.inject.extensions</groupId> <artifactId>extensions-parent</artifactId> <version>0.67.0.15</version> </parent> <groupId>com.jwebmp.inject.extensions</groupId> <artifactId>guice-persist</artifactId> <name>Google Guice - Extensions - Persist</name> <dependencies> <dependency> <groupId>org.hibernate.javax.persistence</groupId> <artifactId>hibernate-jpa-2.1-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <version>3.1.0</version> <type>jar</type> <scope>provided</scope> </dependency> <dependency> <groupId>com.jwebmp.thirdparty</groupId> <artifactId>aopalliance-core</artifactId> <version>${project.version}</version> <type>jar</type> </dependency> <dependency> <groupId>jakarta.xml.bind</groupId> <artifactId>jakarta.xml.bind-api</artifactId> <version>${glassfish.jaxb.version}</version> <type>jar</type> </dependency> <dependency> <groupId>com.jwebmp.thirdparty</groupId> <artifactId>javax.inject</artifactId> <version>${project.version}</version> <type>jar</type> </dependency> <dependency> <groupId>com.jwebmp.inject</groupId> <artifactId>guice</artifactId> <type>jar</type> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-library</artifactId> <version>1.3</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-core</artifactId> <version>1.3</version> <scope>test</scope> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <type>jar</type> </dependency> <dependency> <groupId>com.jwebmp.thirdparty</groupId> <artifactId>jakarta.activation</artifactId> <type>jar</type> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifestEntries> <Automatic-Module-Name>com.google.guice.extensions.persist</Automatic-Module-Name> </manifestEntries> </archive> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>jdk8</id> <build> <plugins> <plugin> <groupId>org.moditect</groupId> <artifactId>moditect-maven-plugin</artifactId> <executions> <execution> <id>add-module-infos</id> <phase>package</phase> <goals> <goal>add-module-info</goal> </goals> <configuration> <overwriteExistingFiles>true</overwriteExistingFiles> <module> <moduleInfoFile> jre11/module-info.java </moduleInfoFile> </module> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>jdk11</id> <dependencies> </dependencies> </profile> <profile> <id>jdk12</id> <dependencies> </dependencies> </profile> </profiles> </project>