Skip to content
Snippets Groups Projects
module-info.java 179 B
Newer Older
Jan Kožusznik's avatar
Jan Kožusznik committed
module lab01 {
    requires transitive javafx.controls;
    requires javafx.fxml;
koz01's avatar
koz01 committed
    requires java.sql;
	requires com.h2database;
Jan Kožusznik's avatar
Jan Kožusznik committed
    opens lab to javafx.fxml;
    exports lab;
}