2
0
Fork 0
mirror of https://github.com/ethauvin/rife2-hello.git synced 2025-04-25 07:27:12 -07:00

Minor cleanup

This commit is contained in:
Geert Bevin 2023-03-05 11:12:19 -05:00
parent 938372addc
commit 1d45241fae

View file

@ -125,8 +125,8 @@ public class Rife2Plugin implements Plugin<Project> {
// declared in `src/main/resources/templates` to be included in the jar file.
// which means that if for whatever reason the user also uses the same directory for
// something else, it will be excluded from the jar file.
rife2Extension.getPrecompiledTemplateTypes().get().forEach(templateType -> jar.exclude("/templates/**." + templateType.identifier().toLowerCase())
);
rife2Extension.getPrecompiledTemplateTypes().get().forEach(templateType ->
jar.exclude("/templates/**." + templateType.identifier().toLowerCase()));
});
}