Skip to content

Instantly share code, notes, and snippets.

View tcthien's full-sized avatar

Thien Tran tcthien

  • Personal
  • Viet Nam
View GitHub Profile
@tcthien
tcthien / gist:96298f11ebdd8f0773c3d65b961315ff
Last active December 23, 2016 06:26 — forked from reiz/gist:d67512deee814705134e
Vagrantfile for a Java dev. environment with Oracle Java 8, Maven and Eclipse.
Vagrant.configure(2) do |config|
config.vm.box = "ubuntu/trusty64"
config.vm.provider "virtualbox" do |vb|
vb.gui = true
vb.memory = "4096"
end