summaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml19
1 files changed, 17 insertions, 2 deletions
diff --git a/pom.xml b/pom.xml
index 2cbc6db..caa3fb9 100644
--- a/pom.xml
+++ b/pom.xml
@@ -35,8 +35,23 @@
<version>3.0.2</version>
</plugin>
<plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>3.8.0</version>
+ <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>src/example/java</source>
+ </sources>
+ </configuration>
+ </execution>
+ </executions>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>