aboutsummaryrefslogtreecommitdiff
path: root/test/java/scenarios.json
blob: c33a0a7d4a0352649602f521f55b69c02d8f3dc1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
    "install_from_non_default_distro": {
        "image": "ubuntu:focal",
        "features": {
            "java": {
                "version": "11",
                "jdkDistro": "open"
            }
        }
    },
    "install_additional_java": {
        "image": "ubuntu:focal",
        "features": {
            "java": {
                "version": "11",
                "additionalVersions": "17,8"
            }
        }
    },
    "install_gradle_and_maven_for_user": {
        "image": "ubuntu:focal",
        "remoteUser": "vscode",
        "features": {
            "common-utils": {
                "username": "vscode"
            },
            "java": {
                "version": "latest",
                "installGradle": true,
                "installMaven": true
            }
        }
    },
    "install_gradle_and_maven": {
        "image": "ubuntu:focal",
        "features": {
            "java": {
                "version": "latest",
                "installGradle": true,
                "installMaven": true
            }
        }
    },
    "install_gradle_and_maven_with_specific_version": {
        "image": "ubuntu:focal",
        "features": {
            "java": {
                "version": "latest",
                "installGradle": "true",
                "gradleVersion": "6.8.3",
                "installMaven": "true",
                "mavenVersion": "3.6.3"
            }
        }
    }
}