1. 程式人生 > >maven打包失敗,程式包***不存在,找不到符號

maven打包失敗,程式包***不存在,找不到符號

由於專案引用第三方jar包(非maven倉庫),打包專案時報錯

        程式包***********不存在,********找不到符號(*號對應的路徑是第三方jar包路徑)

1.找到存放第三方jar包資料夾 (例如src/main/webapp/WEB-INF/lib)

     右鍵Add as Library (IDEA操作) 

2.pom檔案中配置外掛maven-compiler-plugin

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version> <configuration> <source>1.7</source> <target>1.7</target> <encoding>UTF-8</encoding> <compilerArgs> <arg>-verbose</arg> <arg>-Xlint:unchecked</arg>
<arg>-Xlint:deprecation</arg> <arg>-bootclasspath</arg> <arg>${env.JAVA_HOME}/jre/lib/rt.jar</arg> <arg>-extdirs</arg> <arg>${project.basedir}/src/main/webapp/WEB-INF/lib</arg> </compilerArgs>
</configuration> </plugin>
其中
${project.basedir}/src/main/webapp/WEB-INF/lib

可以改為相對路徑src/main/webapp/WEB-INF/lib 

注意如果 外掛maven-compiler-plugin 的版本低於3.1  配置有差異

需要將compilerArgs 改成

<compilerArguments>
    <extdirs>src\main\webapp\WEB-INF\lib</extdirs>
</compilerArguments>