gwt - Workaround for known timestamp bug of *.nocache.js files (for Windows / without Maven) -


in gwt 2.7 there known bug *.nocache.js files, not getting actual timestamp while compiling timestamp of module file (see this).

for gwt-maven-plugin there workaround commited (see compilemojo.java).

for projects not built maven wanted ask, if knows "maven-free" , automated solution workaround?!

what i'm doing right know touching file on linux server

find /my/path/ -name '*.nocache.js' -exec touch {} \; && 

which working fine right now. can use copy /b filename.ext +,, on windows, wanted know if knows automated workaround compilation issue in gwt 2.7 (with eclipse)

you can install "touch" command on windows , keep using current script.

you can find number of implementations of touch windows, here open source one: https://sourceforge.net/projects/touchforwindows/


Comments

Popular posts from this blog

Spring Boot + JPA + Hibernate: Unable to locate persister -

go - Golang: panic: runtime error: invalid memory address or nil pointer dereference using bufio.Scanner -

c - double free or corruption (fasttop) -