Tmpod
02/12/2020, 7:33 PMgroup = "..."
version = "..."
description = "..."
object DependencyVersions {
... // just a bunch of const strings for versions
}
plugins {
kotlin("jvm") version "1.3.70-eap-184" // afaik this block doesn't see DependencyVersions, so versions gotta be put manually here ig...
application
}
repositories {
... // bunch of repos
maven("<https://dl.bintray.com/kotlin/kotlin-eap>")
}
dependencies {
implementation(kotlin("stdlib"))
... // more deps
}
tasks {
compileKotlin {
... // I add some compiler args here
}
}
application {
mainClassName = "..."
}
with this said, Gradle can't find any kotlin version that satisfies what I've specifiedoctylFractal
02/12/2020, 7:40 PMplugins
also doesn't see repositories
octylFractal
02/12/2020, 7:40 PMgregorbg
02/12/2020, 7:48 PMbuildscript
repositories should do the trick.Tmpod
02/12/2020, 7:56 PMTmpod
02/12/2020, 8:00 PMoctylFractal
02/12/2020, 8:00 PMplugins
blockoctylFractal
02/12/2020, 8:00 PMTmpod
02/12/2020, 8:01 PMTmpod
02/12/2020, 8:01 PMsettings.gradle.kts
fileTmpod
02/12/2020, 8:01 PMTmpod
02/12/2020, 8:09 PMTmpod
02/12/2020, 8:09 PM