Skip to content

Commit d1bfa83

Browse files
committed
Adds first draft
0 parents  commit d1bfa83

28 files changed

Lines changed: 1789 additions & 0 deletions

.gitignore

Lines changed: 318 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,318 @@
1+
2+
# Created by https://www.gitignore.io/api/java,gradle,eclipse,intellij,androidstudio,visualstudiocode
3+
# Edit at https://www.gitignore.io/?templates=java,gradle,eclipse,intellij,androidstudio,visualstudiocode
4+
5+
### AndroidStudio ###
6+
# Covers files to be ignored for android development using Android Studio.
7+
8+
# Built application files
9+
*.apk
10+
*.ap_
11+
12+
# Files for the ART/Dalvik VM
13+
*.dex
14+
15+
# Java class files
16+
*.class
17+
18+
# Generated files
19+
bin/
20+
gen/
21+
out/
22+
23+
# Gradle files
24+
.gradle
25+
.gradle/
26+
build/
27+
28+
# Signing files
29+
.signing/
30+
31+
# Local configuration file (sdk path, etc)
32+
local.properties
33+
34+
# Proguard folder generated by Eclipse
35+
proguard/
36+
37+
# Log Files
38+
*.log
39+
40+
# Android Studio
41+
/*/build/
42+
/*/local.properties
43+
/*/out
44+
/*/*/build
45+
/*/*/production
46+
captures/
47+
.navigation/
48+
*.ipr
49+
*~
50+
*.swp
51+
52+
# Android Patch
53+
gen-external-apklibs
54+
55+
# External native build folder generated in Android Studio 2.2 and later
56+
.externalNativeBuild
57+
58+
# NDK
59+
obj/
60+
61+
# IntelliJ IDEA
62+
*.iml
63+
*.iws
64+
/out/
65+
66+
# User-specific configurations
67+
.idea/caches/
68+
.idea/libraries/
69+
.idea/shelf/
70+
.idea/workspace.xml
71+
.idea/tasks.xml
72+
.idea/.name
73+
.idea/compiler.xml
74+
.idea/copyright/profiles_settings.xml
75+
.idea/encodings.xml
76+
.idea/misc.xml
77+
.idea/modules.xml
78+
.idea/scopes/scope_settings.xml
79+
.idea/dictionaries
80+
.idea/vcs.xml
81+
.idea/jsLibraryMappings.xml
82+
.idea/datasources.xml
83+
.idea/dataSources.ids
84+
.idea/sqlDataSources.xml
85+
.idea/dynamic.xml
86+
.idea/uiDesigner.xml
87+
.idea/assetWizardSettings.xml
88+
89+
# OS-specific files
90+
.DS_Store
91+
.DS_Store?
92+
._*
93+
.Spotlight-V100
94+
.Trashes
95+
ehthumbs.db
96+
Thumbs.db
97+
98+
# Legacy Eclipse project files
99+
.classpath
100+
.project
101+
.cproject
102+
.settings/
103+
104+
# Mobile Tools for Java (J2ME)
105+
.mtj.tmp/
106+
107+
# Package Files #
108+
*.war
109+
*.ear
110+
111+
# virtual machine crash logs (Reference: http://www.java.com/en/download/help/error_hotspot.xml)
112+
hs_err_pid*
113+
114+
## Plugin-specific files:
115+
116+
# mpeltonen/sbt-idea plugin
117+
.idea_modules/
118+
119+
# JIRA plugin
120+
atlassian-ide-plugin.xml
121+
122+
# Mongo Explorer plugin
123+
.idea/mongoSettings.xml
124+
125+
# Crashlytics plugin (for Android Studio and IntelliJ)
126+
com_crashlytics_export_strings.xml
127+
crashlytics.properties
128+
crashlytics-build.properties
129+
fabric.properties
130+
131+
### AndroidStudio Patch ###
132+
133+
!/gradle/wrapper/gradle-wrapper.jar
134+
135+
### Eclipse ###
136+
.metadata
137+
tmp/
138+
*.tmp
139+
*.bak
140+
*~.nib
141+
.loadpath
142+
.recommenders
143+
144+
# External tool builders
145+
.externalToolBuilders/
146+
147+
# Locally stored "Eclipse launch configurations"
148+
*.launch
149+
150+
# PyDev specific (Python IDE for Eclipse)
151+
*.pydevproject
152+
153+
# CDT-specific (C/C++ Development Tooling)
154+
155+
# CDT- autotools
156+
.autotools
157+
158+
# Java annotation processor (APT)
159+
.factorypath
160+
161+
# PDT-specific (PHP Development Tools)
162+
.buildpath
163+
164+
# sbteclipse plugin
165+
.target
166+
167+
# Tern plugin
168+
.tern-project
169+
170+
# TeXlipse plugin
171+
.texlipse
172+
173+
# STS (Spring Tool Suite)
174+
.springBeans
175+
176+
# Code Recommenders
177+
.recommenders/
178+
179+
# Annotation Processing
180+
.apt_generated/
181+
182+
# Scala IDE specific (Scala & Java development for Eclipse)
183+
.cache-main
184+
.scala_dependencies
185+
.worksheet
186+
187+
### Eclipse Patch ###
188+
# Eclipse Core
189+
190+
# JDT-specific (Eclipse Java Development Tools)
191+
192+
# Annotation Processing
193+
.apt_generated
194+
195+
.sts4-cache/
196+
197+
### Intellij ###
198+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
199+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
200+
201+
# User-specific stuff
202+
.idea/**/workspace.xml
203+
.idea/**/tasks.xml
204+
.idea/**/usage.statistics.xml
205+
.idea/**/dictionaries
206+
.idea/**/shelf
207+
208+
# Generated files
209+
.idea/**/contentModel.xml
210+
211+
# Sensitive or high-churn files
212+
.idea/**/dataSources/
213+
.idea/**/dataSources.ids
214+
.idea/**/dataSources.local.xml
215+
.idea/**/sqlDataSources.xml
216+
.idea/**/dynamic.xml
217+
.idea/**/uiDesigner.xml
218+
.idea/**/dbnavigator.xml
219+
220+
# Gradle
221+
.idea/**/gradle.xml
222+
.idea/**/libraries
223+
224+
# Gradle and Maven with auto-import
225+
# When using Gradle or Maven with auto-import, you should exclude module files,
226+
# since they will be recreated, and may cause churn. Uncomment if using
227+
# auto-import.
228+
# .idea/modules.xml
229+
# .idea/*.iml
230+
# .idea/modules
231+
232+
# CMake
233+
cmake-build-*/
234+
235+
# Mongo Explorer plugin
236+
.idea/**/mongoSettings.xml
237+
238+
# File-based project format
239+
240+
# IntelliJ
241+
242+
# mpeltonen/sbt-idea plugin
243+
244+
# JIRA plugin
245+
246+
# Cursive Clojure plugin
247+
.idea/replstate.xml
248+
249+
# Crashlytics plugin (for Android Studio and IntelliJ)
250+
251+
# Editor-based Rest Client
252+
.idea/httpRequests
253+
254+
# Android studio 3.1+ serialized cache file
255+
.idea/caches/build_file_checksums.ser
256+
257+
# JetBrains templates
258+
**___jb_tmp___
259+
260+
### Intellij Patch ###
261+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
262+
263+
# *.iml
264+
# modules.xml
265+
# .idea/misc.xml
266+
# *.ipr
267+
268+
# Sonarlint plugin
269+
.idea/sonarlint
270+
271+
### Java ###
272+
# Compiled class file
273+
274+
# Log file
275+
276+
# BlueJ files
277+
*.ctxt
278+
279+
# Mobile Tools for Java (J2ME)
280+
281+
# Package Files #
282+
*.jar
283+
*.nar
284+
*.zip
285+
*.tar.gz
286+
*.rar
287+
288+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
289+
290+
### VisualStudioCode ###
291+
.vscode/*
292+
!.vscode/settings.json
293+
!.vscode/tasks.json
294+
!.vscode/launch.json
295+
!.vscode/extensions.json
296+
297+
### VisualStudioCode Patch ###
298+
# Ignore all local history of files
299+
.history
300+
301+
### Gradle ###
302+
303+
# Ignore Gradle GUI config
304+
gradle-app.setting
305+
306+
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
307+
!gradle-wrapper.jar
308+
309+
# Cache of project
310+
.gradletasknamecache
311+
312+
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
313+
# gradle/wrapper/gradle-wrapper.properties
314+
315+
### Gradle Patch ###
316+
**/build/
317+
318+
# End of https://www.gitignore.io/api/java,gradle,eclipse,intellij,androidstudio,visualstudiocode

.idea/codeStyles/Project.xml

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

.idea/runConfigurations.xml

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

.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"java.configuration.updateBuildConfiguration": "automatic"
3+
}

README.md

Whitespace-only changes.

0 commit comments

Comments
 (0)