atkawa7

Results 31 comments of atkawa7

Ended up copying the lib and changing the jose library to the common nimbus and those issues are now gone.

@aistomin Yes that's what I did. I think you only need to changed three or 4 lines and exception. Something along these lines ```java var builder = new Builder(); builder.audience(notification.getOrigin());...

@umutawakil Yes that is correct. I removed [jose4j](https://bitbucket.org/b_c/jose4j/) and replaced it with [nimbus-jose-jwt](https://bitbucket.org/connect2id/nimbus-jose-jwt). @chamallamudi-gopikrishna ```java import com.nimbusds.jose.JOSEException; import com.nimbusds.jose.JWSHeader; import com.nimbusds.jose.JWSObject; import com.nimbusds.jose.Payload; import com.nimbusds.jose.crypto.ECDSASigner; import com.nimbusds.jwt.JWTClaimsSet.Builder; import static com.nimbusds.jose.JWSAlgorithm.ES256;...

Building from Source https://medium.com/@scrossoracle/building-graphviz-from-source-on-macos-b6a846d73949

@huksley @mingrammer checkout this library which helps embed images https://github.com/scour-project/scour

You can use the alternative `javax.lang.model*` and `javax.tools.*` classes instead of calling com.sun packages

On a side note I was looking at another library that does similar things it seems they do not depend on tools. https://github.com/google/error-prone/blob/master/check_api/pom.xml https://github.com/google/error-prone/blob/master/check_api/src/main/java/com/google/errorprone/util/ASTHelpers.java ```diff - - com.sun - tools...