我的父母pom中有以下片段:
<properties>
<artifactory>http://mydomain/artifactory</artifactory>
</properties>
...
<repositories>
<repository>
<id>central</id>
<url>${artifactory}/libs-release</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
问题是$ {artifactory}的值没有在maven构建中被替换导致错误: &#34;无法传输工件...没有可用于使用可用工厂WagonRepositoryConnectorFactory&#34;
访问类型为default的存储库中心($ {artifactory} / libs-release)的连接器在URL中使用变量时这是一个已知问题吗?无法找到相关内容。