Tôi đang cố gắng làm việc với Spring Data và Neo4j . Tôi bắt đầu bằng cách cố gắng làm theo hướng dẫn này được liên kết bởi trang web chính. Cụ thể, tôi đã dựa vào pom.xml của mình từ "Xin chào, Thế giới!" tập tin ví dụ . Đây là một đoạn trích từ pom.xml của tôi cho plugin gây ra sự cố ...
<plugin>
<!-- Required to resolve aspectj-enhanced class features -->
<groupId>org.codehaus.mojo</groupId>
<artifactId>aspectj-maven-plugin</artifactId>
<version>1.0</version>
<configuration>
<outxml>true</outxml>
<aspectLibraries>
<aspectLibrary>
<groupId>org.springframework</groupId>
<artifactId>spring-aspects</artifactId>
</aspectLibrary>
<aspectLibrary>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-neo4j</artifactId>
</aspectLibrary>
</aspectLibraries>
<source>1.6</source>
<target>1.6</target>
</configuration>
<executions>
<!-- ERROR HERE IN ECLIPSE SEE BELOW FOR FULL MESSAGE -->
<execution>
<goals>
<goal>compile</goal>
<goal>test-compile</goal>
</goals>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjrt</artifactId>
<version>${aspectj.version}</version>
</dependency>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjtools</artifactId>
<version>${aspectj.version}</version>
</dependency>
</dependencies>
</plugin>
Lỗi tôi đang thấy là:
Multiple annotations found at this line:
- Plugin execution not covered by lifecycle configuration: org.codehaus.mojo:aspectj-maven-plugin:1.0:compile (execution: default, phase: process-classes)
- Plugin execution not covered by lifecycle configuration: org.codehaus.mojo:aspectj-maven-plugin:1.0:test-compile (execution: default, phase: process-classes)
Tôi đang chạy Eclipse 3.6.2 và m2e 0.13. Tôi không phải là chuyên gia về Maven, vì vậy xin hãy giải thích trong câu trả lời của bạn nếu có thể.
Tôi cũng đã thử m2e 1.0.0 qua trang web cập nhật này và vẫn gặp lỗi tương tự.