ビルド ライフサイクルのいくつかの段階で実行されるように、いくつかのプラグイン ゴールを構成しました (maven android アプリケーション)。しかし、プラグインの構成中に間違いを犯したと思います。本当に呼び出されたことを確認したいと思います。すべてのライフサイクル フェーズと目標を出力するこのコマンドを見つけました:mvn help:describe -Dcmd=install
が、設定した目標が表示されません。したがって、私には2つの質問があります:
コマンドは、 pom タグ
mvn help:describe -Dcmd=install
内で構成した目標を表示しますか?<build>/<plugins>/<plugin>/<executions>/<execution>
フェーズ中に呼び出されたゴールとビルドライフサイクル中に呼び出されたフェーズを確実にする方法は?
更新 maven-android-plugin を構成しようとしていて、パッケージ段階で zipalign ゴールを実行したい
<plugin>
<groupId>com.jayway.maven.plugins.android.generation2</groupId>
<artifactId>android-maven-plugin</artifactId>
<version>3.2.0</version>
<extensions>true</extensions>
<configuration>
<sdk>
<platform>8</platform>
</sdk>
<emulator>
<avd>2.3.3_API-10</avd>
</emulator>
<undeployBeforeDeploy>true</undeployBeforeDeploy>
<assetsDirectory>${project.build.directory}/filtered-assets</assetsDirectory>
<androidManifestFile>${project.build.directory}/filtered-manifest/AndroidManifest.xml</androidManifestFile>
<zipalign>
<skip>false</skip>
<verbose>${build.verbosity}</verbose>
<inputApk>${project.build.directory}/${project.artifactId}-${build.version.name}.apk</inputApk>
<outputApk>${project.build.directory}/${project.artifactId}-${build.version.name}-aligned.apk</outputApk>
</zipalign>
</configuration>
<executions>
<execution>
<id>zipalign</id>
<phase>package</phase>
<goals>
<goal>zipalign</goal>
</goals>
</execution>
</executions>
</plugin>