Skip to content

Commit

Permalink
Merge pull request #2 from yonghanJu/feat/capture_module
Browse files Browse the repository at this point in the history
gradle jitpack 배포 정보 추가
  • Loading branch information
yonghanJu authored Jul 6, 2023
2 parents 4c748b6 + a144c81 commit 61f5675
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 61f5675

Please sign in to comment.