avro-kotlin-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.toolisticon.kotlin.avro._</groupId> <artifactId>avro-kotlin-parent</artifactId> <version>1.12.5.2</version> </dependency>
<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> <parent> <groupId>io.toolisticon.kotlin.avro._</groupId> <artifactId>avro-kotlin-root</artifactId> <version>1.12.5.2</version> <relativePath>../../pom.xml</relativePath> </parent> <artifactId>avro-kotlin-parent</artifactId> <name>pom: ${project.artifactId}</name> <description>Parent for avro-kotlin summarizing used libraries and versions.</description> <packaging>pom</packaging> <dependencyManagement> <dependencies> <dependency> <groupId>io.toolisticon.kotlin.avro.lib</groupId> <artifactId>avro</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>io.toolisticon.kotlin.avro.lib</groupId> <artifactId>avro-compiler</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>io.toolisticon.kotlin.avro.lib</groupId> <artifactId>avro-ipc</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>io.toolisticon.kotlin.avro.lib</groupId> <artifactId>avro4k-core</artifactId> <version>${project.version}</version> </dependency> <!-- KOTLIN-CODE-GENERATOR --> <dependency> <groupId>io.toolisticon.kotlin.generation</groupId> <artifactId>kotlin-code-generation-bom</artifactId> <version>${kotlin-code-generation.version}</version> <scope>import</scope> <type>pom</type> </dependency> </dependencies> </dependencyManagement> <dependencies> <!-- KOTLIN --> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib</artifactId> <scope>compile</scope> </dependency> <!-- KOTLIN REFLECT --> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-reflect</artifactId> <scope>compile</scope> </dependency> <!-- KOTLIN LOGGING --> <dependency> <groupId>io.github.oshai</groupId> <artifactId>kotlin-logging-jvm</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>2.0.17</version> </dependency> </dependencies> </project>