Skip to content
This repository was archived by the owner on Jan 20, 2023. It is now read-only.

Commit d7a5c35

Browse files
committed
init
1 parent 2f07f25 commit d7a5c35

13 files changed

+600
-0
lines changed

Diff for: .gitignore

+236
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,236 @@
1+
# Compiled class file
2+
*.class
3+
4+
# Log file
5+
*.log
6+
7+
# BlueJ files
8+
*.ctxt
9+
10+
# Mobile Tools for Java (J2ME)
11+
.mtj.tmp/
12+
13+
# Package Files #
14+
*.jar
15+
*.war
16+
*.nar
17+
*.ear
18+
*.zip
19+
*.tar.gz
20+
*.rar
21+
22+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
23+
hs_err_pid*
24+
.gradle
25+
/build/
26+
27+
# Ignore Gradle GUI config
28+
gradle-app.setting
29+
30+
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
31+
!gradle-wrapper.jar
32+
33+
# Cache of project
34+
.gradletasknamecache
35+
36+
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
37+
# gradle/wrapper/gradle-wrapper.properties
38+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
39+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
40+
41+
# User-specific stuff
42+
.idea/**/workspace.xml
43+
.idea/**/tasks.xml
44+
.idea/**/usage.statistics.xml
45+
.idea/**/dictionaries
46+
.idea/**/shelf
47+
48+
# Generated files
49+
.idea/**/contentModel.xml
50+
51+
# Sensitive or high-churn files
52+
.idea/**/dataSources/
53+
.idea/**/dataSources.ids
54+
.idea/**/dataSources.local.xml
55+
.idea/**/sqlDataSources.xml
56+
.idea/**/dynamic.xml
57+
.idea/**/uiDesigner.xml
58+
.idea/**/dbnavigator.xml
59+
60+
# Gradle
61+
.idea/**/gradle.xml
62+
.idea/**/libraries
63+
64+
# Gradle and Maven with auto-import
65+
# When using Gradle or Maven with auto-import, you should exclude module files,
66+
# since they will be recreated, and may cause churn. Uncomment if using
67+
auto-import.
68+
.idea/artifacts
69+
.idea/compiler.xml
70+
.idea/jarRepositories.xml
71+
.idea/modules.xml
72+
.idea/*.iml
73+
.idea/modules
74+
*.iml
75+
*.ipr
76+
77+
# CMake
78+
cmake-build-*/
79+
80+
# Mongo Explorer plugin
81+
.idea/**/mongoSettings.xml
82+
83+
# File-based project format
84+
*.iws
85+
86+
# IntelliJ
87+
out/
88+
89+
# mpeltonen/sbt-idea plugin
90+
.idea_modules/
91+
92+
# JIRA plugin
93+
atlassian-ide-plugin.xml
94+
95+
# Cursive Clojure plugin
96+
.idea/replstate.xml
97+
98+
# Crashlytics plugin (for Android Studio and IntelliJ)
99+
com_crashlytics_export_strings.xml
100+
crashlytics.properties
101+
crashlytics-build.properties
102+
fabric.properties
103+
104+
# Editor-based Rest Client
105+
.idea/httpRequests
106+
107+
# Android studio 3.1+ serialized cache file
108+
.idea/caches/build_file_checksums.ser
109+
.metadata
110+
bin/
111+
tmp/
112+
*.tmp
113+
*.bak
114+
*.swp
115+
*~.nib
116+
local.properties
117+
.settings/
118+
.loadpath
119+
.recommenders
120+
121+
# External tool builders
122+
.externalToolBuilders/
123+
124+
# Locally stored "Eclipse launch configurations"
125+
*.launch
126+
127+
# PyDev specific (Python IDE for Eclipse)
128+
*.pydevproject
129+
130+
# CDT-specific (C/C++ Development Tooling)
131+
.cproject
132+
133+
# CDT- autotools
134+
.autotools
135+
136+
# Java annotation processor (APT)
137+
.factorypath
138+
139+
# PDT-specific (PHP Development Tools)
140+
.buildpath
141+
142+
# sbteclipse plugin
143+
.target
144+
145+
# Tern plugin
146+
.tern-project
147+
148+
# TeXlipse plugin
149+
.texlipse
150+
151+
# STS (Spring Tool Suite)
152+
.springBeans
153+
154+
# Code Recommenders
155+
.recommenders/
156+
157+
# Annotation Processing
158+
.apt_generated/
159+
.apt_generated_test/
160+
161+
# Scala IDE specific (Scala & Java development for Eclipse)
162+
.cache-main
163+
.scala_dependencies
164+
.worksheet
165+
**/nbproject/private/
166+
**/nbproject/Makefile-*.mk
167+
**/nbproject/Package-*.bash
168+
build/
169+
nbbuild/
170+
dist/
171+
nbdist/
172+
.nb-gradle/
173+
# General
174+
.DS_Store
175+
.AppleDouble
176+
.LSOverride
177+
178+
# Icon must end with two \r
179+
Icon
180+
181+
182+
# Thumbnails
183+
._*
184+
185+
# Files that might appear in the root of a volume
186+
.DocumentRevisions-V100
187+
.fseventsd
188+
.Spotlight-V100
189+
.TemporaryItems
190+
.Trashes
191+
.VolumeIcon.icns
192+
.com.apple.timemachine.donotpresent
193+
194+
# Directories potentially created on remote AFP share
195+
.AppleDB
196+
.AppleDesktop
197+
Network Trash Folder
198+
Temporary Items
199+
.apdisk
200+
*~
201+
202+
# temporary files which can be created if a process still has a handle open of a deleted file
203+
.fuse_hidden*
204+
205+
# KDE directory preferences
206+
.directory
207+
208+
# Linux trash folder which might appear on any partition or disk
209+
.Trash-*
210+
211+
# .nfs files are created when an open file is removed but is still being accessed
212+
.nfs*
213+
# Windows thumbnail cache files
214+
Thumbs.db
215+
Thumbs.db:encryptable
216+
ehthumbs.db
217+
ehthumbs_vista.db
218+
219+
# Dump file
220+
*.stackdump
221+
222+
# Folder config file
223+
[Dd]esktop.ini
224+
225+
# Recycle Bin used on file shares
226+
$RECYCLE.BIN/
227+
228+
# Windows Installer files
229+
*.cab
230+
*.msi
231+
*.msix
232+
*.msm
233+
*.msp
234+
235+
# Windows shortcuts
236+
*.lnk

Diff for: .idea/.gitignore

+5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: .idea/codeStyles/Project.xml

+29
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: .idea/codeStyles/codeStyleConfig.xml

+5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: .idea/misc.xml

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: .idea/vcs.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: build.gradle.kts

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
plugins {
2+
kotlin("jvm") version "1.4.10"
3+
}
4+
5+
group = "com.mapk"
6+
version = "0.1"
7+
8+
repositories {
9+
mavenCentral()
10+
}
11+
12+
dependencies {
13+
implementation(kotlin("stdlib"))
14+
implementation(kotlin("reflect"))
15+
}

Diff for: gradle.properties

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
kotlin.code.style=official

Diff for: gradle/wrapper/gradle-wrapper.jar

57.5 KB
Binary file not shown.

Diff for: gradle/wrapper/gradle-wrapper.properties

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
distributionBase=GRADLE_USER_HOME
2+
distributionPath=wrapper/dists
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.3-bin.zip
4+
zipStoreBase=GRADLE_USER_HOME
5+
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)