我正在开发一个 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。