I have a multi project gradle build, configured in this way:
root | |---- projectA | |---- projectB
I want to declare in the ro
ro
compile method is part of the plugin you've been using (reference).
compile
allprojects { apply plugin: 'java' //so that we can use 'compile', 'testCompile' for dependencies dependencies { compile 'org.projectlombok:lombok:1.12.2' } }