http://www.mamicode.com/info-detail-169419.htmlhtml
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代碼 web
1 <dependency> 2 <groupId>org.apache</groupId> 3 <artifactId>test</artifactId> 4 <version>1.0</version> 5 <scope>system</scope> 6 <systemPath>${basedir}/src/main/webapp/WEB-INF/lib/paypal_base.jar</systemPath> 7 </dependency>
或者apache
1 <dependency> 2 <groupId>net.sourceforge.pinyin4j</groupId> 3 <artifactId>pinyin4j</artifactId> 4 <version>2.5.0</version> 5 <scope>system</scope> 6 <systemPath>${basedir}/src/main/webapp/lib/pinyin4j-2.5.0.jar</systemPath> 7 </dependency>
!更好的方式是配置編譯參數<compilerArguments>,添加extdirs將jar包相對路徑添加到配置中,以下: app
1 <build> 2 <plugins> 3 <plugin> 4 <artifactId>maven-compiler-plugin</artifactId> 5 <configuration> 6 <source>1.6</source> 7 <target>1.6</target> 8 <encoding>UTF-8</encoding> 9 <compilerArguments> 10 <extdirs>src\main\webapp\WEB-INF\lib</extdirs> 11 </compilerArguments> 12 </configuration> 13 </plugin> 14 </plugins> 15 </build>