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

Fix reloading of templates

This commit fixes how templates were reloaded. There was a bug in
the plugin which used the output of the precompiled templates for
development only dependencies, instead of the templates directory.
This caused the templates to be always compiled and added as a
resource on runtime classpath, when we only wanted the raw templates.

This commit also adds functional tests to the build logic, which
can be executed by running `./gradlew build-logic:test`.
This commit is contained in:
Cedric Champeau 2023-03-05 13:38:42 +01:00
parent 65e579966c
commit c9f286132c
No known key found for this signature in database
GPG key ID: 825C06C827AF6B66
18 changed files with 542 additions and 11 deletions

View file

@ -1 +1,9 @@
rootProject.name = "build-logic"
dependencyResolutionManagement {
versionCatalogs {
create("libs") {
from(files("../gradle/libs.versions.toml"))
}
}
}