--- old/modules/fxpackager/src/main/java/com/sun/javafx/tools/ant/DeployFXTask.java 2016-02-23 13:24:19.000000000 -0800 +++ new/modules/fxpackager/src/main/java/com/sun/javafx/tools/ant/DeployFXTask.java 2016-02-23 13:24:18.000000000 -0800 @@ -108,7 +108,7 @@ private Resources resources = null; private Preferences prefs = null; private String codebase = null; - private String linkModulePath = null; + private String modulePath = null; //container to embed application into //could be either string id or js code. If it is string id then it needs to @@ -137,7 +137,7 @@ } public void setLinkModulePath(String str) { - linkModulePath = str; + modulePath = str; } public DeployFXTask() { @@ -152,7 +152,7 @@ deployParams.setOfflineAllowed(offlineAllowed); deployParams.setVerbose(verbose); deployParams.setCodebase(codebase); - deployParams.setLinkModulePath(linkModulePath); + deployParams.setModulePath(modulePath); deployParams.setSignBundle(signBundle); if (width != null) { @@ -194,7 +194,7 @@ deployParams.addLimitModule(s); } deployParams.setDetectModules(app.getDetectModules()); - deployParams.setAppModulePath(app.getAppModulePath()); + deployParams.setJdkModulePath(app.getJdkModulePath()); } if (appInfo != null) {