Skip to content

Commit 9a7e218

Browse files
committed
Update
0 parents  commit 9a7e218

38 files changed

Lines changed: 1107 additions & 0 deletions

.gitignore

Lines changed: 128 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,128 @@
1+
# User-specific stuff
2+
.idea/
3+
4+
# Gradle and Maven with auto-import
5+
# When using Gradle or Maven with auto-import, you should exclude module files,
6+
# since they will be recreated, and may cause churn. Uncomment if using
7+
# auto-import.
8+
# .idea/artifacts
9+
# .idea/compiler.xml
10+
# .idea/jarRepositories.xml
11+
# .idea/modules.xml
12+
# .idea/*.iml
13+
# .idea/modules
14+
# *.iml
15+
# *.ipr
16+
17+
# CMake
18+
cmake-build-*/
19+
20+
# Mongo Explorer plugin
21+
.idea/**/mongoSettings.xml
22+
23+
# File-based project format
24+
*.iws
25+
26+
# IntelliJ
27+
out/
28+
29+
# mpeltonen/sbt-idea plugin
30+
.idea_modules/
31+
32+
# JIRA plugin
33+
atlassian-ide-plugin.xml
34+
35+
# Cursive Clojure plugin
36+
.idea/replstate.xml
37+
38+
# Crashlytics plugin (for Android Studio and IntelliJ)
39+
com_crashlytics_export_strings.xml
40+
crashlytics.properties
41+
crashlytics-build.properties
42+
fabric.properties
43+
44+
# Editor-based Rest Client
45+
.idea/httpRequests
46+
47+
# Android studio 3.1+ serialized cache file
48+
.idea/caches/build_file_checksums.ser
49+
50+
# Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023
51+
52+
*.iml
53+
modules.xml
54+
.idea/misc.xml
55+
*.ipr
56+
57+
# Sonarlint plugin
58+
.idea/sonarlint
59+
60+
### Java ###
61+
# Compiled class file
62+
*.class
63+
64+
# Log file
65+
*.log
66+
67+
# BlueJ files
68+
*.ctxt
69+
70+
# Mobile Tools for Java (J2ME)
71+
.mtj.tmp/
72+
73+
# Package Files #
74+
*.jar
75+
*.war
76+
*.nar
77+
*.ear
78+
*.zip
79+
*.tar.gz
80+
*.rar
81+
82+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
83+
hs_err_pid*
84+
85+
### Windows ###
86+
# Windows thumbnail cache files
87+
Thumbs.db
88+
Thumbs.db:encryptable
89+
ehthumbs.db
90+
ehthumbs_vista.db
91+
92+
# Dump file
93+
*.stackdump
94+
95+
# Folder config file
96+
[Dd]esktop.ini
97+
98+
# Recycle Bin used on file shares
99+
$RECYCLE.BIN/
100+
101+
# Windows Installer files
102+
*.cab
103+
*.msi
104+
*.msix
105+
*.msm
106+
*.msp
107+
108+
# Windows shortcuts
109+
*.lnk
110+
111+
### Gradle ###
112+
.gradle
113+
build/
114+
115+
# Ignore Gradle GUI config
116+
gradle-app.setting
117+
118+
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
119+
!gradle-wrapper.jar
120+
121+
# Cache of project
122+
.gradletasknamecache
123+
124+
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
125+
# gradle/wrapper/gradle-wrapper.properties
126+
127+
### Gradle Patch ###
128+
**/build/

build.gradle

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
plugins {
2+
id 'org.jetbrains.kotlin.jvm' version '1.3.72'
3+
}
4+
5+
group 'pl.simpay'
6+
version '1.0-SNAPSHOT'
7+
8+
kotlin {
9+
sourceSets {
10+
main.kotlin.srcDirs += "src/main/kotlin/pl/simpay/api"
11+
}
12+
}
13+
14+
repositories {
15+
mavenCentral()
16+
}
17+
18+
19+
dependencies {
20+
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
21+
implementation "org.jetbrains.kotlin:kotlin-reflect:1.3.72"
22+
compile group: 'com.google.code.gson', name: 'gson', version: '2.8.6'
23+
compile group: 'com.google.guava', name: 'guava', version: '29.0-jre'
24+
compile group: 'com.squareup.okhttp3', name: 'okhttp', version: '4.7.2'
25+
}
26+
27+
compileKotlin {
28+
kotlinOptions.jvmTarget = "1.8"
29+
}
30+
compileTestKotlin {
31+
kotlinOptions.jvmTarget = "1.8"
32+
}

gradle.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
kotlin.code.style=official

gradle/wrapper/gradle-wrapper.jar

57.3 KB
Binary file not shown.
Lines changed: 5 additions & 0 deletions
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.1.1-bin.zip
4+
zipStoreBase=GRADLE_USER_HOME
5+
zipStorePath=wrapper/dists

gradlew

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