Skip to content
This repository has been archived by the owner on Jun 23, 2020. It is now read-only.

Commit

Permalink
fixes for clojure 1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
jannehietamaki committed Oct 22, 2011
1 parent 95b02fa commit d2274d0
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion mungbean-clojure/pom.xml
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<dependency> <dependency>
<groupId>org.clojure</groupId> <groupId>org.clojure</groupId>
<artifactId>clojure</artifactId> <artifactId>clojure</artifactId>
<version>1.2.0</version> <version>1.3.0</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>mungbean</groupId> <groupId>mungbean</groupId>
Expand Down
2 changes: 1 addition & 1 deletion mungbean-clojure/src/test/clojure/mungbean_test.clj
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
) )
) )


(declare coll) (declare ^:dynamic coll)


(defn insert-test-data [count & values] (defn insert-test-data [count & values]
(doseq [n (take count (cycle values))] (mongo/insert coll {:foo n})) (doseq [n (take count (cycle values))] (mongo/insert coll {:foo n}))
Expand Down
14 changes: 7 additions & 7 deletions mungbean-java/pom.xml
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@
<version>1.0-SNAPSHOT</version> <version>1.0-SNAPSHOT</version>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>com.github.mpeltonen</groupId> <groupId>org.jdave</groupId>
<artifactId>jdave-core</artifactId> <artifactId>jdave-core</artifactId>
<version>1.2-beta2</version> <version>1.3-SNAPSHOT</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>com.github.mpeltonen</groupId> <groupId>org.jdave</groupId>
<artifactId>jdave-junit4</artifactId> <artifactId>jdave-junit4</artifactId>
<version>1.2-beta2</version> <version>1.3-SNAPSHOT</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency> <dependency>
Expand All @@ -29,15 +29,15 @@
<dependency> <dependency>
<groupId>org.clojure</groupId> <groupId>org.clojure</groupId>
<artifactId>clojure</artifactId> <artifactId>clojure</artifactId>
<version>1.2.0</version> <version>1.3.0</version>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
</dependencies> </dependencies>
<repositories> <repositories>
<repository> <repository>
<id>laughingpanda-maven2</id> <id>laughingpanda-maven2</id>
<name>Laughing Panda Maven 2 Repository</name> <name>Laughing Panda Maven 2 Repository</name>
<url>http://www.laughingpanda.org/maven2/</url> <url>http://maven.laughingpanda.org/maven2/snapshots</url>
<snapshots> <snapshots>
<enabled>true</enabled> <enabled>true</enabled>
</snapshots> </snapshots>
Expand All @@ -47,7 +47,7 @@
<pluginRepository> <pluginRepository>
<id>laughingpanda-maven2-plugins</id> <id>laughingpanda-maven2-plugins</id>
<name>Laughing Panda Maven 2 Repository</name> <name>Laughing Panda Maven 2 Repository</name>
<url>http://www.laughingpanda.org/maven2/</url> <url>http://maven.laughingpanda.org/maven2/snapshots/</url>
</pluginRepository> </pluginRepository>
</pluginRepositories> </pluginRepositories>
<build> <build>
Expand Down

0 comments on commit d2274d0

Please sign in to comment.