File tree Expand file tree Collapse file tree 2 files changed +11
-3
lines changed
lithic-java-core/src/test/kotlin/com/lithic/api/services/blocking Expand file tree Collapse file tree 2 files changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ import com.lithic.api.client.okhttp.LithicOkHttpClient
77import com.lithic.api.models.CardConvertPhysicalParams
88import com.lithic.api.models.CardCreateParams
99import com.lithic.api.models.CardEmbedParams
10+ import com.lithic.api.models.CardGetEmbedHtmlParams
11+ import com.lithic.api.models.CardGetEmbedUrlParams
1012import com.lithic.api.models.CardListParams
1113import com.lithic.api.models.CardProvisionParams
1214import com.lithic.api.models.CardReissueParams
Original file line number Diff line number Diff line change 11plugins {
2- id(" application" )
3- id(" lithic.java" )
2+ id(" lithic.kotlin" )
3+ id(" java" )
4+ application
45}
56
67dependencies {
78 implementation(project(" :lithic-java" ))
89}
910
11+ tasks.withType<JavaCompile >().configureEach {
12+ // Allow using more modern APIs, like `List.of` and `Map.of`, in examples.
13+ options.release.set(9 )
14+ }
15+
1016application {
11- mainClass.set( " com.lithic.example.Main" )
17+ mainClass = " com.lithic.api. example.Main"
1218}
You can’t perform that action at this time.
0 commit comments