Skip to content

Commit 62c339c

Browse files
feat: configured jitpack release, version 0.0.1
1 parent 22eec8e commit 62c339c

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

jitpack.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
jdk:
2+
- openjdk11

libnsgif/build.gradle.kts

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
plugins {
22
id("com.android.library")
33
id("org.jetbrains.kotlin.android")
4+
id("maven-publish")
45
}
56

67
android {
@@ -51,4 +52,18 @@ android {
5152

5253
dependencies {
5354

55+
}
56+
57+
afterEvaluate {
58+
publishing {
59+
publications {
60+
create<MavenPublication>("release") {
61+
from(components["release"])
62+
63+
groupId = "com.systems-onix.android"
64+
artifactId = "nsgif-library"
65+
version = "0.0.1"
66+
}
67+
}
68+
}
5469
}

0 commit comments

Comments
 (0)