Skip to content

Commit

Permalink
Add pom for alternate building method. Will need to regenerate period…
Browse files Browse the repository at this point in the history
…ically.
  • Loading branch information
technomancy committed Jul 28, 2010
1 parent ae98527 commit de52eae
Show file tree
Hide file tree
Showing 2 changed files with 80 additions and 1 deletion.
1 change: 0 additions & 1 deletion .gitignore
Expand Up @@ -4,6 +4,5 @@ sample/nomnomnom*.jar
classes/
lib/
leiningen*.jar
pom.xml
lein-swank/lein-swank*.jar
autodoc/
80 changes: 80 additions & 0 deletions pom.xml
@@ -0,0 +1,80 @@
<?xml version="1.0" encoding="UTF-8"?>
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>leiningen</groupId>
<artifactId>leiningen</artifactId>
<version>1.2.1-SNAPSHOT</version>
<name>leiningen</name>
<description>A build tool designed not to set your hair on fire.</description>
<url>http://github.com/technomancy/leiningen</url>
<licenses>
<license>
<name>Eclipse Public License</name>
</license>
</licenses>
<scm>
<connection>scm:git:git://github.com/technomancy/leiningen.git</connection>
<developerConnection>scm:git:ssh://git@github.com/technomancy/leiningen.git</developerConnection>
<tag>549ddc7bd349930cdd16364e036b6514c6db767a</tag>
<url>http://github.com/technomancy/leiningen</url>
</scm>
<build>
<sourceDirectory>src</sourceDirectory>
<testSourceDirectory>test</testSourceDirectory>
</build>
<repositories>
<repository>
<id>central</id>
<url>http://repo1.maven.org/maven2</url>
</repository>
<repository>
<id>clojure</id>
<url>http://build.clojure.org/releases</url>
</repository>
<repository>
<id>clojure-snapshots</id>
<url>http://build.clojure.org/snapshots</url>
</repository>
<repository>
<id>clojars</id>
<url>http://clojars.org/repo/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.clojure</groupId>
<artifactId>clojure</artifactId>
<version>1.2.0-beta1</version>
</dependency>
<dependency>
<groupId>org.clojure</groupId>
<artifactId>clojure-contrib</artifactId>
<version>1.2.0-beta1</version>
</dependency>
<dependency>
<groupId>ant</groupId>
<artifactId>ant</artifactId>
<version>1.6.5</version>
</dependency>
<dependency>
<groupId>jline</groupId>
<artifactId>jline</artifactId>
<version>0.9.94</version>
</dependency>
<dependency>
<groupId>robert</groupId>
<artifactId>hooke</artifactId>
<version>1.0.2</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-ant-tasks</artifactId>
<version>2.0.10</version>
</dependency>
</dependencies>
</project>

<!-- This file was autogenerated by the Leiningen build tool.
Please do not edit it directly; instead edit project.clj and regenerate it.
It should not be considered canonical data. For more information see
http://github.com/technomancy/leiningen -->

0 comments on commit de52eae

Please sign in to comment.