plugins { id 'java-library' } repositories { google() mavenCentral() } java { sourceCompatibility = JavaVersion.VERSION_11 targetCompatibility = JavaVersion.VERSION_11 } dependencies { implementation project(':libs:annotation') annotationProcessor 'com.google.auto.service:auto-service:1.0-rc5' compileOnly 'com.google.auto.service:auto-service:1.0-rc5' }