We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ec898a5 + 827c0d0 commit 1a70a7dCopy full SHA for 1a70a7d
1 file changed
build.gradle
@@ -1,15 +1,25 @@
1
plugins {
2
id "org.jetbrains.kotlin.jvm" version "$kotlin_version"
3
+ id 'maven-publish'
4
}
5
-group 'com.papsign.ktor'
6
-version '1.0-SNAPSHOT'
+group 'com.github.papsign'
7
+version '0.2-beta.15-SNAPSHOT'
8
9
repositories {
10
mavenCentral()
11
jcenter()
12
13
14
+publishing {
15
+ publications {
16
+ jarModule(MavenPublication) {
17
+ artifactId 'Ktor-OpenAPI-Generator'
18
+ from components.java
19
+ }
20
21
+}
22
+
23
dependencies {
24
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
25
implementation "org.slf4j:slf4j-api:$slf4j_version"
0 commit comments