Moving to github
Despite all the advantages of using a ready-made blogging infrastructure, I am moving what little drags I am posting to github to have more control about the html infrastructure and experiment with styling myself.
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-enforcer-plugin</artifactId> | |
<dependencies> | |
<dependency> | |
<groupId>org.codehaus.mojo</groupId> | |
<artifactId>animal-sniffer-enforcer-rule</artifactId> | |
<version>1.6</version> | |
</dependency> | |
</dependencies> | |
<executions> | |
<execution> | |
<id>check-java15</id> | |
<phase>test</phase> | |
<goals> | |
<goal>enforce</goal> | |
</goals> | |
<configuration> | |
<rules> | |
<checkSignatureRule implementation="org.codehaus.mojo.animal_sniffer.enforcer.CheckSignatureRule"> | |
<ignoreDependencies>true</ignoreDependencies> | |
<signature> | |
<groupId>org.codehaus.mojo.signature</groupId> | |
<artifactId>java15</artifactId> | |
<version>1.0</version> | |
</signature> | |
</checkSignatureRule> | |
</rules> | |
</configuration> | |
</execution> | |
</executions> | |
</plugin> |
(use 'uwh.common.jline) | |
(use '[clojure.contrib.io :only (file read-lines)]) | |
(def processor (atom identity)) | |
(defn nil-safe [f] #(if (nil? %) % (f %))) | |
(defn add! [f] (swap! processor #(comp (nil-safe f) %))) | |
(run | |
(commands | |
(transform [f :file] | |
(doall (map (comp (nil-safe println) @processor) | |
(read-lines (file f))))) | |
(reset [] (reset! processor identity)) | |
(include [re :any] | |
(add! #(if (.matches % (str ".*" re ".*")) | |
% nil))) | |
(exclude [re :any] | |
(add! #(if (.matches % (str ".*" re ".*")) | |
nil %))) | |
(replace [re :any s :any] | |
(add! #(.replaceAll % re s))) | |
(exit [] (reset! *exit* true)))) | |