forked from borkdude/tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
antq.clj
executable file
·51 lines (42 loc) · 2.05 KB
/
antq.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/usr/bin/env bb
(ns antq
(:require [babashka.cli :as cli]
[babashka.tasks :refer [clojure]]))
(def version "2.0.895")
(def deps {:deps {'com.github.liquidz/antq {:mvn/version version}}})
(def spec [[:upgrade {:desc "Upgrade outdated versions interactively."}]
[:exclude {:coerce []
:ref "ARTIFACT_NAME[@VERSION]"
:desc "Skip version checking for specified artifacts or versions."}]
[:directory {:coerce []
:ref "DIRECTORY"
:desc "Add search path for projects. Current directory(.) is added by default."}]
[:focus {:coerce []
:ref "ARTIFACT_NAME"
:desc "Focus version checking for specified artifacts."}]
[:skip {:coerce []
:ref "PROJECT_TYPE"
:desc "Skip to search specified project files."}]
[:error-format {:ref "ERROR_FORMAT"
:desc "Customize outputs for outdated dependencies."}]
[:reporter {:ref "REPORTER"
:desc "table, format, json or edn"}]
[:force {:desc "Upgrade without confirmation."}]
[:download {:desc "Download dependencies"}]
[:ignore-locals {:desc "Ignore versions from ~/.m2"}]
[:check-clojure-tools {:desc "Detect all tools installed in ~/.clojure/tools as dependencies."}]
[:no-diff {:desc "Skip checking diff between deps' versions. Disabled by default."}]
[:version {:alias :v
:desc "Print version"}]])
(defn print-help []
(println "Point out outdated dependencies.
Usage: antq <options>
Options:")
(println (cli/format-opts {:spec spec}))
(println)
(println "Check out antq's README for more documentation: https://github.com/liquidz/antq"))
(let [args (cli/parse-opts *command-line-args* {:spec spec})]
(cond (:help args) (print-help)
(:version args) (println version)
:else (clojure "-Sdeps" deps "-X" (symbol "antq.tool" "outdated") args)))
nil