4

我正在尝试解压缩 maven 工件 A 并将其重新打包到 maven 项目 B 中的新 jar 文件中。

将工件 A 中的类文件解压缩到:

    <my.classes.folder>${project.build.directory}/staging</my.classes.folder>

使用这个可以正常工作:

        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-dependency-plugin</artifactId>
            <executions>
                <execution>
                    <id>unpack</id>
                    <phase>generate-resources</phase>
                    <goals>
                        <goal>unpack</goal>
                    </goals>
                    <configuration>
                        <artifactItems>
                            <artifactItem>
                                <groupId>com.test</groupId>
                                <artifactId>mvn-sample</artifactId>
                                <version>1.0.0-SNAPSHOT</version>
                                <type>jar</type>
                                <overWrite>true</overWrite>
                                <outputDirectory>${my.classes.folder}</outputDirectory>
                                <includes>**/*.class,**/*.xml</includes>
                            </artifactItem>
                        </artifactItems>
                    </configuration>
                </execution>
            </executions>
        </plugin>

在同一个 pom 中,我现在想生成一个额外的 jar,其中包含刚刚解包的类:

        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-jar-plugin</artifactId>
            <version>2.4</version>
            <executions>
                <execution>
                    <phase>package</phase>
                    <goals>
                        <goal>jar</goal>
                    </goals>
                    <configuration>
                    <classesdirectory>${my.classes.folder}</classesdirectory>
                        <classifier>sample</classifier>
                    </configuration>
                </execution>
            </executions>
        </plugin>

创建了一个新 jar,但它不包含以下类中的类:

 ${my.classes.folder}

它只是默认项目 jar 的副本。有任何想法吗?

我试图遵循本指南:

http://jkrishnaraotech.blogspot.dk/2011/06/unpack-remove-some-classes-and-repack.html

但它不工作。

4

2 回答 2

8

我建议你maven-shade-plugin改用。

这将使 unpack-repack 在同一个调用中。

例如,您可以执行以下操作:

<plugins>
  <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-shade-plugin</artifactId>
    <version>2.0</version>
    <executions>
      <execution>
        <phase>package</phase>
        <goals>
          <goal>shade</goal>
        </goals>
        <configuration>
          <filters>
            <filter>
              <artifact>com.test:mvn-sample:1.0.0-SNAPSHOT</artifact>
              <includes>
                <include>**/*.class</include>
                <include>**/*.xml</include>
              </includes>
            </filter>
          </filters>
        </configuration>
      </execution>
    </executions>
  </plugin>
</plugins>
于 2012-10-30T16:58:57.443 回答
4

在您拥有的示例中<classesdirectory>文档将元素作为<classesDirectory>. 我认为区分大小写很重要。

于 2012-10-30T17:23:57.317 回答