Skip to content

Instantly share code, notes, and snippets.

@talios
Created April 24, 2009 08:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save talios/101028 to your computer and use it in GitHub Desktop.
Save talios/101028 to your computer and use it in GitHub Desktop.
<plugin>
<groupId>org.clojure</groupId>
<artifactId>clojure-maven-plugin</artifactId>
<version>1.0-SNAPSHOT</version>
<configuration>
<namespaces>
<namespace>clj-web-crawler</namespace>
<namespace>smx-api</namespace>
</namespaces>
<testScript>src/test/java/test.clj</testScript>
</configuration>
<executions>
<execution>
<id>compile</id>
<phase>compile</phase>
<goals>
<goal>compile</goal>
</goals>
</execution>
<execution>
<id>test</id>
<phase>test</phase>
<goals>
<goal>test</goal>
</goals>
</execution>
</executions>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment