2d099a29b8
It was necessary before, but now it's provided automatically.
42 lines
744 B
Groovy
42 lines
744 B
Groovy
description = 'Kotlin Test TestNG'
|
|
|
|
apply plugin: 'kotlin-platform-jvm'
|
|
|
|
configureJvm6Project(project)
|
|
configureDist(project)
|
|
configurePublishing(project)
|
|
ext.javaHome = JDK_17
|
|
|
|
|
|
dependencies {
|
|
expectedBy project(':kotlin-test:kotlin-test-annotations-common')
|
|
compile project(':kotlin-test:kotlin-test-jvm')
|
|
compile('org.testng:testng:6.13.1')
|
|
}
|
|
|
|
|
|
jar {
|
|
manifestAttributes(manifest, project, 'Test')
|
|
}
|
|
|
|
artifacts {
|
|
archives sourcesJar
|
|
archives javadocJar
|
|
}
|
|
|
|
dist {
|
|
from (jar, sourcesJar)
|
|
}
|
|
|
|
compileKotlin {
|
|
kotlinOptions.freeCompilerArgs = ["-Xallow-kotlin-package", "-module-name", project.name]
|
|
}
|
|
|
|
compileTestKotlin {
|
|
kotlinOptions.freeCompilerArgs = ["-Xallow-kotlin-package"]
|
|
}
|
|
|
|
test {
|
|
useTestNG()
|
|
}
|