We use a automation tool that suggests to keep js files in src/test/java below is the structure
Project : common
->src->test->java
->*.js and *.feature files inside
Project: DomainTest
->src->test->java
->*.js files
Project ‘DomainTest’ depends on ‘common’ and I need all js files from common copied to DomainTest[src/test/java],
I tried using processresources but it doesn’t copy javascript files. How do i copy files from common?
Also, if i publish common module to a repository how do i copy js files. Need help