diff options
author | Stuart Sierra <mail@stuartsierra.com> | 2010-09-03 15:04:46 -0400 |
---|---|---|
committer | Stuart Sierra <mail@stuartsierra.com> | 2010-09-03 15:04:46 -0400 |
commit | 1921e118d4a27c75084d0bece364e982ebe189b8 (patch) | |
tree | 00e775f30053f136197d1831762819441db8e09a | |
parent | 40bc0152becf1eac728adc388e1a6a89671a0dba (diff) |
AOT-compiled modules depend specifically on Clojure 1.2.0
-rw-r--r-- | modules/condition/pom.xml | 6 | ||||
-rw-r--r-- | modules/fnmap/pom.xml | 8 | ||||
-rw-r--r-- | modules/jmx/pom.xml | 6 | ||||
-rw-r--r-- | modules/repl-ln/pom.xml | 6 |
4 files changed, 26 insertions, 0 deletions
diff --git a/modules/condition/pom.xml b/modules/condition/pom.xml index 2bdd2daf..0e2062c4 100644 --- a/modules/condition/pom.xml +++ b/modules/condition/pom.xml @@ -12,6 +12,12 @@ </parent> <artifactId>condition</artifactId> <dependencies> + <!-- AOT-compilation necessitates a specific Clojure dependency. --> + <dependency> + <groupId>org.clojure</groupId> + <artifactId>clojure</artifactId> + <version>1.2.0</version> + </dependency> <dependency> <groupId>org.clojure.contrib</groupId> <artifactId>def</artifactId> diff --git a/modules/fnmap/pom.xml b/modules/fnmap/pom.xml index ec919aaf..77e2270f 100644 --- a/modules/fnmap/pom.xml +++ b/modules/fnmap/pom.xml @@ -11,6 +11,14 @@ <relativePath>../parent</relativePath> </parent> <artifactId>fnmap</artifactId> + <dependencies> + <!-- AOT-compilation necessitates a specific Clojure dependency. --> + <dependency> + <groupId>org.clojure</groupId> + <artifactId>clojure</artifactId> + <version>1.2.0</version> + </dependency> + </dependencies> <build> <plugins> <plugin> diff --git a/modules/jmx/pom.xml b/modules/jmx/pom.xml index 8011a7e2..b91b6909 100644 --- a/modules/jmx/pom.xml +++ b/modules/jmx/pom.xml @@ -12,6 +12,12 @@ </parent> <artifactId>jmx</artifactId> <dependencies> + <!-- AOT-compilation necessitates a specific Clojure dependency. --> + <dependency> + <groupId>org.clojure</groupId> + <artifactId>clojure</artifactId> + <version>1.2.0</version> + </dependency> <dependency> <groupId>org.clojure.contrib</groupId> <artifactId>def</artifactId> diff --git a/modules/repl-ln/pom.xml b/modules/repl-ln/pom.xml index 88d7b720..61493d00 100644 --- a/modules/repl-ln/pom.xml +++ b/modules/repl-ln/pom.xml @@ -12,6 +12,12 @@ </parent> <artifactId>repl-ln</artifactId> <dependencies> + <!-- AOT-compilation necessitates a specific Clojure dependency. --> + <dependency> + <groupId>org.clojure</groupId> + <artifactId>clojure</artifactId> + <version>1.2.0</version> + </dependency> <dependency> <groupId>org.clojure.contrib</groupId> <artifactId>def</artifactId> |