1fb8fb2324
The 'FULL' variant proved to be hardly useful for everyday work. This change is the first step of removing the variant support from Pill.
26 lines
497 B
Kotlin
26 lines
497 B
Kotlin
import org.gradle.jvm.tasks.Jar
|
|
|
|
plugins {
|
|
java
|
|
kotlin("jvm")
|
|
}
|
|
|
|
dependencies {
|
|
api(kotlinStdlib())
|
|
compileOnly(intellijCore())
|
|
compileOnly(commonDependency("org.jetbrains.intellij.deps:asm-all"))
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
}
|
|
|
|
tasks {
|
|
"jar" {
|
|
this as Jar
|
|
manifest {
|
|
attributes["Manifest-Version"] = 1.0
|
|
attributes["PreMain-Class"] = "org.jetbrains.kotlin.testFramework.TestInstrumentationAgent"
|
|
}
|
|
}
|
|
} |