maven依賴本地非repository中的jar包 html
http://www.cnblogs.com/piaolingxue/archive/2011/10/12/2208871.htmlweb
博客分類:
MAVEN
今天在使用maven編譯打包一個web應用的時候,碰到一個問題:
項目在開發是引入了依賴jar包,放在了WEB-INF/lib目錄下,並經過buildpath中將web libariary導入。
在eclipse中開發沒有問題,可是使用maven編譯插件開始便宜老是報找不到WEB-INF/lib這個jar包中的類。
顯然實在編譯的時候WEB-INF/lib並無配置到maven-complier-plugin插件src目錄中去,
因而將這個目錄添加進去,仍是很差使。無賴,先把這個jar包安裝到本地庫中,而後添加dependency。
後來google了下,發現maven提供了scope爲system的依賴,文檔的原文以下:
system
This scope is similar to provided except that you have to provide the JAR which contains it explicitly.
The artifact is always available and is not looked up in a repository.
這樣就能夠添加dependency而不須要再將WEB-INF/lib目錄下的jar包安裝到本地庫中了。
具體配置錄下:
Xml代碼
<dependency>
<groupId>org.apache</groupId>
<artifactId>test</artifactId>
<version>1.0</version>
<scope>system</scope>
<systemPath>${basedir}/src/main/webapp/WEB-INF/lib/paypal_base.jar</systemPath>
</dependency>
apache
!更好的方式是配置編譯參數<compilerArguments>,添加extdirs將jar包相對路徑添加到配置中,以下:app
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.6</source>
<target>1.6</target>
<encoding>UTF-8</encoding>
<compilerArguments>
<extdirs>src\main\webapp\WEB-INF\lib</extdirs>
</compilerArguments>
</configuration>
</plugin>
</plugins>
</build>eclipse