lprimak commented on issue #1617: URL: https://github.com/apache/shiro/issues/1617#issuecomment-2253729858
Shiro 2.0.0 introduced a regression from 1.x where it made `commons-configuration2` mandatory. See https://github.com/apache/shiro/issues/1352 for more details. Shiro 2.0.1 made `commons-configuration2` optional again. You need to include the following in your maven pom: ``` <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-configuration2</artifactId> <version>2.11.0</version> </dependency> ``` Above should fix your issue. Feel free to reopen if this doesn't solve your problem -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
