unitsofmeasurement / uom-lib

Units of Measurement Libraries
Other
14 stars 13 forks source link

tech.uom.lib:uom-lib-jackson:2.0 is not published #51

Closed xspeedcruiser closed 4 years ago

xspeedcruiser commented 4 years ago

I am unable to find tech.uom.lib:uom-lib-jackson:2.0 in maven central

keilw commented 4 years ago

Because it has not been released yet, so far it is "2.0-SNAPSHOT", please use the following enhancement in your POM:

<repositories>
        <repository>
            <snapshots>
                <enabled>false</enabled>
            </snapshots>
            <id>bintray-release</id>
            <name>libs-release</name>
            <url>http://oss.jfrog.org/artifactory/libs-release</url>
        </repository>
        <repository>
            <snapshots>
                <enabled>true</enabled>
            </snapshots>
            <id>bintray-snapshot</id>
            <name>libs-snapshot</name>
            <url>http://oss.jfrog.org/artifactory/libs-snapshot</url>
        </repository>
        <repository>
            <id>jcenter</id>
            <name>JCenter</name>
            <url>http://jcenter.bintray.com</url>
        </repository>
</repositories>

Following a few more tests we plan to release the Jackson lib soon.

ddcruver commented 4 years ago

Any updates on this?

keilw commented 4 years ago

This is done https://bintray.com/unitsofmeasurement/maven/tech.uom.lib%3Auom-lib-jackson/2.0 it should also be on MavenCentral within a few hours.