2013-08-02 4 views
1

J'ai une application JavaFX utilisant fxml et JavaFX Scene Builder 1.1. Lorsque je compile le projet dans Netbeans, il donne des avertissements pour chaque fichier jar inclus dans le projet, ce qui rend le processus de compilation plus long. Par exemple:Comment supprimer l'avertissement lors de la compilation dans l'application java fxml dans netebeans

Warning: 
The signer certificate will expire within six months. 
Enter Passphrase for keystore: Enter key password for nb-jfx: 
Signing JAR: E:\Project\Client\Development\Mednet\dist\lib\activation.jar to E:\Project\Client\Development\Mednet\dist\lib\activation.jar as nb-jfx 

Warning: 
The signer certificate will expire within six months. 
Enter Passphrase for keystore: Enter key password for nb-jfx: 
Signing JAR: E:\Project\Client\Development\Mednet\dist\lib\antlr-2.7.7.jar to E:\Project\Client\Development\Mednet\dist\lib\antlr-2.7.7.jar as nb-jfx 

Warning: 
The signer certificate will expire within six months. 
Enter Passphrase for keystore: Enter key password for nb-jfx: 
Signing JAR: E:\Project\Client\Development\Mednet\dist\lib\asm-3.1.jar to E:\Project\Client\Development\Mednet\dist\lib\asm-3.1.jar as nb-jfx 

Warning: 
The signer certificate will expire within six months. 
Enter Passphrase for keystore: Enter key password for nb-jfx: 
Signing JAR: E:\Project\Client\Development\Mednet\dist\lib\dom4j-1.6.1.jar to E:\Project\Client\Development\Mednet\dist\lib\dom4j-1.6.1.jar as nb-jfx 

Warning: 
The signer certificate will expire within six months. 
Enter Passphrase for keystore: Enter key password for nb-jfx: 
Signing JAR: E:\Project\Client\Development\Mednet\dist\lib\hibernate-commons-annotations-4.0.2.Final.jar to E:\Project\Client\Development\Mednet\dist\lib\hibernate-commons-annotations-4.0.2.Final.jar as nb-jfx 

Warning: 
The signer certificate will expire within six months. 
Enter Passphrase for keystore: Enter key password for nb-jfx: 
Signing JAR: E:\Project\Client\Development\Mednet\dist\lib\hibernate-core-4.2.2.Final.jar to E:\Project\Client\Development\Mednet\dist\lib\hibernate-core-4.2.2.Final.jar as nb-jfx 

... et tant d'autres ....

Comment je peux les arrêter et réduire le temps de compilation? Merci.

+0

vous utilisez un certificat et cela épuise. qui n'a rien à voir avec javafx ou fxml. – Kalaschni

Répondre

6

Vous pouvez aller aux propriétés> construire> déploiement, puis décocher la case disant demande un accès sans restriction (activer la signature)

Questions connexes