File tree Expand file tree Collapse file tree 3 files changed +12
-5
lines changed Expand file tree Collapse file tree 3 files changed +12
-5
lines changed Original file line number Diff line number Diff line change @@ -33,5 +33,4 @@ branches:
33
33
cache :
34
34
directories :
35
35
- $HOME/.m2
36
- - $HOME/.gradle
37
-
36
+ - $HOME/.gradle
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ dependencies {
35
35
releaseCompile ' com.squareup.leakcanary:leakcanary-android-no-op:' + rootProject. ext. leakCanaryVersion
36
36
testCompile ' com.squareup.leakcanary:leakcanary-android-no-op:' + rootProject. ext. leakCanaryVersion
37
37
provided ' javax.annotation:jsr250-api:1.0'
38
- compile (project(' :lib' )){
38
+ compile(project(' :lib' )) {
39
39
exclude group : ' org.json' , module : ' json'
40
40
}
41
41
androidTestCompile ' com.android.support.test.espresso:espresso-core:2.2.2' , {
Original file line number Diff line number Diff line change 1
1
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
+ }
2
12
3
13
dependencies {
4
14
compile fileTree(dir : ' libs' , include : [' *.jar' ])
5
15
compile ' com.squareup.okhttp3:logging-interceptor:3.6.0'
6
16
compile group : ' org.json' , name : ' json' , version : ' 20160810'
7
17
}
8
18
9
- sourceCompatibility = JavaVersion . VERSION_1_7
10
- targetCompatibility = JavaVersion . VERSION_1_7
You can’t perform that action at this time.
0 commit comments