diff options
-rw-r--r-- | pom.xml | 19 |
1 files changed, 19 insertions, 0 deletions
@@ -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> |