1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- pluginManagement {
- repositories {
- google {
- content {
- includeGroupByRegex("com\\.android.*")
- includeGroupByRegex("com\\.google.*")
- includeGroupByRegex("androidx.*")
- }
- }
- mavenCentral()
- gradlePluginPortal()
- maven {
- url "https://nexilis.io/artifactory/ob-in-plugin/"
- credentials {
- username = "**REPLACE*WITH*YOUR*MAVEN*USERNAME**"
- password = "**REPLACE*WITH*YOUR*MAVEN*PASSWORD**"
- }
- allowInsecureProtocol(true)
- }
- }
- }
- dependencyResolutionManagement {
- repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
- repositories {
- google()
- mavenCentral()
- maven {
- url "https://nexilis.io/artifactory/ui-uc-api-libs/"
- credentials {
- username = "**REPLACE*WITH*YOUR*MAVEN*USERNAME**"
- password = "**REPLACE*WITH*YOUR*MAVEN*PASSWORD**"
- }
- }
- maven {
- url "https://nexilis.io/artifactory/ss-libs/"
- credentials {
- username = "**REPLACE*WITH*YOUR*MAVEN*USERNAME**"
- password = "**REPLACE*WITH*YOUR*MAVEN*PASSWORD**"
- }
- }
- }
- }
- rootProject.name = "NexilisSampleCodeShield"
- include ':app'
|