blob: e663d450bb46739094841f2e42e28a32b0a43906 [file] [log] [blame] [edit]
import org.gradle.jvm.tasks.Jar
plugins {
java
kotlin("jvm")
}
dependencies {
compile(kotlinStdlib())
compileOnly(intellijCoreDep()) { includeJars("intellij-core") }
compileOnly(intellijDep()) { includeJars("asm-all", rootProject = rootProject) }
}
sourceSets {
"main" { projectDefault() }
}
tasks {
"jar" {
this as Jar
manifest {
attributes["Manifest-Version"] = 1.0
attributes["PreMain-Class"] = "org.jetbrains.kotlin.testFramework.TestInstrumentationAgent"
}
}
}