替换 Maven Antrun 插件中的任务

发布于 2024-10-23 14:26:55 字数 1322 浏览 0 评论 0原文

我在我的 Maven 构建中使用 antrun 插件来用应用程序版本替换一些 JSP 文件中的标记 @version@ 。 这就是我正在做的:

<plugin>
    <artifactId>maven-antrun-plugin</artifactId>
    <version>1.6</version>
    <executions>
        <execution>
            <phase>compile</phase>
            <configuration>
                 <target>
                      <echo>${displayVersion}</echo>
                      <replace file="src/main/webapp/admin/decorators/default.jsp" token="@version@" value="${displayVersion}"/>
                 </target>
            </configuration>
            <goals>
                <goal>run</goal>
            </goals>
        </execution>
    </executions>
</plugin>

我将 displayVersion 作为参数传递给 maven

mvn clean install -DdisplayVersion="Version-1.1"

这是 displayVersion 的控制台输出>Antrun Plugin

[INFO] [antrun:run {execution: default}]
[INFO] [antrun:run {execution: default}]  
[INFO] Executing tasks  
main:  
[echo] 9.4_70  
[INFO] Executed tasks

尽管该属性已正确回显,但它在我的 JSP 中并未被替换。 @version@ 令牌被 {displayVersion} 替换,而不是它的实际值。

I am using antrun plugin in my maven build to replace a token @version@ in some of the JSP files with the application version.
This is what I am doing:

<plugin>
    <artifactId>maven-antrun-plugin</artifactId>
    <version>1.6</version>
    <executions>
        <execution>
            <phase>compile</phase>
            <configuration>
                 <target>
                      <echo>${displayVersion}</echo>
                      <replace file="src/main/webapp/admin/decorators/default.jsp" token="@version@" value="${displayVersion}"/>
                 </target>
            </configuration>
            <goals>
                <goal>run</goal>
            </goals>
        </execution>
    </executions>
</plugin>

I am passing displayVersion as a parameter to maven

mvn clean install -DdisplayVersion="Version-1.1"

And this is the console output for Antrun Plugin

[INFO] [antrun:run {execution: default}]
[INFO] [antrun:run {execution: default}]  
[INFO] Executing tasks  
main:  
[echo] 9.4_70  
[INFO] Executed tasks

Although the property is being echoed properly, it's not substituted in my JSP.
The @version@ token is replaced by {displayVersion} and not it's actual value.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

爱,才寂寞 2024-10-30 14:26:55

按照 Aaron 建议使用 Maven 资源过滤,并在 Maven 中设置分隔符资源插件:

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-resources-plugin</artifactId>
    <version>2.5</version>
    <configuration>
      <delimiters>
        <!-- enable maven's standard delimiters -->
        <delimiter>${*}</delimiter>
        <!-- enable your @delimiters@ -->
        <delimiter>@</delimiter>
      </delimiters>
    </configuration>
</plugin>

Use Maven Resources Filtering as Aaron suggested and set the delimiters in the Maven Resource Plugin:

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-resources-plugin</artifactId>
    <version>2.5</version>
    <configuration>
      <delimiters>
        <!-- enable maven's standard delimiters -->
        <delimiter>${*}</delimiter>
        <!-- enable your @delimiters@ -->
        <delimiter>@</delimiter>
      </delimiters>
    </configuration>
</plugin>
原来是傀儡 2024-10-30 14:26:55

Maven资源插件可以替换资源中的变量;因此,如果您交付 JSP(而不是使用 jspc 插件编译它),您可以简单地让资源插件在通过 启用过滤

The Maven resources plugin can replace variables in resources; so if you deliver the JSP (instead of compiling it with the jspc plugin), you can simply let the resource plugin do the work while it copies resources by enabling filtering.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文