星期四, 二月 09, 2006

Maven.如何在把便宜时候需要引用的第三方库?

pom.xml中用以下语句:
引用groovy脚本语言库

<dependencies>
<dependency>
<groupId>ehrm.groovy</groupId>
<artifactId>groovy</artifactId>
<version>1.0</version>
<scope>system</scope>
<systemPath>C:\ThirdPart\groovy-all-1.0-beta-7.jar</systemPath>
</dependency>
</dependencies>