在maven项目中引入本地jar包

  • Post author:
  • Post category:其他





1、jar包放到项目中

1、在项目个目录下创建libs文件夹,放入jar包

在这里插入图片描述

2、打开File —> Project Structure

在这里插入图片描述

3、点击Libraries,点击“+”,选择Java

在这里插入图片描述

4、选择jar包,点击OK

在这里插入图片描述

5、修改pom文件

	<dependency>
		<groupId>com.aspose</groupId>
		<artifactId>aspose-cells</artifactId>
		<scope>system</scope>
		<systemPath>${project.basedir}/libs/aspose-cells-18.6.jar</systemPath>
		<version>1.0.0</version>
	</dependency>

	<plugins>
		<plugin>
			<configuration>
				<fork>true</fork>
				<includeSystemScope>true</includeSystemScope>
			</configuration>
		</plugin>
	</plugins>

在这里插入图片描述

在这里插入图片描述



版权声明:本文为weixin_49832841原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。