Skip to content

Commit 946f7df

Browse files
author
lemon
committed
add jitpack dependencies
1 parent 2caede2 commit 946f7df

File tree

3 files changed

+15
-0
lines changed

3 files changed

+15
-0
lines changed

.idea/caches/build_file_checksums.ser

-712 Bytes
Binary file not shown.

build.gradle

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
2+
apply from: 'jitpack-publish.gradle'
23

34
buildscript {
45
ext.kotlin_version = '1.2.30'
@@ -10,6 +11,8 @@ buildscript {
1011
dependencies {
1112
classpath 'com.android.tools.build:gradle:3.1.0'
1213
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
14+
// add JitPack dependencies
15+
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5'
1316

1417
// NOTE: Do not place your application dependencies here; they belong
1518
// in the individual module build.gradle files

jitpack-publish.gradle

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
subprojects { project ->
2+
3+
if (project.name == "app") {
4+
return
5+
}
6+
7+
apply plugin: 'com.github.dcendents.android-maven'
8+
9+
group = 'com.github.easilycoder'
10+
11+
12+
}

0 commit comments

Comments
 (0)