File tree Expand file tree Collapse file tree 3 files changed +5
-0
lines changed
Expand file tree Collapse file tree 3 files changed +5
-0
lines changed Original file line number Diff line number Diff line change 55### Update:
66- refactor: add validation for asset issuer. ([ #725 ] ( https://github.com/stellar/java-stellar-sdk/pull/725 ) )
77- refactor: add validation for liquidity pool ID length in ` TrustLineAsset ` . ([ #726 ] ( https://github.com/stellar/java-stellar-sdk/pull/726 ) )
8+ - fix: isolate Kotlin dependency to test scope. ([ #731 ] ( https://github.com/stellar/java-stellar-sdk/pull/731 ) )
89
910## 2.0.0-beta1
1011
Original file line number Diff line number Diff line change @@ -50,6 +50,7 @@ dependencies {
5050 implementation(" org.bouncycastle:bcprov-jdk18on:1.79" )
5151 implementation(" commons-codec:commons-codec:1.17.1" )
5252
53+ testImplementation(kotlin(" stdlib" ))
5354 testImplementation(" org.mockito:mockito-core:5.14.2" )
5455 testImplementation(" com.squareup.okhttp3:mockwebserver:${okhttpVersion} " )
5556 testImplementation(" junit:junit:4.13.2" )
Original file line number Diff line number Diff line change 1+ # This flag prevents the Kotlin Gradle plugin from automatically adding
2+ # the kotlin-stdlib dependency to the 'implementation' configuration.
3+ kotlin.stdlib.default.dependency =false
You can’t perform that action at this time.
0 commit comments