Also have `mvn test` use `mvn clojure:test`
Change-Id: I4c76e6298f44d3136997df6c20a9399b34cf08f2
Issue-Id: DCAEGEN2-60
Signed-off-by: Michael Hwang <mhwang@research.att.com>
</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>
<goal>compile</goal>
</goals>
</execution>
+ <execution>
+ <id>test</id>
+ <phase>test</phase>
+ <goals>
+ <goal>test</goal>
+ </goals>
+ </execution>
</executions>
</plugin>
</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>