0

我想使用带有 Maven 的 AWS 无服务器应用程序模型部署 AWS lambda 函数。在 lambdas 部署 zip 文件中,我想包含两个需要具有可执行权限的外部文件(file1 和 file2)。(chmod 755 / -rwxr-xr-x)。这些文件都是 64 位 ELF

我本地计算机上的文件具有这些权限,但是当构建并部署到 AWS 时,我可以将函数从在线 AWS lambda 控制台导出并下载到 ZIP 并查看部署的文件现在具有权限 -rw-r--r -- (chmod 644)。

我之前在 Gradle 中解决了这个问题,方法很简单,比如filesMatching('file1') { mode = 0755 }

我在用:

  • java11
  • maven-shade-plugin 3.2.2

我如何在 Maven 中实现这一点?这是我的 pom.xml 的构建部分

    <build>
        <resources>
            <resource>
                <directory>files</directory>
                <includes>
                    <include>file1</include>
                    <include>file2</include>
                </includes>
            </resource>
        </resources>

        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-shade-plugin</artifactId>
                <version>3.2.2</version>
                <configuration>
                </configuration>
                <executions>
                    <execution>
                        <phase>package</phase>
                        <goals>
                            <goal>shade</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
4

1 回答 1

0

对于遇到此问题的其他人,我最终按照 khmarbaise 的建议使用了 maven-assembly-plugin。我的解决方案最终看起来像这样:

这是我的 pom.xml 的构建部分

    <build>
    <plugins>
        <plugin>
            <artifactId>maven-assembly-plugin</artifactId>
            <version>3.2.0</version>
            <executions>
                <execution>
                    <id>make-assembly</id>
                    <phase>package</phase>
                    <goals>
                        <goal>single</goal>
                    </goals>
                    <configuration>
                        <descriptors>
                            <descriptor>distribution.xml</descriptor>
                        </descriptors>
                    </configuration>
                </execution>
            </executions>
        </plugin>
    </plugins>
</build>

然后我将文件“distribution.xml”添加到与 POM.xml 相同的目录中。看起来像这样。

<assembly
    xmlns="http://maven.apache.org/ASSEMBLY/2.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.0.0 http://maven.apache.org/xsd/assembly-2.0.0.xsd">
<id>aws-lambda-package</id>
<formats>
    <format>zip</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>
<fileSets>
    <fileSet>
        <directory>files</directory>
        <outputDirectory>./</outputDirectory>
        <includes>
            <include>file1</include>
            <include>file2</include>
        </includes>
        <fileMode>0755</fileMode>
    </fileSet>
</fileSets>

<dependencySets>
    <dependencySet>
        <outputDirectory>lib</outputDirectory>
    </dependencySet>
</dependencySets>

作为这样做的副作用,我不能再使用函数的名称作为 template.yaml 中 codeURI 的值。所以我需要将其更改maven clean install为运行时创建的 zip 文件的位置。在大多数人的情况下将位于:<functionName>/target/<fileName>.zip.

于 2020-04-01T10:00:31.433 回答