Skip to content

Instantly share code, notes, and snippets.

@lamoboos223
Last active May 7, 2022 00:12
Show Gist options
  • Save lamoboos223/b74254dfe2097b5606a6f29e914c25ad to your computer and use it in GitHub Desktop.
Save lamoboos223/b74254dfe2097b5606a6f29e914c25ad to your computer and use it in GitHub Desktop.
<plugin>
<groupId>org.apache.avro</groupId>
<artifactId>avro-maven-plugin</artifactId>
<version>1.8.2</version>
<executions>
<execution>
<id>schemas</id>
<phase>generate-sources</phase>
<goals>
<goal>schema</goal>
<goal>protocol</goal>
<goal>idl-protocol</goal>
</goals>
<configuration>
<sourceDirectory>${project.basedir}/src/main/resources/</sourceDirectory>
<outputDirectory>${project.basedir}/src/main/java/</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment