add builder helper to handle compile errors in velocity version template plugin

This commit is contained in:
mohammed jasem alaajel 2022-07-15 10:58:49 +04:00
parent 21f6cdeaeb
commit 414f29e99c
1 changed files with 19 additions and 0 deletions

View File

@ -30,6 +30,25 @@
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>3.3.0</version>
<executions>
<execution>
<id>add-source</id>
<phase>generate-sources</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>src/main/newsrc/</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>templating-maven-plugin</artifactId>