-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathproject.clj
35 lines (26 loc) · 1.47 KB
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
(def jruby-version "9.4.8.0")
(defproject puppetlabs/jruby-deps "9.4.8.0-2-SNAPSHOT"
:description "JRuby dependencies"
:url "https://github.com/puppetlabs/jruby-deps"
:license {:name "Apache License, Version 2.0"
:url "http://www.apache.org/licenses/LICENSE-2.0"}
:parent-project {:coords [puppetlabs/clj-parent "7.3.14"]
:inherit [:managed-dependencies]}
:min-lein-version "2.7.1"
:pedantic? :abort
:dependencies [[org.jruby/jruby-base ~jruby-version :exclusions [joda-time]]
[org.jruby/jruby-stdlib ~jruby-version]
[org.snakeyaml/snakeyaml-engine "2.7"]]
:deploy-repositories [["releases" {:url "https://clojars.org/repo"
:username :env/clojars_jenkins_username
:password :env/clojars_jenkins_password
:sign-releases false}]]
:plugins [[lein-release-4digit-version "0.2.0"]]
;; EZbake relies on this being stored top-level in the jar,
;; when including this project as an additional uberjar when building
;; pe-puppetserver. Lein 2.8.0 stopped adding project.clj at the top level.
;; Long term, it might be better to fix ezbake to handle the file's new location
;; under `META-INF/leiningen/group/artifact/project.clj`, but since this is the
;; only project that relies on that right now, it's simpler to just add it here.
:resource-paths ["project.clj"]
:uberjar-name "jruby-9k.jar")