All projects
Note: artifacts in italics are non-canonical forks. See the wiki for more details.
Displaying projects 16761 - 16780 of 31854
Create an RPM without rpm-tools
pausebreak 2016-01-12 | leiningen plugin for the remote debug re-frame applications
motor4ik 2020-02-18 | Leiningen plugin that adds support for 4-digit versions in release/change tasks
puppetlabs-jenkins 2017-05-08 | Leiningen plugin: reload modified files
paraseba 2011-06-04 | A leiningen plugin to start a remote swank server.
hugoduncan 2010-06-09 | Repack your project for deployment
zcaudate 2015-02-16 | Find repetitions in code
fractal 2016-06-03 | A plugin for a Clojure 1.3 repl in Leiningen 1.x.
technomancy 2012-01-04 | clojurescript rhino and browser repl for leiningen
jedahu 2012-03-02 | A Leiningen plugin to run a program with a background nrepl server.
jimbru 2014-12-12 | A leiningen plugin to start a persistent repl server for use with cljsh
franks42 2012-04-24 | Launch a REPL server on specified port and IP.
nakkaya 2011-03-11 | Generate a report about a project based on other lein plugins
telser 2014-07-20 | A task that copies the files for the resource-paths to the
target-path, applying stencil to each file allowing the files to be
updated as they are copied.
## Usage
### Copy
Execute the plugin to copy the files.
lein resource
### Clean
Remove the files created by the plugin.
lein resource clean
### Print
Print the value of a stencil specified as an argument, useful for build scripts
lein resource print "{{version}}"
export MY_PROJECT_VERSION=$(lein resource print "{{name}}:{{version}}")
### Pretty Print
Dump the map of values sent to stencil.
lein resource pprint
## Configuration
To configure the plugin,add to the project.clj:
### Sample Configuration
:resource {
;; required or will do nothing
:resource-paths ["src-resource"]
OR
:resource-paths [ ["src-resource"
{
:includes [] ;; list of regex
:excludes [] ;; list of regex
:target-path "" ;; directory to store files
:extra-values {} ;; override the top level
;; values for this resource
}]]
;; optional default to the global one
:target-path "target/html"
;; When true, only copy files where src is
;; newer than default
:update false
;; optional - this is the default
:includes [ #".*" ]
;; optional - default is no excludes
;; which is en empty vector
:excludes [ #".*~" ]
;; optional - list of regex of files to skip stencil
:skip-stencil [ ]
;; optional - if true, do not echo progress to the screen
:silent false
;; optional - if true, echo lots of debug info
:verbose false
;; optional - default to nil
:extra-values
{ :year
~(.get (java.util.GregorianCalendar.)
(java.util.Calendar/YEAR)) }
## Links
### Marginalia
[Marginalia](http://gdeer81.github.io/marginalia)
[Markdown](http://daringfireball.net/projects/markdown/syntax)
[MathJax](http://www.mathjax.org/)
### test.check
[test.check](https://github.com/clojure/test.check)
m0smith 2017-06-11 | Collect resource's name in file for unpacking by eresources
dowakin 2014-05-05 | Run only the test namespaces which failed last time around.
technomancy 2011-04-02 | A Leiningen plugin to execute js in rhino.
pvc 2014-03-25 |