judo-runtime-core-dao-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>hu.blackbelt.judo.runtime</groupId>
<artifactId>judo-runtime-core-dao-core</artifactId>
<version>1.0.5</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>hu.blackbelt.judo.runtime</groupId>
<artifactId>judo-runtime-core-parent</artifactId>
<version>1.0.5</version>
</parent>
<groupId>hu.blackbelt.judo.runtime</groupId>
<artifactId>judo-runtime-core-dao-core</artifactId>
<version>1.0.5</version>
<packaging>bundle</packaging>
<name>JUDO Runtime Core :: Core Data Access Objects</name>
<licenses>
<license>
<name>Eclipse Public License 2.0</name>
<url>https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>hu.blackbelt.judo.runtime</groupId>
<artifactId>judo-runtime-core-dependencies</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>hu.blackbelt.judo.runtime</groupId>
<artifactId>judo-runtime-core</artifactId>
</dependency>
<dependency>
<groupId>hu.blackbelt.judo</groupId>
<artifactId>judo-dao-api</artifactId>
</dependency>
<dependency>
<groupId>hu.blackbelt.judo.runtime</groupId>
<artifactId>judo-runtime-core-query</artifactId>
</dependency>
<dependency>
<groupId>hu.blackbelt.judo.tatami</groupId>
<artifactId>judo-tatami-core</artifactId>
</dependency>
<dependency>
<groupId>hu.blackbelt.judo.meta</groupId>
<artifactId>hu.blackbelt.judo.meta.asm.model</artifactId>
</dependency>
<dependency>
<groupId>hu.blackbelt.judo.meta</groupId>
<artifactId>hu.blackbelt.judo.meta.rdbms.model</artifactId>
</dependency>
<dependency>
<groupId>hu.blackbelt.mapper</groupId>
<artifactId>mapper-api</artifactId>
</dependency>
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
</dependency>
<dependency>
<groupId>org.jgrapht</groupId>
<artifactId>jgrapht-core</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<configuration>
<instructions>
<Export-Package>hu.blackbelt.judo.runtime.core.dao.core.*;version=${project.version}</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
</project>