ow2-proactive/programming

WindowsProcess support for Java 9

anantharaman93 opened this issue · 1 comments

Can support be provided for Process.toHandle() in WindowsProcess class.

It will be helpful in obtaining child processes.

Thanks

Hello suraj,

Currently the programming project and all its extensions is not compatible with Java 9. The project is built with Java 7 source compatibility, and also produces Java 7 bytecode. We don't have a plan for now to migrate to Java 9 (both source and target).

Of course, as this project is open source, you can fork this repository, and try on your own to change the following settings in the build.gradle file:
sourceCompatibility = JavaVersion.VERSION_1_7
targetCompatibility = JavaVersion.VERSION_1_7

Though I cannot guaranty that this modification will be sufficient, and you might need to fix as well parts of the code to enforce compatibility.