gradle-avro-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.davidmc24.gradle.plugin</groupId> <artifactId>gradle-avro-plugin</artifactId> <version>1.9.1</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"> <!-- This module was also published with a richer model, Gradle metadata, --> <!-- which should be used instead. Do not delete the following line which --> <!-- is to indicate to Gradle or any Gradle module metadata file consumer --> <!-- that they should prefer consuming it instead. --> <!-- do_not_remove: published-with-gradle-metadata --> <modelVersion>4.0.0</modelVersion> <groupId>com.github.davidmc24.gradle.plugin</groupId> <artifactId>gradle-avro-plugin</artifactId> <version>1.9.1</version> <name>gradle-avro-plugin</name> <description>A Gradle plugin to allow easily performing Java code generation for Apache Avro. It supports JSON schema declaration files, JSON protocol declaration files, and Avro IDL files.</description> <url>https://github.com/davidmc24/gradle-avro-plugin</url> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <id>davidmc24</id> <name>David M. Carr</name> <email>david@carrclan.us</email> </developer> </developers> <scm> <connection>scm:git:https://github.com/davidmc24/gradle-avro-plugin.git</connection> <developerConnection>scm:git:ssh://github.com/davidmc24/gradle-avro-plugin.git</developerConnection> <url>https://github.com/davidmc24/gradle-avro-plugin</url> </scm> <dependencyManagement> <dependencies> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.12.7.1</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-text</artifactId> <version>1.10.0</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-compress</artifactId> <version>1.24.0</version> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>org.apache.avro</groupId> <artifactId>avro-compiler</artifactId> <version>1.11.3</version> <scope>runtime</scope> </dependency> </dependencies> </project>