Skip to content

Commit

Permalink
fixed;
Browse files Browse the repository at this point in the history
  • Loading branch information
OCNYang committed Sep 13, 2023
1 parent 9a45fc6 commit 1ac78b0
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions cartlayout/build.gradle
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
apply plugin: 'com.android.library'
apply plugin: 'maven-publish'

group='com.github.ocnyang'
version = '1.0.6'

android {
compileSdkVersion 31

Expand Down Expand Up @@ -36,3 +33,16 @@ dependencies {
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0'
implementation 'androidx.recyclerview:recyclerview:1.0.0'
}

afterEvaluate {
publishing {
publications {
release(MavenPublication) {
from components.release
groupId = 'com.github.ocnyang' //your git id
artifactId = 'cartlayout' //your-repository
version = '1.0.6' // As same as the Tag
}
}
}
}

0 comments on commit 1ac78b0

Please sign in to comment.