aboutsummaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml19
1 files changed, 19 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index 994faaf..5552875 100644
--- a/pom.xml
+++ b/pom.xml
@@ -77,6 +77,10 @@
</dependencies>
<build>
+ <!-- Needed for the clojure plugin to point to the tests directory. Didn't work as
+ a configuration option under the clojure plugin -->
+ <testSourceDirectory>test</testSourceDirectory>
+
<plugins>
<!-- This seems to be the only place to specify the application entrypoint -->
<plugin>
@@ -138,6 +142,13 @@
<goal>compile</goal>
</goals>
</execution>
+ <execution>
+ <id>test</id>
+ <phase>test</phase>
+ <goals>
+ <goal>test</goal>
+ </goals>
+ </execution>
</executions>
</plugin>
@@ -196,6 +207,14 @@
</configuration>
</plugin>
+ <!-- Added in support for sonar but sonar doesn't support Clojure so there's no
+ point -->
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>sonar-maven-plugin</artifactId>
+ <version>3.2</version>
+ </plugin>
+
</plugins>
</build>
</project>