You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@struts.apache.org by lu...@apache.org on 2019/04/16 08:47:25 UTC

[struts] branch master updated: Add common .gitignore patterns from gitignore.io

This is an automated email from the ASF dual-hosted git repository.

lukaszlenart pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/struts.git


The following commit(s) were added to refs/heads/master by this push:
     new 84e8eec  Add common .gitignore patterns from gitignore.io
     new d71ff77  Merge pull request #351 from sepe81/enhance-gitignore
84e8eec is described below

commit 84e8eecee726a193d6a67676fc4f931129f57a4c
Author: Sebastian Peters <Se...@gmail.com>
AuthorDate: Mon Apr 15 21:07:02 2019 +0200

    Add common .gitignore patterns from gitignore.io
    
    Ignore .factorypath b/c it gets generated during maven compile.
    
    Don't need to ignore every single target folder.
    Instead use target/ pattern and add more common maven files.
    
    Ignore .sonar folder for local sonar scanning.
---
 .gitignore | 52 ++++++++++++++++------------------------------------
 1 file changed, 16 insertions(+), 36 deletions(-)

diff --git a/.gitignore b/.gitignore
index 31bc74e..8e4f76a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -11,6 +11,9 @@
 .metadata/
 Servers/
 
+# Java annotation processor (APT)
+.factorypath
+
 #VSCode
 .vscode
 
@@ -24,42 +27,19 @@ Servers/
 .java-version
 
 # Maven
+target/
+pom.xml.tag
+pom.xml.releaseBackup
+pom.xml.versionsBackup
+pom.xml.next
+release.properties
+dependency-reduced-pom.xml
+buildNumber.properties
+.mvn/timing.properties
 .mvn/wrapper/maven-wrapper.jar
-core/target
-plugins/convention/target
-plugins/embeddedjsp/target
-plugins/osgi/target
-plugins/cdi/target
-plugins/spring/target
-plugins/jfreechart/target
-apps/rest-showcase/target
-apps/mailreader/target
-apps/portlet/target
-apps/blank/target
-apps/jboss-blank/target
-apps/mailreader/target
-apps/portlet/target
-apps/showcase/target
-apps/target
-bundles/admin/target
-plugins/config-browser/target
-plugins/jasperreports/target
-plugins/json/target
-plugins/portlet-tiles/target
-plugins/portlet/target
-plugins/sitemesh/target
-plugins/javatemplates/target
-bundles/demo/target
-plugins/rest/target
-plugins/plexus/target
-plugins/testng/target
-plugins/dwr/target
-plugins/gxp/target
-plugins/oval/target
-plugins/junit/target
-plugins/tiles/target
-bundles/target
-plugins/target
-target
+
 plugins/testng/test-output
 test-output
+
+# Sonar
+/.sonar/