问题记录:
自己接手的这个项目是一个maven项目,但是又单独引用了一些内部的jar包,导致一个问题,项目在运行的时候是ok的,但是项目打包的时候报编译项目报错 "xxx包不存在" 或 "找不到符号" !这个问题有两种解决办法,一种是把这些引用的jar包放到私服的maven仓库中,然后在maven中引用这些jar包;第二种办法就是在主pom.xml文件中加入引入jar包存放的路径!
<plugin>groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.7</source>
<target>1.7</target>
<compilerArguments>
<extdirs>${project.basedir}/src/main/webapp/WEB-INF/lib</extdirs>
</compilerArguments>
</configuration>
</plugin>