Skip to content

Commit a80e604

Browse files
committed
jitpack.yml 파일 추가
1 parent f9f9421 commit a80e604

2 files changed

Lines changed: 13 additions & 0 deletions

File tree

audioControllerLibrary/build.gradle

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,8 @@ dependencies {
4444
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
4545
}
4646

47+
// Because the components are created only during the afterEvaluate phase, you must
48+
// configure your publications using the afterEvaluate() lifecycle method.
4749
afterEvaluate {
4850
publishing {
4951
publications {
@@ -57,6 +59,15 @@ afterEvaluate {
5759
artifactId = ''
5860
version = '1.0.0'
5961
}
62+
// Creates a Maven publication called "debug"
63+
debug(MavenPublication) {
64+
// Applies the component for the debug bulid variant.
65+
from components.debug
66+
67+
groupId = 'com.github.HyunJinNo'
68+
artifactId = 'final-debug'
69+
version = '1.0.0'
70+
}
6071
}
6172
}
6273
}

jitpack.yml

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

0 commit comments

Comments
 (0)