Home

Awesome

sbt-avro

Build Status

Overview

sbt-avro is a sbt plugin for generating Java sources for Avro schemas. It also supports referencing schemas from different files.

Usage

Installing the plugin

Add the plugin according to the sbt documentation.

For instance, add the following lines to project/plugins.sbt:

addSbtPlugin("com.github.sbt" % "sbt-avro" % "3.5.0")

Enable the plugin in your build.sbt and select the desired avro version to use:

enablePlugins(SbtAvro)
avroVersion := "1.12.0"

Config

An avro configuration will be added to the project. Libraries defined with this scope will be loaded by the sbt plugin to generate the avro classes.

Settings

Project settings

NameDefaultDescription
avroAdditionalDependenciesavro-compiler % avroVersion % "avro", avro % avroVersion % "compile"Additional dependencies to be added to library dependencies.
avroCompilercom.github.sbt.avro.AvroCompilerBridgeSbt avro compiler class.
avroCreateSetterstrueGenerate setters.
avroDependencyIncludeFiltersource typed avro classifier artifactsFilter for including modules containing avro dependencies.
avroEnableDecimalLogicalTypetrueUse java.math.BigDecimal instead of java.nio.ByteBuffer for logical type decimal.
avroFieldVisibilitypublicField visibility for the properties. Possible values: private, public.
avroOptionalGettersfalse (requires avro 1.10+)Generate getters that return Optional for nullable fields.
avroStringTypeCharSequenceType for representing strings. Possible values: CharSequence, String, Utf8.
avroUseNamespacefalseValidate that directory layout reflects namespaces, i.e. com/myorg/MyRecord.avsc.
avroVersion1.12.0Avro version to use in the project.

Scoped settings (Compile/Test)

NameDefaultDescription
avroGenerate / targetsourceManaged / compiled_avro / $configSource directory for generated .java files.
avroSourcesourceDirectory / $config / avroDefault Avro source directory for *.avsc, *.avdl and *.avpr files.
avroSpecificRecordsSeq.emptyList of fully qualified Avro record class names to recompile with current avro version and settings.
avroUmanagedSourceDirectoriesSeq(avroSource)Unmanaged Avro source directories, which contain manually created sources.
avroUnpackDependencies / excludeFilterHiddenFileFilterFilter for excluding avro specification files from unpacking.
avroUnpackDependencies / includeFilterAllPassFilterFilter for including avro specification files to unpack.
avroUnpackDependencies / targetsourceManaged / avro / $configTarget directory for schemas packaged in the dependencies
packageAvro / artifactClassifierSome("avro")Classifier for avro artifact
packageAvro / publishArtifactfalseEnable / Disable avro artifact publishing

Scoped Tasks (Compile/Test)

NameDescription
avroGenerateGenerate Java sources for Avro schemas. This task is automatically executed before compile.
avroUnpackDependenciesUnpack avro schemas from dependencies. This task is automatically executed before avroGenerate.
packageAvroProduces an avro artifact, such as a jar containing avro schemas.

Examples

For example, to change the Java type of the string fields, add the following lines to build.sbt:

avroStringType := "String"

If you depend on an artifact with previously generated avro java classes with string fields as CharSequence, you can recompile them with String by also adding the following

Compile / avroSpecificRecords += "com.example.MyAvroRecord" // lib must be added in the avro scope

Packaging Avro files

Avro sources (*.avsc, *.avdl and *.avpr files) can be packaged in a separate jar with the source type and avro classifier by running packageAvro.

By default, sbt-avro does not publish this. You can enable it with

Compile / packageAvro / publishArtifact := true

Declaring dependencies

You can specify a dependency on an avro source artifact that contains the schemas like so:

libraryDependencies += "org" % "name" % "rev" classifier "avro"

If some avro schemas are not packaged in a source/avro artifact, you can update the avroDependencyIncludeFilter setting to instruct the plugin to look for schemas in the desired dependency:

libraryDependencies += "org" % "name" % "rev" // module containing avro schemas
avroDependencyIncludeFilter := avroDependencyIncludeFilter.value || moduleFilter(organization = "org", name = "name")

License

This program is distributed under the BSD license. See the file LICENSE for more details.

Credits

sbt-avro is maintained by the sbt Community. The initial code was based on a similar plugin: sbt-protobuf. Feel free to file issues or pull requests.

Contributors