-
Notifications
You must be signed in to change notification settings - Fork 614
Labels
Milestone
Description
Hello, I found there are three shaded jar in clickhouse-jdbc, like this

The shaded jar brings about some inconvenience —— it can't download sources so I can't see the code comment and the code jump is also invalid. Now it's hard to debug in my application.
In my opinion, shaded jar always used to prevent dependency conflict in other libraries, but they just shaded third party code, their own module code won't be shaded.
So what's the reason you shaded all the code include your own modules?Can it change to just shade the third party code?😁