Skip to content

Commit c899be4

Browse files
authored
Merge pull request #1 from code-squad/update-gradle
Update gradle
2 parents 350a7d1 + e7ffcb9 commit c899be4

20 files changed

+421
-498
lines changed

.gitignore

Lines changed: 204 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,206 @@
1+
# Created by https://www.toptal.com/developers/gitignore/api/java,gradle,windows,macos,intellij
2+
# Edit at https://www.toptal.com/developers/gitignore?templates=java,gradle,windows,macos,intellij
3+
4+
### Intellij ###
5+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
6+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
7+
8+
# User-specific stuff
9+
.idea/**/workspace.xml
10+
.idea/**/tasks.xml
11+
.idea/**/usage.statistics.xml
12+
.idea/**/dictionaries
13+
.idea/**/shelf
14+
15+
# Generated files
16+
.idea/**/contentModel.xml
17+
18+
# Sensitive or high-churn files
19+
.idea/**/dataSources/
20+
.idea/**/dataSources.ids
21+
.idea/**/dataSources.local.xml
22+
.idea/**/sqlDataSources.xml
23+
.idea/**/dynamic.xml
24+
.idea/**/uiDesigner.xml
25+
.idea/**/dbnavigator.xml
26+
27+
# Gradle
28+
.idea/**/gradle.xml
29+
.idea/**/libraries
30+
31+
# Gradle and Maven with auto-import
32+
# When using Gradle or Maven with auto-import, you should exclude module files,
33+
# since they will be recreated, and may cause churn. Uncomment if using
34+
# auto-import.
35+
# .idea/artifacts
36+
# .idea/compiler.xml
37+
# .idea/jarRepositories.xml
38+
# .idea/modules.xml
39+
# .idea/*.iml
40+
# .idea/modules
41+
# *.iml
42+
# *.ipr
43+
44+
# CMake
45+
cmake-build-*/
46+
47+
# Mongo Explorer plugin
48+
.idea/**/mongoSettings.xml
49+
50+
# File-based project format
51+
*.iws
52+
53+
# IntelliJ
54+
out/
55+
56+
# mpeltonen/sbt-idea plugin
57+
.idea_modules/
58+
59+
# JIRA plugin
60+
atlassian-ide-plugin.xml
61+
62+
# Cursive Clojure plugin
63+
.idea/replstate.xml
64+
65+
# Crashlytics plugin (for Android Studio and IntelliJ)
66+
com_crashlytics_export_strings.xml
67+
crashlytics.properties
68+
crashlytics-build.properties
69+
fabric.properties
70+
71+
# Editor-based Rest Client
72+
.idea/httpRequests
73+
74+
# Android studio 3.1+ serialized cache file
75+
.idea/caches/build_file_checksums.ser
76+
77+
### Intellij Patch ###
78+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
79+
80+
# *.iml
81+
# modules.xml
82+
# .idea/misc.xml
83+
# *.ipr
84+
85+
# Sonarlint plugin
86+
# https://plugins.jetbrains.com/plugin/7973-sonarlint
87+
.idea/**/sonarlint/
88+
89+
# SonarQube Plugin
90+
# https://plugins.jetbrains.com/plugin/7238-sonarqube-community-plugin
91+
.idea/**/sonarIssues.xml
92+
93+
# Markdown Navigator plugin
94+
# https://plugins.jetbrains.com/plugin/7896-markdown-navigator-enhanced
95+
.idea/**/markdown-navigator.xml
96+
.idea/**/markdown-navigator-enh.xml
97+
.idea/**/markdown-navigator/
98+
99+
# Cache file creation bug
100+
# See https://youtrack.jetbrains.com/issue/JBR-2257
101+
.idea/$CACHE_FILE$
102+
103+
# CodeStream plugin
104+
# https://plugins.jetbrains.com/plugin/12206-codestream
105+
.idea/codestream.xml
106+
107+
### Java ###
108+
# Compiled class file
109+
*.class
110+
111+
# Log file
112+
*.log
113+
114+
# BlueJ files
115+
*.ctxt
116+
117+
# Mobile Tools for Java (J2ME)
118+
.mtj.tmp/
119+
120+
# Package Files #
121+
*.jar
122+
*.war
123+
*.nar
124+
*.ear
125+
*.zip
126+
*.tar.gz
127+
*.rar
128+
129+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
130+
hs_err_pid*
131+
132+
### macOS ###
133+
# General
1134
.DS_Store
135+
.AppleDouble
136+
.LSOverride
137+
138+
# Icon must end with two \r
139+
Icon
140+
141+
142+
# Thumbnails
143+
._*
144+
145+
# Files that might appear in the root of a volume
146+
.DocumentRevisions-V100
147+
.fseventsd
148+
.Spotlight-V100
149+
.TemporaryItems
150+
.Trashes
151+
.VolumeIcon.icns
152+
.com.apple.timemachine.donotpresent
153+
154+
# Directories potentially created on remote AFP share
155+
.AppleDB
156+
.AppleDesktop
157+
Network Trash Folder
158+
Temporary Items
159+
.apdisk
160+
161+
### Windows ###
162+
# Windows thumbnail cache files
163+
Thumbs.db
164+
Thumbs.db:encryptable
165+
ehthumbs.db
166+
ehthumbs_vista.db
167+
168+
# Dump file
169+
*.stackdump
170+
171+
# Folder config file
172+
[Dd]esktop.ini
173+
174+
# Recycle Bin used on file shares
175+
$RECYCLE.BIN/
176+
177+
# Windows Installer files
178+
*.cab
179+
*.msi
180+
*.msix
181+
*.msm
182+
*.msp
183+
184+
# Windows shortcuts
185+
*.lnk
186+
187+
### Gradle ###
2188
.gradle
3-
/build/
4-
!gradle/wrapper/gradle-wrapper.jar
5-
/out/
6-
/target/
7-
8-
### STS ###
9-
.apt_generated
10-
.classpath
11-
.factorypath
12-
.project
13-
.settings
14-
.springBeans
15-
bin/
16-
17-
### IntelliJ IDEA ###
18-
.idea
19-
*.iws
20-
*.iml
21-
*.ipr
189+
build/
190+
191+
# Ignore Gradle GUI config
192+
gradle-app.setting
193+
194+
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
195+
!gradle-wrapper.jar
196+
197+
# Cache of project
198+
.gradletasknamecache
199+
200+
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
201+
# gradle/wrapper/gradle-wrapper.properties
202+
203+
### Gradle Patch ###
204+
**/build/
205+
206+
# End of https://www.toptal.com/developers/gitignore/api/java,gradle,windows,macos,intellij

.idea/.name

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/compiler.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/encodings.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/jarRepositories.xml

Lines changed: 25 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules/java-practice.iml

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules/java-practice.main.iml

Lines changed: 43 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules/java-practice.test.iml

Lines changed: 47 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)