Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Requires to install all the plug-ins in the local Maven repository (see above Building all Plug-ins).

    Code Block
    none
    none
    cd weasis-distributions
    mvn clean package
    
    Tip
    titlepack200 compression

    From 1.1.2 it is possible to use the compression pack200 that reduces jar size considerably. Note: it is recommended to use the Oracle jdk with this option (openjdk can throw packging errors).

    Code Block
    none
    none
    mvn clean package -P pack200
    
    Warning
    titleFor the WEB distribution

    For using Weasis through Java Webstart, it is required to sign jar files with your own certificate (by replacing values in the command below by your own values). A trust-worthy certificate from a certificate authority is now r equired required to run Java Web Start applications. A self signed certificate generate by keytool will always display a security warning message.
    The parameters must be placed in the maven user setting or has to be the options in the Maven command:

    Code Block
    none
    none
    mvn clean package -Djarsigner.alias="your_alias" -Djarsigner.storepass="your_pwd" -Djarsigner.keystore="your_path/keystore"
    

...