如何在Maven中解压缩AAR依赖类?

时间:2015-11-26 13:53:26

标签: maven aar maven-dependency-plugin

我使用Maven,我需要处理来自其他依赖项的类。在处理类之前,maven-dependency-plugin用于解析具有unpack-dependencies目标的依赖项,因此我可以处理target目录中的类。一切都很好,而引用的依赖项打包为JAR。现在,我面临着一个AAR依赖,需要以特殊方式进行类处理。到目前为止我得到的错误是:

Failed to execute goal org.apache.maven.plugins:maven-dependency-plugin:2.10:unpack-dependencies (aars-only) on project app-android: Unknown archiver type: No such archiver: 'aar'. -> [Help 1]

aars-only执行标识符来自下面的配置,但一般来说,如果不拆分执行,它会产生相同的错误。这是我的maven-dependency-plugin配置,我稍后将其拆分为两个执行:

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-dependency-plugin</artifactId>
    <executions>
        <execution>
            <id>jars-only</id>
            <phase>process-classes</phase>
            <goals>
                <goal>unpack-dependencies</goal>
            </goals>
            <configuration>
                <includeScope>runtime</includeScope>
                <includeGroupIds>foo-group,bar-group</includeGroupIds>
                <includeTypes>jar</includeTypes> <!-- this is necessary to skip AAR dependencies -->
                <outputDirectory>${project.build.directory}/classes</outputDirectory>
            </configuration>
        </execution>
        <execution>
            <id>aars-only</id>
            <phase>process-classes</phase>
            <goals>
                <goal>unpack-dependencies</goal>
            </goals>
            <configuration>
                <includeScope>runtime</includeScope>
                <includeGroupIds>baz-group</includeGroupIds>
                <includeTypes>aar</includeTypes> <!-- hoping this can process AARs as well, but it's just another execution, nothing special -->
                <outputDirectory>${project.build.directory}/classes</outputDirectory>
            </configuration>
        </execution>
    </executions>
</plugin>

注释掉aars-only执行导致运行时应用程序崩溃,但构建通过,因为jars-only执行仅包含jar类型 - 不完全是我需要的。

如何将AAR依赖项(baz-group)解压缩到target/classes目录?是否可以以某种方式配置maven-dependency-plugin以便它可以接受AAR及其打包classes.jar?或者有没有其他方法可以使它工作可能只是使用另一个插件?

(也许它是一个有用的提示:我也使用com.simpligility.maven.plugins:android-maven-plugin。)

1 个答案:

答案 0 :(得分:1)

看起来好像MDP插件无法直接使用它。

正如本线程中指出的那样 - How to convert AAR to JAR,AAR本质上是一个包含其他存档信息的zip。

我可以在这里看到两种可能的方法。

1) - 使用ANT解压缩AAR,找到包含在其中的jar文件,然后用ANT解压缩。

2) - 使用ANT像以前一样解压缩AAR,然后将其复制到中间文件夹,并使用maven-dependency-plugin解压缩jar。

https://maven.apache.org/guides/mini/guide-using-ant.html

我无法对此进行测试,但此POM代码段可能会用作起点。

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.6</version>
<executions>
    <execution>
        <id>prepare</id>
        <phase>build</phase>
        <configuration>
            <tasks>
                <unzip src="source/my_archive.aar" dest="output/" />
                <copy file="output/classes.jar" tofile="my_archive.jar"/>

                <!-- 
                     Either extract the jar here, 
                     or place it where the maven dependencies plugin 
                     can find it, and extract it in a later build phase 
                -->
            </tasks>
        </configuration>
        <goals>
            <goal>run</goal>
        </goals>
    </execution>
</executions>