avro-kotlin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.toolisticon.kotlin.avro</groupId> <artifactId>avro-kotlin</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-parent</artifactId> <version>1.12.5.2</version> <relativePath>../_build/parent/pom.xml</relativePath> </parent> <groupId>io.toolisticon.kotlin.avro</groupId> <artifactId>avro-kotlin</artifactId> <name>${project.artifactId}</name> <description>Opinionated extension functions and helpers for using Apache Avro with Kotlin.</description> <dependencies> <!-- AVRO (as defined in parent) --> <dependency> <groupId>io.toolisticon.kotlin.avro.lib</groupId> <artifactId>avro</artifactId> </dependency> <dependency> <!-- jackson-databind: replaces transitive dependency of org.apache.avro:avro --> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> </dependency> <dependency> <!-- jackson-core: replaces transitive dependency of org.apache.avro:avro --> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> <scope>compile</scope> </dependency> <dependency> <!-- jackson-module-kotlin: add support for kotlin--> <groupId>com.fasterxml.jackson.module</groupId> <artifactId>jackson-module-kotlin</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>io.toolisticon.kotlin.avro.test</groupId> <artifactId>avro-kotlin-test</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.javamoney.moneta</groupId> <artifactId>moneta-core</artifactId> <version>1.4.5</version> <scope>test</scope> <exclusions> <exclusion> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib-common</artifactId> </exclusion> </exclusions> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.avro</groupId> <artifactId>avro-maven-plugin</artifactId> <executions> <execution> <id>generate-test</id> <phase>generate-test-sources</phase> <goals> <goal>schema</goal> </goals> <configuration> <sourceDirectory>${kp.testResources}/avro</sourceDirectory> <outputDirectory>${kp.generatedTestSources}/avro</outputDirectory> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <executions> <execution> <id>add-avro-test-source</id> <goals> <goal>add-test-source</goal> </goals> <configuration> <sources> <source>${kp.generatedTestSources}/avro</source> </sources> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>