jpa-eclipselink
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.thorntail</groupId> <artifactId>jpa-eclipselink</artifactId> <version>2.7.0.Final</version> </dependency>
<?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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>io.thorntail</groupId> <artifactId>build-parent</artifactId> <version>2.7.0.Final</version> <relativePath>../../../build-parent/pom.xml</relativePath> </parent> <artifactId>jpa-eclipselink</artifactId> <name>JPA EclipseLink</name> <description>Java Persistence API with EclipseLink</description> <properties> <swarm.fraction.stability>stable</swarm.fraction.stability> <swarm.fraction.tags>JavaEE,Data,EclipseLink</swarm.fraction.tags> </properties> <build> <resources> <resource> <directory>src/main/resources</directory> <filtering>true</filtering> </resource> </resources> </build> <dependencies> <!-- Fraction Dependencies --> <dependency> <groupId>io.thorntail</groupId> <artifactId>jpa</artifactId> </dependency> <dependency> <groupId>io.thorntail</groupId> <artifactId>logging</artifactId> </dependency> <dependency> <groupId>org.wildfly</groupId> <artifactId>jipijapa-eclipselink</artifactId> </dependency> <!-- Provided Dependencies --> <dependency> <groupId>org.eclipse.persistence</groupId> <artifactId>eclipselink</artifactId> <version>${version.eclipselink}</version> <scope>provided</scope> </dependency> </dependencies> </project>