File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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.
Original file line number Diff line number Diff line change @@ -9,24 +9,15 @@ plugins {
99group = groupId
1010version = koraVersion
1111
12- java {
13- sourceCompatibility = JavaVersion . VERSION_21
14- targetCompatibility = JavaVersion . VERSION_21
15- }
16-
1712repositories {
1813 mavenCentral()
1914 maven { url " https://central.sonatype.com/repository/maven-snapshots" }
2015}
2116
2217configurations {
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
3223dependencies {
@@ -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
4543application {
Original file line number Diff line number Diff line change 11groupId =ru.tinkoff.kora
2- koraVersion =1.2.3
2+ koraVersion =1.2.16
33
44
55# #### GRADLE #####
Original file line number Diff line number Diff line change 11distributionBase =GRADLE_USER_HOME
22distributionPath =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
44networkTimeout =10000
55validateDistributionUrl =true
66zipStoreBase =GRADLE_USER_HOME
Original file line number Diff line number Diff 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+
913rootProject. name = " kora-java-template"
You can’t perform that action at this time.
0 commit comments