Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Polish indent in build.gradle #50

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
28 changes: 14 additions & 14 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ buildscript {
}

plugins {
//NB: stdlib version is defined by this plugin's version
//NB: stdlib version is defined by this plugin's version
alias(libs.plugins.kotlin.jvm)
alias(libs.plugins.kotlin.dokka)
alias(libs.plugins.artifactory) apply false
}

//NOTE: reactor dependency versions are now defined in gradle.properties

configure(rootProject) { project ->
configure(rootProject) { project ->
apply plugin: 'kotlin'
apply from: "gradle/dokka.gradle"
apply from: "gradle/publishing.gradle"
Expand All @@ -48,20 +48,20 @@ configure(rootProject) { project ->
maven { url 'https://repo.spring.io/milestone' }
}

compileJava {
sourceCompatibility = 1.8
targetCompatibility = 1.8
}
compileJava {
sourceCompatibility = 1.8
targetCompatibility = 1.8
}

compileTestJava {
sourceCompatibility = 1.8
targetCompatibility = 1.8
}
compileTestJava {
sourceCompatibility = 1.8
targetCompatibility = 1.8
}

tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all {
kotlinOptions.jvmTarget = "1.8"
kotlinOptions.freeCompilerArgs = ["-Xjsr305=strict"]
}
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all {
kotlinOptions.jvmTarget = "1.8"
kotlinOptions.freeCompilerArgs = ["-Xjsr305=strict"]
}

dependencies {
api libs.reactor.core
Expand Down