24 lines
405 B
Groovy
24 lines
405 B
Groovy
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
maven { url 'https://repo.spring.io/plugins-release' }
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id 'com.gradle.enterprise' version '3.11.2'
|
|
id "io.spring.ge.conventions" version "0.0.13"
|
|
}
|
|
|
|
gradleEnterprise {
|
|
buildScan {
|
|
publishOnFailure()
|
|
}
|
|
}
|
|
|
|
rootProject.name = 'spring-kafka-dist'
|
|
|
|
include 'spring-kafka'
|
|
include 'spring-kafka-test'
|
|
include 'spring-kafka-docs'
|