Add javafx module
Some checks failed
zdm/undo-redo/pipeline/head There was a failure building this commit
Some checks failed
zdm/undo-redo/pipeline/head There was a failure building this commit
The undo-redo-javafx module will contain the JavaFX-compatible API for Undo-Redo.
This commit is contained in:
@ -0,0 +1,7 @@
|
||||
/**
|
||||
* Contains JavaFX-based wrapper API for integrating Undo-Redo with JavaFX.
|
||||
*
|
||||
* @author Kai S. K. Engelbart
|
||||
* @since 0.0.1
|
||||
*/
|
||||
package dev.kske.undoredo.javafx;
|
13
javafx/src/main/java/module-info.java
Normal file
13
javafx/src/main/java/module-info.java
Normal file
@ -0,0 +1,13 @@
|
||||
/**
|
||||
* Contains JavaFX-based wrapper API for integrating Undo-Redo with JavaFX.
|
||||
*
|
||||
* @author Kai S. K. Engelbart
|
||||
* @since 0.0.1
|
||||
*/
|
||||
module dev.kske.undoredo.javafx {
|
||||
|
||||
exports dev.kske.undoredo.javafx;
|
||||
|
||||
requires dev.kske.undoredo.core;
|
||||
requires javafx.base;
|
||||
}
|
Reference in New Issue
Block a user