Skip to content

Commit 84b9bec

Browse files
committed
Add maven-publish plugin for jitpack
1 parent ac6e158 commit 84b9bec

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

lib/build.gradle.kts

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,20 @@
11
plugins {
22
id("org.jetbrains.kotlin.jvm") version "1.8.10"
3+
id("maven-publish")
34
}
45

56
repositories {
67
mavenCentral()
8+
}
9+
10+
publishing {
11+
publications {
12+
mavenJava(MavenPublication) {
13+
groupId = 'org.cosmic.ide'
14+
artifactId = 'dependency-resolver'
15+
version = '1.0.0'
16+
17+
from components.java
18+
}
19+
}
720
}

0 commit comments

Comments
 (0)