Skip to content

Instantly share code, notes, and snippets.

@breandan
Created October 29, 2020 17:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save breandan/bea383441918f424b54afac632c757a9 to your computer and use it in GitHub Desktop.
Save breandan/bea383441918f424b54afac632c757a9 to your computer and use it in GitHub Desktop.
Kotlin∇ consumer Gradle build script.
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
kotlin("jvm") version "1.4.10"
}
group = "me.breandan"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
jcenter()
maven("https://jitpack.io")
maven("https://dl.bintray.com/mipt-npm/dev")
maven("https://dl.bintray.com/hotkeytlt/maven")
maven("https://dl.bintray.com/kotlin/kotlin-eap")
maven("https://dl.bintray.com/egor-bogomolov/astminer")
maven("https://maven.jzy3d.org/releases")
maven("https://jetbrains.bintray.com/lets-plot-maven")
maven("http://logicrunch.research.it.uu.se/maven/")
maven("https://clojars.org/repo")
}
dependencies {
testImplementation(kotlin("test-junit"))
implementation("com.github.breandan:kotlingrad:0.3.7")
implementation("com.github.breandan:kaliningraph:0.1.2")
}
tasks.test {
useJUnit()
}
tasks.withType<KotlinCompile> {
kotlinOptions.jvmTarget = "1.8"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment