Skip to content

Commit 2f6df41

Browse files
author
ronen
committed
Adding plugins and travis build
1 parent bfbf0ac commit 2f6df41

File tree

2 files changed

+26
-3
lines changed

2 files changed

+26
-3
lines changed

.travis.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
language: clojure
2+
3+
jdk:
4+
- openjdk8
5+
6+
script:
7+
- lein travis

project.clj

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,27 @@
22
:description "A simple tools for measure java processes heap memory and cpu usage"
33
:url ""
44
:license {:name "Apache License, Version 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0.html"}
5+
56
:dependencies [
6-
[rm-hull/table "0.7.0"]
7-
[org.clojure/clojure "1.10.1"]]
7+
[org.clojure/clojure "1.10.1"]
8+
[rm-hull/table "0.7.0"]]
9+
810
:repl-options {:init-ns jps-stat.jpscore}
11+
12+
:plugins [[lein-cljfmt "0.5.6"]
13+
[lein-ancient "0.6.15" :exclusions [org.clojure/clojure]]
14+
[lein-tag "0.1.0"]
15+
[lein-set-version "0.3.0"]]
16+
17+
918
; supporting graalvm --no-fallback
1019
:jvm-opts ["-Dclojure.compiler.direct-linking=true"]
20+
1121
:main jps-stat.jpscore
12-
:aot [jps-stat.jpscore])
22+
23+
:aot [jps-stat.jpscore]
24+
25+
:aliases {
26+
"travis" ["cljfmt" "check"]
27+
}
28+
)

0 commit comments

Comments
 (0)