From c87c0c7fccf7ca89faf88e85ee12ba5124db3e52 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=B4=AA=E8=BF=90?= Date: Wed, 2 Nov 2016 19:30:24 +0800 Subject: [PATCH] use global gitignore instead of seprated file --- .gitignore | 144 +++++++++++++++++++++++++++ iBase4J-Common/.gitignore | 1 - iBase4J-SYS-API/.gitignore | 1 - iBase4J-SYS-Service/.gitignore | 2 - iBase4J-Scheduler-API/.gitignore | 1 - iBase4J-Scheduler-Service/.gitignore | 1 - iBase4J-Web/.gitignore | 1 - 7 files changed, 144 insertions(+), 7 deletions(-) create mode 100644 .gitignore delete mode 100644 iBase4J-Common/.gitignore delete mode 100644 iBase4J-SYS-API/.gitignore delete mode 100644 iBase4J-SYS-Service/.gitignore delete mode 100644 iBase4J-Scheduler-API/.gitignore delete mode 100644 iBase4J-Scheduler-Service/.gitignore delete mode 100644 iBase4J-Web/.gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..fdf5864e --- /dev/null +++ b/.gitignore @@ -0,0 +1,144 @@ +# https://github.com/github/gitignore/blob/master/Java.gitignore + +*.class + +# Mobile Tools for Java (J2ME) +.mtj.tmp/ + +# Package Files # +*.jar +*.war +*.ear + +# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml +hs_err_pid* + +/.project + + +# https://github.com/github/gitignore/blob/master/Maven.gitignore +target/ +pom.xml.tag +pom.xml.releaseBackup +pom.xml.versionsBackup +pom.xml.next +release.properties +dependency-reduced-pom.xml +buildNumber.properties +.mvn/timing.properties + + +# https://github.com/github/gitignore/blob/master/Global/Eclipse.gitignore + +.metadata +bin/ +tmp/ +*.tmp +*.bak +*.swp +*~.nib +local.properties +.settings/ +.loadpath +.recommenders + +# Eclipse Core +.project + +# External tool builders +.externalToolBuilders/ + +# Locally stored "Eclipse launch configurations" +*.launch + +# PyDev specific (Python IDE for Eclipse) +*.pydevproject + +# CDT-specific (C/C++ Development Tooling) +.cproject + +# JDT-specific (Eclipse Java Development Tools) +.classpath + +# Java annotation processor (APT) +.factorypath + +# PDT-specific (PHP Development Tools) +.buildpath + +# sbteclipse plugin +.target + +# Tern plugin +.tern-project + +# TeXlipse plugin +.texlipse + +# STS (Spring Tool Suite) +.springBeans + +# Code Recommenders +.recommenders/ + + +# https://github.com/github/gitignore/blob/master/Global/JetBrains.gitignore + +# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm +# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 + +# User-specific stuff: +.idea/workspace.xml +.idea/tasks.xml +.idea/dictionaries +.idea/vcs.xml +.idea/jsLibraryMappings.xml + +# Sensitive or high-churn files: +.idea/dataSources.ids +.idea/dataSources.xml +.idea/dataSources.local.xml +.idea/sqlDataSources.xml +.idea/dynamic.xml +.idea/uiDesigner.xml + +# Gradle: +.idea/gradle.xml +.idea/libraries + +# Mongo Explorer plugin: +.idea/mongoSettings.xml + +## File-based project format: +*.iws + +## Plugin-specific files: + +# IntelliJ +/out/ + +# mpeltonen/sbt-idea plugin +.idea_modules/ + +# JIRA plugin +atlassian-ide-plugin.xml + +# Crashlytics plugin (for Android Studio and IntelliJ) +com_crashlytics_export_strings.xml +crashlytics.properties +crashlytics-build.properties +fabric.properties + + +# zeroturnaround +rebel.xml + + +# log +log/ +logs/ + + +# IntelliJ IDEA +*.iml +.idea/ diff --git a/iBase4J-Common/.gitignore b/iBase4J-Common/.gitignore deleted file mode 100644 index b83d2226..00000000 --- a/iBase4J-Common/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/target/ diff --git a/iBase4J-SYS-API/.gitignore b/iBase4J-SYS-API/.gitignore deleted file mode 100644 index b83d2226..00000000 --- a/iBase4J-SYS-API/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/target/ diff --git a/iBase4J-SYS-Service/.gitignore b/iBase4J-SYS-Service/.gitignore deleted file mode 100644 index 1dd33310..00000000 --- a/iBase4J-SYS-Service/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -/target/ -/target/ diff --git a/iBase4J-Scheduler-API/.gitignore b/iBase4J-Scheduler-API/.gitignore deleted file mode 100644 index b83d2226..00000000 --- a/iBase4J-Scheduler-API/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/target/ diff --git a/iBase4J-Scheduler-Service/.gitignore b/iBase4J-Scheduler-Service/.gitignore deleted file mode 100644 index b83d2226..00000000 --- a/iBase4J-Scheduler-Service/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/target/ diff --git a/iBase4J-Web/.gitignore b/iBase4J-Web/.gitignore deleted file mode 100644 index b83d2226..00000000 --- a/iBase4J-Web/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/target/ -- Gitee