AspectJ + Gradle configuration

后端 未结 6 476
执念已碎
执念已碎 2021-02-04 11:31

I\'d like to use AspectJ in Gradle project (it\'s not an Android project - just a simple Java app).

Here is how my build.gradle looks like:

apply plugin         


        
6条回答
  •  温柔的废话
    2021-02-04 12:29

    This plugin worked for me (gradle 5.6):

    plugins {
        id 'java'
        id "io.freefair.aspectj.post-compile-weaving" version "4.1.4"
    }
    

提交回复
热议问题