idea 引入第三方jar包 及打包

1.项目里新建libs文件夹,放入需要引用的jar
idea 引入第三方jar包 及打包_第1张图片
2.idea–》File–》Project Structure 添加手动导入的jar,后确认。
idea 引入第三方jar包 及打包_第2张图片
3.项目中可以正常使用引入的jar了。
idea 引入第三方jar包 及打包_第3张图片
pom中添加本地jar


 <dependency>
      <groupId>com.jd</groupId>
      <artifactId>hutool-all</artifactId>
      <version>1.0</version>
      <type>jar</type>
      <scope>system</scope>
      <systemPath>${project.basedir}/src/main/resources/lib/hutool-all-5.8.8.jar</systemPath>
    </dependency>
    <dependency>
      <groupId>com.jd</groupId>
      <artifactId>jd-open-sdk</artifactId>
      <version>1.0</version>
      <type>jar</type>
      <scope>system</scope>
      <systemPath>${project.basedir}/libs/open-api-sdk-2.0-2021-01-15.jar</systemPath>
    </dependency>
    <dependency>
      <groupId>com.jd</groupId>
      <artifactId>jd-open-sdk1</artifactId>
      <version>1.0</version>
      <type>jar</type>
      <scope>system</scope>
      <systemPath>${project.basedir}/libs/open-api-sdk-2.0-2021-01-19.jar</systemPath>
    </dependency>

注:放在resources/lib中时: ${project.basedir}/src/main/resources/lib/hutool-all-5.8.8.jar

4.在部署打包的时候,

<build>
        <plugins>
            <plugin>
                <configuration>
<!-- 代表maven打包时会将外部引入的jar包(比如在根目录下或resource文件下新加外部jar包)打包到项目jar,在服务器上项目才能运行 -->
                    <includeSystemScope>true</includeSystemScope>
                </configuration>
            </plugin>
        </plugins>
    </build>

你可能感兴趣的:(小知识,intellij-idea,jar,java)