lizardusx

Results 1 comments of lizardusx

Add to build.gradle, works for me ``` project.repositories.whenObjectAdded { if (it instanceof IvyArtifactRepository) { it.authentication { basic(BasicAuthentication) } it.credentials { username "user" password "pass" } } } ```