From 5f46377b6026c6a8539b7b73acbe816c92953a57 Mon Sep 17 00:00:00 2001 From: Simon Brooke Date: Sun, 27 Jul 2014 11:22:35 +0100 Subject: [PATCH] Working on build signature properties. --- project.clj | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/project.clj b/project.clj index a54a9d0..fb1e4a3 100644 --- a/project.clj +++ b/project.clj @@ -1,18 +1,18 @@ -(defproject mw-parser "0.1.2-SNAPSHOT" +(defproject mw-parser "unset" :description "Parser for production rules for MicroWorld engine" :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" + "build-signature-user" "Simon Brooke" + "build-signature-email" "simon@journeyman.cc" + "build-signature-timestamp" "2014-07-27 11:22:13+01:00" } :license {:name "GNU General Public License v2" :url "http://www.gnu.org/licenses/gpl-2.0.html"} :plugins [[lein-marginalia "0.7.1"]] :dependencies [[org.clojure/clojure "1.5.1"] [org.clojure/tools.trace "0.7.8"] - [mw-engine "0.1.2-SNAPSHOT"] + [mw-engine "unset"] ])