Hi Team Im using gradle 8.6 version in intellij, ...
# community-support
s
Hi Team Im using gradle 8.6 version in intellij, for authentication of jfrog
Copy code
maven {
    url "${System.env.ARTIFACTORY_URL}/${System.env.MAVEN_REPOSITORY}"
    credentials(HttpHeaderCredentials) {
        name = "Authorization"
        value = "Bearer ${System.env.ARTIFACTORY_TOKEN}"
    }
    authentication {
        header(HttpHeaderAuthentication)
    }
}
when I try to reload it getting HttpHeaderAuthentication not supported but using terminal when i do ./gradlew build its downloading all the dependencies