This repository has been archived on 2023-07-11. You can view files and clone it, but cannot push or open issues or pull requests.
clj-jtwig/project.clj

13 lines
606 B
Clojure
Raw Normal View History

2014-06-15 01:26:02 -04:00
(defproject clj-jtwig "0.5.1"
2014-06-19 17:34:05 -04:00
:description "Clojure wrapper for Jtwig"
:url "https://github.com/gered/clj-jtwig"
:license {:name "Apache License, Version 2.0"
:url "http://www.apache.org/licenses/LICENSE-2.0"}
:repositories [["sonatype" {:url "http://oss.sonatype.org/content/repositories/releases"
:snapshots false}]]
2014-06-12 16:23:53 -04:00
:dependencies [[org.clojure/clojure "1.6.0"]
2014-06-15 13:33:24 -04:00
[com.lyncode/jtwig-core "3.0.0-SNAPSHOT"]
[org.apache.commons/commons-lang3 "3.1"]]
:source-paths ["src/clojure"]
:java-source-paths ["src/java"])