Skip to content

Commit

Permalink
Upgrade gradle deps
Browse files Browse the repository at this point in the history
  • Loading branch information
Eric Denman committed Mar 17, 2015
1 parent cd80727 commit 5a0924d
Show file tree
Hide file tree
Showing 11 changed files with 17 additions and 17 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ language: android

android:
components:
- build-tools-21.1.1
- build-tools-22.0.0
- extra-android-m2repository
- extra-google-m2repository
- android-21
- android-22
licenses:
- android-sdk-license-5be876d5

Expand Down
2 changes: 1 addition & 1 deletion assertj-android-appcompat-v7/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply plugin: 'com.android.library'

dependencies {
compile project(':assertj-android')
compile 'com.android.support:appcompat-v7:20.0.0'
compile 'com.android.support:appcompat-v7:22.0.0'
}

android {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@

import android.support.v4.widget.CursorAdapter;
import android.support.v7.widget.SearchView;
import org.assertj.android.api.widget.AbstractLinearLayoutAssert;
import org.assertj.android.api.view.AbstractViewGroupAssert;

import static org.assertj.core.api.Assertions.assertThat;

/** Assertions for {@link SearchView} instances. */
public class SearchViewAssert extends AbstractLinearLayoutAssert<SearchViewAssert, SearchView> {
public class SearchViewAssert extends AbstractViewGroupAssert<SearchViewAssert, SearchView> {
public SearchViewAssert(SearchView actual) {
super(actual, SearchViewAssert.class);
}
Expand Down
4 changes: 2 additions & 2 deletions assertj-android-cardview-v7/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@ apply plugin: 'com.android.library'

dependencies {
compile project(':assertj-android')
compile 'com.android.support:cardview-v7:21.0.2'
compile 'com.android.support:cardview-v7:22.0.0'
}

android {
compileSdkVersion rootProject.ext.compileSdkVersion
buildToolsVersion rootProject.ext.buildToolsVersion

defaultConfig {
minSdkVersion 'L'
minSdkVersion 21
}

compileOptions {
Expand Down
2 changes: 1 addition & 1 deletion assertj-android-gridlayout-v7/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply plugin: 'com.android.library'

dependencies {
compile project(':assertj-android')
compile 'com.android.support:gridlayout-v7:21.0.2'
compile 'com.android.support:gridlayout-v7:22.0.0'
}

android {
Expand Down
2 changes: 1 addition & 1 deletion assertj-android-mediarouter-v7/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply plugin: 'com.android.library'

dependencies {
compile project(':assertj-android')
compile 'com.android.support:mediarouter-v7:21.0.2'
compile 'com.android.support:mediarouter-v7:22.0.0'
}

android {
Expand Down
2 changes: 1 addition & 1 deletion assertj-android-palette-v7/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply plugin: 'com.android.library'

dependencies {
compile project(':assertj-android')
compile 'com.android.support:palette-v7:21.0.2'
compile 'com.android.support:palette-v7:22.0.0'
}

android {
Expand Down
4 changes: 2 additions & 2 deletions assertj-android-recyclerview-v7/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@ apply plugin: 'com.android.library'

dependencies {
compile project(':assertj-android')
compile 'com.android.support:recyclerview-v7:21.0.0'
compile 'com.android.support:recyclerview-v7:22.0.0'
}

android {
compileSdkVersion rootProject.ext.compileSdkVersion
buildToolsVersion rootProject.ext.buildToolsVersion

defaultConfig {
minSdkVersion 'L'
minSdkVersion 21
}

compileOptions {
Expand Down
2 changes: 1 addition & 1 deletion assertj-android-support-v4/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply plugin: 'com.android.library'

dependencies {
compile project(':assertj-android')
compile 'com.android.support:support-v4:21.0.2'
compile 'com.android.support:support-v4:22.0.0'
}

android {
Expand Down
2 changes: 1 addition & 1 deletion assertj-android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply plugin: 'com.android.library'

dependencies {
compile 'org.assertj:assertj-core:1.7.0'
compile 'com.android.support:support-annotations:21.0.2'
compile 'com.android.support:support-annotations:22.0.0'
}

android {
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ subprojects {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.14.4'
classpath 'com.android.tools.build:gradle:1.1.3'
}
}

Expand All @@ -18,6 +18,6 @@ subprojects {

ext {
minSdkVersion = 9
compileSdkVersion = 21
buildToolsVersion = '21.1.1'
compileSdkVersion = 22
buildToolsVersion = '22.0.0'
}

0 comments on commit 5a0924d

Please sign in to comment.