diff options
author | Tobias Gesellchen <tobias@gesellix.de> | 2023-01-19 00:24:10 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-19 00:24:10 +0300 |
commit | d78a1534925e7e424355d214c683e946cbb97d05 (patch) | |
tree | c0de2f137a1d25b468093f488245ffd5bffd84dd /test/java/scenarios.json | |
parent | f7314671e1654cd47263a09b134ddd0286f9eccc (diff) |
Java: add Apache Ant (#409)
* Java: add Apache Ant
* Update src/java/devcontainer-feature.json
Co-authored-by: Samruddhi Khandale <skhandale@microsoft.com>
* revert the changes in README.md
* Add tests for Java/Ant
* Fix Java feature version
Co-authored-by: Samruddhi Khandale <skhandale@microsoft.com>
Diffstat (limited to 'test/java/scenarios.json')
-rw-r--r-- | test/java/scenarios.json | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/test/java/scenarios.json b/test/java/scenarios.json index 479ee47..11fb7ba 100644 --- a/test/java/scenarios.json +++ b/test/java/scenarios.json @@ -17,7 +17,7 @@ } } }, - "install_gradle_and_maven_for_user": { + "install_ant_and_gradle_and_maven_for_user": { "image": "ubuntu:focal", "remoteUser": "vscode", "features": { @@ -26,26 +26,30 @@ }, "java": { "version": "latest", + "installAnt": true, "installGradle": true, "installMaven": true } } }, - "install_gradle_and_maven": { + "install_ant_and_gradle_and_maven": { "image": "ubuntu:focal", "features": { "java": { "version": "latest", + "installAnt": true, "installGradle": true, "installMaven": true } } }, - "install_gradle_and_maven_with_specific_version": { + "install_ant_and_gradle_and_maven_with_specific_version": { "image": "ubuntu:focal", "features": { "java": { "version": "latest", + "installAnt": "true", + "antVersion": "1.10.12", "installGradle": "true", "gradleVersion": "6.8.3", "installMaven": "true", |