Re: How to maintain *.java and *.form in different directories?

2022-10-19 Thread Bernd Michaely
On 18.10.22 19:24, Thorsten Schöning wrote: But images referenced in the *.form files should work in "resources", correct? If i remember correctly, GUI designer and *.form files have nothing to do at all with the build process (in the sense of Gradle), it is part of generating sources and

Re: How to maintain *.java and *.form in different directories?

2022-10-19 Thread Thorsten Schöning
Guten Tag Neil C Smith, am Mittwoch, 19. Oktober 2022 um 14:27 schrieben Sie: > Either we're using different definitions, or there's something odd in > your configuration.[...] I repeated my tests and *.form files are not deployed by default, as long as they are stored alongside *.java. I placed

Re: How to maintain *.java and *.form in different directories?

2022-10-19 Thread Neil C Smith
On Wed, 19 Oct 2022 at 13:29, Bernd Michaely wrote: > In doubt *.form files could be deleted from the build dir after > compilation and before deployment, e.g. using doFirst in the deployment > task, something like this: .. > (never tried that myself…) So did you check if they're in there to

Re: How to maintain *.java and *.form in different directories?

2022-10-19 Thread Bernd Michaely
Indeed Gradle keeps different types of files like sources and resources in different subdirectories. *.form files are another type of files, which are created and needed even before compilation and are not to be deployed, so they would reside in their own subdirectory aside sources and

Re: How to maintain *.java and *.form in different directories?

2022-10-19 Thread Neil C Smith
On Tue, 18 Oct 2022 at 18:24, Thorsten Schöning wrote: > > Guten Tag Neil C Smith, > am Dienstag, 18. Oktober 2022 um 18:57 schrieben Sie: > > > There's a massive difference between images and .form files - .form > > files are not meant to be published as part of the deployment. > > But they are