Last active
November 2, 2017 23:47
-
-
Save JohnZavyn/99670bde4322407216b8a2a978e26640 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* <p>Workaround to allow OpenPojo version 0.8.6 to work with Java 9.</p> | |
* <p>TODO: Remove when OpenPojo is updated</p> | |
*/ | |
@BeforeClass | |
public static void setSystemProperty() | |
{ | |
System.setProperty("sun.boot.class.path", System.getProperty("java.class.path")); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment