Ich versuche zu arbeiten mit Spring Data und Neo4j . Ich begann mit dem Versuch, die dieser Leitfaden auf der Hauptseite verlinkt. Insbesondere habe ich meine pom.xml auf der Grundlage der "Beispieldatei "Hallo, Welt! . Hier ist ein Auszug aus meiner pom.xml für das Plugin, das die Probleme verursacht...
<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>
Der Fehler, den ich sehe, ist:
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)
Ich verwende Eclipse 3.6.2 und m2e 0.13. Ich bin kein Maven-Experte, daher bitte ich Sie, Ihre Antworten möglichst ausführlich zu formulieren.
Ich habe auch versucht m2e 1.0.0 über diese Aktualisierungsseite und erhalten immer noch den gleichen Fehler.