Skip to content

Commit beb2d18

Browse files
committed
initial commit
0 parents  commit beb2d18

File tree

21 files changed

+860
-0
lines changed

21 files changed

+860
-0
lines changed

.gitignore

Lines changed: 264 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,264 @@
1+
### Gradle template
2+
.gradle
3+
**/build/
4+
!src/**/build/
5+
6+
# Ignore Gradle GUI config
7+
gradle-app.setting
8+
9+
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
10+
!gradle-wrapper.jar
11+
12+
# Cache of project
13+
.gradletasknamecache
14+
15+
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
16+
# gradle/wrapper/gradle-wrapper.properties
17+
18+
### Java template
19+
# Compiled class file
20+
*.class
21+
22+
# Log file
23+
*.log
24+
25+
# BlueJ files
26+
*.ctxt
27+
28+
# Mobile Tools for Java (J2ME)
29+
.mtj.tmp/
30+
31+
# Package Files #
32+
*.jar
33+
*.war
34+
*.nar
35+
*.ear
36+
*.zip
37+
*.tar.gz
38+
*.rar
39+
40+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
41+
hs_err_pid*
42+
43+
### Gradle template
44+
.gradle
45+
**/build/
46+
!src/**/build/
47+
48+
# Ignore Gradle GUI config
49+
gradle-app.setting
50+
51+
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
52+
!gradle-wrapper.jar
53+
54+
# Cache of project
55+
.gradletasknamecache
56+
57+
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
58+
# gradle/wrapper/gradle-wrapper.properties
59+
60+
### Gradle template
61+
.gradle
62+
**/build/
63+
!src/**/build/
64+
65+
# Ignore Gradle GUI config
66+
gradle-app.setting
67+
68+
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
69+
!gradle-wrapper.jar
70+
71+
# Cache of project
72+
.gradletasknamecache
73+
74+
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
75+
# gradle/wrapper/gradle-wrapper.properties
76+
77+
### Gradle template
78+
.gradle
79+
**/build/
80+
!src/**/build/
81+
82+
# Ignore Gradle GUI config
83+
gradle-app.setting
84+
85+
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
86+
!gradle-wrapper.jar
87+
88+
# Cache of project
89+
.gradletasknamecache
90+
91+
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
92+
# gradle/wrapper/gradle-wrapper.properties
93+
94+
### Java template
95+
# Compiled class file
96+
*.class
97+
98+
# Log file
99+
*.log
100+
101+
# BlueJ files
102+
*.ctxt
103+
104+
# Mobile Tools for Java (J2ME)
105+
.mtj.tmp/
106+
107+
# Package Files #
108+
*.jar
109+
*.war
110+
*.nar
111+
*.ear
112+
*.zip
113+
*.tar.gz
114+
*.rar
115+
116+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
117+
hs_err_pid*
118+
119+
### JetBrains template
120+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
121+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
122+
123+
# User-specific stuff
124+
.idea/**/workspace.xml
125+
.idea/**/tasks.xml
126+
.idea/**/usage.statistics.xml
127+
.idea/**/dictionaries
128+
.idea/**/shelf
129+
130+
# Generated files
131+
.idea/**/contentModel.xml
132+
133+
# Sensitive or high-churn files
134+
.idea/**/dataSources/
135+
.idea/**/dataSources.ids
136+
.idea/**/dataSources.local.xml
137+
.idea/**/sqlDataSources.xml
138+
.idea/**/dynamic.xml
139+
.idea/**/uiDesigner.xml
140+
.idea/**/dbnavigator.xml
141+
142+
# Gradle
143+
.idea/**/gradle.xml
144+
.idea/**/libraries
145+
146+
# Gradle and Maven with auto-import
147+
# When using Gradle or Maven with auto-import, you should exclude module files,
148+
# since they will be recreated, and may cause churn. Uncomment if using
149+
# auto-import.
150+
# .idea/artifacts
151+
# .idea/compiler.xml
152+
# .idea/jarRepositories.xml
153+
# .idea/modules.xml
154+
# .idea/*.iml
155+
# .idea/modules
156+
# *.iml
157+
# *.ipr
158+
159+
# CMake
160+
cmake-build-*/
161+
162+
# Mongo Explorer plugin
163+
.idea/**/mongoSettings.xml
164+
165+
# File-based project format
166+
*.iws
167+
168+
# IntelliJ
169+
out/
170+
171+
# mpeltonen/sbt-idea plugin
172+
.idea_modules/
173+
174+
# JIRA plugin
175+
atlassian-ide-plugin.xml
176+
177+
# Cursive Clojure plugin
178+
.idea/replstate.xml
179+
180+
# Crashlytics plugin (for Android Studio and IntelliJ)
181+
com_crashlytics_export_strings.xml
182+
crashlytics.properties
183+
crashlytics-build.properties
184+
fabric.properties
185+
186+
# Editor-based Rest Client
187+
.idea/httpRequests
188+
189+
# Android studio 3.1+ serialized cache file
190+
.idea/caches/build_file_checksums.ser
191+
192+
### JetBrains template
193+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
194+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
195+
196+
# User-specific stuff
197+
.idea/**/workspace.xml
198+
.idea/**/tasks.xml
199+
.idea/**/usage.statistics.xml
200+
.idea/**/dictionaries
201+
.idea/**/shelf
202+
203+
# Generated files
204+
.idea/**/contentModel.xml
205+
206+
# Sensitive or high-churn files
207+
.idea/**/dataSources/
208+
.idea/**/dataSources.ids
209+
.idea/**/dataSources.local.xml
210+
.idea/**/sqlDataSources.xml
211+
.idea/**/dynamic.xml
212+
.idea/**/uiDesigner.xml
213+
.idea/**/dbnavigator.xml
214+
215+
# Gradle
216+
.idea/**/gradle.xml
217+
.idea/**/libraries
218+
219+
# Gradle and Maven with auto-import
220+
# When using Gradle or Maven with auto-import, you should exclude module files,
221+
# since they will be recreated, and may cause churn. Uncomment if using
222+
# auto-import.
223+
# .idea/artifacts
224+
# .idea/compiler.xml
225+
# .idea/jarRepositories.xml
226+
# .idea/modules.xml
227+
# .idea/*.iml
228+
# .idea/modules
229+
# *.iml
230+
# *.ipr
231+
232+
# CMake
233+
cmake-build-*/
234+
235+
# Mongo Explorer plugin
236+
.idea/**/mongoSettings.xml
237+
238+
# File-based project format
239+
*.iws
240+
241+
# IntelliJ
242+
out/
243+
244+
# mpeltonen/sbt-idea plugin
245+
.idea_modules/
246+
247+
# JIRA plugin
248+
atlassian-ide-plugin.xml
249+
250+
# Cursive Clojure plugin
251+
.idea/replstate.xml
252+
253+
# Crashlytics plugin (for Android Studio and IntelliJ)
254+
com_crashlytics_export_strings.xml
255+
crashlytics.properties
256+
crashlytics-build.properties
257+
fabric.properties
258+
259+
# Editor-based Rest Client
260+
.idea/httpRequests
261+
262+
# Android studio 3.1+ serialized cache file
263+
.idea/caches/build_file_checksums.ser
264+

.idea/.gitignore

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/.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/jarRepositories.xml

Lines changed: 20 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: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules/alapi-sdk-java.iml

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-sdk.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-sdk.main.iml

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

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

Lines changed: 21 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)