Skip to content

Commit d543927

Browse files
author
Alex
committed
*
1 parent aae4774 commit d543927

File tree

3 files changed

+15
-1
lines changed

3 files changed

+15
-1
lines changed

build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ buildscript {
1919
dependencies {
2020
classpath 'com.android.tools.build:gradle:4.2.2'
2121
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
22-
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
2322
// NOTE: Do not place your application dependencies here; they belong
2423
// in the individual module build.gradle files
2524
}

jitpack.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
jdk:
2+
- openjdk11

reactiveviewmodel/build.gradle

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
apply plugin: 'com.android.library'
22
apply plugin: 'kotlin-android'
3+
apply plugin: 'maven-publish'
34

45
android {
56
compileSdkVersion sdk_version
@@ -35,3 +36,15 @@ dependencies {
3536
implementation "androidx.appcompat:appcompat:$appcompatx_version"
3637
implementation "com.google.android.material:material:$material_version"
3738
}
39+
40+
afterEvaluate {
41+
publishing {
42+
publications {
43+
release(MavenPublication) {
44+
from components.release
45+
groupId = 'com.alexdeww.reactiveviewmodel'
46+
version = '2.3.5'
47+
}
48+
}
49+
}
50+
}

0 commit comments

Comments
 (0)