diff options
author | Stuart Sierra <pair@thinkrelevance.com> | 2010-08-11 02:18:32 +0000 |
---|---|---|
committer | Stuart Sierra <pair@thinkrelevance.com> | 2010-08-11 02:18:32 +0000 |
commit | 1c44f97d8ed115425a2b84582286cf8b21ad48af (patch) | |
tree | 66da21c0fc14963b097d9e5cefa4739954d70f53 | |
parent | 6012612fa4778adc676649a5cb9b1375a94a1274 (diff) |
Disable compiling clojure.contrib.javadoc
c.c.javadoc throws deprecation errors on load.
This should probably be configured in the module POM.
-rw-r--r-- | modules/parent/pom.xml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/parent/pom.xml b/modules/parent/pom.xml index 54641957..0e5ba9d0 100644 --- a/modules/parent/pom.xml +++ b/modules/parent/pom.xml @@ -41,7 +41,9 @@ <artifactId>clojure-maven-plugin</artifactId> <version>1.3.3</version> <configuration> - <compileDeclaredNamespaceOnly>true</compileDeclaredNamespaceOnly> + <namespaces> + <namespace>!clojure\.contrib\.javadoc</namespace> + </namespaces> </configuration> <executions> <execution> |