features/test/java/scenarios.json
Samruddhi Khandale 9a92823e9a
Java: Fix gradle bug - sets GRADLE_USER_HOME incorrectly (#152)
* fix gradle bug

* modify tests
2022-09-14 10:20:02 -07:00

36 lines
855 B
JSON

{
"install_additional_java": {
"image": "ubuntu:focal",
"features": {
"java": {
"version": "17",
"additionalVersions": "11,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
}
}
}
}