ilya.gorbunov
10/02/2017, 3:24 AMjlleitschuh
10/03/2017, 1:36 PMjlleitschuh
10/04/2017, 4:24 PMroman_empire
10/04/2017, 4:37 PMandroid
domain, i cannot find the right package to import to. Is there a good beginner guide in gradle kotlin scripts aside of the samples in the github repo?user
10/05/2017, 3:49 PMjlleitschuh
10/06/2017, 3:09 PMjlleitschuh
10/10/2017, 5:23 PMjlleitschuh
10/11/2017, 4:16 PMbarteks2x
10/11/2017, 5:34 PMsdeleuze
10/11/2017, 8:44 PMClass 'org.jetbrains.kotlin.gradle.tasks.KotlinCompile is compiled by a pre-release version of Kotlin and cannot be loaded by this version of the compiler
errors with Gradle 4.2.1 when I try.jtonic
10/14/2017, 11:11 AMplugins {
base
}
Thank you in advance for your help.
Antoneljmfayard
10/15/2017, 3:37 PMoleksandr.samsonov
10/17/2017, 9:24 AMSam
10/17/2017, 6:29 PMbamboo
10/19/2017, 6:18 PMJar
is that there are two tasks with the same name that are implicitly importedkartikpatodi
10/20/2017, 9:28 AMjlleitschuh
10/20/2017, 10:52 PMilya.gorbunov
10/21/2017, 6:44 PMtasks.withType<VerificationTask> { }
because VerificationTask
is an interface unrelated to Task
, and the type parameter of withType
is constrained to be a subtype of Task
Marc Knaup
10/21/2017, 8:55 PMinline
)?
The compiler option -Xno-inline
prevents inlining also of stdlib functions which causes plenty of errors:
java.lang.IllegalAccessError: tried to access method kotlin.collections.MapsKt__MapsKt.mutableMapOf()Ljava/util/Map; from class tests.TestData$Companion
at tests.TestData$Companion.ofEncodable(TestData.kt:74)
at tests.NumberDataKt.<clinit>(numberData.kt:61)
…
sdeleuze
10/25/2017, 9:45 AMnikolaymetchev
10/30/2017, 6:26 PMaurimas
10/31/2017, 12:58 AMplugins {
id("com.example.Plugin")
}
supposed to work?nikolaymetchev
11/01/2017, 1:22 PMwith(tasks["jar"] as CopySpec)
achieve?apomelov
11/01/2017, 1:34 PMSlackbot
11/01/2017, 1:59 PMmkobit
11/02/2017, 1:48 PMtasks
block
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
tasks {
"compileKotlin"(KotlinCompile::class) {
kotlinOptions.jvmTarget = "1.8"
}
}
antonioleiva
11/03/2017, 8:22 AMjtravis
11/06/2017, 6:13 PMwarren
11/08/2017, 6:48 PMrepositories {
maven(uri("http://<our internal nexus server>/nexus/content/groups/public"))
}
warren
11/08/2017, 6:51 PMdependencies {
compile(kotlin("stdlib"))
}
warren
11/08/2017, 6:51 PMdependencies {
compile(kotlin("stdlib"))
}
kartikpatodi
11/08/2017, 7:37 PMinvadidate cache and restart
Czar
11/09/2017, 8:33 AMbuild.gradle.kts
as a snippet herewarren
11/09/2017, 3:35 PM