Skip to content
This repository was archived by the owner on Feb 11, 2022. It is now read-only.

Commit f8466c4

Browse files
committed
Merge pull request #12 from novoda/small_fixes_in_dependencies
Replaces old versions with newer ones for most dependencies
2 parents ee3b4bb + a2f1e5b commit f8466c4

5 files changed

Lines changed: 11 additions & 8 deletions

File tree

analyzer/build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ ext {
2727
targetCompatibility = 1.6
2828
}
2929

30-
3130
task javadocJar(type: Jar, dependsOn: javadoc) {
3231
classifier = 'javadoc'
3332
from groovydoc

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ buildscript {
66
}
77
}
88
dependencies {
9-
classpath 'com.android.tools.build:gradle:0.14.2'
10-
classpath 'com.novoda:gradle-android-command-plugin:1.1.0-SNAPSHOT'
9+
classpath 'com.android.tools.build:gradle:0.14.4'
10+
classpath 'com.novoda:gradle-android-command-plugin:1.2.1'
1111
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.2'
1212
}
1313
}

demo-assethelper/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
apply plugin: 'android'
1+
apply plugin: 'com.android.application'
22
apply plugin: 'android-command'
33
apply plugin: 'sqlite-access'
44

@@ -13,10 +13,10 @@ android {
1313
}
1414

1515
dependencies {
16-
compile 'com.readystatesoftware.sqliteasset:sqliteassethelper:2.0.+'
16+
compile 'com.readystatesoftware.sqliteasset:sqliteassethelper:2.0.1'
1717
}
1818

1919
sqliteAccess {
2020
databaseFile 'src/main/assets/databases/northwind.db'
2121
packageName 'com.example.sqlite'
22-
}
22+
}

demo-sqliteprovider/build.gradle

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,15 @@ android {
1212
}
1313
}
1414

15+
repositories {
16+
jcenter()
17+
}
18+
1519
dependencies {
16-
compile fileTree(dir: 'libs', include: '*.jar')
20+
compile 'com.novoda:sqlite-provider:1.0.5'
1721
}
1822

1923
sqliteAccess {
2024
migrationsDir 'src/main/assets/migrations'
2125
packageName 'com.novoda.sqliteprovider.demo.simple'
22-
}
26+
}
-52.2 KB
Binary file not shown.

0 commit comments

Comments
 (0)