Permalink
Please sign in to comment.
Showing
with
22 additions
and 44 deletions.
- +7 −15 README.markdown
- +0 −29 build.xml
- +15 −0 project.clj
22
README.markdown
29
build.xml
| @@ -1,29 +0,0 @@ | ||
| -<project name="ring" default="jar"> | ||
| - <description>Pack all sources into a JAR.</description> | ||
| - | ||
| - <property name="jarfile" location="ring.jar"/> | ||
| - <property name="depsfile" location="deps.zip"/> | ||
| - <property name="depsurl" value="http://cloud.github.com/downloads/mmcgrana/ring/deps.zip"/> | ||
| - <property name="depsdir" location="deps/"/> | ||
| - | ||
| - <target name="clean" description="Remove generated files and directories."> | ||
| - <delete file="${jarfile}"/> | ||
| - <delete file="${depsfile}"/> | ||
| - <delete dir="${depsdir}"/> | ||
| - </target> | ||
| - | ||
| - <target name="jar" description="Create jar file."> | ||
| - <jar jarfile="${jarfile}"> | ||
| - <path location="LICENSE"/> | ||
| - <fileset dir="./src" includes="ring/**/*.clj"/> | ||
| - <fileset dir="./test" includes="ring/**/*.clj"/> | ||
| - </jar> | ||
| - </target> | ||
| - | ||
| - <target name="deps" description="Download and unpack dependencies."> | ||
| - <get usetimestamp="true" description="Ring dependencies." | ||
| - src="${depsurl}" dest="${depsfile}"/> | ||
| - <unzip src="${depsfile}" dest="."/> | ||
| - <delete file="${depsfile}"/> | ||
| - </target> | ||
| -</project> |
15
project.clj
| @@ -0,0 +1,15 @@ | ||
| +(defproject ring "0.1.1-SNAPSHOT" | ||
| + :description "A Clojure web applications library." | ||
| + :url "http://github.com/mmcgrana/ring" | ||
| + :dependencies [[org.clojure/clojure "1.1.0"] | ||
| + [org.clojure/clojure-contrib "1.1.0-master-SNAPSHOT"] | ||
| + [commons-io "1.4"] | ||
| + [org.mortbay.jetty/jetty "6.1.14"] | ||
| + [org.mortbay.jetty/jetty-util "6.1.14"] | ||
| + [org.mortbay.jetty/servlet-api-2.5 "6.1.14"] | ||
| + [httpcomponents-httpcore/httpcore "4.0-alpha6"] | ||
| + [httpcomponents-httpcore/httpcore-nio "4.0-alpha6"] | ||
| + [clj-html "0.1.0-SNAPSHOT"] | ||
| + [clj-stacktrace "0.1.0-SNAPSHOT"]] | ||
| + :dev-dependencies [[lein-clojars "0.5.0-SNAPSHOT"] | ||
| + [clj-unit "0.1.0-SNAPSHOT"]]) |
0 comments on commit
2c378d9