diff options
Diffstat (limited to 'modules/jmx/pom.xml')
-rw-r--r-- | modules/jmx/pom.xml | 22 |
1 files changed, 18 insertions, 4 deletions
diff --git a/modules/jmx/pom.xml b/modules/jmx/pom.xml index 70d24b3f..b91b6909 100644 --- a/modules/jmx/pom.xml +++ b/modules/jmx/pom.xml @@ -12,15 +12,29 @@ </parent> <artifactId>jmx</artifactId> <dependencies> + <!-- AOT-compilation necessitates a specific Clojure dependency. --> <dependency> - <groupId>org.clojure.contrib</groupId> - <artifactId>def</artifactId> - <version>1.3.0-SNAPSHOT</version> + <groupId>org.clojure</groupId> + <artifactId>clojure</artifactId> + <version>1.2.0</version> </dependency> <dependency> <groupId>org.clojure.contrib</groupId> - <artifactId>string</artifactId> + <artifactId>def</artifactId> <version>1.3.0-SNAPSHOT</version> </dependency> </dependencies> + <build> + <plugins> + <plugin> + <groupId>com.theoryinpractise</groupId> + <artifactId>clojure-maven-plugin</artifactId> + <configuration> + <namespaces> + <namespace>clojure\.contrib\.jmx\.Bean</namespace> + </namespaces> + </configuration> + </plugin> + </plugins> + </build> </project>
\ No newline at end of file |