Skip to content

Commit dfe5ea6

Browse files
committed
2.0 Release
1 parent 9a7e218 commit dfe5ea6

83 files changed

Lines changed: 875 additions & 1026 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 0 additions & 128 deletions
This file was deleted.

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2022 SimPay.pl
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

build.gradle

Lines changed: 10 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,20 @@
11
plugins {
2-
id 'org.jetbrains.kotlin.jvm' version '1.3.72'
2+
id 'org.jetbrains.kotlin.jvm' version '1.6.0'
33
}
44

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-
}
5+
group 'pl.simpay.api'
6+
version '2.0'
137

148
repositories {
159
mavenCentral()
1610
}
1711

18-
1912
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"
13+
implementation group: 'org.jetbrains.kotlin', name: 'kotlin-stdlib', version: '1.6.0'
14+
implementation group: 'com.squareup.moshi', name: 'moshi-kotlin', version: '1.12.0'
15+
implementation group: 'com.squareup.moshi', name: 'moshi', version: '1.12.0'
16+
implementation group: 'org.slf4j', name: 'slf4j-api', version: '1.7.32'
17+
implementation group: 'org.slf4j', name: 'slf4j-simple', version: '1.7.32'
18+
implementation group: 'com.google.guava', name: 'guava', version: '31.0.1-jre'
19+
implementation group: 'com.squareup.okhttp3', name: 'okhttp', version: '4.9.2'
3220
}

gradle.properties

Lines changed: 0 additions & 1 deletion
This file was deleted.

gradle/wrapper/gradle-wrapper.jar

-57.3 KB
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

Lines changed: 0 additions & 5 deletions
This file was deleted.

gradlew

Lines changed: 0 additions & 183 deletions
This file was deleted.

0 commit comments

Comments
 (0)