Skip to content

Commit

Permalink
minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ihsanbal committed Mar 31, 2017
1 parent f8bcc84 commit d689e16
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,4 @@ branches:
cache:
directories:
- $HOME/.m2
- $HOME/.gradle

- $HOME/.gradle
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ dependencies {
releaseCompile 'com.squareup.leakcanary:leakcanary-android-no-op:' + rootProject.ext.leakCanaryVersion
testCompile 'com.squareup.leakcanary:leakcanary-android-no-op:' + rootProject.ext.leakCanaryVersion
provided 'javax.annotation:jsr250-api:1.0'
compile (project(':lib')){
compile(project(':lib')) {
exclude group: 'org.json', module: 'json'
}
androidTestCompile 'com.android.support.test.espresso:espresso-core:2.2.2', {
Expand Down
12 changes: 10 additions & 2 deletions lib/build.gradle
Original file line number Diff line number Diff line change
@@ -1,10 +1,18 @@
apply plugin: 'java'
apply plugin: 'maven'

group = 'com.github.ihsanbal'

sourceCompatibility = JavaVersion.VERSION_1_7
targetCompatibility = JavaVersion.VERSION_1_7

repositories {
mavenCentral()
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.squareup.okhttp3:logging-interceptor:3.6.0'
compile group: 'org.json', name: 'json', version: '20160810'
}

sourceCompatibility = JavaVersion.VERSION_1_7
targetCompatibility = JavaVersion.VERSION_1_7

0 comments on commit d689e16

Please sign in to comment.