使用 AspectJ 编译器而不是 Javac 进行编译时出错
我有一个多模块项目。该方面目前已添加到“核心”项目中。当在这里做一个它的工作原理。但是,尝试执行父项目时,在编译其他项目之一时,它会失败并出现以下错误:mvn clean install
mvn clean install
无法解析 org.hibernate.annotations.CacheConcurrencyStrategy 类型。它从所需的.class文件中间接引用
如果我在该项目中添加Hibernate核心依赖项,它也可以工作,但是将依赖项添加到不应该具有依赖项的项目是没有意义的 - 因此它不是解决方案。编译时,它工作正常。javac
原因何在?我该如何修复它,以便我可以使用AspectJ编译器而不会将依赖项泄漏给不应该具有该依赖项的项目?
我在父POM中有这个配置:
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>aspectj-maven-plugin</artifactId>
<version>1.5</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<complianceLevel>1.6</complianceLevel>
</configuration>
<executions>
<execution>
<goals>
<goal>compile</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
更新
我刚刚发现。每次运行都失败。但是,运行一次失败。然后运行没有工作。我看到目标文件夹中是它工作的原因,并且根据您是否运行干净而失败。所以现在我的问题是:你如何自动生成这个文件?mvn clean install
mvn [clean] install
mvn install
clean
builddef.lst
父 POM 文件:
<?xml version="1.0" encoding="UTF-8"?>
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.mycompany</groupId>
<artifactId>core-lib</artifactId>
<name>core-lib</name>
<packaging>pom</packaging>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>aspectj-maven-plugin</artifactId>
<version>1.5</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<complianceLevel>1.6</complianceLevel>
</configuration>
<executions>
<execution>
<goals>
<goal>compile</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjrt</artifactId>
<version>1.7.4</version>
</dependency>
</dependencies>
<modules>
<module>core-xyz</module>
<module>core-xyz2</module>
</modules>
</project>