aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2010-01-30Do not AOT-compile pprintStuart Sierra
Need to fix order-of-compilation issues with PrettyWriter and ColumnWriter
2010-01-30Revert "Reenable builds with local clojure.jar"Stuart Sierra
This reverts commit 4e8696e773b7b1b121bab2e56d1fa233a2a28957. Attempted fix doesn't work.
2010-01-30pprint: require ColumnWriter in PrettyWriterStuart Sierra
This is an attempt to fix compilation-order issues with gen-class. See http://groups.google.com/group/clojure-maven-plugin/browse_thread/thread/40150bb45270b322
2010-01-29Reenable builds with local clojure.jarStuart Sierra
Corrected POM still has Clojure as a dependency, with an optional profile that allows specifying the location of clojure.jar
2010-01-29Simplify POM, only AOT-compile namespaces that gen-classStuart Sierra
Binary incompatibility of AOT-compiled namespaces makes it desirable to avoid compilation except when needed for gen-class. Also fixes problem of the compilation order being non-deterministic, depending on the underlying filesystem.
2010-01-29Add source encoding UTF-8 to POMStuart Sierra
2010-01-28Describe where to get development snapshots in READMEStuart Sierra
2010-01-28Describe "local" build in POMStuart Sierra
2010-01-28Add "local" profile to POMStuart Sierra
2010-01-28Add offline build instructions to READMEStuart Sierra
2010-01-27str-utils3: substitute type-specific fns for 'replace' multimethodStuart Sierra
'replace' doesn't need runtime dispatch, so multimethods are unnecessary performance overhead. New functions: replace-char, replace-str, replace-re, and replace-by
2010-01-26Add str-utils3 with testsStuart Sierra
* most significant argument last, for ->> * 'contains?' renamed 'substring?' * removed 'partial'
2010-01-26Add instructions for building with local ClojureStuart Sierra
2010-01-25Describe setting clojure.version in READMEStuart Sierra
2010-01-25Make clojure.version a property in POMStuart Sierra
2010-01-25Describe version numbering corresponding to Clojure versionsStuart Sierra
2010-01-25Correct README typoStuart Sierra
2010-01-21Add source .clj files to JARmavenStuart Sierra
2010-01-21Clean up headings in READMEStuart Sierra
2010-01-21Add additional mvn build commands to READMEStuart Sierra
2010-01-21Clean up URLs and add link to package downloads in READMEStuart Sierra
2010-01-21Reformat README to 70-chars-per-lineStuart Sierra
2010-01-20Add assembly configuration to POM.Stuart Sierra
2010-01-20Add "dist" assembly for distribution ZIP/tar files.Stuart Sierra
2010-01-20Add release and SNAPSHOT distributionManagement to POMStuart Sierra
2010-01-20Exclude clojure.contrib.pprint from compilationStuart Sierra
Other c.c.pprint.* namespaces get compiled, but can't load c.c.pprint itself until dependencies are AOT-compiled.
2010-01-20Update build instructions in README.txtStuart Sierra
2010-01-20Remove Ant build script.Stuart Sierra
2010-01-20Add build instructions to POM.Stuart Sierra
This does not yet include deployment or custom packaging such as a slim JAR or release ZIP. These can be added.
2010-01-20Remove clojure.contrib.test-contribStuart Sierra
"mvn clojure:test" is equivalent
2010-01-20Replace classes and *.jar with target/ in .gitignoreStuart Sierra
2010-01-20Remove tests for clojure.contrib.walk (obsolete)Stuart Sierra
2010-01-20Move example sources to separate dir.Stuart Sierra
2010-01-20Move source files into Maven-style directory structure.Stuart Sierra
2010-01-14macro-utils: support new deftype and reify formsKonrad Hinsen
2010-01-08finite-distributions: fixed typoKonrad Hinsen
2010-01-05exclude logging.clj from AOT compilation (see ticket 44)Steve Gilardi
2009-12-30clean up temporary namespaces, fixes #54Stuart Halloway
2009-12-29check for AssertionError in testsRich Hickey
2009-12-28finite-distributions: simplified m-bind of dist-m monadKonrad Hinsen
2009-12-14Add Factory as a method of obtaining open database connections, fixes #50Steve Gilardi
2009-12-11Changed all instances of ^x across contrib to (meta x) since the ^x form is ↵Tom Faulhaber
being deprecated in 1.1 refs #48
2009-12-10Remove the translation of (meta x) to ^x in code dispatch, since the ^x form ↵Tom Faulhaber
is being deprecated in 1.1
2009-12-10Fixes for defs losing their doc strings (and other metadata).Tom Faulhaber
2009-12-10update to point to build.clojure.org, clojure 1.1.0-master (was 1.1.0Steve Gilardi
alpha), requested by build.clojure.org maintainer Tim Dysinger
2009-11-30renamed col-write method to Java-ok col_writeRich Hickey
2009-11-28added :dynamic annotations to mockRich Hickey
2009-11-26macros: new macro with-direct-linkingKonrad Hinsen
2009-11-24make filename canonical: pprint/cl-format.clj -> pprint/cl_format.cljSteve Gilardi
2009-11-24exclude bytes from http.agentRich Hickey