Skip to content

Commit 66498c8

Browse files
committed
1.1.25
1 parent 0288cde commit 66498c8

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

build.gradle

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

12+
application {
13+
applicationName = "application"
14+
mainClassName = "ru.tinkoff.kora.java.Application"
15+
applicationDefaultJvmArgs = ["-Dfile.encoding=UTF-8"]
16+
}
17+
1218
sourceCompatibility = JavaVersion.VERSION_21
1319
targetCompatibility = JavaVersion.VERSION_21
1420

@@ -38,26 +44,20 @@ dependencies {
3844
testImplementation "org.testcontainers:junit-jupiter:1.19.8"
3945
}
4046

41-
application {
42-
applicationName = "application"
43-
mainClassName = "ru.tinkoff.kora.java.Application"
44-
applicationDefaultJvmArgs = ["-Dfile.encoding=UTF-8"]
45-
}
46-
47-
distTar {
48-
archiveFileName = "application.tar"
49-
}
50-
5147
//noinspection GroovyAssignabilityCheck
5248
run {
5349
environment([
5450
"": "",
5551
])
5652
}
5753

58-
test.dependsOn tasks.distTar
54+
distTar {
55+
archiveFileName = "application.tar"
56+
}
5957

6058
test {
59+
dependsOn tasks.distTar
60+
6161
jvmArgs += [
6262
"-XX:+TieredCompilation",
6363
"-XX:TieredStopAtLevel=1",

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.1.19
2+
koraVersion=1.1.25
33

44

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

0 commit comments

Comments
 (0)