Extract serialization plugin

This commit is contained in:
Hubert Van De Walle 2020-10-26 17:55:04 +01:00
parent c709f2b44d
commit ea7be84ec3
5 changed files with 11 additions and 2 deletions

View File

@ -2,6 +2,7 @@ plugins {
`kotlin-dsl`
kotlin("jvm") version "1.4.10"
id("com.github.johnrengelman.shadow") version "6.1.0" apply false
kotlin("plugin.serialization") version "1.4.10"
}
repositories {
@ -11,6 +12,7 @@ repositories {
dependencies {
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:1.4.10")
implementation("org.jetbrains.kotlin:kotlin-serialization:1.4.10")
implementation("com.github.jengelman.gradle.plugins:shadow:6.1.0")
implementation("org.jlleitschuh.gradle:ktlint-gradle:9.4.1")
}

View File

@ -0,0 +1,6 @@
package be.simplenotes
plugins {
kotlin("jvm") apply false
kotlin("plugin.serialization")
}

View File

@ -2,6 +2,7 @@ import be.simplenotes.Libs
plugins {
id("be.simplenotes.base")
id("be.simplenotes.kotlinx-serialization")
id("be.simplenotes.app-shadow")
id("be.simplenotes.app-css")
id("be.simplenotes.app-docker")

View File

@ -2,7 +2,7 @@ import be.simplenotes.Libs
plugins {
id("be.simplenotes.base")
kotlin("plugin.serialization") version "1.4.10"
id("be.simplenotes.kotlinx-serialization")
}
dependencies {

View File

@ -2,7 +2,7 @@ import be.simplenotes.Libs
plugins {
id("be.simplenotes.base")
kotlin("plugin.serialization") version "1.4.10"
id("be.simplenotes.kotlinx-serialization")
}
dependencies {