-
Notifications
You must be signed in to change notification settings - Fork 10
Databus 2.x Migration Notes
JJ-Author edited this page Dec 8, 2022
·
18 revisions
- change plugin version snapshot number to 2.0
- provide API key
databus.apiKey
- add
databus.deployRepoURL
- change
databus.publisher
to Databus account URI (need to discuss)
this can be done on global or user-level by configuring settings.xml
<activeProfiles>
<activeProfile>dev-deploy</activeProfile>
</activeProfiles>
<profiles>
<profile>
<id>dev-deploy</id>
<properties>
<databus.apiKey>
[your api key]
</databus.apiKey>
<databus.deployRepoURL>
https://dev.databus.dbpedia.org/api/publish
</databus.deployRepoURL>
<databus.publisher>https://dev.databus.dbpedia.org/[<<<<<<<<<<youruser>>>>>>>>>>]#this</databus.publisher>
</properties>
</profile>
</profiles>
- rename
<downloadUrlPath>
to<absoluteDCATDownloadUrlPath>
and add<databus.downloadUrlPath>
to have the Dataset ID not in decentralized form (i.e. download URL - e.g. https://vmdbpedia.informatik.uni-leipzig.de/repo/dnkg/raw-exports/dnb/2022.10.13#Dataset ) correct form with Databus version prefix.
- <databus.downloadUrlPath>https://vdbpedia.informatik.uni-leipzig.de/repo/${databus.publisher.name}/${project.groupId}/${project.artifactId}/${project.version}/</databus.downloadUrlPath>
+ <databus.downloadUrlPath>https://dev.databus.dbpedia.org/${databus.publisher.name}/${project.groupId}/${project.artifactId}/${project.version}/</databus.downloadUrlPath>
+ <databus.absoluteDCATDownloadUrlPath>https://vdbpedia.informatik.uni-leipzig.de/${databus.publisher.name}/${project.groupId}/${project.artifactId}/${project.version}/</databus.absoluteDCATDownloadUrlPath>