File tree 2 files changed +23
-2
lines changed
2 files changed +23
-2
lines changed Original file line number Diff line number Diff line change
1
+ jdk :
2
+ - openjdk11
Original file line number Diff line number Diff line change 1
- apply plugin : ' com.android.library'
2
- apply plugin : ' kotlin-android'
1
+ plugins {
2
+ id ' com.android.library'
3
+ id ' kotlin-android'
4
+ id ' maven-publish'
5
+ }
3
6
4
7
android {
5
8
compileSdk 31
@@ -35,3 +38,19 @@ dependencies {
35
38
// Circle Indicator
36
39
implementation ' me.relex:circleindicator:2.1.6'
37
40
}
41
+ afterEvaluate {
42
+ publishing {
43
+ publications {
44
+ // Creates a Maven publication called "release".
45
+ release(MavenPublication ) {
46
+ // Applies the component for the release build variant.
47
+ from components. release
48
+
49
+ // You can then customize attributes of the publication as shown below.
50
+ groupId = ' com.limerse.slider'
51
+ artifactId = ' final'
52
+ version = ' 1.0'
53
+ }
54
+ }
55
+ }
56
+ }
You can’t perform that action at this time.
0 commit comments