Code development platform for open source projects from the European Union institutions :large_blue_circle: EU Login authentication by SMS has been phased out. To see alternatives please check here

Skip to content
Snippets Groups Projects
Commit 828be832 authored by Jean-François HOVINNE's avatar Jean-François HOVINNE
Browse files

feat: Add openjdk and maven (fixes #2)

parent fb88e18e
Branches
Tags 0.2.0
1 merge request!3feat: Add openjdk and maven (fixes #2)
......@@ -5,6 +5,8 @@
- ecgalaxy.common_packages
- ecgalaxy.aws_cli
- ecgalaxy.containers_toolbox
- ecgalaxy.java_openjdk
- ecgalaxy.maven
- ecgalaxy.nodejs
- ecgalaxy.task
- ecgalaxy.summon
......
......@@ -3,6 +3,8 @@
- ecgalaxy.bootstrap
- ecgalaxy.common_packages
- ecgalaxy.containers_toolbox
- ecgalaxy.java_openjdk
- ecgalaxy.maven
- ecgalaxy.nodejs
- ecgalaxy.summon
- ecgalaxy.vault4summon
......
......@@ -5,9 +5,15 @@ def test_commands(host):
cmd = host.run('git --version')
assert cmd.rc == 0
cmd = host.run('java -version')
assert cmd.rc == 0
cmd = host.run('jq --version')
assert cmd.rc == 0
cmd = host.run('mvn --version')
assert cmd.rc == 0
cmd = host.run('node --version')
assert cmd.rc == 0
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment