Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Correct descriptors for TestNg
  • Loading branch information
EgorkaKulikov committed Oct 24, 2022
commit 9ae31a4d99e605fb4f98d6fd86b37005fb72b0d3
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ fun mockitoCoreLibraryDescriptor(versionInProject: String?) =

/**
* TestNg requires JDK 11 since version 7.6.0
* For projects with JDK 8 version 7.5.0 should be installed.
* For projects with JDK 8 version 7.5 should be installed.
* See https://groups.google.com/g/testng-users/c/BAFB1vk-kok?pli=1 for more details.
*/

fun testNgNewLibraryDescriptor(versionInProject: String?) =
ExternalLibraryDescriptor("org.testng", "testng", "7.6.0", null, versionInProject ?: "7.6.0")

fun testNgOldLibraryDescriptor() =
ExternalLibraryDescriptor("org.testng", "testng", "7.5.0", "7.5.0", "7.5.0")
ExternalLibraryDescriptor("org.testng", "testng", "7.5", "7.5", "7.5")