generated from javalin/javalin-repo-template
-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add module-info.java file * Allow tests to compile * Add Moditech Plugin * Move module-info.java to root * Add Module.info to Tests * Remove Moditech Plugin * Add moditech plugin back * Rearrange module-info.java
- Loading branch information
Showing
2 changed files
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
module io.javalin.rendering { | ||
requires io.javalin; | ||
requires transitive kotlin.stdlib; | ||
|
||
requires static thymeleaf; | ||
requires static com.github.mustachejava; | ||
requires static freemarker; | ||
requires static gg.jte; | ||
requires static gg.jte.runtime; | ||
requires static io.pebbletemplates; | ||
|
||
exports io.javalin.rendering.template; | ||
exports io.javalin.rendering.markdown; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters