Skip to content

Databus 2.x Migration Notes

JJ-Author edited this page Dec 8, 2022 · 18 revisions

POM configuration changes 1.x-> 2.0.x

In group POM

  • change plugin version snapshot number to 2.0

  • provide API key

  • add <databus.deployRepoURL>https://dev.databus.dbpedia.org/api/publish</databus.deployRepoURL>

  • change publisher name to Databus account URI (need to discuss)

this can be done on global 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/[your user]#this</databus.publisher>
            </properties>
        </profile>
    </profiles>
-    <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>

Clone this wiki locally