Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Docs. #26

Merged
merged 2 commits into from
Mar 2, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Move plugin versions to libs,versions.toml and Add Dokka.
  • Loading branch information
Bram-- committed Mar 2, 2024
commit 8cf414b58e3953e672dc2b00c356c8f4e6453b1f
5 changes: 3 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@ plugins {
`java-library`
`maven-publish`
signing
alias(libs.plugins.org.jetbrains.kotlin.jvm)
alias(libs.plugins.com.gradleup.nmcp)
alias(libs.plugins.ktfmt.gradle)
id("com.gradleup.nmcp").version("0.0.4")
alias(libs.plugins.org.jetbrains.dokka)
alias(libs.plugins.org.jetbrains.kotlin.jvm)
}

java {
Expand Down
4 changes: 4 additions & 0 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
[versions]
com-gradleup-nmcp = "0.0.4"
jackson = "2.16.1"
javax-xml-stream = "1.0-2"
junit5 = "5.8.1"
kermit = "2.0.3"
ktfmt-gradle = "0.15.1"
ktor = "2.3.8"
org-jetbrains-dokka = "1.9.10"
org-jetbrains-kotlin-jvm = "1.9.22"
org-jetbrains-kotlin-jdk8 = "1.8.0"
serialization = "1.6.3"
Expand All @@ -31,4 +33,6 @@ truth = { module = "com.google.truth:truth", version.ref = "truth" }
[plugins]
org-jetbrains-kotlin-jvm = { id = "org.jetbrains.kotlin.jvm", version.ref = "org-jetbrains-kotlin-jvm" }
ktfmt-gradle = { id = "com.ncorti.ktfmt.gradle", version.ref = "ktfmt-gradle" }
com-gradleup-nmcp = { id = "com.gradleup.nmcp", version.ref = "com-gradleup-nmcp" }
org-jetbrains-dokka = { id = "org.jetbrains.dokka", version.ref = "org-jetbrains-dokka" }