Open
Description
Original report by Paul Furbacher (Bitbucket: Paul Furbacher).
There's a widely adopted, standard way of setting up Java source and test directories/folders, first specified by Maven and continued in Gradle.
java-cef doesn't honor this convention, but it there's no reason it shouldn't.
The current folder structure:
java-cef/
java/
org/
tests/
should be refactored to
java-cef
src/
main/
java/
org/...
test/
java/
tests/...
In addition, the tests
folder should be refactored to
java-cef/
src/
test/
org/
cef/
demos/
detailed/
simple/
Given the nature of the "tests" (they don't run in a test harness), I'd favor either "demos" or "examples".