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

How do I unpack AAR dependency classes in Maven?

我使用 Maven,我需要处理来自其他依赖项的 classes。在处理classes之前,maven-dependency-plugin用于解压目标为unpack-dependencies的那些依赖,这样我就可以处理target目录下的classes了.当引用的依赖项被打包为 JAR 时,一切都很好。现在我面临着需要以特殊方式 class 处理的 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。)

看起来 MDP 插件不能直接使用它。

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

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

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>