16 lines
233 B
Groovy
16 lines
233 B
Groovy
pluginManagement {
|
|
repositories {
|
|
maven{ url 'https://mvnrepository.com/'}
|
|
|
|
gradlePluginPortal()
|
|
// If you have other custom repositories, add them here
|
|
}
|
|
}
|
|
|
|
rootProject.name = 'demo'
|
|
|
|
|
|
include 'db'
|
|
|
|
|