oxsean commented on issue #13350: URL: https://github.com/apache/dubbo/issues/13350#issuecomment-1869273363
It appears that your private Maven server(https://artifact.swissre.com/internal) is unable to download log4j. Since dubbo requires support for log4j's logging implementation, it is not possible to completely remove the log4j dependency. The suggested solutions are: 1. Switch to maven central server, compile and download log4j once, and then switch back to your private server. 2. Manually download the specified version of the jar and pom files from https://mvnrepository.com/, and then use the command ``` mvn install:install-file -Dfile=D:/xxx.jar -DgroupId=log4j -DartifactId=log4j -Dversion=1.2.12 -Dpackaging=jar ``` to install them locally. -- 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]
