22 lines
522 B
Groovy
22 lines
522 B
Groovy
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
mavenCentral()
|
|
}
|
|
plugins {
|
|
id 'com.gradleup.shadow' version '9.0.0-beta12'
|
|
}
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
rootProject.name = 'jdbc-agent-template'
|
|
include 'common', 'test-support'
|
|
project(':common').projectDir = file('../../../common')
|
|
project(':test-support').projectDir = file('../../../test-support')
|