javafx - I got a weird message in the console when running my java project -
when run project in netbeans receive message in console.
launching task c:\program files\java\jdk1.8.0_131\jre..\lib\ant-javafx.jar warning: jdk7u25 codebase manifest attribute should used restrict jar repurposing. please set manifest.custom.codebase property override current default non-secure value '*'. launching task c:\program files\java\jdk1.8.0_131\jre..\lib\ant-javafx.jar no base jdk. package use system jre. no base jdk. package use system jre.
my project seems run fine want know if worry about.
looking @ documentation need have java_home
property in build.xml
file pointing jdk:
<?xml version="1.0" encoding="utf-8" ?> <project name="javafx hello world example" default="default" basedir="." xmlns:fx="javafx:com.sun.javafx.tools.ant"> <property name="java_home" value="c:\\java\\jdk1.8.0"/>
Comments
Post a Comment