diff options
Diffstat (limited to 'modules/parent/pom.xml')
-rw-r--r-- | modules/parent/pom.xml | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/modules/parent/pom.xml b/modules/parent/pom.xml index cfa74855..4306df80 100644 --- a/modules/parent/pom.xml +++ b/modules/parent/pom.xml @@ -6,7 +6,7 @@ http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <properties> - <clojure.version>1.2.0</clojure.version> + <clojure.version>[1.0.0,2.0.0)</clojure.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <groupId>org.clojure.contrib</groupId> @@ -41,8 +41,11 @@ <artifactId>clojure-maven-plugin</artifactId> <version>1.3.3</version> <configuration> + <compileDeclaredNamespaceOnly>true</compileDeclaredNamespaceOnly> <namespaces> - <namespace>!clojure\.contrib\.javadoc</namespace> + <!-- By default, do not AOT-compile anything. + Individual modules may override this. --> + <namespace>!.*</namespace> </namespaces> </configuration> <executions> |