Mavenのビルド中に、次のようなエラーが発生します。
[エラー]/sandbox/mobile-apps/quickdroid/test/src/com/xxx/MyActivity.java:[14,21]java.util.LinkedHashMap.Entryにはjava.util.LinkedHashMapのプライベートアクセスがあります
1つのクラスで簡単なテストプロジェクトを作成しました。このエラーは次のコードに対応しています。
LinkedHashMap.Entry<String, Object> test;
Intellijはこのコードを問題なくコンパイルします。intellijjavacパラメーターの-target=1.5を変更すると、同じエラーが発生します。以下のpom.xmlで、ターゲット1.6を指定し、-Xパラメーターを使用してmavenがこの設定を取得していることを確認しました。ターゲット1.5をコンパイルしているようにエラーが発生するのはなぜですか?
Maven -X出力からの抜粋:1.6
。
[DEBUG](f)ソース= 1.6 [DEBUG](f)staleMillis = 0 [DEBUG](f)ターゲット= 1.6
。
[DEBUG]コマンドラインオプション:[DEBUG] -d / sandbox / mobile-apps / quickdroid / test / target / classes -classpath {...} -g -nowarn -target 1.6 -source 1.6
pom.xml
<?xml version="1.0" encoding="UTF-8"?>
http://maven.apache.org/maven-v4_0_0.xsd "> 4.0.0
<groupId>com.xxx.android</groupId>
<artifactId>test</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>apk</packaging>
<name>test</name>
<dependencies>
<dependency>
<groupId>com.google.android</groupId>
<artifactId>android</artifactId>
<version>4.1.1.4</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<sourceDirectory>src</sourceDirectory>
<plugins>
<plugin>
<groupId>com.jayway.maven.plugins.android.generation2</groupId>
<artifactId>android-maven-plugin</artifactId>
<version>3.3.2</version>
<extensions>true</extensions>
<configuration>
<sdk>
<!-- platform or api level (api level 4 = platform 1.6)-->
<platform>11</platform>
</sdk>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
</plugins>
</build>