maven:从生成的源创建一个jar,并在编译之前将其添加为依赖项

时间:2013-11-19 19:01:21

标签: java maven

我想包含一个jar文件而不是添加源代码。最终的结果就像添加一个依赖项,我的war文件在WEB-INF / lib中获得了一个额外的jar,而不是WEB-INF / classes中的额外类。

        <plugin>
          <groupId>org.codehaus.mojo</groupId>
          <artifactId>build-helper-maven-plugin</artifactId>
          <version>1.8</version>
          <configuration>
              <sources>
                  <source>target/generated-sources/wsimport</source>
              </sources>
          </configuration>
          <executions>
              <execution>
                  <phase>generate-sources</phase>
                  <goals>
                      <goal>add-source</goal>
                  </goals>
              </execution>
          </executions>
        </plugin>

我在想这样的事情:

步骤1)生成源

步骤2)从target / generated-sources / wsimport

生成一个jar文件

步骤3)在编译之前将其安装到本地存储库中(mvn install:install-file -Dfile = MyWsImport.jar)

步骤4)添加MyWsImport.jar依赖

步骤5)编译

1 个答案:

答案 0 :(得分:0)

正如彼得·布特科维奇上面提到的使用模块一样。

https://github.com/gertcuykens/gcl-11

<?xml version="1.0" encoding="UTF-8"?>
<project
    xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>com.google.appengine.gcl</groupId>
    <artifactId>gcl-11</artifactId>
    <version>0.0-SNAPSHOT</version>
    <packaging>pom</packaging>

    <modules>
        <module>rs</module>
        <module>ws</module>
    </modules>

</project>