Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

issue-81: fixing module-info.java (originally missing an opens org.scenicview.view.tabs to javafx.base) #82

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 2 additions & 10 deletions src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
module org.scenicview.scenicview {
open module org.scenicview.scenicview {
requires transitive javafx.fxml;
requires transitive javafx.web;
requires transitive javafx.swing;
Expand All @@ -26,14 +26,6 @@
requires jdk.attach;
requires java.desktop;

opens org.scenicview.view.cssfx to javafx.fxml;
opens org.scenicview.view.threedom to javafx.fxml;
opens org.fxconnector.remote to java.instrument, java.rmi;

exports org.scenicview.view.cssfx to javafx.fxml;
exports org.scenicview.view.threedom to javafx.fxml;
exports org.fxconnector.remote to java.instrument;

exports org.fxconnector.remote to java.instrument, java.rmi;
exports org.fxconnector;
exports org.scenicview;
}