带有 Maven 插件的 Eclipse 不适用于最新版本,但适用于旧版本

Eclipse with Maven plugin does not work with latest revisions, but works with older ones

我有一个使用 Spring AOP 的简单项目。它使用来自 AspectJ 的注释。该项目在 Maven 中,并且可以使用 aspectjtools-1.7.4 编译。对于 aspectjtools-1.8.9,它无法看到从 org.aspectj.lang.annotation.Aspect 导入的接受注释 @Aspect。同一个项目使用 Gradle 和相同的 JAR 没有问题。

为什么我的代码不能与最新版本的 AspectJ 一起工作,但与旧版本一起工作?

我附上pom.xml:



    <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
      <modelVersion>4.0.0</modelVersion>

      <groupId>com</groupId>
      <artifactId>aspectjproblem</artifactId>
      <version>0.0.1-SNAPSHOT</version>
      <packaging>jar</packaging>

      <name>aspectjproblem</name>
      <url>http://maven.apache.org</url>

      <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
      </properties>

      <dependencies>
        <dependency>
          <groupId>junit</groupId>
          <artifactId>junit</artifactId>
          <version>3.8.1</version>
          <scope>test</scope>
        </dependency>
        <dependency>
          <groupId>org.springframework</groupId>
          <artifactId>spring-context</artifactId>
          <version>4.3.3.RELEASE</version>
        </dependency>
        <dependency>
          <groupId>junit</groupId>
          <artifactId>junit</artifactId>
          <version>4.11</version>
          <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.aspectj</groupId>
            <artifactId>aspectjtools</artifactId>

            <b><!-- WITH 1.8.9: FAILS to see org.aspectj.lang.annotation.Aspect  -->
            <!-- <version>1.8.9</version> -->

            <!-- WITH 1.7.4: SEES OK: org.aspectj.lang.annotation.Aspect  --> 
            <version>1.7.4</version></b>
        </dependency>        
        </dependencies>
      </project>

我想这一定与合规性级别或类似的事情有关。谁能指出我正确的方向?非常感谢。

我花了一段时间才明白问题出在哪里。我尝试移动到 Java8 并使用依赖项。我遇到的问题是:

- 无效的 LOC header(签名错误)

我猜 Maven 下载了一个损坏的文件是什么意思。我从 repo 中删除了它(例如 C:\Users\$USER.m2\repository\org\aspectj\aspectjtools ),更新了 maven 并重新开始工作。