IHTSDO / snomed-scg-parser

An Open Source Java library for parsing SNOMED Post-Coordinated expressions written in SNOMED Compositional Grammar.
Other
7 stars 5 forks source link

Getting a release for snomed-scg-parser #1

Closed SamithaS closed 6 years ago

SamithaS commented 6 years ago

Would it be possible to get a release for this project. Still this is not available in maven central repo.

CoderMChu commented 6 years ago

snomed-scg-parser 1.0.0 is now released and ready in our maven repo.

rorydavidson commented 6 years ago

@CoderMChu could we please add that released package to the releases on this repo in GitHub?

CoderMChu commented 6 years ago

Please find the release package via the link below: https://maven.ihtsdotools.org/service/local/repositories/releases/content/org/snomed/languages/snomed-scg-parser/1.0.0/snomed-scg-parser-1.0.0.jar

kaicode commented 6 years ago

Artifacts from the Snomed International / IHTSDO maven repository can be access by adding the following to your pom.xml:

<repositories>
    <repository>
        <id>ihtsdo-releases</id>
        <id>IHTSDO Releases</id>
        <url>https://maven.ihtsdotools.org/content/repositories/releases</url>
        <snapshots>
            <enabled>false</enabled>
        </snapshots>
    </repository>
</repositories>
SamithaS commented 6 years ago

Thanks @kaicode