diff options
Diffstat (limited to 'pom.xml')
| -rw-r--r-- | pom.xml | 27 |
1 files changed, 27 insertions, 0 deletions
@@ -18,8 +18,35 @@ <target>1.8</target> </configuration> </plugin> + + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>exec-maven-plugin</artifactId> + <version>1.5.0</version> + + <executions> + <execution> + <!-- Run ctags --> + <id>source tagging</id> + <phase>generate-sources</phase> + + <goals> + <goal>exec</goal> + </goals> + + <configuration> + <executable>ctags</executable> + + <arguments> + <argument>-R</argument> + </arguments> + </configuration> + </execution> + </executions> + </plugin> </plugins> </build> + <modules> <module>base</module> <module>dice</module> |
