Skip to content

Instantly share code, notes, and snippets.

@NLKNguyen
Last active September 18, 2015 21:49
Show Gist options
  • Save NLKNguyen/fe35d62d88cb54f6bd0f to your computer and use it in GitHub Desktop.
Save NLKNguyen/fe35d62d88cb54f6bd0f to your computer and use it in GitHub Desktop.

Revisions

  1. NLKNguyen revised this gist Sep 18, 2015. 1 changed file with 8 additions and 0 deletions.
    8 changes: 8 additions & 0 deletions Tools.md
    Original 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
  2. NLKNguyen revised this gist Sep 17, 2015. 1 changed file with 3 additions and 0 deletions.
    3 changes: 3 additions & 0 deletions Instruction.md
    Original 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
    ```
  3. NLKNguyen created this gist Sep 5, 2015.
    20 changes: 20 additions & 0 deletions Instruction.md
    Original 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
    ```