Skip to content

Commit 5e3d62c

Browse files
authored
Merge pull request #19 from titans-of-code/4.3.0
Redesign for more flexible features and add log message feature
2 parents 490674d + e513ed4 commit 5e3d62c

30 files changed

+1377
-756
lines changed

.gitignore

Lines changed: 44 additions & 105 deletions
Original file line numberDiff line numberDiff line change
@@ -1,131 +1,70 @@
1-
# Git folder #
2-
/.git/
3-
4-
# Compilation folders #
5-
/bin/
6-
/target/
7-
/build/
8-
9-
# Java compile files #
1+
# ------------------------------------------------------------------------------ #
2+
# Java defaults (https://github.com/github/gitignore/blob/master/Java.gitignore) #
3+
# ------------------------------------------------------------------------------ #
104
*.class
115

12-
# Package files #
6+
# Package Files #
137
*.jar
148
*.war
159
*.ear
16-
*.db
17-
18-
# Log files #
19-
/*.log
20-
/*.log.*
2110

22-
# Output folders #
23-
/test-output/
24-
25-
# Eclipse files #
26-
.buildpath
27-
.classpath
28-
.cproject
29-
.externalToolBuilders/
30-
.launch
31-
.loadpath
11+
# ------------------------------------------------------------------------------------------- #
12+
# Eclipse-specific (https://github.com/github/gitignore/blob/master/Global/Eclipse.gitignore) #
13+
# ------------------------------------------------------------------------------------------- #
14+
*.pydevproject
3215
.metadata
33-
.project
34-
.settings/
3516
bin/**
3617
tmp/**
3718
tmp/**/*
3819
*.tmp
39-
*.nak
20+
*.bak
4021
*.swp
4122
*~.nib
42-
*.pydevproject
4323
local.properties
44-
/src/main/resources/rebel.xml
24+
.externalToolBuilders/
25+
.settings/
26+
.loadpath
27+
.project
28+
.classpath
4529
.springBeans
4630

47-
# IntelliJ Idea files #
48-
.idea
49-
*.iml
50-
51-
# Windows files #
52-
Thumbs.db
53-
Desktop.ini
54-
55-
# OS files #
56-
.DS_Store
57-
.svn
58-
._*
59-
.Spotlight-V100
60-
.Trashes
61-
62-
# User-specific stuff
63-
.idea/**/workspace.xml
64-
.idea/**/tasks.xml
65-
.idea/**/usage.statistics.xml
66-
.idea/**/dictionaries
67-
.idea/**/shelf
68-
69-
# Generated files
70-
.idea/**/contentModel.xml
31+
# External tool builders
32+
.externalToolBuilders/
7133

72-
# Sensitive or high-churn files
73-
.idea/**/dataSources/
74-
.idea/**/dataSources.ids
75-
.idea/**/dataSources.local.xml
76-
.idea/**/sqlDataSources.xml
77-
.idea/**/dynamic.xml
78-
.idea/**/uiDesigner.xml
79-
.idea/**/dbnavigator.xml
34+
# Locally stored "Eclipse launch configurations"
35+
*.launch
8036

81-
# Gradle
82-
.idea/**/gradle.xml
83-
.idea/**/libraries
37+
# CDT-specific
38+
.cproject
8439

85-
# Gradle and Maven with auto-import
86-
# When using Gradle or Maven with auto-import, you should exclude module files,
87-
# since they will be recreated, and may cause churn. Uncomment if using
88-
# auto-import.
89-
# .idea/artifacts
90-
# .idea/compiler.xml
91-
# .idea/jarRepositories.xml
92-
# .idea/modules.xml
93-
# .idea/*.iml
94-
# .idea/modules
95-
# *.iml
96-
# *.ipr
40+
# PDT-specific
41+
.buildpath
9742

98-
# CMake
99-
cmake-build-*/
43+
# --------------- #
44+
# Studio-specific #
45+
# --------------- #
46+
target/
47+
reports/
48+
.mule/**
49+
.mule/**/*
50+
velocity.log
10051

101-
# Mongo Explorer plugin
102-
.idea/**/mongoSettings.xml
52+
# Log files #
53+
/*.log
54+
/*.log.*
10355

104-
# File-based project format
105-
*.iws
56+
# Output folders #
57+
/test-output/
10658

107-
# IntelliJ
59+
# IntelliJ Idea files #
60+
.idea
61+
.idea/
62+
*.iml
10863
out/
109-
110-
# mpeltonen/sbt-idea plugin
11164
.idea_modules/
11265

113-
# JIRA plugin
114-
atlassian-ide-plugin.xml
115-
116-
# Cursive Clojure plugin
117-
.idea/replstate.xml
118-
119-
# Crashlytics plugin (for Android Studio and IntelliJ)
120-
com_crashlytics_export_strings.xml
121-
crashlytics.properties
122-
crashlytics-build.properties
123-
fabric.properties
124-
125-
# Editor-based Rest Client
126-
.idea/httpRequests
127-
128-
# Android studio 3.1+ serialized cache file
129-
.idea/caches/build_file_checksums.ser
130-
.dd05820d-ca95-4a87-acec-bd2e190bf491.pom
131-
.537d0e44-30de-42fa-9981-d8f7b4b4838e.pom
66+
# OS files #
67+
.DS_Store
68+
.svn
69+
._*
70+
/bin/

0 commit comments

Comments
 (0)