yosql-dao-jpa
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>wtf.metio.yosql.dao</groupId> <artifactId>yosql-dao-jpa</artifactId> <version>2021.5.5</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ This file is part of yosql. It is subject to the license terms in the LICENSE file found in the top-level ~ directory of this distribution and at http://creativecommons.org/publicdomain/zero/1.0/. No part of yosql, ~ including this file, may be copied, modified, propagated, or distributed except according to the terms contained ~ in the LICENSE file. --> <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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <!-- ordering follows https://maven.apache.org/developers/conventions/code.html#POM_Code_Convention --> <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> <!-- PARENT --> <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> <!-- https://maven.apache.org/pom.html#Inheritance --> <parent> <groupId>wtf.metio.yosql.dao</groupId> <artifactId>yosql-dao</artifactId> <version>2021.5.5</version> </parent> <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> <!-- COORDINATES --> <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> <!-- https://maven.apache.org/pom.html#Maven_Coordinates --> <artifactId>yosql-dao-jpa</artifactId> <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> <!-- INFORMATIONS --> <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> <!-- https://maven.apache.org/pom.html#More_Project_Information --> <name>YoSQL :: DAO :: JPA</name> <dependencies> <dependency> <groupId>wtf.metio.yosql.codegen</groupId> <artifactId>yosql-codegen-api</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>wtf.metio.yosql.codegen</groupId> <artifactId>yosql-codegen-blocks</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>wtf.metio.yosql.logging</groupId> <artifactId>yosql-logging-api</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>javax.inject</groupId> <artifactId>javax.inject</artifactId> </dependency> </dependencies> </project>