entity
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>dev.ikm.tinkar</groupId>
<artifactId>entity</artifactId>
<version>1.125.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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>dev.ikm.tinkar</groupId>
<artifactId>tinkar-core</artifactId>
<version>1.125.0</version>
</parent>
<artifactId>entity</artifactId>
<packaging>jar</packaging>
<name>TINKAR Entity</name>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>terms</artifactId>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>collection</artifactId>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>common</artifactId>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>component</artifactId>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>tinkar-schema</artifactId>
</dependency>
<dependency>
<groupId>com.github.ben-manes.caffeine</groupId>
<artifactId>caffeine</artifactId>
</dependency>
<dependency>
<groupId>${tinkar-jpms-deps.groupId}</groupId>
<artifactId>record-builder-core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>${tinkar-jpms-deps.groupId}</groupId>
<artifactId>protobuf-java</artifactId>
</dependency>
<dependency>
<groupId>${tinkar-jpms-deps.groupId}</groupId>
<artifactId>activej-bytebuf</artifactId>
</dependency>
<dependency>
<groupId>org.jgrapht</groupId>
<artifactId>jgrapht-core</artifactId>
<exclusions>
<exclusion>
<groupId>org.jheaps</groupId>
<artifactId>jheaps</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>${tinkar-jpms-deps.groupId}</groupId>
<artifactId>jheaps</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>