Skip to content

Commit 8b68320

Browse files
committed
library adjustments.
1 parent c23fd1f commit 8b68320

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

compose-loading/build.gradle

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 {
@@ -38,4 +39,18 @@ android {
3839
dependencies {
3940
implementation "androidx.compose.ui:ui:$compose_version"
4041
implementation "androidx.compose.material3:material3:1.0.0-alpha15"
42+
}
43+
44+
afterEvaluate {
45+
publishing{
46+
publications {
47+
release(MavenPublication){
48+
from components.release
49+
50+
groupId = 'com.github.commandiron'
51+
artifactId = 'compose-loading'
52+
version = '1.0'
53+
}
54+
}
55+
}
4156
}

jitpack.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
jdk:
2+
- openjdk 11
3+
before install:
4+
- ./scripts/prepareJitpackEnvironment.sh

0 commit comments

Comments
 (0)