web-dev-qa-db-ja.com

AspectJ Mavenプラグインでプロジェクトをコンパイルできません

Aspectjコンパイラでプロジェクトをコンパイルするためにaspectj mavenプラグインを使用してから、クラスを「war」ファイルにパッケージ化しようとしています。残念ながら、次の構成(pom.xml)では機能しません。

<build>
    <plugins>
        <plugin>
            <groupId>org.Apache.maven.plugins</groupId>
            <artifactId>maven-surefire-plugin</artifactId>
            <version>2.17</version>
            <configuration>
                <skipTests>true</skipTests>
            </configuration>
        </plugin>
        <plugin>
            <groupId>com.liferay.maven.plugins</groupId>
            <artifactId>liferay-maven-plugin</artifactId>
            <version>${liferay.maven.plugin.version}</version>
            <executions>
                <execution>
                    <phase>generate-sources</phase>
                </execution>
            </executions>
            <configuration>
                <autoDeployDir>${liferay.auto.deploy.dir}</autoDeployDir>
                <appServerDeployDir>${liferay.app.server.deploy.dir}</appServerDeployDir>
                <appServerLibGlobalDir>${liferay.app.server.lib.global.dir}</appServerLibGlobalDir>
                <appServerPortalDir>${liferay.app.server.portal.dir}</appServerPortalDir>
                <liferayVersion>${liferay.version}</liferayVersion>
                <pluginType>portlet</pluginType>

            </configuration>
        </plugin>
        <plugin>
            <artifactId>maven-compiler-plugin</artifactId>
            <version>2.5</version>
            <configuration>
                <encoding>UTF-8</encoding>
                <source>1.7</source>
                <target>1.7</target>
                <showWarnings>true</showWarnings>
                <failOnError>true</failOnError>
            </configuration>
        </plugin>
        <plugin>
            <artifactId>maven-resources-plugin</artifactId>
            <version>2.5</version>
            <configuration>
                <encoding>UTF-8</encoding>
            </configuration>
        </plugin>
        <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>aspectj-maven-plugin</artifactId>
            <version>1.7</version>
            <configuration>
                <source>1.7</source>
                <target>1.7</target>
                <compilationLevel>1.7</compilationLevel>
                <encoding>UTF-8</encoding>
            </configuration>
            <executions>
                <execution>
                    <phase>process-sources</phase>
                    <goals>
                        <goal>compile</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>
    </plugins>
</build>

<dependency>
    <groupId>org.aspectj</groupId>
    <artifactId>aspectjrt</artifactId>
    <version>1.7.4</version>
    <type>jar</type>
</dependency>

mvn clean installの後、次の例外が表示されます。

[INFO] --- aspectj-maven-plugin:1.7:compile (default) @ tvbs-portlet ---
[INFO] Showing AJC message detail for messages of types: [error, warning, fail]
[ERROR] Missing message: configure.incompatibleComplianceForSource in: org.aspectj.ajdt.ajc.messages
    <unknown source file>:<no line information>

[ERROR] no sources specified
    <unknown source file>:<no line information>

[ERROR] AspectJ Compiler 1.8.2

    Usage: <options> <source file | @argfile>..

AspectJ-specific options:
    -inpath <list>      use classes in dirs and jars/zips in <list> as source

誰かが私にいくつかの解決策を提案できますか?

17
dmitrievanthony

更新:この回答でAspectJ Maven設定について言ったことはすべて正しいが、手元の具体的な問題の根本的な原因-悪いMaven依存関係管理-私の その他の回答 で説明されています。それが受け入れられた答えであり、これではない方が良いでしょう。


  • ユーザーcodelionのヒントは理にかなっています。<compilationLevel>タグ(typo?)を<complianceLevel>に変更してください。
  • プラグインバージョン1.6にダウングレードする必要はありません。1.7を保持できます。
  • <execution>セクション内で構成を再度指定する必要もありません。プラグインレベルで十分です。
  • プラグイン1.7のデフォルトのAspectJバージョンは1.8.2であるため、1.7.4のランタイム依存関係が機能する可能性がありますが、もし私なら、プラグインバージョンと同期して最適にアップグレードすることに注意してください。難しい要件ではありませんが、理にかなっていると思います。
  • プラグインとランタイムで、現在のバージョンのAspectJ 1.8.4にアップグレードすることもできます。これは、プラグイン構成に目的のaspectjtoolsバージョンへの依存関係を追加することでも実現できます。
    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <Java.source-target.version>1.8</Java.source-target.version>
        <aspectj.version>1.8.4</aspectj.version>
    </properties>

    <build>
        <pluginManagement>
             <plugins>
                <plugin>
                    <groupId>org.codehaus.mojo</groupId>
                    <artifactId>aspectj-maven-plugin</artifactId>
                    <version>1.7</version>
                    <configuration>
                        <showWeaveInfo>true</showWeaveInfo>
                        <source>${Java.source-target.version}</source>
                        <target>${Java.source-target.version}</target>
                        <Xlint>ignore</Xlint>
                        <complianceLevel>${Java.source-target.version}</complianceLevel>
                        <encoding>UTF-8</encoding>
                        <verbose>true</verbose>
                    </configuration>
                    <executions>
                        <execution>
                            <!-- IMPORTANT -->
                            <phase>process-sources</phase>
                            <goals>
                                <goal>compile</goal>
                                <goal>test-compile</goal>
                            </goals>
                        </execution>
                    </executions>
                    <dependencies>
                        <dependency>
                            <groupId>org.aspectj</groupId>
                            <artifactId>aspectjtools</artifactId>
                            <version>${aspectj.version}</version>
                        </dependency>
                    </dependencies>
                </plugin>
            </plugins>
        </pluginManagement>

        <plugins>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>aspectj-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>

    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>org.aspectj</groupId>
                <artifactId>aspectjrt</artifactId>
                <version>${aspectj.version}</version>
                <scope>runtime</scope>
            </dependency>
        </dependencies>
    </dependencyManagement>

    <dependencies>
        <dependency>
            <groupId>org.aspectj</groupId>
            <artifactId>aspectjrt</artifactId>
        </dependency>
    </dependencies>
7
kriegaex

既知の問題のようです http://jira.codehaus.org/browse/MASPECTJ-125

以下をpomファイルに追加することで修正できます。

<complianceLevel>1.6</complianceLevel>
13
codelion

あなたのMavenプロジェクトを見て https://github.com/dmitrievanthony/test-aspectj

  • 問題はAspectJ Mavenプラグインとはまったく関係ありません。
  • mavenコンパイラプラグインでも同じコンパイルエラーが発生し、
  • あなたの問題の根本原因は、単に依存関係の管理が悪いことです。

IntelliJ IDEAの「クラスを見つける」のスクリーンショット(フルサイズ here )を次に示します。

Class LockModeType is found 3x in the project

ご覧のとおり、クラスLockModeTypeは3(3!)の依存関係にあり、そのうちの1つには予想される列挙値を含まないバージョンのクラスが含まれています。この依存関係を削除すると、コードがコンパイルされます。

    <dependency>
        <groupId>org.hibernate</groupId>
        <artifactId>ejb3-persistence</artifactId>
        <version>1.0.2.GA</version>
    </dependency>

たぶん、依存関係をクリーンアップする必要があります。 Maven Dependency Pluginは、dependency:analyzeおよびdependency:tree その目的のために。

5
kriegaex

プラグインの設定を次のように変更すると動作します。

<plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>aspectj-maven-plugin</artifactId>
    <version>1.6</version>
    <configuration>
        <complianceLevel>1.7</complianceLevel>
        <source>1.7</source>
        <target>1.7</target>
        <encoding>UTF-8</encoding>
    </configuration>
    <executions>
        <execution>
            <phase>process-sources</phase>
            <goals>
                <goal>compile</goal>
            </goals>
            <configuration>
                <complianceLevel>1.7</complianceLevel>
                <source>1.7</source>
                <target>1.7</target>
            </configuration>
        </execution>
    </executions>
</plugin>

しかし、この後、さまざまなコンパイルエラーが発生します。

[ERROR] Failed to execute goal org.codehaus.mojo:aspectj-maven-plugin:1.6:compile (default) on project tvbs-portlet: Compiler errors:
[ERROR] error at Entitle.class, entitleId, LockModeType.PESSIMISTIC_WRITE);
[ERROR]
[ERROR] /Users/<...>/ejb/BillingEJB.Java:43:0::0 PESSIMISTIC_WRITE cannot be resolved or is not a field
[ERROR] error at .createQuery("select e from Entitle e " +
[ERROR]
[ERROR] /Users/<...>/ejb/EntitleEJB.Java:62:0::0 The method createQuery(String) in the type EntityManager is not applicable for the arguments (String, Class<Entitle>)
[ERROR] error at return entityManager.createQuery(
[ERROR] ^^

不正なaspectjプラグインパラメータが発生する可能性はありますか?

1
dmitrievanthony

モジュールに* .Javaなどのソースコードが含まれていることを確認してください。バージョン4.0.6でCASをコンパイルすると、このエラーが発生し、cas-server-uber-webappのsrcフォルダーにソースコードがないことがわかりました。親pom.xmlからモジュールを削除するだけです。

0
user3125139