在maven项目中引入本地jar包

文章目录

  • 1、jar包放到项目中


1、jar包放到项目中

1、在项目个目录下创建libs文件夹,放入jar包
在maven项目中引入本地jar包_第1张图片

2、打开File —> Project Structure
在maven项目中引入本地jar包_第2张图片

3、点击Libraries,点击“+”,选择Java
在maven项目中引入本地jar包_第3张图片

4、选择jar包,点击OK
在maven项目中引入本地jar包_第4张图片

5、修改pom文件

	<dependency>
		<groupId>com.asposegroupId>
		<artifactId>aspose-cellsartifactId>
		<scope>systemscope>
		<systemPath>${project.basedir}/libs/aspose-cells-18.6.jarsystemPath>
		<version>1.0.0version>
	dependency>

	<plugins>
		<plugin>
			<configuration>
				<fork>truefork>
				<includeSystemScope>trueincludeSystemScope>
			configuration>
		plugin>
	plugins>

在maven项目中引入本地jar包_第5张图片

在maven项目中引入本地jar包_第6张图片

你可能感兴趣的:(常用工具包或方法,maven,jar,java,intellij-idea)