Hi,
I’m converting a project to use gradle. My root project has two subprojects. Let’s say they’re called ServerSide and ClientSide. ServerSide uses gradle plugins ‘java’, ‘kotlin’, ‘war’. And ClientSide is for compiling kotlin to JS, so it uses the ‘kotlin2js’ plugin.
Are there any examples on how to get the .js output files from ClientSide into the war produced by ServerSide? If I simply add the ClientSide project as a dependency in ServerSide, gradle puts ClientSide.jar in ServerSide’s WEB-INF/lib.
Rob