MAVEN剪除传递依赖

剪除axis2-transport-http包中的httpcore包

    <dependency>
      <groupId>org.apache.axis2</groupId>
      <artifactId>axis2-transport-http</artifactId>
      <version>${axis2.version}</version>
      <exclusions>
        <exclusion>

          <groupId>org.apache.httpcomponents</groupId>
          <artifactId>httpcore</artifactId>
        </exclusion>
      </exclusions>
    </dependency>
posted @ 2020-06-11 16:15  yvanme  阅读(92)  评论(0编辑  收藏  举报