Skip to content

Commit

Permalink
a very cut down pom and the stack overflow bug that necessitated it
Browse files Browse the repository at this point in the history
  • Loading branch information
johnlawrenceaspden committed Jan 30, 2011
1 parent 9d33324 commit aa50af9
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 0 deletions.
11 changes: 11 additions & 0 deletions sogreek.clj
@@ -0,0 +1,11 @@
(use 'clojure.test)

(print "αβγ")

(is "αβγ""αβγ")

(defn parse [s] "αβγ,ΑΒΓ")

(deftest greek (is (= "αβγ, ΑΒΓ" (parse ""))))

(run-tests)
42 changes: 42 additions & 0 deletions stripped.pom.xml
@@ -0,0 +1,42 @@
<project>

<modelVersion>4.0.0</modelVersion>
<groupId>com.aspden</groupId>
<artifactId>maven-clojure-simple</artifactId>
<version>1.0-SNAPSHOT</version>
<name>maven-clojure-simple</name>
<description>maven, clojure, emacs, repl: simplest useful maven project</description>

<repositories>

<repository>
<id>clojure</id>
<url>http://build.clojure.org/releases</url>
</repository>
<repository>
<id>central</id>
<url>http://repo1.maven.org/maven2</url>
</repository>
</repositories>

<dependencies>

<dependency>
<groupId>org.clojure</groupId>
<artifactId>clojure</artifactId>
<version>1.2.0</version>
</dependency>

</dependencies>

<build>
<plugins>
<plugin>
<groupId>com.theoryinpractise</groupId>
<artifactId>clojure-maven-plugin</artifactId>
<version>1.3.5-SNAPSHOT</version>
</plugin>
</plugins>
</build>

</project>

0 comments on commit aa50af9

Please sign in to comment.