Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-02-03 | Re-enable local build with -Dclojure.jar in POM | Stuart Sierra | |
2010-02-01 | Fix remaining ns name issues in tests. | Stuart Sierra | |
2010-02-01 | Add test namespaces to be compiled in POM | Stuart Sierra | |
Current clojure-maven-plugin does not run tests unless they are AOT-compiled. | |||
2010-02-01 | Rename namespace declarations in test sources. | Stuart Sierra | |
2010-02-01 | Rename test sources to clojure/contrib/test_*.clj naming pattern. | Stuart Sierra | |
2010-02-01 | Remove redundant test-contrib ns name part. | Stuart Sierra | |
2010-02-01 | Remove old str-utils lib tests. | Stuart Sierra | |
2010-02-01 | Rename test namespaces to match new names. | Stuart Sierra | |
2010-02-01 | Rename uses of str-utils/2/3 to string | Stuart Sierra | |
2010-02-01 | Change ns names for all renamed libs except str-utils | Stuart Sierra | |
2010-02-01 | Delete obsolete versions of popular libs. | Stuart Sierra | |
2010-02-01 | Rename popular libs with shorter names. | Stuart Sierra | |
2010-02-01 | Set clojure-maven-plugin version in POM | Stuart Sierra | |
Older versions may fail to run the build correctly | |||
2010-01-31 | c.c.json: use PrintWriter directly; even faster | Stuart Sierra | |
2010-01-31 | c.c.json: reorganize around extend | Stuart Sierra | |
Simpler & less repetitive than extend-protocol in this case. | |||
2010-01-31 | new c.c.json: fix 1 reflective call | Stuart Sierra | |
2010-01-31 | Add c.c.json; replacement for c.c.json.read & c.c.json.write | Stuart Sierra | |
* New library uses protocols. * read-json accepts any String or Reader. * read-json keywordizes keys by default. | |||
2010-01-30 | c.c.json.read: use transients | Stuart Sierra | |
2010-01-30 | c.c.json.read: accept any Reader type; fixes #67 | Stuart Sierra | |
2010-01-30 | fix for aotc, ticket 44; moved impl selection code from macro to runtime eval | Alexander Taggart | |
Signed-off-by: Stuart Sierra <mail@stuartsierra.com> | |||
2010-01-30 | Fix mis-named ns in pprint.gen-class; refs #66 | Stuart Sierra | |
2010-01-30 | Reenable compiling of test namespaces in POM; refs #65 | Stuart Sierra | |
But disable tests of pprint, which fail currently | |||
2010-01-30 | pprint: Move gen-class expressions to separate file; refs #65 | Stuart Sierra | |
To avoid order-of-compilation issues, this patch puts the gen-class expressions for ColumnWriter and PrettyWriter in a separate file, rather than in the ns declarations. | |||
2010-01-30 | Do not AOT-compile pprint | Stuart Sierra | |
Need to fix order-of-compilation issues with PrettyWriter and ColumnWriter | |||
2010-01-30 | Revert "Reenable builds with local clojure.jar" | Stuart Sierra | |
This reverts commit 4e8696e773b7b1b121bab2e56d1fa233a2a28957. Attempted fix doesn't work. | |||
2010-01-30 | pprint: require ColumnWriter in PrettyWriter | Stuart 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-29 | Reenable builds with local clojure.jar | Stuart Sierra | |
Corrected POM still has Clojure as a dependency, with an optional profile that allows specifying the location of clojure.jar | |||
2010-01-29 | Simplify POM, only AOT-compile namespaces that gen-class | Stuart 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-29 | Add source encoding UTF-8 to POM | Stuart Sierra | |
2010-01-28 | Describe where to get development snapshots in README | Stuart Sierra | |
2010-01-28 | Describe "local" build in POM | Stuart Sierra | |
2010-01-28 | Add "local" profile to POM | Stuart Sierra | |
2010-01-28 | Add offline build instructions to README | Stuart Sierra | |
2010-01-27 | str-utils3: substitute type-specific fns for 'replace' multimethod | Stuart 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-26 | Add str-utils3 with tests | Stuart Sierra | |
* most significant argument last, for ->> * 'contains?' renamed 'substring?' * removed 'partial' | |||
2010-01-26 | Add instructions for building with local Clojure | Stuart Sierra | |
2010-01-25 | Describe setting clojure.version in README | Stuart Sierra | |
2010-01-25 | Make clojure.version a property in POM | Stuart Sierra | |
2010-01-25 | Describe version numbering corresponding to Clojure versions | Stuart Sierra | |
2010-01-25 | Correct README typo | Stuart Sierra | |
2010-01-21 | Add source .clj files to JARmaven | Stuart Sierra | |
2010-01-21 | Clean up headings in README | Stuart Sierra | |
2010-01-21 | Add additional mvn build commands to README | Stuart Sierra | |
2010-01-21 | Clean up URLs and add link to package downloads in README | Stuart Sierra | |
2010-01-21 | Reformat README to 70-chars-per-line | Stuart Sierra | |
2010-01-20 | Add assembly configuration to POM. | Stuart Sierra | |
2010-01-20 | Add "dist" assembly for distribution ZIP/tar files. | Stuart Sierra | |
2010-01-20 | Add release and SNAPSHOT distributionManagement to POM | Stuart Sierra | |
2010-01-20 | Exclude clojure.contrib.pprint from compilation | Stuart Sierra | |
Other c.c.pprint.* namespaces get compiled, but can't load c.c.pprint itself until dependencies are AOT-compiled. | |||
2010-01-20 | Update build instructions in README.txt | Stuart Sierra | |