mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-10 08:31:29 +00:00
12 lines
412 B
Java
12 lines
412 B
Java
module kotlin.test.testng {
|
|
requires transitive kotlin.stdlib;
|
|
requires transitive kotlin.test;
|
|
|
|
requires org.testng; // automatic module name in testng manifest since 7.0.0
|
|
// won't work with earlier versions, where just 'testng' name was inferred from the artifact name
|
|
|
|
exports kotlin.test.testng;
|
|
|
|
provides kotlin.test.AsserterContributor with kotlin.test.testng.TestNGContributor;
|
|
}
|