Maven 执行提示密码
Maven Execution Prompt Password
我有Maven将文件复制到远程服务器,我的代码片段如下
<scp trust="true" file="myfile.txt" todir="myuser:mypassword@myserver:/remotedir">
<sshexec trust="true" failonerror="true" host="myserver"
username="myuser" password="mypassword" ....>
有没有办法避免硬编码密码?希望在执行 mvn
时有提示
我假设您使用的是 maven-antrun-plugin,因为这个片段看起来更像一个 ant 脚本。
如this answer中所述,您可以将 maven 属性传递给 maven-antrun-plugin:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.7</version>
<executions>
<execution>
<id>compile</id>
<phase>compile</phase>
<configuration>
<target>
<property name="antProperty" value="${my.custom.property}"/>
<echo message="Custom Ant Property is: ${antProperty}"/>
<echoproperties />
</target>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
您现在可以通过命令行将 属性 值传递给 Maven 构建:
mvn compile -Dmy.custom.property=hello
我有Maven将文件复制到远程服务器,我的代码片段如下
<scp trust="true" file="myfile.txt" todir="myuser:mypassword@myserver:/remotedir">
<sshexec trust="true" failonerror="true" host="myserver"
username="myuser" password="mypassword" ....>
有没有办法避免硬编码密码?希望在执行 mvn
我假设您使用的是 maven-antrun-plugin,因为这个片段看起来更像一个 ant 脚本。
如this answer中所述,您可以将 maven 属性传递给 maven-antrun-plugin:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.7</version>
<executions>
<execution>
<id>compile</id>
<phase>compile</phase>
<configuration>
<target>
<property name="antProperty" value="${my.custom.property}"/>
<echo message="Custom Ant Property is: ${antProperty}"/>
<echoproperties />
</target>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
您现在可以通过命令行将 属性 值传递给 Maven 构建:
mvn compile -Dmy.custom.property=hello