JDK-8144490 : Update assemblyIdentity version in javapackager manifest for Verona
  • Type: Bug
  • Component: javafx
  • Sub-Component: build
  • Affected Version: 9
  • Priority: P1
  • Status: Resolved
  • Resolution: Fixed
  • Submitted: 2015-12-02
  • Updated: 2016-01-12
  • Resolved: 2016-01-12
The Version table provides details related to the release that this issue/RFE will be addressed.

Unresolved : Release in which this issue/RFE will be addressed.
Resolved: Release in which this issue/RFE has been resolved.
Fixed : Release in which this issue/RFE has been fixed. The release containing this fix may be available for download as an Early Access Release or a General Availability Release.

To download the current JDK release, click here.
JDK 9
9Fixed
Related Reports
Blocks :  
Duplicate :  
Relates :  
Description
The following is wrong and needs to be updated to match the new version string format:

copy {
    mkdir "$buildDir/native"
    mkdir "$buildDir/native/javapackager"
    from file("src/main/native/javapackager/win/javapackager.manifest")
    into file("$buildDir/native/javapackager")
    // FIXME: the following is wrong and needs to be fixed
    filter { line->
        line = line.replace("FXVERSION", "${RELEASE_VERSION}.${HUDSON_BUILD_NUMBER}");
    }
}

It should use the same 4 digit version as the DLL and EXE FileVersion parameter.
Comments
http://hg.openjdk.java.net/openjfx/9-dev/rt/rev/6d0881d315d2
12-01-2016

+1
12-01-2016

Webrev: http://cr.openjdk.java.net/~kcr/8144490/webrev.00/ Simple change to use the correct version number in the packager.exe manifest.
12-01-2016

Bumping to P1 since this is causing JDK-8146934.
12-01-2016