gpt4 book ai didi

java - 有没有办法从 text.file 读取文本并将其设置为 pom.xml maven 中的 maven 属性?

转载 作者:太空宇宙 更新时间:2023-11-04 09:15:31 25 4
gpt4 key购买 nike

有没有办法从text.file中读取文本并将其设置为pom.xml maven中的maven属性?我正在尝试使用下面的代码。但是,我需要从 tmp.txt 读取文本并将其分配给 Maven 属性“token”。

<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.5.0</version>
<executions>
<execution>
<id>generate-random-string</id>
<phase>install</phase>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<executable>bash</executable>
<arguments>
<argument>temp.sh</argument>
</arguments>
<workingDirectory>temp.txt</workingDirectory>
</configuration>
</execution>
</executions>
</plugin>

temp.sh

PWD=${openssl rand hex 12}
echo $PWD >> temp.txt

最佳答案

您可以使用properties-maven-plugin:https://www.mojohaus.org/properties-maven-plugin/

在你的 pom.xml 中。将生成文件的文件路径放在配置部分。

  <build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>properties-maven-plugin</artifactId>
<version>1.0.0</version>
<executions>
<execution>
<phase>initialize</phase>
<goals>
<goal>read-project-properties</goal>
</goals>
<configuration>
<files>
<!-- your generated file -->
<file>temp.txt</file>
</files>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>

关于java - 有没有办法从 text.file 读取文本并将其设置为 pom.xml maven 中的 maven 属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59062203/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com