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

0 votes
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

1 Answer

0 votes
ago by

No, it does not.

...