0

我正在开发一个 Maven 网络项目。我创建了一个不同的 Maven 项目,其中包含我想在主项目中使用的几个小程序。此项目作为依赖项添加到主项目。

在我的 Applet 项目 POM 中,

我添加了一个插件来创建一个带有依赖项的 jar,

<plugin>
    <artifactId>maven-assembly-plugin</artifactId>
    <version>2.3</version>
    <configuration>
      <descriptorRefs>
        <descriptorRef>jar-with-dependencies</descriptorRef>
      </descriptorRefs>
    </configuration>
    <executions>
      <execution>
        <id>make-assembly</id> <!-- this is used for inheritance merges -->
        <phase>package</phase> <!-- bind to the packaging phase -->
        <goals>
          <goal>single</goal>
        </goals>
      </execution>
    </executions>
</plugin>

我还签署了 uberjar 以避免一些安全限制。

<plugin>
    <artifactId>maven-jar-plugin</artifactId>
    <executions>
      <execution>
        <goals>
          <goal>sign</goal>
        </goals>
      </execution>
      <execution>
        <id>make-assembly</id>
        <phase>package</phase>
        <goals>
          <goal>sign</goal>
        </goals>
      </execution>
    </executions>
    <configuration>
      <jarPath>${project.build.directory}/${project.build.FinalName}-${project.packaging}-with-dependencies.${project.packaging}</jarPath>
      <keystore>${basedir}/signstore.jks</keystore>
      <alias>signstore</alias>
      <storepass>signstore</storepass>
    </configuration>
  </plugin>

我现在想在构建主项目时将签名的 uberjar 复制到 webapp 文件夹,以便我的 HTML 文件可以使用它。

这可能吗?我只设法复制了没有依赖关系的 jar。

4

1 回答 1

0

我对 jar-with-dependencies 也有同样的问题,使用maven shade 插件构建它要容易得多:

<build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-shade-plugin</artifactId>
                <version>1.6</version>
                <executions>
                    <execution>
                        <phase>package</phase>
                        <goals>
                            <goal>shade</goal>
                        </goals>
                        <configuration>
                            <transformers>
                                <transformer
                                    implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
                                    <mainClass>your.main.Class</mainClass>
                                </transformer>
                            </transformers>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>

这在与 maven jar 插件战斗后的几个小时内很快就起作用了。它还为您解决依赖关系之间的冲突

于 2012-05-07T14:27:14.630 回答