[
Date Prev][
Date Next][
Thread Prev][
Thread Next][
Date Index][
Thread Index]
[
List Home]
| [cbi-dev] Released CBI Plugins 1.0.4 | 
Hi Everyone,
CBI Plugins 1.0.4 has been released. See below for the release notes.
Thanh
Release 1.0.4
    - Bug 409900 - jarsigner plugin signing service url should be 
configurable
    - Bug 413339 - Signing plugins should allow overriding sign url
        It is now possible to override the signing url as follows:
        Method 1: via commandline
            eclipse-jarsigner-plugin: 
-Dcbi.jarsigner.signerUrl=http://localhost
        Method 2: via pom.xml
            <configuration>
              <signerUrl>http://localhost</signerUrl>
            </configuration>
    - Bug 406157 - Create Maven plugin for Windows signing service
    - Bug 408068 - Create Maven plugin for Mac OSX signing service
        Please refer to the included README on how to configure these 
plugins.
    - Bug 412308 - Add skip/dry-run parameter to eclipse-jarsigner-plugin
        To skip / dry-run with the jarsigner use one of these 2 methods:
        Method 1: via commandline
            -Dcbi.jarsigner.skip=true
        Method 2: via pom.xml
            <configuration>
              <skip>true</skip>
            </configuration>
    - Bug 413343 - Add jarsigner support for signing maven plugins