de.adito.maven:repository-jarsign-maven-plugin

A maven plugin that signs jars in your local repository so that they need to be signed only once.

Лицензия

Лицензия

MIT License
Категории

Категории

Maven Компиляция и сборка
Группа

Группа

de.adito.maven
Идентификатор

Идентификатор

repository-jarsign-maven-plugin
Последняя версия

Последняя версия

2.1.3
Дата

Дата

Тип

Тип

maven-plugin
Описание

Описание

de.adito.maven:repository-jarsign-maven-plugin
A maven plugin that signs jars in your local repository so that they need to be signed only once.
Ссылка на сайт

Ссылка на сайт

https://github.com/jboesl/repository-jarsign-maven-plugin
Организация-разработчик

Организация-разработчик

ADITO Software GmbH
Система контроля версий

Система контроля версий

https://github.com/jboesl/repository-jarsign-maven-plugin

Скачать repository-jarsign-maven-plugin

Как подключить последнюю версию

<plugin>
    <groupId>de.adito.maven</groupId>
    <artifactId>repository-jarsign-maven-plugin</artifactId>
    <version>2.1.3</version>
</plugin>

Зависимости

compile (5)

Идентификатор библиотеки Тип Версия
org.apache.maven : maven-core jar 3.0.5
org.apache.maven : maven-plugin-api jar 3.0.5
org.apache.maven.plugins : maven-jarsigner-plugin jar 1.4
org.apache.maven.plugins : maven-install-plugin jar 2.3.1
org.zeroturnaround : zt-zip jar 1.8

provided (1)

Идентификатор библиотеки Тип Версия
org.apache.maven.plugin-tools : maven-plugin-annotations jar 3.4

Модули Проекта

Данный проект не имеет модулей.

repository-jarsign-maven-plugin

Build Status

Overview

This plugin speeds up jar signing especially when used together with tsa time stamping by a remote server. To solve this problem signed jars are cached in local repository. This way each jar that hasn't changed is signed only once and the next time the signature is reused.

Common usage

<project>
  ...
  <plugins>
    <plugin>
      <groupId>de.adito.maven</groupId>
      <artifactId>repository-jarsign-maven-plugin</artifactId>
      <version>2.1.3</version>
      <configuration>
        <alias>test</alias>
        <keystore>~/.testkeystore</keystore>
        <keypass>testing</keypass>
        <storepass>testing</storepass>
        <tsa>https://timestamp.geotrust.com/tsa</tsa>
        <forceSign>false</forceSign>
        <additionalManifestEntries>
          <TestEntry>testValue</TestEntry>
          <Codebase>just.a.test</Codebase>
        </additionalManifestEntries>
        <repack>true</repack>
        <pack200>true</pack200>
      </configuration>
    </plugin>
  </plugins>
  ...
</project>

Версии библиотеки

Версия
2.1.3
2.1.2
2.1.1