junboV2/settings.gradle

29 lines
863 B
Groovy

/*
* This file was generated by the Gradle 'init' task.
*
* The settings file is used to specify which projects to include in your build.
*
* Detailed information about configuring a multi-project build in Gradle can be found
* in the user manual at https://docs.gradle.org/6.0/userguide/multi_project_builds.html
*/
pluginManagement {
repositories {
maven {
url = uri('file:///D:/maven-repository')
}
maven {
url 'http://nexus.jetmobo.com/repository/public/'
allowInsecureProtocol = true
credentials {
username = gradle.ext.has('username') ? gradle.ext.username : ''
password = gradle.ext.has('password') ? gradle.ext.password : ''
}
}
gradlePluginPortal()
mavenCentral()
}
}
rootProject.name = 'junboV2'