Last active
September 18, 2015 21:49
-
-
Save NLKNguyen/fe35d62d88cb54f6bd0f to your computer and use it in GitHub Desktop.
Revisions
-
NLKNguyen revised this gist
Sep 18, 2015 . 1 changed file with 8 additions and 0 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,8 @@ # IDE: IntelliJIDEA https://www.jetbrains.com/idea/download/ If you don't have IDEA, you have no idea. -- Venkat Subramaniam # Web Container: Tomcat http://tomcat.apache.org/download-80.cgi -
NLKNguyen revised this gist
Sep 17, 2015 . 1 changed file with 3 additions and 0 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -17,4 +17,7 @@ sudo apt-get install gradle # Check gradle -v # Enable deamon for faster build touch ~/.gradle/gradle.properties && echo "org.gradle.daemon=true" >> ~/.gradle/gradle.properties ``` -
NLKNguyen created this gist
Sep 5, 2015 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,20 @@ #Install Java 8 (Oracle JDK) ```BASH sudo add-apt-repository ppa:webupd8team/java sudo apt-get update sudo apt-get install oracle-java8-installer sudo apt-get install oracle-java8-set-default # Check java -version ``` #Install Gradle ```BASH sudo add-apt-repository ppa:cwchien/gradle sudo apt-get update sudo apt-get install gradle # Check gradle -v ```