Getting the right data into the manifest; sadly, not succeeding in getting
it out again.
This commit is contained in:
parent
05458c3700
commit
e4ec5715a7
15
project.clj
15
project.clj
|
@ -1,18 +1,17 @@
|
||||||
(defproject mw-parser "0.1.3-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://www.journeyman.cc/microworld"
|
:url "http://www.journeyman.cc/microworld"
|
||||||
:manifest {
|
:manifest {
|
||||||
;; do not reformat this! It is important for the buildall script
|
"build-signature-version" "unset"
|
||||||
;; that each of these properties is on a line with nothing else.
|
"build-signature-user" "unset"
|
||||||
"build-signature-version" "0.1.3-SNAPSHOT"
|
"build-signature-email" "unset"
|
||||||
"build-signature-user" "Simon Brooke"
|
"build-signature-timestamp" "unset"
|
||||||
"build-signature-email" "simon@journeyman.cc"
|
"Implementation-Version" "unset"
|
||||||
"build-signature-timestamp" "2014-07-27 11:55:13+01:00"
|
|
||||||
}
|
}
|
||||||
: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"]]
|
||||||
:dependencies [[org.clojure/clojure "1.5.1"]
|
:dependencies [[org.clojure/clojure "1.5.1"]
|
||||||
[org.clojure/tools.trace "0.7.8"]
|
[org.clojure/tools.trace "0.7.8"]
|
||||||
[mw-engine "0.1.3-SNAPSHOT"]
|
[mw-engine "0.1.2-SNAPSHOT"]
|
||||||
])
|
])
|
||||||
|
|
|
@ -25,7 +25,9 @@
|
||||||
|
|
||||||
(ns mw-parser.core
|
(ns mw-parser.core
|
||||||
(:use mw-engine.utils
|
(:use mw-engine.utils
|
||||||
[clojure.string :only [split trim triml]]))
|
[clojure.string :only [split trim triml]])
|
||||||
|
(:gen-class)
|
||||||
|
)
|
||||||
|
|
||||||
(declare parse-conditions)
|
(declare parse-conditions)
|
||||||
(declare parse-not-condition)
|
(declare parse-not-condition)
|
||||||
|
|
Loading…
Reference in a new issue