We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7efca8 commit 9c1329cCopy full SHA for 9c1329c
build.gradle
@@ -48,6 +48,15 @@ dependencies {
48
testCompile "com.fasterxml.jackson.core:jackson-databind:2.10.4"
49
testCompile "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.10.4"
50
}
51
+configurations.all {
52
+ resolutionStrategy.eachDependency { DependencyResolveDetails details ->
53
+ def requested = details.requested
54
+ if (requested.group == "org.jetbrains.kotlin") {
55
+ details.useVersion versionKotlin
56
+ }
57
58
+}
59
+
60
asteriaEmail {
61
smtpHost = System.getenv("ASTERIA_EMAIL_SMTP_HOST")
62
smptUser = System.getenv("ASTERIA_EMAIL_SMTP_USER")
0 commit comments