Serious work on the buildall script (and project.clj) to capture a
build signature in the MANIFEST.MF file.
This commit is contained in:
parent
7e939b2807
commit
9dd4f91319
10
project.clj
10
project.clj
|
@ -1,6 +1,14 @@
|
||||||
(defproject mw-parser "0.1.2-SNAPSHOT"
|
(defproject mw-parser "0.1.2-SNAPSHOT"
|
||||||
:description "Parser for production rules for MicroWorld engine"
|
:description "Parser for production rules for MicroWorld engine"
|
||||||
:url "http://example.com/FIXME"
|
:url "http://www.journeyman.cc/microworld"
|
||||||
|
:manifest {
|
||||||
|
;; do not reformat this! It is important for the buildall script
|
||||||
|
;; that each of these properties is on a line with nothing else.
|
||||||
|
"build-signature-version" "unset"
|
||||||
|
"build-signature-user" "unset"
|
||||||
|
"build-signature-email" "unset"
|
||||||
|
"build-signature-timestamp" "unset"
|
||||||
|
}
|
||||||
:license {:name "GNU General Public License v2"
|
:license {:name "GNU General Public License v2"
|
||||||
:url "http://www.gnu.org/licenses/gpl-2.0.html"}
|
:url "http://www.gnu.org/licenses/gpl-2.0.html"}
|
||||||
:plugins [[lein-marginalia "0.7.1"]]
|
:plugins [[lein-marginalia "0.7.1"]]
|
||||||
|
|
|
@ -1,5 +1,8 @@
|
||||||
## Basic ruleset which just grows trees
|
## Basic ruleset which just grows trees
|
||||||
|
|
||||||
|
;; This ruleset is not very interesting in itself, but is useful as a starting
|
||||||
|
;; point from which to build more interesting rulesets.
|
||||||
|
|
||||||
## Vegetation rules
|
## Vegetation rules
|
||||||
;; rules which populate the world with plants
|
;; rules which populate the world with plants
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue