Skip to content

Commit

Permalink
Update and fix module descriptor
Browse files Browse the repository at this point in the history
  • Loading branch information
besidev committed Jan 17, 2023
1 parent 5c3a13f commit ee0493e
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/main/java/module-info.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
module org.openjfx.gradle.javafx.test {
/**
* Module descriptor.
*
* @author Besmir Beqiri
*/
module one.jpro.hellojpro {
requires javafx.controls;
requires javafx.fxml;
requires jpro.webapi;

exports com.jpro.hellojpro;
exports one.jpro.hellojpro;
opens one.jpro.hellojpro to javafx.fxml;
}

0 comments on commit ee0493e

Please sign in to comment.