-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Francesco Vasco
committed
Oct 8, 2024
1 parent
298480c
commit 6eab989
Showing
7 changed files
with
56 additions
and
96 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
plugins { | ||
kotlin("jvm") version "2.0.20" | ||
id("org.jetbrains.dokka") version "1.9.20" | ||
} | ||
|
||
allprojects { | ||
group = "com.lightstreamer" | ||
version = "0.1.0" | ||
|
||
repositories { | ||
mavenCentral() | ||
} | ||
} | ||
|
||
subprojects { | ||
apply(plugin = "kotlin") | ||
apply(plugin = "maven-publish") | ||
apply(plugin = "org.jetbrains.dokka") | ||
|
||
version = parent?.version ?: error("Parent version not found") | ||
|
||
kotlin { | ||
explicitApi() | ||
jvmToolchain(21) | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
description = "Lightstreamer client" | ||
|
||
dependencies { | ||
api(project(":ls-kotlin-mini-socket")) | ||
testImplementation(kotlin("test")) | ||
testApi("org.slf4j:slf4j-simple:1.7.36") | ||
testApi("org.amshove.kluent:kluent:1.73") | ||
} | ||
|
||
tasks.test { | ||
useJUnitPlatform() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
description = "TLCP parser" | ||
|
||
dependencies { | ||
api("org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0") | ||
api("io.github.microutils:kotlin-logging-jvm:3.0.5") | ||
testImplementation(kotlin("test")) | ||
testApi("ch.qos.logback:logback-classic:1.2.13") | ||
testApi("org.amshove.kluent:kluent:1.73") | ||
} | ||
|
||
tasks.test { | ||
useJUnitPlatform() | ||
} |