-
Notifications
You must be signed in to change notification settings - Fork 181
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Various final backend fixes * Add FS watching * run lint * Autodetect installed jars
- Loading branch information
1 parent
5cb54b4
commit 3fa0e99
Showing
26 changed files
with
941 additions
and
529 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains 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
Binary file not shown.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
public final class JavaInfo { | ||
private static final String[] CHECKED_PROPERTIES = new String[] { | ||
"os.arch", | ||
"java.version" | ||
}; | ||
|
||
public static void main(String[] args) { | ||
int returnCode = 0; | ||
|
||
for (String key : CHECKED_PROPERTIES) { | ||
String property = System.getProperty(key); | ||
|
||
if (property != null) { | ||
System.out.println(key + "=" + property); | ||
} else { | ||
returnCode = 1; | ||
} | ||
} | ||
|
||
System.exit(returnCode); | ||
} | ||
} |
This file contains 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
This file contains 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
Oops, something went wrong.