Skip to content

Commit

Permalink
Publish scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
amarjain07 committed Dec 30, 2021
1 parent b2f3763 commit c48f017
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
2 changes: 1 addition & 1 deletion library/build.gradle
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
plugins {
id 'com.android.library'
id 'kotlin-android'
id 'maven-publish'
}
apply from: 'publish.gradle'

android {
compileSdkVersion compileVersionSdk
Expand Down
14 changes: 14 additions & 0 deletions library/publish.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
apply plugin: 'maven-publish'

afterEvaluate {
publishing {
publications {
release(MavenPublication) {
from components.release
groupId = 'weekend.coder'
artifactId = 'sticky-scrollview'
version = '1.0.4'
}
}
}
}

0 comments on commit c48f017

Please sign in to comment.