2021-09-25 15:54:48 +02:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
|
|
|
id 'org.jetbrains.kotlin.jvm'
|
|
|
|
id 'org.jetbrains.kotlin.plugin.serialization'
|
|
|
|
id 'maven-publish'
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2021-12-17 20:59:47 +01:00
|
|
|
implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:$serialization_version"
|
2021-09-25 15:54:48 +02:00
|
|
|
}
|
2021-10-03 14:25:30 +02:00
|
|
|
|
2021-10-03 16:58:00 +02:00
|
|
|
java {
|
|
|
|
withJavadocJar()
|
|
|
|
withSourcesJar()
|
|
|
|
}
|
|
|
|
|
|
|
|
publishing {
|
|
|
|
publications {
|
|
|
|
messages(MavenPublication) {
|
|
|
|
from components.java
|
|
|
|
groupId = "io.github.wulkanowy"
|
|
|
|
artifactId = "messages"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|