We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e1dd0e6 + 11758f7 commit f70d140Copy full SHA for f70d140
build.gradle.kts
@@ -1,7 +1,5 @@
1
import org.gradle.jvm.tasks.Jar
2
3
-val applicationStartClass = "com.imanushin.use.performance.StartKt"
4
-
5
plugins {
6
java
7
kotlin("jvm") version embeddedKotlinVersion
@@ -18,15 +16,7 @@ repositories {
18
16
}
19
17
20
dependencies {
21
- api(kotlin("stdlib-jdk8"))
22
-}
23
24
-tasks {
25
- create<Jar>("singleJar") {
26
- manifest {
27
- attributes("Main-Class" to "com.imanushin.use.performance.StartKt")
28
- }
29
+ api(kotlin("stdlib"))
30
31
32
// there are several issues with JMH plugin on Windows (it doesn't have fork method, so jmh tries to simulates that):
0 commit comments