-
Type: Task
-
Status: Resolved
-
Priority: Minor
-
Resolution: Fixed
-
Affects Version/s: None
-
Component/s: CI/CD
-
Tags:
-
Team:PLATFORM
-
Sprint:nxplatform #103
From Michaƫl Vachette:
I have been running into serious slowness when compiling plugins for LTS2023 on a windows laptop. The culprit is the Apache Maven Resources Plugin 2.7 from 2012. As a workaround I add the following to pom files.
<build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>3.3.1</version> </plugin> </plugins> </pluginManagement> </build>
Would you consider upgrading this dependency to the latest version at the platform pom level?