chore: bumped versions (#341)
This commit is contained in:
12
.github/workflows/autoupdate.yml
vendored
Normal file
12
.github/workflows/autoupdate.yml
vendored
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
name: autoupdate
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [ main ]
|
||||||
|
jobs:
|
||||||
|
autoupdate:
|
||||||
|
name: autoupdate
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: docker://chinthakagodawita/autoupdate-action:v1
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}'
|
@ -20,9 +20,7 @@ To get an overview of the project, read the [README](README.md). Here are some r
|
|||||||
|
|
||||||
## Getting started
|
## Getting started
|
||||||
|
|
||||||
The best way to get started with Kompendium is to read the [docs](https://bkbnio.github.io/kompendium). Kompendium generates
|
The best way to get started with Kompendium is to read the [docs](https://bkbn.gitbook.io/kompendium).
|
||||||
our documentation using [Dokka](https://github.com/Kotlin/dokka). This means that the docs live side-by-side with the source
|
|
||||||
code itself, and leverage the KDoc format to provide syntax highlighting, dynamic linking and more!
|
|
||||||
|
|
||||||
If live examples are more your thing, inside the `kompendium-playground` module, you will find a collection of starter
|
If live examples are more your thing, inside the `kompendium-playground` module, you will find a collection of starter
|
||||||
examples ranging from simple CRUD and authentication examples, to more advanced topics like polymorphic serialization
|
examples ranging from simple CRUD and authentication examples, to more advanced topics like polymorphic serialization
|
||||||
|
@ -1,11 +1,10 @@
|
|||||||
plugins {
|
plugins {
|
||||||
kotlin("jvm") version "1.7.10" apply false
|
kotlin("jvm") version "1.7.20" apply false
|
||||||
kotlin("plugin.serialization") version "1.7.10" apply false
|
kotlin("plugin.serialization") version "1.7.20" apply false
|
||||||
id("io.bkbn.sourdough.library.jvm") version "0.9.2" apply false
|
id("io.bkbn.sourdough.library.jvm") version "0.10.0" apply false
|
||||||
id("io.bkbn.sourdough.application.jvm") version "0.9.2" apply false
|
id("io.bkbn.sourdough.application.jvm") version "0.10.0" apply false
|
||||||
id("io.bkbn.sourdough.root") version "0.9.2"
|
id("io.bkbn.sourdough.root") version "0.10.0"
|
||||||
id("com.github.jakemarsden.git-hooks") version "0.0.2"
|
id("com.github.jakemarsden.git-hooks") version "0.0.2"
|
||||||
id("org.jetbrains.dokka") version "1.7.10"
|
|
||||||
id("org.jetbrains.kotlinx.kover") version "0.6.0"
|
id("org.jetbrains.kotlinx.kover") version "0.6.0"
|
||||||
id("io.github.gradle-nexus.publish-plugin") version "1.1.0"
|
id("io.github.gradle-nexus.publish-plugin") version "1.1.0"
|
||||||
}
|
}
|
||||||
|
@ -4,7 +4,6 @@ plugins {
|
|||||||
id("io.bkbn.sourdough.library.jvm")
|
id("io.bkbn.sourdough.library.jvm")
|
||||||
id("io.gitlab.arturbosch.detekt")
|
id("io.gitlab.arturbosch.detekt")
|
||||||
id("com.adarshr.test-logger")
|
id("com.adarshr.test-logger")
|
||||||
id("org.jetbrains.dokka")
|
|
||||||
id("maven-publish")
|
id("maven-publish")
|
||||||
id("java-library")
|
id("java-library")
|
||||||
id("signing")
|
id("signing")
|
||||||
|
@ -8,6 +8,6 @@ org.gradle.vfs.verbose=true
|
|||||||
org.gradle.jvmargs=-Xmx2000m
|
org.gradle.jvmargs=-Xmx2000m
|
||||||
|
|
||||||
# Dependencies
|
# Dependencies
|
||||||
ktorVersion=2.1.1
|
ktorVersion=2.1.2
|
||||||
kotestVersion=5.4.2
|
kotestVersion=5.4.2
|
||||||
detektVersion=1.21.0
|
detektVersion=1.21.0
|
||||||
|
@ -4,7 +4,6 @@ plugins {
|
|||||||
id("io.bkbn.sourdough.library.jvm")
|
id("io.bkbn.sourdough.library.jvm")
|
||||||
id("io.gitlab.arturbosch.detekt")
|
id("io.gitlab.arturbosch.detekt")
|
||||||
id("com.adarshr.test-logger")
|
id("com.adarshr.test-logger")
|
||||||
id("org.jetbrains.dokka")
|
|
||||||
id("maven-publish")
|
id("maven-publish")
|
||||||
id("java-library")
|
id("java-library")
|
||||||
id("signing")
|
id("signing")
|
||||||
@ -21,7 +20,7 @@ dependencies {
|
|||||||
// Versions
|
// Versions
|
||||||
val detektVersion: String by project
|
val detektVersion: String by project
|
||||||
|
|
||||||
implementation("org.jetbrains.kotlin:kotlin-reflect:1.7.10")
|
implementation("org.jetbrains.kotlin:kotlin-reflect:1.7.20")
|
||||||
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.4.0")
|
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.4.0")
|
||||||
|
|
||||||
// Formatting
|
// Formatting
|
||||||
|
@ -3,7 +3,6 @@ plugins {
|
|||||||
id("io.bkbn.sourdough.library.jvm")
|
id("io.bkbn.sourdough.library.jvm")
|
||||||
id("io.gitlab.arturbosch.detekt")
|
id("io.gitlab.arturbosch.detekt")
|
||||||
id("com.adarshr.test-logger")
|
id("com.adarshr.test-logger")
|
||||||
id("org.jetbrains.dokka")
|
|
||||||
id("maven-publish")
|
id("maven-publish")
|
||||||
id("java-library")
|
id("java-library")
|
||||||
id("signing")
|
id("signing")
|
||||||
|
@ -4,7 +4,6 @@ plugins {
|
|||||||
id("io.bkbn.sourdough.library.jvm")
|
id("io.bkbn.sourdough.library.jvm")
|
||||||
id("io.gitlab.arturbosch.detekt")
|
id("io.gitlab.arturbosch.detekt")
|
||||||
id("com.adarshr.test-logger")
|
id("com.adarshr.test-logger")
|
||||||
id("org.jetbrains.dokka")
|
|
||||||
id("maven-publish")
|
id("maven-publish")
|
||||||
id("java-library")
|
id("java-library")
|
||||||
id("signing")
|
id("signing")
|
||||||
|
Reference in New Issue
Block a user