Aggarwal-Raghav commented on PR #457: URL: https://github.com/apache/tez/pull/457#issuecomment-3805611392
> I was also debugging this 😅. I think based on the stacktrace the issue is because of missing `VelocityComponentConfigurator` class used by `DefaultVelocityComponent` constructor > > ``` > but the 1st parameter of org.codehaus.plexus.velocity.internal.DefaultVelocityComponent.<init>(Unknown Source) is not @Nullable > at org.eclipse.sisu.wire.LocatorWiring > while locating org.codehaus.plexus.velocity.VelocityComponentConfigurator > ``` > > So, if we somehow add that class, it should work. I was going to add > > ``` > jar tvf org/codehaus/plexus/plexus-velocity/2.2.1/plexus-velocity-2.2.1.jar | rg VelocityComponentConfigurator > 216 Sat Apr 05 14:56:42 IST 2025 org/codehaus/plexus/velocity/VelocityComponentConfigurator.class > ``` @abstractdog , can you please give 1 try with the plexus-velocity dependency? As the `sisu-inject-plexus` didn't have the `VelocityComponentConfigurator` class (checked using `jar tvf`). Also the jar is old (2015) and had [CVE's](https://mvnrepository.com/artifact/org.sonatype.sisu/sisu-inject-plexus/2.6.0) ``` <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-velocity</artifactId> <version>2.3.0</version> </dependency> ``` -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
