Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Inhibit all AOT-compilation in parent module
  • Loading branch information
Stuart Sierra committed Sep 3, 2010
1 parent 0f94c13 commit da0795c
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions modules/parent/pom.xml
Expand Up @@ -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>
Expand Down Expand Up @@ -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>
Expand Down

0 comments on commit da0795c

Please sign in to comment.