Skip to content

Commit 436a6ce

Browse files
committed
Update POM for the additional source directory
1 parent 1d1bee6 commit 436a6ce

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

pom.xml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -308,6 +308,25 @@
308308
<artifactId>dependency-check-maven</artifactId>
309309
<version>${dependency-check-maven.version}</version>
310310
</plugin>
311+
<plugin>
312+
<groupId>org.codehaus.mojo</groupId>
313+
<artifactId>build-helper-maven-plugin</artifactId>
314+
<version>3.5.0</version>
315+
<executions>
316+
<execution>
317+
<id>add-source</id>
318+
<phase>generate-sources</phase>
319+
<goals>
320+
<goal>add-source</goal>
321+
</goals>
322+
<configuration>
323+
<sources>
324+
<source>src/examples/java</source>
325+
</sources>
326+
</configuration>
327+
</execution>
328+
</executions>
329+
</plugin>
311330
</plugins>
312331
</build>
313332
<reporting>

0 commit comments

Comments
 (0)