Last active
January 28, 2016 10:11
-
-
Save james-s-tayler/2fac5372dfaad58ea54b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Desktop Entry] | |
Name=Eclipse | |
Type=Application | |
Exec=/home/vagrant/eclipse/eclipse | |
Terminal=false | |
Icon=/home/vagrant/eclipse/icon.xpm | |
Comment=Integrated Development Environment | |
NoDisplay=false | |
Categories=Development;IDE; | |
Name[en]=Eclipse | |
X-Desktop-File-Install-Version=0.22 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/bash | |
#install gnome2 and configure it as default replacing Unity | |
wget -qO- https://goo.gl/OazRJC | sh | |
#install docker | |
wget -qO- https://get.docker.com/ | sh | |
#install java 8 | |
wget -qO- https://goo.gl/TIzMJM | sh | |
#installs maven 3.3.3 - spring-boot 1.3.1 requires maven 3.2 or greater. | |
wget -qO- https://goo.gl/a79ebA | sh | |
#install eclipse mars | |
wget -qO- https://goo.gl/OE4GWQ | sh | |
#install eclipse project importer plugin | |
wget -qO- https://goo.gl/DbQVvl | sh | |
#install google-chrome | |
wget -qO- https://goo.gl/ByogKt | sh | |
#restart the machine | |
sudo shutdown -r 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment