jsonix-schema-compiler icon indicating copy to clipboard operation
jsonix-schema-compiler copied to clipboard

added necessary JEE modules for JRE >= 9

Open kreftl opened this issue 6 years ago • 3 comments
trafficstars

fix for https://github.com/highsource/jsonix-schema-compiler/issues/81

kreftl avatar Sep 13 '19 03:09 kreftl

Bump - Would like to use this with later versions of Java without having to build it myself.

ramin25 avatar Nov 20 '19 15:11 ramin25

@highsource any news on this? At the moment we can't use your library with current java versions unfortunatly :(.

AndreasBrie avatar Mar 12 '20 14:03 AndreasBrie

Thanks @kreftl !

In addition to your changes, for OpenJDK 15 to work I needed to do the following changes as well:

In pom.xml:

                                        <configuration>
-                                               <source>1.6</source>
-                                               <target>1.6</target>
+                                               <source>1.7</source>
+                                               <target>1.7</target>
                                        </configuration>

In npm/pom.xml:

-                                               <phase>generate-sources</phase>
+                                               <phase>prepare-package</phase>

mikaello avatar Apr 05 '21 13:04 mikaello