Skip to content

Commit 4fd85aa

Browse files
committed
Remove lein-plugin dir for now
1 parent 9104adf commit 4fd85aa

File tree

3 files changed

+5
-59
lines changed

3 files changed

+5
-59
lines changed

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ test: .inline-deps
1616
lein with-profile -user,+$(VERSION),+plugin.mranderson/config test
1717

1818
cljfmt:
19-
lein with-profile -user,+$(VERSION),+cljfmt,+lein-plugin cljfmt check
19+
lein with-profile -user,+$(VERSION),+cljfmt cljfmt check
2020

2121
eastwood:
2222
lein with-profile -user,+$(VERSION),+eastwood eastwood
@@ -31,14 +31,14 @@ kondo:
3131
BUMP ?= patch
3232

3333
release:
34-
lein with-profile -user,+$(VERSION),+lein-plugin release $(BUMP)
34+
lein with-profile -user,+$(VERSION) release $(BUMP)
3535

3636
# Deploying requires the caller to set environment variables as
3737
# specified in project.clj to provide a login and password to the
3838
# artifact repository.
3939

4040
deploy: .inline-deps
41-
lein with-profile -user,+$(VERSION),+plugin.mranderson/config,+lein-plugin deploy clojars
41+
lein with-profile -user,+$(VERSION),+plugin.mranderson/config deploy clojars
4242

4343
install: .inline-deps
44-
lein with-profile -user,+$(VERSION),+plugin.mranderson/config,+lein-plugin install
44+
lein with-profile -user,+$(VERSION),+plugin.mranderson/config install

lein-plugin/refactor_nrepl/plugin.clj

Lines changed: 0 additions & 54 deletions
This file was deleted.

project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@
4444
:dependencies [[org.clojure/clojure "1.11.0-master-SNAPSHOT"]
4545
[org.clojure/clojure "1.11.0-master-SNAPSHOT" :classifier "sources"]]}
4646

47-
:lein-plugin {:source-paths ["lein-plugin"]}
4847
:test {:dependencies [[print-foo "1.0.2"]]}
4948
:dev {:dependencies [[org.clojure/clojurescript "1.10.520"]
5049
[org.clojure/core.async "1.3.618" :exclusions [org.clojure/clojure org.clojure/tools.reader]]
@@ -70,6 +69,7 @@
7069
:eastwood {;; :implicit-dependencies would fail spuriously when the CI matrix runs for Clojure < 1.10,
7170
;; because :implicit-dependencies can only work for a certain corner case starting from 1.10.
7271
:exclude-linters [:implicit-dependencies]
72+
:exclude-namespaces [refactor-nrepl.plugin]
7373
:add-linters [:performance :boxed-math]
7474
:config-files ["eastwood.clj"]}}
7575
:clj-kondo [:test

0 commit comments

Comments
 (0)