prmr / Solitaire

Implementation of the Solitaire card game with JavaFX
GNU General Public License v2.0
26 stars 38 forks source link

remove JUnit packages from module-info.java #30

Closed chirontt closed 2 months ago

chirontt commented 2 months ago

JUnit packages are now removed from module-info.java, as they are for unit tests only, and not for the main application.

The .classpath file is updated to separate the application's module path from the test code's classpath, and they are compiled to separate class folders, as required by Eclipse.

Fixes #29