Maven依赖本地Jar包解决办法

         一般情况下,如果在Intellij下使用maven打包,需要使用本地jar包,可以使用Module Settings  ---> Libraries   --->Attach Jar Directories方式将本地jar包所在目录加入项目依赖配置,如果这招还不行,那可以直接利用maven命令将jar包install成本地依赖,然后在pom.xml中加入dependency配置即可。

          具体maven打包命令如下:

          mvn install:install-file -Dfile={directoryOfJar} -DgroupId={groupId} -DartifactId={artifactId} -Dversion={version} -Dpackaging=jar 

          具体maven依赖配置如下:

           <dependency>
                <groupId>{groupId}</groupId>
                <artifactId>{artifactId}</artifactId>
                <version>{version}</version>
            </dependency>

猜你喜欢

转载自cwfmaker.iteye.com/blog/2061619