Skip to content

Commit

Permalink
release
Browse files Browse the repository at this point in the history
  • Loading branch information
asayushg committed Aug 28, 2021
1 parent 0bf2544 commit 714e1ef
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
17 changes: 17 additions & 0 deletions chart/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ plugins {
id 'maven-publish'
}

group = 'com.github.jitpack'
version = '1.0.1'

android {
compileSdk 30

Expand Down Expand Up @@ -38,3 +41,17 @@ dependencies {
implementation 'androidx.appcompat:appcompat:1.3.1'
implementation 'com.google.android.material:material:1.4.0'
}

afterEvaluate {
publishing {
publications {
// Creates a Maven publication called "release".
release(MavenPublication) {
from components.release
groupId = 'com.github.jitpack'
artifactId = 'charts'
version = '1.0.1'
}
}
}
}
1 change: 0 additions & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ dependencyResolutionManagement {
google()
mavenCentral()
jcenter() // Warning: this repository is going to shut down soon
maven { url "https://jitpack.io" }
}
}
rootProject.name = "ChartExample"
Expand Down

0 comments on commit 714e1ef

Please sign in to comment.