Last active
May 7, 2022 00:12
-
-
Save lamoboos223/b74254dfe2097b5606a6f29e914c25ad to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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