Fix Dagger setup, remove android-apt plugin.

This commit is contained in:
akwizgran
2017-11-15 14:13:57 +00:00
parent 2a43e0b0ed
commit 98e2adf794
9 changed files with 30 additions and 25 deletions

View File

@@ -2,6 +2,8 @@ apply plugin: 'java'
sourceCompatibility = 1.7
targetCompatibility = 1.7
apply plugin: 'net.ltgt.apt'
apply plugin: 'idea'
apply plugin: 'witness'
dependencies {
@@ -10,6 +12,8 @@ dependencies {
compile 'net.java.dev.jna:jna:4.4.0'
compile 'net.java.dev.jna:jna-platform:4.4.0'
apt 'com.google.dagger:dagger-compiler:2.0.2'
testCompile project(path: ':bramble-core', configuration: 'testOutput')
}