I just ran into this problem using Proguard with an Ektorp dependency. The Reference type is general, and -keepattributes Signature will contain general information.
I really used the following which solved my problem.
-keepattributes Signature,*Annotation*,EnclosingMethod
From Proguard Examples :
The Signature attribute is required to access generic types when compiling in JDK 5.0 and later.
David v
source share