Skip to content

Commit 0031278

Browse files
committed
add Gradle application plugin
1 parent 0fd3561 commit 0031278

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

app/build.gradle.kts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
2-
id("java")
32
id("com.github.ben-manes.versions") version "0.53.0"
3+
application
44
}
55

66
group = "hexlet.code"
@@ -18,4 +18,8 @@ dependencies {
1818

1919
tasks.test {
2020
useJUnitPlatform()
21+
}
22+
23+
application {
24+
mainClass = "hexlet.code.App";
2125
}

0 commit comments

Comments
 (0)