-
-
Notifications
You must be signed in to change notification settings - Fork 7
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
Pebble package name change in version 3.2.0 #18
Comments
From what I see we're not using that version in javalin-rendering, but I'll leave this open so we can fix it when we upgrade. @tipsy can you move this issue to the other repo? From their repo:
|
Thanks @zugazagoitia, done. |
Pebble 3.2.0 with javalin-rendering 5.6.2 app.get("/test", ctx -> {
ctx.render("test.peb", TemplateUtil.model("firstName", "John", "lastName", "Doe"));
}); results in
And adding
I see in the main branch for Javalin 6 that it still requires |
The main branch is still under active development, we'll try to get everything in order before release. |
Thanks, I wait alter com.mitchellbosecke.pebble for io.pebbletemplates |
In version 3.2.0, Pebble changed its package names from
com.mitchellbosecke
toio.pebbletemplates
, and now the newest version of Pebble is incompatible with Javalin.To Reproduce
The line,
JavalinPebble.init(new PebbleEngine.Builder().build());
causes errors.
The text was updated successfully, but these errors were encountered: