Download officeplugin_jpa-2.16.0.jar file

Introduction

You can download officeplugin_jpa-2.16.0.jar in this page.

License

Open Source

Type List

officeplugin_jpa-2.16.0.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/net.officefloor.plugin/officeplugin_jpa/pom.properties
META-INF/maven/net.officefloor.plugin/officeplugin_jpa/pom.xml
net.officefloor.plugin.jpa.CloseEntityManagerTask.class
net.officefloor.plugin.jpa.JpaEntityManagerManagedObject.class
net.officefloor.plugin.jpa.JpaEntityManagerManagedObjectSource.class
net.officefloor.plugin.jpa.JpaTransactionGovernance.class
net.officefloor.plugin.jpa.JpaTransactionGovernanceSource.class

Pom

officeplugin_jpa-2.16.0.pom file content.

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	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>net.officefloor.plugin</groupId>
		<artifactId>plugins</artifactId>
		<version>2.16.0</version>
	</parent>
	<artifactId>officeplugin_jpa</artifactId>
	<name>JPA Plug-in</name>
	<description>OfficeFloor plug-in for JPA</description>
	<properties>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
		<projectBasedir>${basedir}</projectBasedir>
	</properties>
	<build>
		<plugins>
			<plugin>
				<groupId>org.datanucleus</groupId>
				<artifactId>datanucleus-maven-plugin</artifactId>
				<configuration>
					<metadataDirectory>${project.build.testOutputDirectory}</metadataDirectory>
					<api>JPA</api>
					<verbose>true</verbose>
				</configuration>
				<executions>
					<execution>
						<phase>process-test-classes</phase>
						<goals>
							<goal>enhance</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
		</plugins>
	</build>
	<dependencies>
	
        <dependency>
            <groupId>org.eclipse.persistence</groupId>
            <artifactId>javax.persistence</artifactId>
            <scope>provided</scope>
        </dependency>
		<dependency>
			<groupId>org.datanucleus</groupId>
			<artifactId>datanucleus-accessplatform-jpa-rdbms</artifactId>
			<type>pom</type>
			<scope>provided</scope>
		</dependency>

		<dependency>
			<groupId>org.projectlombok</groupId>
			<artifactId>lombok</artifactId>
			<scope>test</scope>
		</dependency>

		<dependency>
			<groupId>hsqldb</groupId>
			<artifactId>hsqldb</artifactId>
			<scope>test</scope>
		</dependency>
	</dependencies>
</project>

POM Entry

<dependency>
   <groupId>net.officefloor.plugin</groupId>
   <artifactId>officeplugin_jpa</artifactId>
   <version>2.16.0</version>
</dependency>

Download

If you think the following officeplugin_jpa-2.16.0.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download officeplugin_jpa-2.16.0.jar file




PreviousNext

Related