Reputation: 2259
I have a JavaFX application using fxml and JavaFX Scene Builder 1.1. When I compile the project in Netbeans, it gives warnings for each jar file that is included in the project which makes it takes more time to compile. For example:
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
...and so many more....
How I can stop them and reduce the compile time? Thanks.
Upvotes: 1
Views: 1731
Reputation: 5950
You can go to properties>build>deployment, then untick the checkbox saying request unrestricted access (enable signing)
Upvotes: 6