jpa
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.vipcxj</groupId> <artifactId>jpa</artifactId> <version>1.0</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.github.vipcxj</groupId> <artifactId>cxj</artifactId> <version>1.0</version> </parent> <artifactId>jpa</artifactId> <name>cxj jpa</name> <packaging>jar</packaging> <url>https://github.com/vipcxj/cxj</url> <description> JPA Utils library for cxj. </description> <licenses> <license> <name>Apache 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <scm> <url>https://github.com/vipcxj/cxj</url> <connection>scm:git:git://github.com/vipcxj/cxj.git</connection> <developerConnection>scm:git:https://github.com/vipcxj/cxj.git</developerConnection> <tag>v1.0.14</tag> </scm> <developers> <developer> <name>XiaoJing Chen</name> <id>vipcxj</id> <email>vipcxj@126.com</email> <roles> <role>Developer</role> </roles> <timezone>+8</timezone> </developer> </developers> <dependencies> <dependency> <groupId>io.github.vipcxj</groupId> <artifactId>common</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.alibaba</groupId> <artifactId>fastjson</artifactId> <version>1.2.23</version> </dependency> <dependency> <groupId>org.hibernate.javax.persistence</groupId> <artifactId>hibernate-jpa-2.1-api</artifactId> <scope>provided</scope> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-javadoc-plugin</artifactId> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> </plugin> </plugins> </build> </project>