diff options
author | Stuart Sierra <mail@stuartsierra.com> | 2010-09-03 11:34:16 -0400 |
---|---|---|
committer | Stuart Sierra <mail@stuartsierra.com> | 2010-09-03 12:50:51 -0400 |
commit | 40bc0152becf1eac728adc388e1a6a89671a0dba (patch) | |
tree | 41bba57f11b8129ef3661ef57fa2f264b03dd81b | |
parent | da0795c6d520c3c9ff02dea839c094f20198a094 (diff) |
Add AOT-compilation for modules that gen-class
-rw-r--r-- | modules/condition/pom.xml | 13 | ||||
-rw-r--r-- | modules/fnmap/pom.xml | 13 | ||||
-rw-r--r-- | modules/jmx/pom.xml | 13 | ||||
-rw-r--r-- | modules/repl-ln/pom.xml | 13 |
4 files changed, 52 insertions, 0 deletions
diff --git a/modules/condition/pom.xml b/modules/condition/pom.xml index 53113fc7..2bdd2daf 100644 --- a/modules/condition/pom.xml +++ b/modules/condition/pom.xml @@ -23,4 +23,17 @@ <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\.condition\.Condition</namespace> + </namespaces> + </configuration> + </plugin> + </plugins> + </build> </project>
\ No newline at end of file diff --git a/modules/fnmap/pom.xml b/modules/fnmap/pom.xml index 7785e3e5..ec919aaf 100644 --- a/modules/fnmap/pom.xml +++ b/modules/fnmap/pom.xml @@ -11,4 +11,17 @@ <relativePath>../parent</relativePath> </parent> <artifactId>fnmap</artifactId> + <build> + <plugins> + <plugin> + <groupId>com.theoryinpractise</groupId> + <artifactId>clojure-maven-plugin</artifactId> + <configuration> + <namespaces> + <namespace>clojure\.contrib\.fnmap\.PersistentFnMap</namespace> + </namespaces> + </configuration> + </plugin> + </plugins> + </build> </project>
\ No newline at end of file diff --git a/modules/jmx/pom.xml b/modules/jmx/pom.xml index 08094a48..8011a7e2 100644 --- a/modules/jmx/pom.xml +++ b/modules/jmx/pom.xml @@ -18,4 +18,17 @@ <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 diff --git a/modules/repl-ln/pom.xml b/modules/repl-ln/pom.xml index 7fb0aad3..88d7b720 100644 --- a/modules/repl-ln/pom.xml +++ b/modules/repl-ln/pom.xml @@ -18,4 +18,17 @@ <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\.repl-ln</namespace> + </namespaces> + </configuration> + </plugin> + </plugins> + </build> </project>
\ No newline at end of file |