ฉันพยายามที่จะทำงานร่วมกับข้อมูลฤดูใบไม้ผลิและ Neo4j ฉันเริ่มโดยพยายามทำตามคำแนะนำที่เชื่อมโยงกับเว็บไซต์หลัก โดยเฉพาะอย่างยิ่งฉันใช้ pom.xml จาก"Hello, World!" ไฟล์ตัวอย่าง นี่คือ snip จาก pom.xml ของฉันสำหรับปลั๊กอินที่ทำให้เกิดปัญหา ...
<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>
ข้อผิดพลาดที่ฉันเห็นคือ:
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)
ฉันกำลังใช้ Eclipse 3.6.2 และ m2e 0.13 ฉันไม่ใช่ผู้เชี่ยวชาญ Maven ดังนั้นโปรดอธิบายให้มากในคำตอบของคุณถ้าเป็นไปได้
ฉันได้ลองm2e 1.0.0ผ่านทางเว็บไซต์อัพเดทนี้แล้วและยังได้รับข้อผิดพลาดเดียวกัน