Skip to content

Commit

Permalink
Fixed jitpack
Browse files Browse the repository at this point in the history
Fixing jitpack
  • Loading branch information
Kwasow authored Mar 31, 2021
2 parents 1691155 + 7a4598f commit bd3a4b9
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 3 deletions.
18 changes: 16 additions & 2 deletions BottomNavigationCircles/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
plugins {
id 'com.android.library'
id 'kotlin-android'
id 'maven-publish'
}

static def getDate() {
Expand Down Expand Up @@ -29,8 +30,8 @@ android {
}

compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}

kotlinOptions {
Expand All @@ -48,4 +49,17 @@ dependencies {
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
}

afterEvaluate {
publishing {
publications {
release(MavenPublication) {
from components.release
groupId = 'com.github.kwasow'
artifactId = 'bottomnavigationcircles'
version = '1.1-beta5'
}
}
}
}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Available versions:
| Release | Version Tag | Comment |
|---------|--------------------------------|------------------------------------------|
| stable | 1.0 | -- |
| beta | 1.1-beta4 | Contains fixes for material:1.4.0 |
| beta | 1.1-beta5 | Contains fixes for material:1.4.0 |

## Usage

Expand Down

0 comments on commit bd3a4b9

Please sign in to comment.