我正在尝试使用maven构建项目。我有一个属性标记,在pom.xml-
中有以下链接<properties>
<release_deploy_repo>http://.../releases</release_deploy_repo>
<plugin_repo>http://.../public</plugin_repo>
<central_repo>http://.../public</central_repo>
</properties>
然后在存储库下,我有
<repositories>
<repository>
<id>central</id>
<name>Central Repo</name>
<url>${central_repo}</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
当我尝试mvn clean install时,我收到此错误 -
找不到$ {central_repo}。知道我做错了吗?