ehrbase/openEHR_SDK

Arrtifact id in jitpack aql and not openEHR SDK

Closed this issue · 5 comments

<dependency>
    <groupId>com.github.ehrbase.openEHR_SDK</groupId>
    <artifactId>aql</artifactId>
    <version>v1.19.0</version>
</dependency>

As a result, the import does not work, at least for me.

Could not find artifact com.github.ehrbase.openEHR_SDK:aql:pom:v1.19.0 in jitpack.io (https://jitpack.io)
Mvn version:

Maven home: /opt/maven
Java version: 18.0.1.1, vendor: N/A, runtime: /usr/lib/jvm/java-18-openjdk
Default locale: en_US, platform encoding: UTF-8
OS name: "linux", version: "5.13.13-1-manjaro", arch: "amd64", family: "unix"

My old import works:

         <ehrbase-sdk.version>10cce9b</ehrbase-sdk.version>
....
       <dependency>
            <groupId>com.github.ehrbase</groupId>
            <artifactId>openEHR_SDK</artifactId>
            <version>${ehrbase-sdk.version}</version>
        </dependency>

Hi @SevKohler . After version 1.5.0 the groupid of the openEHR_SDK was changed to org.ehrbase.openehr.sdk (previously com.github.ehrbase.openEHR_SDK)

Can you try with the new groupId?

maybe this only works with maven central, but then I'm not sure why it's not working with jitpack

            <groupId>org.ehrbase.openehr.sdk</groupId>
            <artifactId>aql</artifactId>
            <version>v1.19.0</version>

Result:
Could not find artifact org.ehrbase.openehr.sdk:aql:pom:v1.19.0 in jitpack.io (https://jitpack.io)

            <groupId>org.ehrbase.openehr</groupId>
            <artifactId>sdk</artifactId>
            <version>v1.19.0</version>

Result:
Could not find artifact org.ehrbase.openehr:sdk:pom:v1.19.0 in jitpack.io (https://jitpack.io)

I cleaned the .m2/repository between those steps btw.

@stefanspiska always a pleasure, thanks.
Didnt knew your on mvncentral now.

@SevKohler https://mvnrepository.com/artifact/org.ehrbase.openehr.sdk/aql/1.19.0

@SevKohler if this works for you please close the issue once you have a resolution