Skip to content

Commit 5a7c5f7

Browse files
committed
Updated
1 parent 93042fb commit 5a7c5f7

5 files changed

Lines changed: 17 additions & 15 deletions

File tree

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
same "printed page" as the copyright notice for easier
187187
identification within third-party archives.
188188

189-
Copyright 2022 Tinkoff Bank
189+
Copyright 2022 Kora Framework
190190

191191
Licensed under the Apache License, Version 2.0 (the "License");
192192
you may not use this file except in compliance with the License.

build.gradle

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -9,24 +9,15 @@ plugins {
99
group = groupId
1010
version = koraVersion
1111

12-
java {
13-
sourceCompatibility = JavaVersion.VERSION_21
14-
targetCompatibility = JavaVersion.VERSION_21
15-
}
16-
1712
repositories {
1813
mavenCentral()
1914
maven { url "https://central.sonatype.com/repository/maven-snapshots" }
2015
}
2116

2217
configurations {
2318
koraBom
24-
annotationProcessor.extendsFrom(koraBom)
25-
compileOnly.extendsFrom(koraBom)
26-
implementation.extendsFrom(koraBom)
27-
api.extendsFrom(koraBom)
28-
testImplementation.extendsFrom(koraBom)
29-
testAnnotationProcessor.extendsFrom(koraBom)
19+
annotationProcessor.extendsFrom(koraBom); compileOnly.extendsFrom(koraBom); implementation.extendsFrom(koraBom)
20+
api.extendsFrom(koraBom); testImplementation.extendsFrom(koraBom); testAnnotationProcessor.extendsFrom(koraBom)
3021
}
3122

3223
dependencies {
@@ -39,7 +30,14 @@ dependencies {
3930

4031
testImplementation "org.mockito:mockito-core:5.18.0"
4132
testImplementation "ru.tinkoff.kora:test-junit5"
42-
testImplementation "org.testcontainers:junit-jupiter:1.19.8"
33+
testImplementation "org.testcontainers:junit-jupiter:1.21.4"
34+
}
35+
36+
java {
37+
toolchain {
38+
languageVersion = JavaLanguageVersion.of(25)
39+
vendor = JvmVendorSpec.ADOPTIUM
40+
}
4341
}
4442

4543
application {

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
groupId=ru.tinkoff.kora
2-
koraVersion=1.2.3
2+
koraVersion=1.2.16
33

44

55
##### GRADLE #####

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-9.1.0-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.5.1-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

settings.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,8 @@ pluginManagement {
66
}
77
}
88

9+
plugins {
10+
id "org.gradle.toolchains.foojay-resolver-convention" version "1.0.0"
11+
}
12+
913
rootProject.name = "kora-java-template"

0 commit comments

Comments
 (0)