Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I configured some plugin goals to be executed during some phases of my build lifecycle (maven android application). But i think that i take a mistake during configuring plugin and want to ensure that they really called. I found this command which will print all lifecycle phases and goals: mvn help:describe -Dcmd=install, but it doesn't show my goals which i configure. Therefore i have two quistions:

  • Does mvn help:describe -Dcmd=install command show goals which i configured inside <build>/<plugins>/<plugin>/<executions>/<execution> pom tag?

  • How to ensure that goal called during phase and phase called during build lifecycle?

UPDATE I'm trying configure maven-android-plugin and want to execute zipalign goal at package phase

        <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>
share|improve this question
can you post the code for your execution tag? – matt5784 Jun 6 '12 at 15:05
Good question ! +1 ... I'm wondering how debugging it too. – Jean-Rémy Revy Jun 6 '12 at 16:07
Have you ever checked the output during a mvn clean package or may be you redirected the output to a file and checked the contents of the file? – khmarbaise Jun 6 '12 at 17:03
1  
try mvn -X clean install -l log.txt and then analyze log.txt – ajozwik Jun 6 '12 at 20:06
matt5784, I'm post my execution tag in UPDATE section of question – Dmitriy Tarasov Jun 7 '12 at 6:08
show 1 more comment

1 Answer

You can see that in a maven goal is called in the logs. For your case with zipalign you can see for example:

[INFO] --- android-maven-plugin:3.5.0:zipalign (alignApk) @ androidclientlight ---
[INFO] Running command: C:\Eclipse\Android\android-sdk-windows_r12\tools\zipalign.exe
[INFO] with parameters: [-v, -f, 4, 

If this is skipped you will see:

[INFO] --- android-maven-plugin:3.5.0:zipalign (alignApk) @ androidclientlight ---
[INFO] Skipping zipalign

A hint, don't forget to add flag "false" in your zipalign config.

      <zipalign>
        <skip>false</skip>
        <verbose>true</verbose>
        <inputApk>${project.build.directory}/${project.artifactId}-${project.version}.apk</inputApk>
        <outputApk>${project.build.directory}/${project.artifactId}-release-v${project.version}.apk</outputApk>
      </zipalign>
share|improve this answer
+1 for <skip>false</skip> – Ralf Apr 9 at 14:31

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.