Skip to content

Commit

Permalink
jitpack init
Browse files Browse the repository at this point in the history
  • Loading branch information
azazellj committed Mar 9, 2018
1 parent 1936da1 commit dc83f46
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 7 deletions.
4 changes: 3 additions & 1 deletion adapter-binding-kt/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
apply plugin: 'com.android.library'
apply plugin: 'com.github.dcendents.android-maven'
apply plugin: 'kotlin-android'
group = 'com.github.Azazellj'

Expand All @@ -19,7 +20,8 @@ android {
}

dependencies {
// implementation "com.android.support:recyclerview-v7:$supportLibVersion"
api project(':adapter-kt')
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
}

apply from: 'https://raw.githubusercontent.com/Commit451/gradle-android-javadocs/1.0.0/gradle-android-javadocs.gradle'
6 changes: 4 additions & 2 deletions adapter-binding/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
apply plugin: 'com.android.library'
apply plugin: 'com.github.dcendents.android-maven'
group = 'com.github.Azazellj'

android {
Expand All @@ -16,6 +17,7 @@ android {
}

dependencies {
// implementation "com.android.support:recyclerview-v7:$supportLibVersion"
api project(':adapter')
}
}

apply from: 'https://raw.githubusercontent.com/Commit451/gradle-android-javadocs/1.0.0/gradle-android-javadocs.gradle'
4 changes: 3 additions & 1 deletion adapter-butterknife-kt/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
apply plugin: 'com.android.library'
apply plugin: 'com.github.dcendents.android-maven'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-kapt'
group = 'com.github.Azazellj'
Expand All @@ -15,8 +16,9 @@ android {

dependencies {
api project(':adapter-kt')
// implementation "com.android.support:recyclerview-v7:$supportLibVersion"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'com.jakewharton:butterknife:8.8.1'
kapt 'com.jakewharton:butterknife-compiler:8.8.1'
}

apply from: 'https://raw.githubusercontent.com/Commit451/gradle-android-javadocs/1.0.0/gradle-android-javadocs.gradle'
6 changes: 5 additions & 1 deletion adapter-butterknife/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
apply plugin: 'com.android.library'
apply plugin: 'com.github.dcendents.android-maven'
group = 'com.github.Azazellj'


android {
buildToolsVersion rootProject.ext.buildToolsVersion
Expand All @@ -12,7 +15,8 @@ android {

dependencies {
api project(':adapter')
// implementation "com.android.support:recyclerview-v7:$supportLibVersion"
implementation 'com.jakewharton:butterknife:8.8.1'
annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1'
}

apply from: 'https://raw.githubusercontent.com/Commit451/gradle-android-javadocs/1.0.0/gradle-android-javadocs.gradle'
5 changes: 4 additions & 1 deletion adapter-kt/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
apply plugin: 'com.android.library'
apply plugin: 'com.github.dcendents.android-maven'
apply plugin: 'kotlin-android'
group = 'com.github.Azazellj'

Expand All @@ -16,4 +17,6 @@ dependencies {
api "com.android.support:recyclerview-v7:$supportLibVersion"
api "com.android.support:support-v4:${rootProject.ext.supportLibVersion}"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
}
}

apply from: 'https://raw.githubusercontent.com/Commit451/gradle-android-javadocs/1.0.0/gradle-android-javadocs.gradle'
1 change: 0 additions & 1 deletion sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,5 @@ dependencies {
implementation project(':adapter-butterknife')
implementation project(':adapter-butterknife-kt')
implementation "com.android.support:appcompat-v7:${rootProject.ext.supportLibVersion}"
// implementation "com.android.support:support-v4:${rootProject.ext.supportLibVersion}"
implementation 'com.github.bumptech.glide:glide:3.8.0'
}

0 comments on commit dc83f46

Please sign in to comment.