Configuring Gradle
How to configure the Gradle package manager
Pull directly from the artifact server using Groovy
repositories {
maven {
credentials {
username "$sealUser"
password "$sealToken"
}
url "https://maven.sealsecurity.io"
}
}sealUser=PROJECT_ID
sealToken=SEAL_TOKENPull using JFrog's Artifactory
Last updated