Welcome! Please see the About page for a little more info on how this works.

+1 vote
ago in Clojure CLI by

maven supports this:

<dependency>
      <groupId>org.apache.hadoop</groupId>
      <artifactId>hadoop-common</artifactId>
      <version>${hadoop.version}</version>
      <exclusions>
        <exclusion>
          <groupId>*</groupId>
          <artifactId>*</artifactId>
        </exclusion>
      </exclusions>   

while Clojure does not , it seems

2 Answers

+1 vote
ago by

There is an existing enhancement jira for this at https://clojure.atlassian.net/browse/TDEPS-141

ago by
This could be closed as a duplicate of https://ask.clojure.org/index.php/8796/allow-wildcard-exclusions then, I guess?
0 votes
ago by

No, it does not.

ago by
The question should have been: Could support for wildcard exclusions be added to deps.edn handling, since Maven 3 already supports this?
...