Skip to content

Commit 4792f74

Browse files
committed
jitpack.yml added
1 parent 7a41626 commit 4792f74

File tree

2 files changed

+23
-2
lines changed

2 files changed

+23
-2
lines changed

jitpack.yml

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
jdk:
2+
- openjdk11

slider/build.gradle

+21-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
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+
}
36

47
android {
58
compileSdk 31
@@ -35,3 +38,19 @@ dependencies {
3538
// Circle Indicator
3639
implementation 'me.relex:circleindicator:2.1.6'
3740
}
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+
}

0 commit comments

Comments
 (0)