Skip to content

Commit

Permalink
Compile processor first
Browse files Browse the repository at this point in the history
  • Loading branch information
bowbahdoe committed Jan 22, 2022
1 parent 5610e84 commit d3433a6
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,24 @@
<source>17</source>
<target>17</target>
</configuration>
<executions>
<execution>
<id>default-compile</id>
<configuration>
<compilerArgument>-proc:none</compilerArgument>
<includes>
<include>dev/mccue/magic_bean/processor/AnnotationProcessor.java</include>
</includes>
</configuration>
</execution>
<execution>
<id>compile-project</id>
<phase>compile</phase>
<goals>
<goal>compile</goal>
</goals>
</execution>
</executions>
</plugin>

<plugin> <!-- Create sources.jar -->
Expand Down

0 comments on commit d3433a6

Please sign in to comment.