我正在使用maven-antrun-plugin
下载JRE。如果我的配置为
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<id>artifactory-jre</id>
<phase>process-resources</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<target>
<!-- download file -->
<get src="${download.url}/${download.file}${download.filePostfix}"
dest="${project.build.directory}/${download.file}${download.filePostfix}"
verbose="true"
usetimestamp="true"
username="user"
password="password123"/>
</target>
</configuration>
</execution>
</executions>
</plugin>
但我不想在pom
文件中提供username
和password
,我尝试在settings.xml
中添加服务器条目,例如
<server>
<username>user</username>
<password>password123</password>
<id>artifactory-jre</id>
</server>
但我正在遵循异常。
[错误]无法执行目标org.apache.maven.plugins:maven-antrun-plugin:1.8:run(artifactory-jre(project name.abuchen.zulu.zulu.jre.jre.jre.win32.x86_64:a发生了蚂蚁的构建感应:HTTP授权失败[错误]在ant零件周围...... @ 4:315 in C: users downloads bundled-jre-master bundled-jre-master bundles bundles name.abuchen.zulu.jre.jre.win32.x86_64 target antrun build-main.xml
如何在不提供pom文件中提供的ant中提供用户名和密码。
用于解决方案。我在setting.xml
中创建了属性,并在pom.xml
我的设置.xml看起来像
<properties>
<user>user_name</user>
<password>my_password</password>
</properties>
在pom.xml
中,我将此属性用作其他任何属性。