admin管理员组文章数量:1345160
I have use care where I have to process several clojure projects and find the imports of java libraries in each clojure namespace
I an invoking clj-kondo from my code for each .clj file as follows:
(def my-classpath
["/home/userxx/projects/clojure-dev/assetapi/libs/aws-java-sdk-sqs-1.12.120.jar"
"/home/userxx/projects/clojure-dev/assetapi/libs/instaparse-1.4.8.jar"
;; ... all other JAR paths ...
"/home/userxx/projects/clojure-dev/assetapi/libs/aws-java-sdk-cloudfront-1.12.120.jar"])
(def config
{;; --- Top Level Keys ---
:lint ["/home/userxx/projects/clojure-dev/assetapi/src/clojure/assetapi/handler.clj"]
;; Classpath at top-level
:classpath my-classpath
;; Analysis flags under top-level :analysis
:analysis {:java-class-usages true
:java-class-definitions true
:java-member-definitions true
}
;; Output configuration at top-level
:output {:analysis true ; Ensures analysis results are returned
;; :format :edn ; Optional: if you prefer edn output etc.
}
;; The :config key is ONLY for merging external configs, if needed.
;; Do not put :output or :analysis under here for this purpose.
})
;; Run clj-kondo programmatically
(def result (clj-kondo/run! config))
The classpath vector contains all the jars used in the clojure project that I am processing.
I know that the namespace I am passing in is using the java libraries and it including them in the namespace via (:import []) call in the source code and it also using it in source code. However, I am not seeing any java import or usages in the analysis that is returned
The analysis returns on these keys
(:namespace-definitions :namespace-usages :var-definitions :var-usages)
enter code here
I expected to see java information in the analysis structure but I am not seeing it. I also do not see any java usage informaiton in (-> analysis :var-usages) . What do I need to fix ?
本文标签: How to use cljkondo to get all java imports in a clojure fileStack Overflow
版权声明:本文标题:How to use clj-kondo to get all java imports in a clojure file - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743762584a2534651.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论