summaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
authorBenjamin J. Culkin <bjculkin@mix.wvu.edu>2018-05-28 14:08:44 -0300
committerBenjamin J. Culkin <bjculkin@mix.wvu.edu>2018-05-28 14:08:44 -0300
commit1898f53cc072befe2694b5af78b1b916bef3b450 (patch)
tree4ce03dda1af946073158493b4f73f0fd02b8539d /pom.xml
parent7ac470c22e9e179daf0a10579a9f9e347cf6f94f (diff)
Fix broken POM
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml41
1 files changed, 41 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index 67344f0..4f9f4f3 100644
--- a/pom.xml
+++ b/pom.xml
@@ -11,6 +11,47 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
+
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>3.7.0</version>
+
+ <configuration>
+ <source>1.8</source>
+ <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>
+
<dependencies>
<dependency>
<groupId>junit</groupId>