好的,我想通過testing Clojure with Maven這個問題的答案中的信息得到一些幫助。
訣竅是下面的部分添加到pom.xml中:
<build>
<plugins>
<plugin>
<groupId>com.theoryinpractise</groupId>
<artifactId>clojure-maven-plugin</artifactId>
<version>1.3.8</version>
<executions>
<execution>
<id>test-clojure</id>
<phase>test</phase>
<goals>
<goal>test</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
<testResources>
<testResource>
<directory>src/test/clojure</directory>
</testResource>
</testResources>
</build>
這有運行Clojure的測試案例的標準Maven的測試目標的一部分的作用。
編輯
截至2012年,一個很好的替代方案是使用cljunit作爲一個普通的JUnit測試套件的一部分運行Clojure的測試。