Maven引入第三方jar包,本地引入SDK包

图示

在这里插入图片描述

maven pom.xml配置

    <dependency>
      <groupId>cn.aa</groupId>
      <artifactId>name</artifactId>
      <version>1.0.0</version>
      <scope>system</scope>
      <systemPath>${project.basedir}/lib/sdk.jar</systemPath>
    </dependency>

猜你喜欢

转载自blog.csdn.net/qq_38425803/article/details/106919774