复制带有依赖项的签名jar

时间:2012-05-06 09:03:47

标签: java maven applet signed-applet

我正在开发一个maven web项目。 我创建了一个不同的maven项目,其中包含我想在主项目中使用的几个applet。该项目作为依赖项添加到主项目中。

在我的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。

1 个答案:

答案 0 :(得分:0)

我对jar-with-dependencies有同样的问题,使用maven shade plugin构建它更加容易:

<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插件进行数小时的战斗之后,这个工作很快就开始了。它还解决了依赖关系之间的冲突