|
|
|
@ -10,52 +10,54 @@ repositories {
|
|
|
|
|
gradlePluginPortal()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
new File(new File("$projectDir").parentFile, "gradle.properties").withInputStream {
|
|
|
|
|
sourceCompatibility = 17
|
|
|
|
|
targetCompatibility = 17
|
|
|
|
|
|
|
|
|
|
def versions = [:]
|
|
|
|
|
new File(projectDir.parentFile, "gradle.properties").withInputStream {
|
|
|
|
|
def properties = new Properties()
|
|
|
|
|
properties.load(it)
|
|
|
|
|
ext.set("kotlinVersion", properties["kotlinVersion"])
|
|
|
|
|
ext.set("springFrameworkVersion", properties["springFrameworkVersion"])
|
|
|
|
|
if (properties["springFrameworkVersion"].contains("-")) {
|
|
|
|
|
repositories {
|
|
|
|
|
maven { url "https://repo.spring.io/milestone" }
|
|
|
|
|
maven { url "https://repo.spring.io/snapshot" }
|
|
|
|
|
}
|
|
|
|
|
["assertj", "commonsCodec", "hamcrest", "jackson", "junitJupiter",
|
|
|
|
|
"kotlin", "maven", "springFramework"].each {
|
|
|
|
|
versions[it] = properties[it + "Version"]
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
ext.set("versions", versions)
|
|
|
|
|
if (versions.springFramework.contains("-")) {
|
|
|
|
|
repositories {
|
|
|
|
|
maven { url "https://repo.spring.io/milestone" }
|
|
|
|
|
maven { url "https://repo.spring.io/snapshot" }
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sourceCompatibility = 17
|
|
|
|
|
targetCompatibility = 17
|
|
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
|
checkstyle "io.spring.javaformat:spring-javaformat-checkstyle:${javaFormatVersion}"
|
|
|
|
|
|
|
|
|
|
implementation(platform("org.springframework:spring-framework-bom:${springFrameworkVersion}"))
|
|
|
|
|
implementation(platform("org.springframework:spring-framework-bom:${versions.springFramework}"))
|
|
|
|
|
implementation("com.diffplug.gradle:goomph:3.37.2")
|
|
|
|
|
implementation("com.fasterxml.jackson.core:jackson-databind:2.11.4")
|
|
|
|
|
implementation("com.fasterxml.jackson.core:jackson-databind:${versions.jackson}")
|
|
|
|
|
implementation("com.gradle:gradle-enterprise-gradle-plugin:3.12.1")
|
|
|
|
|
implementation("com.tngtech.archunit:archunit:1.0.0")
|
|
|
|
|
implementation("de.undercouch.download:de.undercouch.download.gradle.plugin:5.5.0")
|
|
|
|
|
implementation("commons-codec:commons-codec:1.13")
|
|
|
|
|
implementation("commons-codec:commons-codec:${versions.commonsCodec}")
|
|
|
|
|
implementation("io.spring.javaformat:spring-javaformat-gradle-plugin:${javaFormatVersion}")
|
|
|
|
|
implementation("org.apache.maven:maven-embedder:3.6.2")
|
|
|
|
|
implementation("org.apache.maven:maven-embedder:${versions.maven}")
|
|
|
|
|
implementation("org.asciidoctor:asciidoctor-gradle-jvm:3.3.2")
|
|
|
|
|
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:${kotlinVersion}")
|
|
|
|
|
implementation("org.jetbrains.kotlin:kotlin-compiler-embeddable:${kotlinVersion}")
|
|
|
|
|
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:${versions.kotlin}")
|
|
|
|
|
implementation("org.jetbrains.kotlin:kotlin-compiler-embeddable:${versions.kotlin}")
|
|
|
|
|
implementation("org.springframework:spring-context")
|
|
|
|
|
implementation("org.springframework:spring-core")
|
|
|
|
|
implementation("org.springframework:spring-web")
|
|
|
|
|
|
|
|
|
|
testImplementation("org.apache.logging.log4j:log4j-core:2.17.1")
|
|
|
|
|
testImplementation("org.assertj:assertj-core:3.11.1")
|
|
|
|
|
testImplementation("org.hamcrest:hamcrest:2.2")
|
|
|
|
|
testImplementation("org.junit.jupiter:junit-jupiter:5.6.0")
|
|
|
|
|
testImplementation("org.assertj:assertj-core:${versions.assertj}")
|
|
|
|
|
testImplementation("org.hamcrest:hamcrest:${versions.hamcrest}")
|
|
|
|
|
testImplementation("org.junit.jupiter:junit-jupiter:${versions.junitJupiter}")
|
|
|
|
|
testImplementation("org.springframework:spring-test")
|
|
|
|
|
|
|
|
|
|
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
checkstyle {
|
|
|
|
|
toolVersion = 8.11
|
|
|
|
|
toolVersion = "10.12.4"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
gradlePlugin {
|
|
|
|
@ -65,8 +67,8 @@ gradlePlugin {
|
|
|
|
|
implementationClass = "org.springframework.boot.build.processors.AnnotationProcessorPlugin"
|
|
|
|
|
}
|
|
|
|
|
architecturePlugin {
|
|
|
|
|
id = "org.springframework.boot.architecture"
|
|
|
|
|
implementationClass = "org.springframework.boot.build.architecture.ArchitecturePlugin"
|
|
|
|
|
id = "org.springframework.boot.architecture"
|
|
|
|
|
implementationClass = "org.springframework.boot.build.architecture.ArchitecturePlugin"
|
|
|
|
|
}
|
|
|
|
|
autoConfigurationPlugin {
|
|
|
|
|
id = "org.springframework.boot.auto-configuration"
|
|
|
|
|