diff options
author | Stuart Sierra <mail@stuartsierra.com> | 2010-09-03 11:33:54 -0400 |
---|---|---|
committer | Stuart Sierra <mail@stuartsierra.com> | 2010-09-03 12:50:51 -0400 |
commit | da0795c6d520c3c9ff02dea839c094f20198a094 (patch) | |
tree | 44fcdd35bfbff1fea1c8b740c08f2d165d3f9eb8 /modules/parent/pom.xml | |
parent | 0f94c13af8becfa9eab18652572bab62fcb4c002 (diff) |
Inhibit all AOT-compilation in parent module
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> |