Skip to main content

Repository Configuration

Nuclei SDK Repositories

To kick off, please add the below maven repositories in project level build.gradle file, so as to download all the Nuclei dependencies.

allprojects {
repositories {
google()
mavenCentral()

maven {
url 'https://sdk.gonuclei.com/artifactory/libs-release-local/'
// Please contact Nuclei Team for Credentials
// Without credentials the Repo will not be able to download the dependencies.
...
}
maven { url 'https://zendesk.jfrog.io/zendesk/repo' }
maven { url 'https://jitpack.io' }
maven {
url 'https://storage.googleapis.com/download.flutter.io'
}
}
}