code.gitea.io/gitea@v1.21.7/options/gitignore/Grails (about)

     1  # .gitignore for Grails 1.2 and 1.3
     2  # Although this should work for most versions of grails, it is
     3  # suggested that you use the "grails integrate-with --git" command
     4  # to generate your .gitignore file.
     5  
     6  # web application files
     7  /web-app/WEB-INF/classes
     8  
     9  # default HSQL database files for production mode
    10  /prodDb.*
    11  
    12  # general HSQL database files
    13  *Db.properties
    14  *Db.script
    15  
    16  # logs
    17  /stacktrace.log
    18  /test/reports
    19  /logs
    20  
    21  # project release file
    22  /*.war
    23  
    24  # plugin release files
    25  /*.zip
    26  /plugin.xml
    27  
    28  # older plugin install locations
    29  /plugins
    30  /web-app/plugins
    31  
    32  # "temporary" build files
    33  /target