summaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
authorBenjamin Culkin <scorpress@gmail.com>2024-01-31 20:01:17 -0500
committerBenjamin Culkin <scorpress@gmail.com>2024-01-31 20:01:17 -0500
commite940640b8a42d2203bbedcc2e296a4f279a9e1dc (patch)
treeeb4a69f6fa74b2e9aa8e7d7e59a533e3764d5c11 /pom.xml
parent0f1e9c56ffc745ce01890e834f97c48039a3e7b4 (diff)
Add a new grammar and tweak a few things
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>