如何在Maven的特定文件夹中添加特定的jar?

时间:2010-12-10 16:34:15

标签: maven-2

我有一个使用maven soapui插件的maven项目。

不幸的是,在我的情况下,这个需要一个外部jar用于jdbc for
一些时髦的脚本。

根据他们的文档,你必须添加一个名为“ext”的剧目 在对代码进行挖掘之后,这条路径在其插件源中进行了硬编码。 你不能指定它。

所以我必须将它直接添加到MyProject的子目录中:
Myproject / ext / postgresql.X.X.jar

我不想在我的项目中提交jar。

有没有办法告诉maven拾取特定的罐子&将它添加到特定目录?
提前感谢您的回答。

1 个答案:

答案 0 :(得分:0)

您可以使用pom文件中配置的maven-dependency-plugin在generate-resources阶段将工件复制到该位置,如下所示:

  <plugin>
    <artifactId>maven-dependency-plugin</artifactId>
    <version>2.1</version>
    <executions>
      <execution>
        <id>copy-postgresql-artifact</id>
        <phase>generate-resources</phase>
        <goals>
          <goal>copy</goal>
        </goals>
        <configuration>
          <outputDirectory>${basedir}/ext</outputDirectory>
          <!-- if you need to rename the jar -->
          <destFileName>postgresql.X.X.jar</destFileName>
          <artifactItems>
            <artifactItem>
              <groupId>postgresql</groupId>
              <artifactId>postgresql</artifactId>
              <version>X.X</version>
            </artifactItem>
          </artifactItems>
        </configuration>
      </execution>
    </executions>
  </plugin>