Skip to content

Commit

Permalink
IKVM.NET 8.6.9.0 Release Candidate 6: Upgrading more classes
Browse files Browse the repository at this point in the history
In the initial IKVMClass v1.0.3 upgrade, only core JDK classes are upgraded. Now, we achieved a near-complete upgrade ratio.
 + Upgraded localization and nashorn extensions to OpenJDK 8u282_b08 from IKVMClass v1.0.7
 + Upgraded OpenJDK.NET: 4 More JDK Tools: javadoc, extcheck, hat, jdeps
 + Upgraded JDK Tools to OpenJDK 8u282_b08 from IKVMClass v1.0.7
  • Loading branch information
jessiepathfinder committed Apr 1, 2021
1 parent a34f54a commit c6965de
Show file tree
Hide file tree
Showing 9 changed files with 35 additions and 676 deletions.
2 changes: 1 addition & 1 deletion CommonAssemblyInfo.cs.in
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ using System.Reflection;
[assembly: AssemblyCopyright("Copyright (C) 2019-2021 Jessie Lesbian (based on work by Jeroen Frijters and Windward Studios)")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
[assembly: AssemblyVersion("8.6.8.0")]
[assembly: AssemblyVersion("8.6.9.0")]

#if SIGNCODE
#pragma warning disable 1699
Expand Down
Binary file added openjdk/cldrdata.jar
Binary file not shown.
Binary file modified openjdk/java/lang/PropertyConstants.class
Binary file not shown.
Binary file added openjdk/localedata.jar
Binary file not shown.
Binary file added openjdk/nashorn.jar
Binary file not shown.
29 changes: 29 additions & 0 deletions openjdk/openjdk.build
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,35 @@
<arg value="-out:../bin/newrmic.exe" />
<arg value="-main:sun.rmi.rmic.newrmic.Main" />
<arg value="-r:../bin/IKVM.OpenJDK.Core.dll" />
</exec>
<!-- new OpenJDK.NET v2.0 Tools -->
<exec program="${project::get-base-directory()}/../bin/ikvmc.exe" useruntimeengine="true">
<arg value="-version:${VERSION}" />
<arg value="-apartment:none"/>
<arg value="-out:../bin/javadoc.exe" />
<arg value="-main:com.sun.tools.javadoc.Main" />
<arg value="-r:../bin/IKVM.OpenJDK.Core.dll" />
</exec>
<exec program="${project::get-base-directory()}/../bin/ikvmc.exe" useruntimeengine="true">
<arg value="-version:${VERSION}" />
<arg value="-apartment:none"/>
<arg value="-out:../bin/extcheck.exe" />
<arg value="-main:com.sun.tools.extcheck.Main" />
<arg value="-r:../bin/IKVM.OpenJDK.Core.dll" />
</exec>
<exec program="${project::get-base-directory()}/../bin/ikvmc.exe" useruntimeengine="true">
<arg value="-version:${VERSION}" />
<arg value="-apartment:none"/>
<arg value="-out:../bin/hat.exe" />
<arg value="-main:com.sun.tools.hat.Main" />
<arg value="-r:../bin/IKVM.OpenJDK.Core.dll" />
</exec>
<exec program="${project::get-base-directory()}/../bin/ikvmc.exe" useruntimeengine="true">
<arg value="-version:${VERSION}" />
<arg value="-apartment:none"/>
<arg value="-out:../bin/jdeps.exe" />
<arg value="-main:com.sun.tools.jdeps.Main" />
<arg value="-r:../bin/IKVM.OpenJDK.Core.dll" />
</exec>
</target>
</project>
680 changes: 5 additions & 675 deletions openjdk/response.txt

Large diffs are not rendered by default.

Binary file added openjdk/tools.jar
Binary file not shown.
Binary file added openjdk/zipfs.jar
Binary file not shown.

0 comments on commit c6965de

Please sign in to comment.