2

我将我的 Protobuf Schema 发布到http://platform.here.com并且我想将相同的模式发布到https://platform.hereolp.cn,但我找不到任何文档如何做到这一点。

我找到的唯一文档是这个:https ://developer.here.com/olp/documentation/archetypes/dev_guide/index.html

4

1 回答 1

2

我设法发布了我的架构。我从https://platform.hereolp.cn下载了不同的凭据集(credentials.properties) ,与此处编写的类似,然后将其保存到目录。~/.here

我还切换到了最新的 HERE Wagon 插件 1.6.1,如依赖管理中所述。我已经更改了版本和存储库 url:

<artifact.wagon.version>1.6.1</artifact.wagon.version>

<repositories>
    <repository>
      <id>HERE_PLATFORM_ARTIFACT</id>
      <layout>default</layout>
      <url>here+artifact-service://artifact-service</url> 
    </repository>
 </repositories>

似乎 HERE Wagon 插件here+artifact-service://artifact-service根据credentials.properties文件以不同方式解析存储库链接。

现在,无需更改代码即可将架构发布到两个网站。我只需要更改credentials.properties目录~/.here

于 2019-08-04T06:18:31.297 回答