使用 build-helper-maven-plugin

Using build-helper-maven-plugin

下面是pom.xml

我想将 tag 属性 传递给我的构建,使用此命令:

mvn clean package -Dtag=test

它应该将这个 属性 分成另外两个,my.groupmy.version,然后在 URI 中使用它来构建 XLDeploy 包,使用 xldeploy-maven-plugin (https://docs.xebialabs.com/xldeploy-maven-plugin/6.0.x/).

我的问题是 regex-properties 目标实际上正在完成工作,正如我所见,感谢 maven-antrun-plugin:

[INFO] --- maven-antrun-plugin:1.1:run (default) @ myArtifactId ---
[INFO] Executing tasks
     [echo] Displaying value of 'my.group' property
     [echo] [my.group] group/test
     [echo] Displaying value of 'my.version' property
     [echo] [my.version] test

但是命令 grep fileUri target\deployit-working-dir\deployit-manifest.xml 显示 Uri 中的变量没有被替换:

grep fileUri target\deployit-working-dir\deployit-manifest.xml
      <fileUri>http://mynexus.ur/service/local/repositories/my-repo/content/${my.group}/anArtefact/${my.version}/anArtefact-1.0.zip</fileUri>

POM 是以下文件:

<project xmlns="http://maven.apache.org/POM/4.0.0" 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>myGroupId</groupId>
    <artifactId>myArtifactId</artifactId>
    <version>1.0</version>

    <packaging>dar</packaging>

    <build>
        <plugins>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>build-helper-maven-plugin</artifactId>
                <version>3.0.0</version>
                <executions>
                    <execution>
                        <id>regex-properties</id>
                        <goals>
                            <goal>regex-properties</goal>
                        </goals>
                        <configuration>
                            <regexPropertySettings>
                                <regexPropertySetting>
                                    <name>my.group</name>
                                    <value>group/${tag}</value>
                                    <regex>(asm-[0-9]+)-([0-9]+.[0-9]+)-([0-9]+)$</regex>
                                    <replacement></replacement>
                                    <failIfNoMatch>false</failIfNoMatch>
                                </regexPropertySetting>
                                <regexPropertySetting>
                                    <name>my.version</name>
                                    <value>${tag}</value>
                                    <regex>(asm-[0-9]+)-([0-9]+.[0-9]+)-([0-9]+)$</regex>
                                    <replacement>-SNAPSHOT</replacement>
                                    <failIfNoMatch>false</failIfNoMatch>
                                </regexPropertySetting>
                            </regexPropertySettings>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-antrun-plugin</artifactId>
                <version>1.1</version>
                <executions>
                    <execution>
                        <phase>validate</phase>
                        <goals>
                            <goal>run</goal>
                        </goals>
                        <configuration>
                            <tasks>
                                <echo>Displaying value of 'my.group' property</echo>
                                <echo>[my.group] ${my.group}</echo>
                                <echo>Displaying value of 'my.version' property</echo>
                                <echo>[my.version] ${my.version}</echo>
                            </tasks>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>com.xebialabs.xldeploy</groupId>
                <artifactId>xldeploy-maven-plugin</artifactId>
                <version>6.0.0</version>

                <extensions>true</extensions>

                <configuration>
                    <deployables>
                        <file.Folder name="file">
                            <scanPlaceholders>false</scanPlaceholders>
                            <fileUri>http://mynexus.ur/service/local/repositories/my-repo/content/${my.group}/anArtefact/${my.version}/anArtefact-${project.version}.zip</fileUri>
                        </file.Folder>
                    </deployables>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>

我不太确定 build-helper-maven-plugin 是否错误,或者我的 POM 中的其他任何地方,或者它是否只是缺少 xldeploy-maven-plugin...

中的替换属性

感谢您的帮助 ;)

我查看了xldeploy-maven-plugin-6.0.1的源码,看来是目前实现的限制。

问题是 GenerateDeploymentPackageMojo 不依赖 maven 来替换属性。相反,它使用名为 DeployitCIConverter 的自定义 AbstractConfigurationConverter(委托给 MavenDeployableConverter)将 <deployables> 节点转换为 MavenDeployable)[=20= 的列表]

归结为:

  • 您可以访问有效的 POM
  • 您无权访问通过构建助手插件动态定义的属性

当然可以在任何 mojo 中访问动态定义的属性:

  • 如果你使用参数
  • 如果您通过表达式计算器手动计算它们(检查:

对于 antrun 插件,它在 echo 任务中明确使用 ExpressionEvaluator。 资料性文章: Properties resolution in Maven and its implications on Antrun plugin

解决问题的想法:

  • 在外部脚本中解析您的组和版本并将值传递给 mvn 命令。
  • 创建一个扩展 GenerateDeploymentPackageMojo 的 cutom mojo 并在执行方法中预处理可部署项(并不像听起来那么难)。