Skip to content

Commit

Permalink
#2349 Update Maven configuration to use an extra source root for audi…
Browse files Browse the repository at this point in the history
…t types generated for test entities
  • Loading branch information
homedirectory committed Dec 6, 2024
1 parent 01cbfa4 commit dc8a1bf
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions platform-pojo-bl/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -307,6 +307,26 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>3.6.0</version>
<executions>
<execution>
<id>audit-sources</id>
<phase>generate-sources</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<!-- The location of generated audit sources. -->
<source>src/audit/java/</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>

0 comments on commit dc8a1bf

Please sign in to comment.