如何在pom.xml中的依赖项中排除模块

问题描述 投票:0回答:1

我写下面的代码是指Maven文档,我的项目想依赖于项目A,但是我确实想在项目A中使用org.tensorflow

  <dependencies>
    <dependency>
      <groupId>A</groupId>
      <artifactId>...</artifactId>
      <version>3.1.0</version>
      <exclusions>
        <exclusion>
          <groupId>org.tensorflow</groupId>
          <artifactId>*</artifactId>
        </exclusion>
      </exclusions>
    </dependency>
    ...
  </dependencies>

它不起作用。org.tensorflow模块仍在A的jar中。如何排除它?

maven pom.xml
1个回答
0
投票
<exclusions> <exclusion> <groupId>org.tensorflow</groupId> <artifactId>*</artifactId> </exclusion> </exclusions
只需删除其中的一部分,然后重新构建程序。我认为这会起作用。
© www.soinside.com 2019 - 2024. All rights reserved.