What is the recommended source ignore pattern for Seam projects?

After creating a project using seam-gen, what is the recommended ignore pattern for version control? What does the recommended .gitignorefile ( svn:ignoreor equivalents) look like ?

+3
source share
3 answers

We are developing Seam projects under Eclipse. Our current one svn:ignorehas the following entries:

classes                      # all class files
dist                         # contains generated war files for deployment
.settings                    # some Eclipse settings
exploded-archives            # war content generation during deploy (or explode)
test-output                  # test results
test-build                   # test compilation (ant target for Seam)
test-report                  # test report generation for, e.g., Hudson
temp-testng-customsuite.xml  # generated when running test cases under Eclipse

In addition, in our folder bootstrapwe ignore dataand tmp.

+5
source

I have no direct seam experience, but if you run the project with seam-gen , you need to:

+3

Source: https://habr.com/ru/post/1774762/


All Articles