web-dev-qa-db-ja.com

AspectJをpom.xmlに追加すると、MavenでJavaバージョンが変更されました。なぜですか?

PDATE:これが私のmaven-compiler-plugin構成です:

<plugin>
        <groupId>org.Apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>2.3.2</version>
        <configuration>
            <source>1.6</source>
            <target>1.6</target>
        </configuration>

私はMavenで構築したマルチプロジェクトアプリケーションに取り組んでいます。 AspectJを追加することにしたので、トップレベルプロジェクトのpom.xmlに次のコードを追加しました:(公式ドキュメントから)

<project>
  ...
  <dependencies>
    ...
    <dependency>
      <groupId>org.aspectj</groupId>
      <artifactId>aspectjrt</artifactId>
      <version>1.7.3</version>
    </dependency>
    ...
  </dependencies>
  ...
  <build>
    <plugins>
      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>aspectj-maven-plugin</artifactId>
        <version>1.5</version>
        <executions>
          <execution>
            <goals>
              <goal>compile</goal>    <!-- use this goal to weave all your main classes -->
              <goal>test-compile</goal> <!-- use this goal to weave all your test classes -->
            </goals>
          </execution>
        </executions>
      </plugin>
      ...
    </plugins>
  <build>
  ...
</project>

および各従属プロジェクトへの次のフラグメント:

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

        <dependencies>
          ...
         <dependency>
        <groupId>org.aspectj</groupId>
        <artifactId>aspectjrt</artifactId>
         </dependency>
         ....
      </dependencies>
     ...  
 </project>

どういうわけか、この変更は私が使用するJavaバージョンをオーバーライドしました。ビルドを実行すると、次のような複数のエラーが発生します。

構文エラー、注釈はソースレベルが1.5以上の場合にのみ使用可能です

それは私のJavaバージョン(元々は1.6)がどういうわけか1.4に戻ったという疑いを私に与えます。私はJava =バージョンなので、上記のAspectJ関連のコードが変更の原因であると思われます。

私の質問は、AspectJがJavaバージョンを変更するにはどうすればよいですか、そしてこの問題を修正するにはどうすればよいですか?それとも、何かを完全に誤解して、間違った方向に進んでいますか?

16
Sanyifejű

問題はデフォルトの sourcetarget および complianceLevelaspectj-maven-の設定にあると思いますプラグイン(以前にリンクされたドキュメントによると、それぞれ1.4、1.2、1.4)。親pomでこれらを明示的に設定する必要があります。

<build>
    <plugins>
        <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>aspectj-maven-plugin</artifactId>
            <version>1.5</version>
            <!-- new configuration is here -->
            <configuration>
                <complianceLevel>1.6</complianceLevel>
                <source>1.6</source>
                <target>1.6</target>
            </configuration>
            <executions>
                <execution>
                    <goals>
                        <goal>compile</goal>
                        <goal>test-compile</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>
        ...
    </plugins>
<build>
45
DB5

私は行方不明でした

<complianceLevel>${Java.level}</complianceLevel>

私のpom.xmlで

1
Oscar H

バージョンを定義していない場合、コンパイラプラグインは、JavaソースがJava 1.3に準拠し、Java 1.1JVMをターゲットにしていると想定します。

たぶん、あなたはそれを定義する必要があります:

http://maven.Apache.org/plugins/maven-compiler-plugin/examples/set-compiler-source-and-target.html

0
Cristina Galán

依存関係の過去のバージョンと aspectjのプラグイン を見つけることができます。

0
egemen

Pomプロパティの上部にjdkバージョンがあるJavaバージョンがありませんでした。

<plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>aspectj-maven-plugin</artifactId>
    <version>1.2</version> <!-- 1.5 dint work for me -->
    <dependencies>
        <!-- You must use Maven 2.0.9 or above or these are ignored (see MNG-2972) -->
        <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>
    <executions>
        <execution>
            <phase>process-sources</phase> <!-- or any phase before compile -->
            <goals>
                <goal>compile</goal>
                <goal>test-compile</goal>
            </goals>
        </execution>
    </executions>
    <configuration>
        <outxml>true</outxml>
        <source>${jdk.version}</source>  <!-- I was missing this -->
        <target>${jdk.version}</target>  <!-- jdk.version property -->
    </configuration>
</plugin>

そして、pom.xmlの上部で、次のようなjdk.versionプロパティを設定しました。

<properties>
    <jdk.version>1.7</jdk.version>
</properties>
0
Lucky