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

+2 votes
in Clojure CLI by
closed ago 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

closed as a duplicate of: Allow wildcard exclusions

2 Answers

+1 vote
by

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

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

No, it does not.

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