I have a maven project that uses the aspectj-compiler-plugin. I use intertype declarations so there are references to Aspect code in my Java code. Because of this, the mav
Either configure the skipMain parameter:
skipMain
org.apache.maven.plugins maven-compiler-plugin true
Or pass the maven.main.skip property:
maven.main.skip
mvn install -Dmaven.main.skip=true