Skip to content

Commit

Permalink
chore: jitpack 배포 의존성 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
yonghanJu committed Jul 6, 2023
1 parent 4c748b6 commit a144c81
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion capture/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
plugins {
id 'com.android.library'
id 'org.jetbrains.kotlin.android'
id 'maven-publish'
}

android {
Expand Down Expand Up @@ -57,4 +58,24 @@ dependencies {
implementation "androidx.compose.ui:ui-graphics:1.2.0"
}

group = "com.github.yonghanJu"
afterEvaluate {
publishing {
publications {
release(MavenPublication) {
from components.release

groupId = 'com.github.yonghanJu'
artifactId = 'capturecomposable'
version = '1.0.0'
}
// Creates a Maven publication called “debug”.
debug(MavenPublication) {
from components.debug

groupId = 'com.github.yonghanJu'
artifactId = 'capturecomposable'
version = '1.0.0'
}
}
}
}

0 comments on commit a144c81

Please sign in to comment.