Skip to content

Commit 714e1ef

Browse files
committed
release
1 parent 0bf2544 commit 714e1ef

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

chart/build.gradle

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ plugins {
44
id 'maven-publish'
55
}
66

7+
group = 'com.github.jitpack'
8+
version = '1.0.1'
9+
710
android {
811
compileSdk 30
912

@@ -38,3 +41,17 @@ dependencies {
3841
implementation 'androidx.appcompat:appcompat:1.3.1'
3942
implementation 'com.google.android.material:material:1.4.0'
4043
}
44+
45+
afterEvaluate {
46+
publishing {
47+
publications {
48+
// Creates a Maven publication called "release".
49+
release(MavenPublication) {
50+
from components.release
51+
groupId = 'com.github.jitpack'
52+
artifactId = 'charts'
53+
version = '1.0.1'
54+
}
55+
}
56+
}
57+
}

settings.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ dependencyResolutionManagement {
44
google()
55
mavenCentral()
66
jcenter() // Warning: this repository is going to shut down soon
7-
maven { url "https://jitpack.io" }
87
}
98
}
109
rootProject.name = "ChartExample"

0 commit comments

Comments
 (0)