|
1 | 1 | apply plugin: 'com.android.library'
|
2 |
| -apply plugin: 'com.neenbedankt.android-apt' |
3 | 2 | apply plugin: 'me.tatarka.retrolambda'
|
4 | 3 | apply plugin: 'groovyx.android'
|
5 | 4 | apply from: 'jacoco.gradle'
|
6 | 5 |
|
7 | 6 | android {
|
8 | 7 | compileSdkVersion 25
|
9 |
| - buildToolsVersion '25.0.2' |
10 | 8 |
|
11 | 9 | defaultConfig {
|
12 | 10 | minSdkVersion 14
|
@@ -115,34 +113,34 @@ bintray {
|
115 | 113 | }
|
116 | 114 |
|
117 | 115 | dependencies {
|
118 |
| - compile fileTree(dir: 'libs', include: ['*.jar']) |
119 |
| - compile 'com.android.support:support-annotations:25.2.0' |
120 |
| - compile 'com.squareup.retrofit2:retrofit:2.1.0' |
121 |
| - compile 'com.squareup.retrofit2:converter-jackson:2.1.0' |
122 |
| - compile 'com.squareup.okhttp3:okhttp:3.3.0' |
123 |
| - compile 'com.squareup.okhttp3:logging-interceptor:3.3.0' |
124 |
| - compile 'com.google.dagger:dagger:2.7' |
125 |
| - apt 'com.google.dagger:dagger-compiler:2.7' |
126 |
| - compile 'javax.annotation:javax.annotation-api:1.2' |
127 |
| - compile 'com.pixplicity.easyprefs:library:1.8.1@aar' |
128 |
| - compile 'com.github.creatubbles:java-jsonapi-converter:87dbdaf' |
129 |
| - |
130 |
| - testCompile 'junit:junit:4.12' |
131 |
| - testCompile 'org.mockito:mockito-core:1.10.8' |
132 |
| - testCompile 'org.robolectric:robolectric:3.0' |
133 |
| - |
134 |
| - testCompile "org.powermock:powermock-module-junit4:1.6.5" |
135 |
| - testCompile "org.powermock:powermock-module-junit4-rule:1.6.5" |
136 |
| - testCompile "org.powermock:powermock-api-mockito:1.6.5" |
137 |
| - testCompile "org.powermock:powermock-classloading-xstream:1.6.5" |
138 |
| - |
139 |
| - testCompile 'org.codehaus.groovy:groovy:2.4.7:grooid' |
140 |
| - testCompile "com.andrewreitz:spock-android:1.2.1" |
141 |
| - testCompile 'com.android.support.test:testing-support-lib:0.1' |
142 |
| - testCompile('org.spockframework:spock-core:1.0-groovy-2.4') { |
| 116 | + implementation fileTree(dir: 'libs', include: ['*.jar']) |
| 117 | + implementation 'com.android.support:support-annotations:25.2.0' |
| 118 | + implementation 'com.squareup.retrofit2:retrofit:2.1.0' |
| 119 | + implementation 'com.squareup.retrofit2:converter-jackson:2.1.0' |
| 120 | + implementation 'com.squareup.okhttp3:okhttp:3.3.0' |
| 121 | + api 'com.squareup.okhttp3:logging-interceptor:3.3.0' |
| 122 | + implementation 'com.google.dagger:dagger:2.7' |
| 123 | + annotationProcessor 'com.google.dagger:dagger-compiler:2.7' |
| 124 | + implementation 'javax.annotation:javax.annotation-api:1.2' |
| 125 | + implementation 'com.pixplicity.easyprefs:library:1.8.1@aar' |
| 126 | + api 'com.github.creatubbles:java-jsonapi-converter:87dbdaf' |
| 127 | + |
| 128 | + testImplementation 'junit:junit:4.12' |
| 129 | + testImplementation 'org.mockito:mockito-core:1.10.8' |
| 130 | + testImplementation 'org.robolectric:robolectric:3.0' |
| 131 | + |
| 132 | + testImplementation "org.powermock:powermock-module-junit4:1.6.5" |
| 133 | + testImplementation "org.powermock:powermock-module-junit4-rule:1.6.5" |
| 134 | + testImplementation "org.powermock:powermock-api-mockito:1.6.5" |
| 135 | + testImplementation "org.powermock:powermock-classloading-xstream:1.6.5" |
| 136 | + |
| 137 | + testImplementation 'org.codehaus.groovy:groovy:2.4.7:grooid' |
| 138 | + testImplementation "com.andrewreitz:spock-android:1.2.1" |
| 139 | + testImplementation 'com.android.support.test:testing-support-lib:0.1' |
| 140 | + testImplementation('org.spockframework:spock-core:1.0-groovy-2.4') { |
143 | 141 | exclude group: 'org.codehaus.groovy'
|
144 | 142 | exclude group: 'junit'
|
145 | 143 | }
|
146 |
| - testCompile 'cglib:cglib-nodep:3.2.4' |
147 |
| - testCompile 'org.objenesis:objenesis:2.2' |
| 144 | + testImplementation 'cglib:cglib-nodep:3.2.4' |
| 145 | + testImplementation 'org.objenesis:objenesis:2.2' |
148 | 146 | }
|
0 commit comments