<dependency>
<groupId>aspectj</groupId>
<artifactId>aspectjrt</artifactId>
</dependency>
에 위와 같이 되어 있어도 도무지 aspectjrt.jar 를 가져오지 못하는 상황이 발생...뭘까의 삽질.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-eclipse-plugin</artifactId>
<configuration>
....
<ajdtVersion>none</ajdtVersion>
....
</configuration>
</plugin>
해줘야 된다는 아놔.
<groupId>aspectj</groupId>
<artifactId>aspectjrt</artifactId>
</dependency>
에 위와 같이 되어 있어도 도무지 aspectjrt.jar 를 가져오지 못하는 상황이 발생...뭘까의 삽질.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-eclipse-plugin</artifactId>
<configuration>
....
<ajdtVersion>none</ajdtVersion>
....
</configuration>
</plugin>
해줘야 된다는 아놔.