File: project.clj

package info (click to toggle)
clj-yaml-clojure 0.7.2-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 176 kB
  • sloc: java: 42; makefile: 22; sh: 18
file content (17 lines) | stat: -rw-r--r-- 824 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
(defproject clj-commons/clj-yaml "0.7.2"
  :description "YAML encoding and decoding for Clojure using SnakeYAML"
  :url "https://github.com/clj-commons/clj-yaml"
  :license {:name "Eclipse Public License - v 1.0"
            :url "http://www.eclipse.org/legal/epl-v10.html"
            :distribution :repo
            :comments "Same as Clojure"}
  ;; Emit warnings on all reflection calls.
  :global-vars {*warn-on-reflection* true}
  :source-paths ["src/clojure"]
  :java-source-paths ["src/java"]
  :javac-options ["-target" ~(System/getenv, "JAVA_TARGET_VERSION") "-source" ~(System/getenv, "JAVA_SOURCE_VERSION") "-Xlint:-options"]
  :dependencies
  [[org.yaml/snakeyaml "1.x"]
   [org.flatland/ordered "debian"]]
  :profiles {:provided {:dependencies [[org.clojure/clojure "1.x"]]}}
  :local-repo "debian/maven-repo")