Commit a438526 1 parent e263f80 commit a438526 Copy full SHA for a438526
File tree 12 files changed +186
-6
lines changed
12 files changed +186
-6
lines changed Original file line number Diff line number Diff line change @@ -21,14 +21,14 @@ buildscript {
21
21
val buildKotlinVersion: String by extra
22
22
23
23
plugins {
24
- kotlin(" jvm" ) version " 1.6.21 "
24
+ kotlin(" jvm" ) version " 1.7.20 "
25
25
26
- id(" org.jetbrains.kotlin.plugin.allopen" ) version " 1.6.10 "
27
- id(" org.jlleitschuh.gradle.ktlint" ) version " 10.1 .0"
28
- id(" org.jetbrains.dokka" ) version " 1.6.21 "
26
+ id(" org.jetbrains.kotlin.plugin.allopen" ) version " 1.7.20 "
27
+ id(" org.jlleitschuh.gradle.ktlint" ) version " 11.0 .0"
28
+ id(" org.jetbrains.dokka" ) version " 1.7.10 "
29
29
id(" com.github.hierynomus.license-base" ).version(" 0.16.1" )
30
- id(" com.github.spotbugs" ) version " 5.0.6 "
31
- id(" io.gitlab.arturbosch.detekt" ) version " 1.20 .0"
30
+ id(" com.github.spotbugs" ) version " 5.0.12 "
31
+ id(" io.gitlab.arturbosch.detekt" ) version " 1.21 .0"
32
32
signing
33
33
`maven- publish`
34
34
`java- library`
Original file line number Diff line number Diff line change
1
+ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
1
2
2
3
val buildKotlin = " 1.4.32"
3
4
4
5
plugins {
5
6
`kotlin- dsl`
6
7
id(" io.gitlab.arturbosch.detekt" ).version (" 1.14.1" )
8
+ kotlin(" jvm" ) version " 1.7.20"
7
9
8
10
}
9
11
@@ -19,3 +21,14 @@ repositories {
19
21
gradlePluginPortal()
20
22
// maven("https://maven.pkg.jetbrains.space/public/p/kotlinx-html/maven")
21
23
}
24
+ dependencies {
25
+ implementation(kotlin(" stdlib-jdk8" ))
26
+ }
27
+ val compileKotlin: KotlinCompile by tasks
28
+ compileKotlin.kotlinOptions {
29
+ jvmTarget = " 1.8"
30
+ }
31
+ val compileTestKotlin: KotlinCompile by tasks
32
+ compileTestKotlin.kotlinOptions {
33
+ jvmTarget = " 1.8"
34
+ }
Original file line number Diff line number Diff line change 1
1
import io.floodplain.build.FloodplainDeps
2
+ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
3
+
4
+ plugins {
5
+ kotlin(" jvm" ) version " 1.7.20"
6
+ }
2
7
3
8
dependencies {
4
9
implementation(FloodplainDeps .kotlinCoroutines)
10
+ implementation(kotlin(" stdlib-jdk8" ))
11
+ }
12
+ repositories {
13
+ mavenCentral()
14
+ }
15
+ val compileKotlin: KotlinCompile by tasks
16
+ compileKotlin.kotlinOptions {
17
+ jvmTarget = " 1.8"
5
18
}
19
+ val compileTestKotlin: KotlinCompile by tasks
20
+ compileTestKotlin.kotlinOptions {
21
+ jvmTarget = " 1.8"
22
+ }
Original file line number Diff line number Diff line change 1
1
import io.floodplain.build.FloodplainDeps
2
+ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
3
+
4
+ plugins {
5
+ kotlin(" jvm" ) version " 1.7.20"
6
+ }
2
7
dependencies {
3
8
implementation(FloodplainDeps .debeziumEmbedded)
4
9
implementation(FloodplainDeps .debeziumPostgres)
@@ -10,4 +15,16 @@ dependencies {
10
15
testImplementation(project(" :floodplain-test" ))
11
16
testImplementation(FloodplainDeps .testContainer)
12
17
testImplementation(" org.junit.jupiter:junit-jupiter:${FloodplainDeps .junit_5_version} " )
18
+ implementation(kotlin(" stdlib-jdk8" ))
19
+ }
20
+ repositories {
21
+ mavenCentral()
22
+ }
23
+ val compileKotlin: KotlinCompile by tasks
24
+ compileKotlin.kotlinOptions {
25
+ jvmTarget = " 1.8"
13
26
}
27
+ val compileTestKotlin: KotlinCompile by tasks
28
+ compileTestKotlin.kotlinOptions {
29
+ jvmTarget = " 1.8"
30
+ }
Original file line number Diff line number Diff line change 1
1
import io.floodplain.build.FloodplainDeps
2
+ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
3
+
4
+ plugins {
5
+ kotlin(" jvm" ) version " 1.7.20"
6
+ }
2
7
3
8
dependencies {
4
9
implementation(project(" :immutable-api" ))
@@ -25,4 +30,16 @@ dependencies {
25
30
implementation(FloodplainDeps .kafkaConnectRuntime)
26
31
implementation(FloodplainDeps .kotlinCoroutines)
27
32
testImplementation(" org.junit.jupiter:junit-jupiter:${FloodplainDeps .junit_5_version} " )
33
+ implementation(kotlin(" stdlib-jdk8" ))
34
+ }
35
+ repositories {
36
+ mavenCentral()
37
+ }
38
+ val compileKotlin: KotlinCompile by tasks
39
+ compileKotlin.kotlinOptions {
40
+ jvmTarget = " 1.8"
28
41
}
42
+ val compileTestKotlin: KotlinCompile by tasks
43
+ compileTestKotlin.kotlinOptions {
44
+ jvmTarget = " 1.8"
45
+ }
Original file line number Diff line number Diff line change 1
1
import io.floodplain.build.FloodplainDeps
2
+ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
3
+
4
+ plugins {
5
+ kotlin(" jvm" ) version " 1.7.20"
6
+ }
2
7
3
8
dependencies {
4
9
implementation(FloodplainDeps .kotlinLogging)
@@ -15,4 +20,16 @@ dependencies {
15
20
testImplementation(FloodplainDeps .jacksonDatabind)
16
21
testImplementation(" org.junit.jupiter:junit-jupiter:${FloodplainDeps .junit_5_version} " )
17
22
testImplementation(FloodplainDeps .testContainer)
23
+ implementation(kotlin(" stdlib-jdk8" ))
24
+ }
25
+ repositories {
26
+ mavenCentral()
27
+ }
28
+ val compileKotlin: KotlinCompile by tasks
29
+ compileKotlin.kotlinOptions {
30
+ jvmTarget = " 1.8"
18
31
}
32
+ val compileTestKotlin: KotlinCompile by tasks
33
+ compileTestKotlin.kotlinOptions {
34
+ jvmTarget = " 1.8"
35
+ }
Original file line number Diff line number Diff line change 1
1
import io.floodplain.build.FloodplainDeps
2
+ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
2
3
3
4
plugins {
4
5
// Apply the java-library plugin to add support for Java Library
5
6
id(" java" )
6
7
id(" application" )
8
+ kotlin(" jvm" ) version " 1.7.20"
7
9
}
8
10
9
11
dependencies {
@@ -24,4 +26,16 @@ dependencies {
24
26
implementation(FloodplainDeps .kafkaStreams)
25
27
implementation(FloodplainDeps .commonsCompress) // update for vulnerability
26
28
testImplementation(" org.junit.jupiter:junit-jupiter:${FloodplainDeps .junit_5_version} " )
29
+ implementation(kotlin(" stdlib-jdk8" ))
27
30
}
31
+ repositories {
32
+ mavenCentral()
33
+ }
34
+ val compileKotlin: KotlinCompile by tasks
35
+ compileKotlin.kotlinOptions {
36
+ jvmTarget = " 1.8"
37
+ }
38
+ val compileTestKotlin: KotlinCompile by tasks
39
+ compileTestKotlin.kotlinOptions {
40
+ jvmTarget = " 1.8"
41
+ }
Original file line number Diff line number Diff line change 1
1
import io.floodplain.build.FloodplainDeps
2
+ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
3
+
4
+ plugins {
5
+ kotlin(" jvm" ) version " 1.7.20"
6
+ }
2
7
3
8
// plugins {
4
9
// id("com.github.johnrengelman.shadow")
@@ -23,6 +28,7 @@ dependencies {
23
28
implementation(project(" :streams" ))
24
29
implementation(FloodplainDeps .kotlinCoroutines)
25
30
testImplementation(" org.junit.jupiter:junit-jupiter:${FloodplainDeps .junit_5_version} " )
31
+ implementation(kotlin(" stdlib-jdk8" ))
26
32
}
27
33
28
34
// tasks {
@@ -45,3 +51,14 @@ dependencies {
45
51
// dependsOn(shadowJar)
46
52
// }
47
53
// }
54
+ repositories {
55
+ mavenCentral()
56
+ }
57
+ val compileKotlin: KotlinCompile by tasks
58
+ compileKotlin.kotlinOptions {
59
+ jvmTarget = " 1.8"
60
+ }
61
+ val compileTestKotlin: KotlinCompile by tasks
62
+ compileTestKotlin.kotlinOptions {
63
+ jvmTarget = " 1.8"
64
+ }
Original file line number Diff line number Diff line change 1
1
import io.floodplain.build.FloodplainDeps
2
+ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
3
+
4
+ plugins {
5
+ kotlin(" jvm" ) version " 1.7.20"
6
+ }
2
7
3
8
dependencies {
4
9
api(FloodplainDeps .slf4j)
@@ -29,4 +34,16 @@ dependencies {
29
34
testImplementation(FloodplainDeps .debeziumTestContainers)
30
35
testImplementation(FloodplainDeps .mongoClientSync)
31
36
testImplementation(" org.junit.jupiter:junit-jupiter:${FloodplainDeps .junit_5_version} " )
37
+ implementation(kotlin(" stdlib-jdk8" ))
38
+ }
39
+ repositories {
40
+ mavenCentral()
41
+ }
42
+ val compileKotlin: KotlinCompile by tasks
43
+ compileKotlin.kotlinOptions {
44
+ jvmTarget = " 1.8"
32
45
}
46
+ val compileTestKotlin: KotlinCompile by tasks
47
+ compileTestKotlin.kotlinOptions {
48
+ jvmTarget = " 1.8"
49
+ }
Original file line number Diff line number Diff line change 1
1
import io.floodplain.build.FloodplainDeps
2
+ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
3
+
4
+ plugins {
5
+ kotlin(" jvm" ) version " 1.7.20"
6
+ }
2
7
3
8
dependencies {
4
9
implementation(FloodplainDeps .kotlinLogging)
@@ -13,4 +18,16 @@ dependencies {
13
18
implementation(FloodplainDeps .kotlinCoroutines)
14
19
testImplementation(FloodplainDeps .testContainer)
15
20
testImplementation(" org.junit.jupiter:junit-jupiter:${FloodplainDeps .junit_5_version} " )
21
+ implementation(kotlin(" stdlib-jdk8" ))
22
+ }
23
+ repositories {
24
+ mavenCentral()
25
+ }
26
+ val compileKotlin: KotlinCompile by tasks
27
+ compileKotlin.kotlinOptions {
28
+ jvmTarget = " 1.8"
16
29
}
30
+ val compileTestKotlin: KotlinCompile by tasks
31
+ compileTestKotlin.kotlinOptions {
32
+ jvmTarget = " 1.8"
33
+ }
Original file line number Diff line number Diff line change 1
1
import io.floodplain.build.FloodplainDeps
2
+ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
3
+
4
+ plugins {
5
+ kotlin(" jvm" ) version " 1.7.20"
6
+ }
2
7
3
8
dependencies {
4
9
implementation(FloodplainDeps .kotlinLogging)
@@ -14,4 +19,16 @@ dependencies {
14
19
implementation(FloodplainDeps .commonsCompress) // update for vulnerability
15
20
testImplementation(FloodplainDeps .testContainer)
16
21
testImplementation(" org.junit.jupiter:junit-jupiter:${FloodplainDeps .junit_5_version} " )
22
+ implementation(kotlin(" stdlib-jdk8" ))
23
+ }
24
+ repositories {
25
+ mavenCentral()
26
+ }
27
+ val compileKotlin: KotlinCompile by tasks
28
+ compileKotlin.kotlinOptions {
29
+ jvmTarget = " 1.8"
17
30
}
31
+ val compileTestKotlin: KotlinCompile by tasks
32
+ compileTestKotlin.kotlinOptions {
33
+ jvmTarget = " 1.8"
34
+ }
Original file line number Diff line number Diff line change 1
1
import io.floodplain.build.FloodplainDeps
2
+ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
3
+
4
+ plugins {
5
+ kotlin(" jvm" ) version " 1.7.20"
6
+ }
2
7
3
8
dependencies {
4
9
implementation(FloodplainDeps .testContainer)
5
10
implementation(FloodplainDeps .testContainerKafka)
6
11
implementation(FloodplainDeps .kotlinLogging)
12
+ implementation(kotlin(" stdlib-jdk8" ))
13
+ }
14
+ repositories {
15
+ mavenCentral()
16
+ }
17
+ val compileKotlin: KotlinCompile by tasks
18
+ compileKotlin.kotlinOptions {
19
+ jvmTarget = " 1.8"
7
20
}
21
+ val compileTestKotlin: KotlinCompile by tasks
22
+ compileTestKotlin.kotlinOptions {
23
+ jvmTarget = " 1.8"
24
+ }
You can’t perform that action at this time.
0 commit comments