用注解实现回调

This commit is contained in:
AriaLyy
2017-06-06 18:16:44 +08:00
parent 0d59c7b421
commit 3b7a9eccb8
14 changed files with 281 additions and 3 deletions

18
AriaCompiler/build.gradle Normal file
View File

@ -0,0 +1,18 @@
apply plugin: 'java'
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.google.auto:auto-common:0.6'
compile 'com.google.auto.service:auto-service:1.0-rc2'
compile 'com.squareup:javapoet:1.7.0'
compile project(':AriaAnnotations')
sourceCompatibility = "1.7"
targetCompatibility = "1.7"
}