Search code examples
gwtgitignorehgignoresvnignore

GWT .hgignore / .gitignore entries


What are the typical entries in your source control ignore files for a GWT App (developed in eclipse)?


Solution

  • I would recommend:

    :

    /build
    /classes
    *.jar
    *.class
    *~
    */web-app/gwt
    */web-app/WEB-INF/classes
    target
    

    The name of certain generated directories can vary slightly, so you should adapt them for your project.