Skip to content

Commit

Permalink
added android-maven plugin to restore jitpack support
Browse files Browse the repository at this point in the history
  • Loading branch information
marksalpeter committed Apr 6, 2018
1 parent 71d115d commit fe130fb
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 18 deletions.
Binary file modified .idea/caches/build_file_checksums.ser
Binary file not shown.
21 changes: 3 additions & 18 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,24 +1,9 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
repositories {
jcenter()
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.0'

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.0'
}
}

allprojects {
repositories {
jcenter()
}
}

task clean(type: Delete) {
delete rootProject.buildDir
}
}
19 changes: 19 additions & 0 deletions fragment/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,23 @@
apply plugin: 'com.android.library'
apply plugin: 'com.github.dcendents.android-maven'
group='com.github.marksalpeter'

buildscript {
repositories {
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.0'
}
}

allprojects {
repositories {
jcenter()
google()
}
}

android {
compileSdkVersion 25
Expand Down

0 comments on commit fe130fb

Please sign in to comment.