Removed dagger plugin.

Updated dagger to 2.1-SNAPSHOT.
This commit is contained in:
Adrian Tiberius 2015-06-03 17:14:12 +02:00
parent 01ad7b12e8
commit 99fed23489
2 changed files with 5 additions and 5 deletions

View File

@ -47,7 +47,7 @@ dependencies {
}
compile "com.google.dagger:dagger:2.1-SNAPSHOT"
//compile "com.google.dagger:dagger:2.1-SNAPSHOT"
compile "com.j256.ormlite:ormlite-android:4.48"
compile "org.glassfish:javax.annotation:10.0-b28"
compile "org.iq80.leveldb:leveldb:0.7"

View File

@ -10,13 +10,13 @@ buildscript {
dependencies {
classpath 'me.champeau.gradle:antlr4-gradle-plugin:0.1'
classpath 'org.jfrog.buildinfo:build-info-extractor-gradle:3.0.1'
classpath "gradle.plugin.com.ewerk.gradle.plugins:dagger-plugin:1.0.0"
//classpath "gradle.plugin.com.ewerk.gradle.plugins:dagger-plugin:1.0.0"
}
}
plugins {
id 'java'
id "com.ewerk.gradle.plugins.dagger" version "1.0.0"
// id "com.ewerk.gradle.plugins.dagger" version "1.0.0"
id 'application'
id 'jacoco'
id 'com.github.johnrengelman.shadow' version '1.2.1'
@ -91,7 +91,7 @@ sourceSets {
}
dependencies {
compile 'com.google.dagger:dagger:2.0'
compile 'com.google.dagger:dagger:2.1-SNAPSHOT'
compile 'com.google.dagger:dagger-compiler:2.0'
compile fileTree(include: ['*.jar'], dir: 'libs')
@ -132,6 +132,6 @@ dependencies {
}
testCompile "junit:junit:${junitVersion}"
testCompile 'com.google.dagger:dagger:2.0'
testCompile 'com.google.dagger:dagger:2.1-SNAPSHOT'
testCompile 'com.google.dagger:dagger-compiler:2.0'
}