Updated docs and examples

This commit is contained in:
Erik C. Thauvin 2024-05-22 21:10:34 -07:00
parent a8855096b3
commit 4900d5a342
Signed by: erik
GPG key ID: 776702A6A2DA330E
148 changed files with 5414 additions and 728 deletions

View file

@ -6,10 +6,6 @@ plugins {
kotlin("jvm") version "2.0.0"
}
// ./gradlew run --args='https://erik.thauvin.net/ https://bit.ly/2PsNMAA'
// ./gradlew runJava --args='https://erik.thauvin.net/ https://bit.ly/2PsNMAA'
// ./gradlew runRetrieve
repositories {
mavenLocal()
mavenCentral()
@ -30,11 +26,11 @@ java {
targetCompatibility = JavaVersion.VERSION_11
}
tasks {
withType<KotlinCompile>().configureEach {
kotlinOptions.jvmTarget = java.targetCompatibility.toString()
}
kotlin {
compilerOptions.jvmTarget.set(org.jetbrains.kotlin.gradle.dsl.JvmTarget.JVM_11)
}
tasks {
register("runJava", JavaExec::class) {
group = "application"
mainClass.set("com.example.BitlySample")