Skip to content
This repository has been archived by the owner on Sep 24, 2023. It is now read-only.

Commit

Permalink
Externalize commons io version number
Browse files Browse the repository at this point in the history
  • Loading branch information
Nilhcem committed Jan 1, 2014
1 parent b185bc4 commit 4148834
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ buildscript {
}
dependencies {
classpath 'com.android.tools.build:gradle:0.6.+'
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.1'
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.1'
}
}
apply plugin: 'android'
Expand All @@ -26,7 +26,7 @@ android {

dependencies {
// Commons IO
compile 'commons-io:commons-io:2.4'
compile "commons-io:commons-io:${commonsioVersion}"

// Dagger
apt "com.squareup.dagger:dagger-compiler:${daggerVersion}"
Expand Down
11 changes: 6 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.

// Dependencies
ext.absVersion = '4.4.0';
ext.butterknifeVersion = '4.0.1';
ext.daggerVersion = '1.2.0';
ext.ottoVersion = '1.3.4';
ext.supportv4Version = '18.0.+';
ext.absVersion = '4.4.0'
ext.butterknifeVersion = '4.0.1'
ext.commonsioVersion = '2.4'
ext.daggerVersion = '1.2.0'
ext.ottoVersion = '1.3.4'
ext.supportv4Version = '18.0.+'

0 comments on commit 4148834

Please sign in to comment.