SHIRO-516: Avoid build warning due to version differences between aspectj and the maven plugin
See also: MASPECTJ-106 Project: http://git-wip-us.apache.org/repos/asf/shiro/repo Commit: http://git-wip-us.apache.org/repos/asf/shiro/commit/fddbf986 Tree: http://git-wip-us.apache.org/repos/asf/shiro/tree/fddbf986 Diff: http://git-wip-us.apache.org/repos/asf/shiro/diff/fddbf986 Branch: refs/heads/1.2.x Commit: fddbf986c2c5d6f124f95d9964dab7463f20b87d Parents: 56a5a0f Author: Andreas Kohn <[email protected]> Authored: Thu Jul 30 11:36:06 2015 +0200 Committer: bdemers <[email protected]> Committed: Wed Apr 13 11:06:33 2016 -0400 ---------------------------------------------------------------------- samples/aspectj/pom.xml | 7 +++++++ support/aspectj/pom.xml | 7 +++++++ 2 files changed, 14 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/shiro/blob/fddbf986/samples/aspectj/pom.xml ---------------------------------------------------------------------- diff --git a/samples/aspectj/pom.xml b/samples/aspectj/pom.xml index d03739e..ecc3ae5 100644 --- a/samples/aspectj/pom.xml +++ b/samples/aspectj/pom.xml @@ -57,6 +57,13 @@ </goals> </execution> </executions> + <dependencies> + <dependency> + <groupId>org.aspectj</groupId> + <artifactId>aspectjtools</artifactId> + <version>${aspectj.version}</version> + </dependency> + </dependencies> </plugin> </plugins> </build> http://git-wip-us.apache.org/repos/asf/shiro/blob/fddbf986/support/aspectj/pom.xml ---------------------------------------------------------------------- diff --git a/support/aspectj/pom.xml b/support/aspectj/pom.xml index f30d141..2885ccf 100644 --- a/support/aspectj/pom.xml +++ b/support/aspectj/pom.xml @@ -79,6 +79,13 @@ </goals> </execution> </executions> + <dependencies> + <dependency> + <groupId>org.aspectj</groupId> + <artifactId>aspectjtools</artifactId> + <version>${aspectj.version}</version> + </dependency> + </dependencies> </plugin> <plugin> <groupId>org.apache.felix</groupId>
