Skip to content

Commit

Permalink
Merge branch '2.6.x' into 2.7.x
Browse files Browse the repository at this point in the history
Closes gh-31388
  • Loading branch information
wilkinsona committed Jun 14, 2022
2 parents e094745 + 5a028e0 commit 88128cc
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions buildSrc/build.gradle
Expand Up @@ -13,6 +13,15 @@ repositories {
sourceCompatibility = 1.8
targetCompatibility = 1.8

ext {
def propertiesFile = new File(new File("$projectDir").parentFile, "gradle.properties")
propertiesFile.withInputStream {
def properties = new Properties()
properties.load(it)
set("kotlinVersion", properties["kotlinVersion"])
}
}

dependencies {
checkstyle "io.spring.javaformat:spring-javaformat-checkstyle:${javaFormatVersion}"
implementation(platform("org.springframework:spring-framework-bom:5.3.15"))
Expand All @@ -21,8 +30,8 @@ dependencies {
implementation("org.apache.maven:maven-embedder:3.6.2")
implementation("org.asciidoctor:asciidoctor-gradle-jvm:3.3.2")
implementation("org.gradle:test-retry-gradle-plugin:1.4.0")
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.0")
implementation("org.jetbrains.kotlin:kotlin-compiler-embeddable:1.5.0")
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:${kotlinVersion}")
implementation("org.jetbrains.kotlin:kotlin-compiler-embeddable:${kotlinVersion}")
implementation("org.springframework:spring-core")
implementation("org.springframework:spring-web")
implementation("io.spring.javaformat:spring-javaformat-gradle-plugin:${javaFormatVersion}")
Expand Down

0 comments on commit 88128cc

Please sign in to comment.