Taack opened a new issue, #15129:
URL: https://github.com/apache/grails-core/issues/15129
### Expected Behavior
Translations should work as for a regular `bootRun`
### Actual Behaviour
Either launching `bootRun -Dgrails.run.active=true` or using:
```groovy
bootRun {
doFirst {
classpath = classpath.filter { file ->
boolean r = true
gradle.ext.taackPlugins.each { p ->
r = r && !file.path.contains(p + '-' + version + '.jar') //
Exclude the JAR to avoid duplicates
}
r
}
gradle.ext.taackPlugins.each { p ->
classpath = classpath + project(':' + p).sourceSets.main.output
// Add classes and resources output
}
}
// [. . .]
```
Seems to results in `message.property` files not being included.
### Steps To Reproduce
First we import the infra into local maven:
1. clone the infra repo: `git clone [email protected]:Taack/infra.git`
2. into this repo, `./gradlew publishMavenPublicationToMavenLocal`
Then
1. clone the intranet repo: `git clone [email protected]:Taack/intranet.git`
2. swith to branch [g7s2](https://github.com/Taack/intranet/tree/g7s2): `git
switch g7s2`
3. Launch with `bootRun -Dgrails.run.active=true` (i18n NOK, hotreload OK),
`bootRun` (i18n OK, hotreload NOK)...
### Environment Information
- Linux cachyos-x8664 6.17.1-2-cachyos #1 SMP PREEMPT_DYNAMIC Mon, 06 Oct
2025 15:17:14 +0000 x86_64 GNU/Linux
- java full version "24.0.2+11-jvmci-b01"
### Example Application
_No response_
### Version
Grails 7.0.0-RC2
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]