Skip to content

Instantly share code, notes, and snippets.

@lmonkiewicz
Created January 31, 2023 09:46
Show Gist options
  • Save lmonkiewicz/4079c74e559b3fb031a904bac556b5aa to your computer and use it in GitHub Desktop.
Save lmonkiewicz/4079c74e559b3fb031a904bac556b5aa to your computer and use it in GitHub Desktop.
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>3.2.0</version>
<executions>
<execution>
<id>add-source</id>
<phase>generate-sources</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>${project.build.directory}/generated-sources/avro/</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment