In Spring MVC application I have a set of script tags that in src attribute have a variable that drives which file version is used: <%=jsSuffix%> - it is set using application configuration settings during the runtime (long story but I think it has to stay this way):
In Spring MVC application I have a set of script tags that in
src
attribute have a variable that drives which file version is used:<%=jsSuffix%>
- it is set using application configuration settings during the runtime (long story but I think it has to stay this way):Unfortunately
gulp-rev
&gulp-rev-replace
does not match this syntax with physical file names (app-vendor.js
andapp-vendor.min.js
).Can this be achieved?