Add module-info to kotlin-test-* framework adapter artifacts
#KT-21266
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user