@@ -340,13 +340,13 @@ be downloaded again unless they have been updated to a new version.
340340+
341341. Run the tests with `./gradlew packagingTest`. This will cause Gradle to build
342342the tar, zip, and deb packages and all the plugins. It will then run the tests
343- on ubuntu-1404 and centos-7. We chose those two distributions as the default
343+ on ubuntu-1604 and centos-7. We chose those two distributions as the default
344344because they cover deb and rpm packaging and SyvVinit and systemd.
345345
346346You can choose which boxes to test by setting the `-Pvagrant.boxes` project property. All of
347347the valid options for this property are:
348348
349- * `sample` - The default, only chooses ubuntu-1404 and centos-7
349+ * `sample` - The default, only chooses ubuntu-1604 and centos-7
350350* List of box names, comma separated (e.g. `oel-7,fedora-28`) - Chooses exactly the boxes listed.
351351* `linux-all` - All linux boxes.
352352* `windows-all` - All Windows boxes. If there are any Windows boxes which do not
@@ -364,11 +364,10 @@ will remain running and you'll have to stop them manually with `./gradlew stop`
364364
365365All the regular vagrant commands should just work so you can get a shell in a
366366VM running trusty by running
367- `vagrant up ubuntu-1404 --provider virtualbox && vagrant ssh ubuntu-1404 `.
367+ `vagrant up ubuntu-1604 --provider virtualbox && vagrant ssh ubuntu-1604 `.
368368
369369These are the linux flavors supported, all of which we provide images for
370370
371- * ubuntu-1404 aka trusty
372371* ubuntu-1604 aka xenial
373372* ubuntu-1804 aka bionic beaver
374373* debian-8 aka jessie
@@ -428,13 +427,13 @@ It's important to think of VMs like cattle. If they become lame you just shoot
428427them and let vagrant reprovision them. Say you've hosed your precise VM:
429428
430429----------------------------------------------------
431- vagrant ssh ubuntu-1404 -c 'sudo rm -rf /bin'; echo oops
430+ vagrant ssh ubuntu-1604 -c 'sudo rm -rf /bin'; echo oops
432431----------------------------------------------------
433432
434433All you've got to do to get another one is
435434
436435----------------------------------------------
437- vagrant destroy -f ubuntu-1404 && vagrant up ubuntu-1404 --provider virtualbox
436+ vagrant destroy -f ubuntu-1604 && vagrant up ubuntu-1604 --provider virtualbox
438437----------------------------------------------
439438
440439The whole process takes a minute and a half on a modern laptop, two and a half
0 commit comments