function getJarIds()

in src/commands/testDependenciesCommands.ts [134:170]


function getJarIds(testKind: TestKind): IArtifactMetadata[] {
    switch (testKind) {
        case TestKind.JUnit5:
            return [{
                groupId: 'org.junit.platform',
                artifactId: 'junit-platform-console-standalone',
                defaultVersion: '1.8.2',
            }];
        case TestKind.JUnit:
            return [{
                groupId: 'junit',
                artifactId: 'junit',
                defaultVersion: '4.13.2',
            }, {
                groupId: 'org.hamcrest',
                artifactId: 'hamcrest-core',
                version: '1.3',
                defaultVersion: '1.3',
            }];
        case TestKind.TestNG:
            return [{
                groupId: 'org.testng',
                artifactId: 'testng',
                defaultVersion: '7.5',
            }, {
                groupId: 'com.beust',
                artifactId: 'jcommander',
                defaultVersion: '1.81',
            }, {
                groupId: 'org.slf4j',
                artifactId: 'slf4j-api',
                defaultVersion: '1.7.33',
            }];
        default:
            return [];
    }
}