Specifying order of annotation processors
问题 I'm trying to run Dagger 2 as well as Lombok on my Java project. Lombok has to run first, of course, but whether it actually does seems to be up to chance. At first I suspected I could specify the order by the respective position of the library jars in the class path, but that order evidently gets ignored. Is there a way to specify the order for them to run somehow, or do I simply have to live with not being able to combine two APs ? I have produced an SSCCE test case. A simple git clone &