stevecrox commented on code in PR #34: URL: https://github.com/apache/maven-fluido-skin/pull/34#discussion_r891618666
########## pom.xml: ########## @@ -184,6 +186,93 @@ under the License. </delimiters> <useDefaultDelimiters>false</useDefaultDelimiters> </configuration> + <executions> + <execution> + <id>copy-anchor-js-into-build-output</id> + <phase>process-resources</phase> + <goals> + <goal>copy-resources</goal> + </goals> + <configuration> + <resources> + <resource> + <directory>${project.build.directory}/node_modules/anchor-js</directory> + <filtering>false</filtering> + </resource> + </resources> + <outputDirectory>${minifiyResourcesDirectory}/js</outputDirectory> + </configuration> + </execution> + <execution> + <id>copy-async-js-into-build-output</id> + <phase>process-resources</phase> + <goals> + <goal>copy-resources</goal> + </goals> + <configuration> + <resources> + <resource> + <directory>${project.build.directory}/node_modules/jquery/dist</directory> + <filtering>false</filtering> + </resource> + </resources> + <outputDirectory>${minifiyResourcesDirectory}/js</outputDirectory> + </configuration> + </execution> + <execution> + <id>copy-bootstrap-into-build-output</id> + <phase>process-resources</phase> + <goals> + <goal>copy-resources</goal> + </goals> + <configuration> + <resources> + <resource> + <directory>${project.build.directory}/node_modules/bootstrap/dist</directory> + <filtering>false</filtering> + </resource> + </resources> + <outputDirectory>${minifiyResourcesDirectory}</outputDirectory> + </configuration> + </execution> + <execution> + <id>copy-resources-into-build-output</id> + <phase>process-resources</phase> + <goals> + <goal>copy-resources</goal> + </goals> + <configuration> + <resources> + <resource> + <directory>${basedir}/src/main/resources</directory> + <filtering>false</filtering> + </resource> + </resources> + <outputDirectory>${minifiyResourcesDirectory}</outputDirectory> + </configuration> + </execution> + </executions> + </plugin> + <!-- Lets use the frontend plugin to grab the release of bootstrap. --> + <plugin> + <groupId>com.github.eirslett</groupId> + <artifactId>frontend-maven-plugin</artifactId> Review Comment: Its been a while since I've had a windows license for development, many years ago I had it working on a Windows Jenkins Build Agent. You can see Node.JS supports all platforms here: https://nodejs.org/dist/v16.15.1/ I believe the plug-in uses your OS/Arch to work out which one to retrieve. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@maven.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org