我正在使用程序集插件将applet列表打包到我的maven项目的一个模块中。这是pom.xml:
<?xml version="1.0"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<packaging>pom</packaging>
<artifactId>applets-deploy</artifactId>
<name>deploy</name>
<dependencies>
<dependency>
<groupId>com.activx.lims</groupId>
<artifactId>applets-common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.activx.lims</groupId>
<artifactId>ceplot-applet</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
......
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptors>
<descriptor>src/main/assembly/resources.xml</descriptor>
</descriptors>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
我需要的是在包装之前签名罐子,我可以在这里使用jarsign插件,以及如何?我无法找到在构建过程中临时存储jar文件的位置。 谢谢,
答案 0 :(得分:0)
这将是jarsigner插件的一个非常正常的用法。默认情况下,jar包在封装阶段由jar插件构建,并输出到${project.build.directory}
,默认为target
。
你需要在包装之前和装配拉链之前将罐子签好一段时间。您可以通过将程序集插件绑定到以后的阶段,或者通过在程序集插件上添加jarsigner插件并将其绑定到程序包阶段来实现。