I got the same error
[ERROR] error classpath error: unable to find org.aspectj.lang.JoinPoint (check that aspectjrt.jar is in your classpath)
There is an aspectj-maven-plugin in the <plugin> tag, which is included when it tries to run the plugin, no dependency is found, which is the aspectjrt.jar file. If you are using aspectj-maven plugin, you need to add the following dependency to your pom.xml,
<dependency> <groupId>org.aspectj</groupId> <artifactId>aspectjrt</artifactId> <version>${aspectj.version}</version> </dependency>
where aspectj.version is referred to in the tag as,
<aspectj.version>1.8.1</aspectj.version>
source share