Skip to content

Commit d689e16

Browse files
committed
minor changes
1 parent f8bcc84 commit d689e16

File tree

3 files changed

+12
-5
lines changed

3 files changed

+12
-5
lines changed

.travis.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,4 @@ branches:
3333
cache:
3434
directories:
3535
- $HOME/.m2
36-
- $HOME/.gradle
37-
36+
- $HOME/.gradle

app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ dependencies {
3535
releaseCompile 'com.squareup.leakcanary:leakcanary-android-no-op:' + rootProject.ext.leakCanaryVersion
3636
testCompile 'com.squareup.leakcanary:leakcanary-android-no-op:' + rootProject.ext.leakCanaryVersion
3737
provided 'javax.annotation:jsr250-api:1.0'
38-
compile (project(':lib')){
38+
compile(project(':lib')) {
3939
exclude group: 'org.json', module: 'json'
4040
}
4141
androidTestCompile 'com.android.support.test.espresso:espresso-core:2.2.2', {

lib/build.gradle

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,18 @@
11
apply plugin: 'java'
2+
apply plugin: 'maven'
3+
4+
group = 'com.github.ihsanbal'
5+
6+
sourceCompatibility = JavaVersion.VERSION_1_7
7+
targetCompatibility = JavaVersion.VERSION_1_7
8+
9+
repositories {
10+
mavenCentral()
11+
}
212

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

9-
sourceCompatibility = JavaVersion.VERSION_1_7
10-
targetCompatibility = JavaVersion.VERSION_1_7

0 commit comments

Comments
 (0)