In my maven build, I'd like to execute the proguard
goal after the tests, in order to get test result faster. Therefore, I tried to bind it to prepare-package
phase. However, my config bellow does not have any effect. The proguard goal is still executed in process-classes
phase (default-proguard). What am I missing?
<plugin>
<groupId>com.simpligility.maven.plugins</groupId>
<artifactId>android-maven-plugin</artifactId>
<version>4.1.0</version>
<executions>
<execution>
<id>progurad-after-test</id>
<phase>prepare-package</phase>
<goals>
<goal>proguard</goal>
</goals>
</execution>
</executions>
<configuration>
<!-- ... -->
<proguard>
<skip>false</skip>
</proguard>
</configuration>
</plugin>